Compare commits

...

29 Commits
v2.1.1 ... 2.1

Author SHA1 Message Date
Graham Campbell
7bbba6e897 Bumped version 2016-02-20 21:29:33 +00:00
Graham Campbell
0f5008f301 Released 2.1.2 2016-02-20 21:28:45 +00:00
Graham Campbell
0d614fe0c3 Merge pull request #1535 from CachetHQ/composer
Updated deps
2016-02-20 21:12:08 +00:00
Graham Campbell
d8ed965282 Updated deps 2016-02-20 21:00:41 +00:00
Graham Campbell
39092ff18e Bumped min laravel version 2016-02-20 20:40:44 +00:00
Graham Campbell
7d297a5c96 Merge pull request #1534 from CachetHQ/fix
Removed bad file
2016-02-20 20:40:05 +00:00
Graham Campbell
785fdea56d Removed bad file 2016-02-20 20:38:45 +00:00
James Brooks
b8198c0d4f Merge pull request #1533 from CachetHQ/fix-hourly-metric-points
Fix Last hour metric points
2016-02-20 20:25:35 +00:00
James Brooks
58f755d136 Fix Last hour metric points. Closes #1482 2016-02-20 19:39:07 +00:00
James Brooks
207361d227 Merge pull request #1527 from CachetHQ/sync-langs
Sync language files
2016-02-18 14:41:53 +00:00
James Brooks
de5b5bdda5 Sync language files 2016-02-18 14:16:40 +00:00
James Brooks
e25472fc18 Merge pull request #1523 from CachetHQ/timezone-error
Use create instead of createNormalized on handlers
2016-02-18 14:05:13 +00:00
Joseph Cohen
537017925f Use create instead of createNormalized on handlers 2016-02-17 17:08:36 -06:00
Graham Campbell
1ddd868449 Merge pull request #1518 from CachetHQ/deps
Updated laravel again
2016-02-17 20:01:24 +00:00
Graham Campbell
4a6e47c86b Updated laravel again 2016-02-17 19:55:47 +00:00
Graham Campbell
02b893cc89 Merge pull request #1517 from CachetHQ/fix-js-object
Fix [object object] notification error with js
2016-02-17 19:46:53 +00:00
Joseph Cohen
b8f89e97cd Fix [object object] notification error with js 2016-02-17 13:46:02 -06:00
Graham Campbell
42c8ee8adf Merge pull request #1515 from CachetHQ/laravel
Updated Laravel
2016-02-17 19:23:08 +00:00
Graham Campbell
9d0a49b2be Updated composer.lock 2016-02-17 18:36:30 +00:00
Graham Campbell
5de5a5cd91 Bumped laravel version 2016-02-17 18:33:42 +00:00
Graham Campbell
c72974de27 Merge pull request #1509 from CachetHQ/deps
Updated deps
2016-02-17 11:59:52 +00:00
Graham Campbell
676e7be9fb Updated deps 2016-02-17 11:43:52 +00:00
Graham Campbell
cfca0434ba Merge pull request #1506 from CachetHQ/dont-notify-incident-default
Fixes #1496
2016-02-16 13:00:14 +00:00
James Brooks
8264f72a5a Fixes #1496 2016-02-16 08:58:44 +00:00
James Brooks
3cb6ba237c Merge pull request #1502 from CachetHQ/ignore-token-field
Ignore the _token field when updating settings
2016-02-15 13:00:48 +00:00
James Brooks
e8e8dc2828 Ignore the _token field when updating settings 2016-02-15 10:42:05 +00:00
James Brooks
8a5b07f8d2 Merge pull request #1501 from CachetHQ/fix-piwik-siteid
Properly store the piwik site id
2016-02-15 10:41:32 +00:00
James Brooks
98f0d7ed31 Properly store the piwik site id
Fixes #1499
2016-02-15 10:17:37 +00:00
Graham Campbell
dc45f7625a Bumped version 2016-02-13 21:38:05 +00:00
189 changed files with 2505 additions and 2532 deletions

View File

@@ -1 +1 @@
2.1.1
2.1.3-dev

View File

@@ -69,7 +69,7 @@ class ReportIncidentCommandHandler
// The incident occurred at a different time.
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['updated_at'] = $incidentDate;

View File

@@ -46,7 +46,7 @@ class ReportMaintenanceCommandHandler
*/
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([
'name' => $command->name,

View File

@@ -59,7 +59,7 @@ class UpdateIncidentCommandHandler
// The incident occurred at a different time.
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([
'created_at' => $incidentDate,

View File

@@ -30,7 +30,7 @@ class AppComposer
$view->withAppAnalytics(Config::get('setting.app_analytics'));
$view->withAppAnalyticsGoSquared(Config::get('setting.app_analytics_go_squared'));
$view->withAppAnalyticsPiwikUrl(Config::get('setting.app_analytics_piwik_url'));
$view->withAppAnalyticsPiwikSiteId(Config::get('setting.app_analytics_piwik_siteid'));
$view->withAppAnalyticsPiwikSiteId(Config::get('setting.app_analytics_piwik_site_id'));
$view->withAppBanner(Config::get('setting.app_banner'));
$view->withAppBannerStyleFullWidth(Config::get('setting.style_fullwidth_header'));
$view->withAppBannerType(Config::get('setting.app_banner_type'));

View File

@@ -114,7 +114,7 @@ class IncidentController extends Controller
Binput::get('visible', true),
Binput::get('component_id'),
Binput::get('component_status'),
Binput::get('notify', true),
Binput::get('notify', false),
Binput::get('created_at'),
null,
null

View File

@@ -230,7 +230,7 @@ class SettingsController extends Controller
}
try {
foreach (Binput::except(['app_banner', 'remove_banner']) as $settingName => $settingValue) {
foreach (Binput::except(['app_banner', 'remove_banner', '_token']) as $settingName => $settingValue) {
if ($settingName === 'app_analytics_pi_url') {
$settingValue = rtrim($settingValue, '/');
}

View File

@@ -41,7 +41,7 @@ class PgSqlRepository implements MetricInterface
$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,
'timestamp' => $hourInterval,
]);

View File

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

View File

@@ -20,7 +20,7 @@
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.14",
"laravel/framework": "~5.2.20",
"alt-three/bus": "^1.0",
"alt-three/emoji": "^3.0",
"alt-three/validator": "^1.4",

53
composer.lock generated
View File

@@ -4,8 +4,8 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"hash": "27d40735fd027c42e2e4c7e6548add8c",
"content-hash": "26fcebcc03ef56202fa94ec1c96c63fa",
"hash": "8440020788c3119dac136df65395a1fa",
"content-hash": "2213191ed8823389321d15fc362c43a1",
"packages": [
{
"name": "alt-three/bus",
@@ -1481,16 +1481,16 @@
},
{
"name": "guzzlehttp/psr7",
"version": "1.2.2",
"version": "1.2.3",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
"reference": "f5d04bdd2881ac89abde1fb78cc234bce24327bb"
"reference": "2e89629ff057ebb49492ba08e6995d3a6a80021b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/f5d04bdd2881ac89abde1fb78cc234bce24327bb",
"reference": "f5d04bdd2881ac89abde1fb78cc234bce24327bb",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/2e89629ff057ebb49492ba08e6995d3a6a80021b",
"reference": "2e89629ff057ebb49492ba08e6995d3a6a80021b",
"shasum": ""
},
"require": {
@@ -1535,7 +1535,7 @@
"stream",
"uri"
],
"time": "2016-01-23 01:23:02"
"time": "2016-02-18 21:54:00"
},
{
"name": "jakub-onderka/php-console-color",
@@ -1741,16 +1741,16 @@
},
{
"name": "laravel/framework",
"version": "v5.2.14",
"version": "v5.2.20",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "ce63ba53d4891bdbb5e1aaeced1b5dd34edbc86f"
"reference": "d4ff9a1e3e9b2f99f8f3e957876e343d804d944f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/ce63ba53d4891bdbb5e1aaeced1b5dd34edbc86f",
"reference": "ce63ba53d4891bdbb5e1aaeced1b5dd34edbc86f",
"url": "https://api.github.com/repos/laravel/framework/zipball/d4ff9a1e3e9b2f99f8f3e957876e343d804d944f",
"reference": "d4ff9a1e3e9b2f99f8f3e957876e343d804d944f",
"shasum": ""
},
"require": {
@@ -1865,7 +1865,7 @@
"framework",
"laravel"
],
"time": "2016-02-03 14:19:04"
"time": "2016-02-19 17:58:28"
},
{
"name": "league/commonmark",
@@ -1937,16 +1937,16 @@
},
{
"name": "league/flysystem",
"version": "1.0.16",
"version": "1.0.17",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
"reference": "183e1a610664baf6dcd6fceda415baf43cbdc031"
"reference": "02f5b6c9a8b9278c8381e3361e7bd9d641c740ca"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/183e1a610664baf6dcd6fceda415baf43cbdc031",
"reference": "183e1a610664baf6dcd6fceda415baf43cbdc031",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/02f5b6c9a8b9278c8381e3361e7bd9d641c740ca",
"reference": "02f5b6c9a8b9278c8381e3361e7bd9d641c740ca",
"shasum": ""
},
"require": {
@@ -1959,8 +1959,7 @@
"ext-fileinfo": "*",
"mockery/mockery": "~0.9",
"phpspec/phpspec": "^2.2",
"phpspec/prophecy-phpunit": "~1.0",
"phpunit/phpunit": "~4.8"
"phpunit/phpunit": "~4.8 || ~5.0"
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
@@ -2017,7 +2016,7 @@
"sftp",
"storage"
],
"time": "2015-12-19 20:16:43"
"time": "2016-02-19 15:35:38"
},
{
"name": "mccool/laravel-auto-presenter",
@@ -4118,22 +4117,24 @@
},
{
"name": "phpspec/prophecy",
"version": "v1.5.0",
"version": "v1.6.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
"reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7"
"reference": "3c91bdf81797d725b14cb62906f9a4ce44235972"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/4745ded9307786b730d7a60df5cb5a6c43cf95f7",
"reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/3c91bdf81797d725b14cb62906f9a4ce44235972",
"reference": "3c91bdf81797d725b14cb62906f9a4ce44235972",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.2",
"php": "^5.3|^7.0",
"phpdocumentor/reflection-docblock": "~2.0",
"sebastian/comparator": "~1.1"
"sebastian/comparator": "~1.1",
"sebastian/recursion-context": "~1.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
@@ -4141,7 +4142,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
"dev-master": "1.5.x-dev"
}
},
"autoload": {
@@ -4174,7 +4175,7 @@
"spy",
"stub"
],
"time": "2015-08-13 10:07:40"
"time": "2016-02-15 07:46:21"
},
{
"name": "phpunit/php-code-coverage",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,4 +1,4 @@
{
"dist/css/all.css": "dist/css/all-0a0328c0cc.css",
"dist/js/all.js": "dist/js/all-e705b7b737.js"
"dist/css/all.css": "dist/css/all-5f5b94f75a.css",
"dist/js/all.js": "dist/js/all-9c19e78dd3.js"
}

View File

@@ -78,6 +78,9 @@ $(function() {
window.Cachet.Notifier = function () {
this.notify = function (message, type, options) {
if (_.isPlainObject(message)) {
message = message.detail;
}
type = (typeof type === 'undefined' || type === 'error') ? 'error' : type;
var defaultOptions = {

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

@@ -22,11 +22,10 @@ return [
// Incidents
'incidents' => [
'none' => 'Geen Voorvalle Aangemeld Nie.',
'none' => 'No incidents reported',
'past' => 'Vorige Voorvalle',
'previous_week' => 'Vorige Week',
'next_week' => 'Volgende Week',
'none' => 'Geen Voorvalle Aangemeld Nie.',
'scheduled' => 'Geskeduleerde Instandhouding',
'scheduled_at' => ', scheduled :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'The incident could not be edited. Please try again.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Average',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site Name',
'site-name' => 'Site name',
'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'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 .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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 [
'setup' => 'Setup',
'title' => 'Setup Cachet',
'service_details' => 'Service Details',
'env_setup' => 'Environment Setup',
'status_page_setup' => 'Status Page Setup',
'service_details' => 'Service details',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account',
'complete_setup' => 'Complete Setup',
'admin_account' => 'Administrator account',
'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!',
'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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'The incident could not be edited. Please try again.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Average',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site Name',
'site-name' => 'Site name',
'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'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 .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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 [
'setup' => 'Setup',
'title' => 'Setup Cachet',
'service_details' => 'Service Details',
'env_setup' => 'Environment Setup',
'status_page_setup' => 'Status Page Setup',
'service_details' => 'Service details',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account',
'complete_setup' => 'Complete Setup',
'admin_account' => 'Administrator account',
'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!',
'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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'The incident could not be edited. Please try again.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Average',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site Name',
'site-name' => 'Site name',
'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'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 .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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 [
'setup' => 'Setup',
'title' => 'Setup Cachet',
'service_details' => 'Service Details',
'env_setup' => 'Environment Setup',
'status_page_setup' => 'Status Page Setup',
'service_details' => 'Service details',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account',
'complete_setup' => 'Complete Setup',
'admin_account' => 'Administrator account',
'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!',
'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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Plánovaná odstávka',
'scheduled_at' => ', plánované na :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Vytvořit šablonu',
'incident-templates' => 'Šablony incidentů',
'add' => [
'title' => 'Add an Incident',
'title' => 'Report an incident',
'success' => 'Incident přidán.',
'failure' => 'Na incidentu se něco pokazilo.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident aktualizován.',
'failure' => 'S incidentem se něco pokazilo.',
],
@@ -39,8 +39,8 @@ return [
'templates' => [
'title' => 'Šablony incidentů',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'Šablona vytvořena.',
'failure' => 'Na šabloně incidentu se něco se pokazilo.',
],
@@ -50,8 +50,8 @@ return [
'failure' => 'Při aktualizaci šablony incidentu se něco pokazilo',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'failure' => 'The incident template could not be deleted. Please try again.',
],
],
],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Stavy služeb',
'listed_group' => 'Seskupeno podle :name',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'Měli byste přidat službu.',
'success' => 'Služba vytvořena.',
'failure' => 'Na službě se objevila chyba.',
],
'edit' => [
'title' => 'Edit a Component',
'title' => 'Edit a component',
'success' => 'Služba byla aktualizována.',
'failure' => 'Na službě se objevila chyba.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Skupina služeb|Skupiny služeb',
'no_components' => 'Můžete přidat skupinu služeb.',
'add' => [
'title' => 'Add a Component Group',
'title' => 'Add a component group',
'success' => 'Skupina služeb byla přidána.',
'failure' => 'Vyskytla se chyba skupiny služeb.',
],
'edit' => [
'title' => 'Edit a Component Group',
'title' => 'Edit a component group',
'success' => 'Skupina služeb byla aktualizována.',
'failure' => 'Vyskytla se chyba skupiny služeb.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metriky',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metrika vytvořena.',
'failure' => 'Něco se stalo s metrikou.',
],
'edit' => [
'title' => 'Edit a Metric',
'title' => 'Edit a metric',
'success' => 'Metrika aktualizována.',
'failure' => 'Něco se stalo s metrikou.',
],
'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.',
],
],
@@ -145,12 +145,12 @@ return [
'verified' => 'Ověřeno',
'not_verified' => 'Neověřeno',
'add' => [
'title' => 'Add a New Subscriber',
'title' => 'Add a new subscriber',
'success' => 'Odběratel přidán.',
'failure' => 'Na službě se objevila chyba.',
],
'edit' => [
'title' => 'Update Subscriber',
'title' => 'Update subscriber',
'success' => 'Odběratel aktualizován.',
'failure' => 'Něco se pokazilo při aktualizaci.',
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profil',
'description' => 'Členové týmu budou schopni přidat nebo upravit komponenty a incidenty.',
'add' => [
'title' => 'Add a New Team Member',
'title' => 'Add a new team member',
'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' => [
'title' => 'Update Profile',
'title' => 'Update profile',
'success' => 'Profil byl aktualizován.',
'failure' => 'Něco se pokazilo při aktualizaci.',
],
'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.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'Na kdy naplánovat údržbu/výpadek?',
'incident_time' => 'Kdy k incidentu došlo?',
'notify_subscribers' => 'Notify Subscribers?',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Viditelnost incidentu',
'public' => 'Viditelné veřejnosti',
'logged_in_only' => 'Only visible to logged in users',
@@ -80,12 +80,12 @@ return [
'description' => 'Popis',
'description-help' => 'Můžete také použít Markdown.',
'display-chart' => 'Zobrazovat graf na stavové stránce?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Celkem',
'type_avg' => 'Průměr',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Hodnota',
@@ -112,13 +112,13 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'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.',
],
'stylesheet' => [
@@ -126,18 +126,18 @@ return [
],
'theme' => [
'background-color' => 'Barva pozadí',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Barva textu',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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' => [
'none' => 'Intet at rapportere',
'none' => 'No incidents reported',
'past' => 'Tidligere hændelser',
'previous_week' => 'Sidste uge',
'next_week' => 'Næste uge',
'none' => 'Intet at rapportere',
'scheduled' => 'Planlagte hændelser',
'scheduled_at' => ', planlagt til :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

View File

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

View File

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

View File

@@ -22,11 +22,10 @@ return [
// Incidents
'incidents' => [
'none' => 'Keine Vorfälle berichtet.',
'none' => 'Es liegen keine Vorfälle vor',
'past' => 'Vergangene Vorfälle',
'previous_week' => 'Vorherige Woche',
'next_week' => 'Nächste Woche',
'none' => 'Keine Vorfälle berichtet.',
'scheduled' => 'Geplante Wartungen',
'scheduled_at' => ', geplant :timestamp',
'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status
'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage',
'good' => '[0,1] System funktioniert|[2,Inf] Alle Systeme funktionieren',
'bad' => '[0,1] System hat momentan Probleme|[2,Inf] Mehrere Systeme haben momentan Probleme',
'major' => '[0,1] System hat ein schwerwiegendes Problem|[2,Inf] Mehrere Systeme haben ein schwerwiegendes Problem',
],
'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics
'metrics' => [
'filter' => [
'last_hour' => 'Last Hour',
'last_hour' => 'Letzte Stunde',
'hourly' => 'Letzte 12 Stunden',
'weekly' => 'Wöchentlich',
'monthly' => 'Monatlich',
@@ -71,7 +70,7 @@ return [
'unsubscribe' => 'Von E-Mail-Updates deabonnieren.',
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
'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' => [
'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.',
@@ -88,11 +87,11 @@ return [
'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>',
],
'component' => [
'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',
'html-preheader' => 'Component Update from :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>',
'tooltip-title' => 'Subscribe to notifications for :component_name.',
'subject' => 'Komponent Status Update',
'text' => 'Der Komponent :component_name hatte eine Status-Änderung. Der Komponent befindet sich nun im :component_human_status.\nDanke, :app_name',
'html-preheader' => 'Komponenten Update von :app_name',
'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' => 'Neuigkeiten für :component_name abonnieren.',
],
],
],
@@ -117,15 +116,15 @@ return [
],
'system' => [
'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!',
'update' => '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' => [
'close' => 'Close',
'close' => 'Schließen',
'subscribe' => [
'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.',
'title' => 'Abonniere die Komponenten-Updates',
'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',
],
],

View File

@@ -31,8 +31,8 @@ return [
'failure' => 'Etwas ist mit dem Vorfall schiefgelaufen.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
'failure' => 'The incident could not be deleted. Please try again.',
'success' => 'Der Vorfall wurde gelöscht und wird nicht mehr angezeigt.',
'failure' => 'Der Vorfall konnte nicht gelöscht werden. Bitte versuche es erneut.',
],
// Incident templates
@@ -40,7 +40,7 @@ return [
'title' => 'Vorfall Vorlagen',
'add' => [
'title' => 'Vorfallvorlage erstellen',
'message' => 'You should add an Incident Template.',
'message' => 'Du solltest eine Vorfall-Vorlage hinzufügen.',
'success' => 'Vorlage erstellt.',
'failure' => 'Etwas ist mit der Vorfallvorlage schiefgelaufen.',
],
@@ -50,8 +50,8 @@ return [
'failure' => 'Etwas ist mit dem Updaten der Vorfallvorlage schiefgelaufen',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'Die Vorfall-Vorlage wurde gelöscht.',
'failure' => 'Die Vorfall-Vorlage konnte nicht gelöscht werden. Bitte versuche es erneut.',
],
],
],
@@ -59,7 +59,7 @@ return [
// Incident Maintenance
'schedule' => [
'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',
'add' => [
'title' => 'Planmäßige Wartung hinzufügen',
@@ -94,8 +94,8 @@ return [
'failure' => 'Mit der Komponente ist etwas schiefgegangen.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'Die Komponente wurde gelöscht!',
'failure' => 'Die Komponente konnte nicht gelöscht werden. Bitte versuche es erneut.',
],
// Component groups
@@ -113,8 +113,8 @@ return [
'failure' => 'Mit der Komponentengruppe ist etwas schiefgegangen.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Die Komponentengruppe wurde gelöscht!',
'failure' => 'Die Komponentengruppe konnte nicht gelöscht werden. Bitte versuche es erneut.',
],
],
],
@@ -124,7 +124,7 @@ return [
'metrics' => 'Metriken',
'add' => [
'title' => 'Metrik erstellen',
'message' => 'You should add a Metric.',
'message' => 'Du solltest eine Metrik hinzufügen.',
'success' => 'Metrik erstellt.',
'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
],
@@ -134,8 +134,8 @@ return [
'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
],
'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.',
'failure' => 'The metric could not be deleted. Please try again.',
'success' => 'Die Metrik wurde gelöscht und wird nicht mehr angezeigt.',
'failure' => 'Die Metrik konnte nicht gelöscht werden. Bitte versuche es erneut.',
],
],
// Subscribers
@@ -178,7 +178,7 @@ return [
],
'invite' => [
'title' => 'Ein neues Teammitglied einladen',
'success' => 'Die Benutzer eingeladen.',
'success' => 'Eine Einladung wurde verschickt',
'failure' => 'Mit der Einladung ist etwas schiefgelaufen.',
],
],
@@ -235,7 +235,7 @@ return [
// Welcome modal
'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',
'close' => 'Gehe einfach direkt zu meinem Dashboard',
'steps' => [

View File

@@ -27,11 +27,11 @@ return [
// Login form fields
'login' => [
'login' => 'Username or Email',
'login' => 'Username oder E-Mail',
'email' => 'E-Mail',
'password' => 'Passwort',
'2fauth' => 'Authentifizierungscode',
'invalid' => 'Invalid username or password',
'invalid' => 'Ungültiger Benutzername oder Passwort',
'invalid-token' => 'Token ist ungültig',
'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.',
],
@@ -52,7 +52,7 @@ return [
'templates' => [
'name' => 'Name',
'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' => [
'name' => 'Name',
'collapsed' => 'Collapse the group by default?',
'collapsed' => 'Die Gruppe standardmäßig ausblenden?',
],
],
@@ -85,7 +85,7 @@ return [
'type_sum' => 'Summe',
'type_avg' => 'Durchschnitt',
'places' => 'Nachkommastellen',
'default_view' => 'Default View',
'default_view' => 'Standardansicht',
'points' => [
'value' => 'Wert',

View File

@@ -50,7 +50,7 @@ return [
'in' => 'Der gewählte Wert für :attribute ist ungültig.',
'integer' => ':attribute muss eine ganze Zahl 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' => [
'numeric' => ':attribute darf maximal :max sein.',
'file' => ':attribute darf maximal :max Kilobytes groß sein.',
@@ -69,7 +69,7 @@ return [
'regex' => ':attribute Format ist ungültig.',
'required' => ':attribute muss ausgefüllt sein.',
'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_all' => ':attribute muss angegeben werden, wenn :values 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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Προγραμματισμένη Συντήρηση',
'scheduled_at' => ', προγραμματισμένη :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Δημιουργία προτύπου',
'incident-templates' => 'Πρότυπα Περιστατικών',
'add' => [
'title' => 'Add an Incident',
'title' => 'Report an incident',
'success' => 'Το περιστατικό προστέθηκε.',
'failure' => 'Κάτι πήγε στραβά με την προσθήκη του περιστατικού.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Επεξεργασία περιστατικού επιτυχής.',
'failure' => 'Κάτι πήγε στραβά με την προσθήκη του περιστατικού.',
],
@@ -39,8 +39,8 @@ return [
'templates' => [
'title' => 'Πρότυπα Περιστατικών',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'Επιτυχής δημιουργία προτύπου.',
'failure' => 'Κάτι πήγε στραβά με την δημιουργία προτύπου.',
],
@@ -50,8 +50,8 @@ return [
'failure' => 'Κάτι πήγε στραβά με την ενημέρωση του προτύπου',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'failure' => 'The incident template could not be deleted. Please try again.',
],
],
],
@@ -67,13 +67,13 @@ return [
'failure' => 'Κάτι πήγε στραβά με την προσθήκη του προγραμματισμού.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Μέσος όρος',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Value',
@@ -101,7 +101,7 @@ return [
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image',
'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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 [
'setup' => 'Εγκατάσταση',
'title' => 'Εγκατάσταση του Cachet',
'service_details' => 'Service Details',
'env_setup' => 'Environment Setup',
'status_page_setup' => 'Status Page Setup',
'service_details' => 'Service details',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account',
'admin_account' => 'Administrator account',
'complete_setup' => 'Ολοκλήρωση εγκατάστασης',
'completed' => 'Cachet has been configured successfully!',
'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' => [
'none' => 'crwdns541:0crwdne541:0',
'none' => 'crwdns657:0crwdne657:0',
'past' => 'crwdns542:0crwdne542:0',
'previous_week' => 'crwdns543:0crwdne543:0',
'next_week' => 'crwdns544:0crwdne544:0',
'none' => 'crwdns541:0crwdne541:0',
'scheduled' => 'crwdns438:0crwdne438:0',
'scheduled_at' => 'crwdns439:0crwdne439:0',
'status' => [
@@ -125,7 +124,7 @@ return [
'close' => 'crwdns633:0crwdne633:0',
'subscribe' => [
'title' => 'crwdns634:0crwdne634:0',
'body' => 'crwdns635:0crwdne635:0',
'body' => 'crwdns658:0crwdne658:0',
'button' => 'crwdns636:0crwdne636:0',
],
],

View File

@@ -22,13 +22,13 @@ return [
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
],
'edit' => [
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'The incident could not be edited. Please try again.',
'failure' => 'Something went wrong with the incident.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -41,13 +41,13 @@ return [
'add' => [
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
],
'delete' => [
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
],
'edit' => [
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
],
'delete' => [
'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
],
],
@@ -85,13 +85,13 @@ return [
'add' => [
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
],
'edit' => [
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
],
'delete' => [
'success' => 'The component has been deleted!',
@@ -104,13 +104,13 @@ return [
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
],
'edit' => [
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
],
'delete' => [
'success' => 'Component group has been deleted!',
@@ -125,13 +125,13 @@ return [
'add' => [
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
],
'edit' => [
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
],
'delete' => [
'success' => 'The metric has been deleted and will no longer display on your status page.',
@@ -147,12 +147,12 @@ return [
'add' => [
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
'failure' => 'Something went wrong with the component.',
],
'edit' => [
'title' => 'Update subscriber',
'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.',
'add' => [
'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.',
],
'edit' => [
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
],
'delete' => [
'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?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'visibility' => 'Incident Visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -96,12 +96,12 @@ return [
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site name',
'site-name' => 'Site Name',
'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'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 .",
'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.',
],
'stylesheet' => [
'custom-css' => 'Custom stylesheet',
'custom-css' => 'Custom Stylesheet',
],
'theme' => [
'background-color' => 'Background color',
'background-color' => 'Background Color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text color',
'text-color' => 'Text Color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',

View File

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

View File

@@ -22,11 +22,10 @@ return [
// Incidents
'incidents' => [
'none' => 'Keine Vorfälle berichtet.',
'none' => 'Ningún incidente reportado',
'past' => 'Vergangene Vorfälle',
'previous_week' => 'Vorherige Woche',
'next_week' => 'Nächste Woche',
'none' => 'Keine Vorfälle berichtet.',
'scheduled' => 'Geplante Wartungen',
'scheduled_at' => ', geplant :timestamp',
'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status
'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage',
'good' => '[0,1] Sistema operativo | [2,Inf] Todos los sistemas están operativos',
'bad' => '[0,1] El sistema está actualmente experimentando problemas | [2,Inf] Algunos sistemas están experimentando problemas',
'major' => '[0,1] El servicio está experimentando una interrupción mayor | [2, Inf] Algunos sistemas están experimentando una interrupción mayor',
],
'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics
'metrics' => [
'filter' => [
'last_hour' => 'Last Hour',
'last_hour' => 'Última hora',
'hourly' => 'Letzte 12 Stunden',
'weekly' => 'Wöchentlich',
'monthly' => 'Monatlich',
@@ -71,7 +70,7 @@ return [
'unsubscribe' => 'Von E-Mail-Updates deabonnieren.',
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
'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' => [
'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.',
@@ -88,11 +87,11 @@ return [
'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>',
],
'component' => [
'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',
'html-preheader' => 'Component Update from :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>',
'tooltip-title' => 'Subscribe to notifications for :component_name.',
'subject' => 'Actualización de estado del componente',
'text' => 'El componente :component_name ha cambiado de estado. El componente está ahora :component_human_status.\nGracias, :app_name',
'html-preheader' => 'Actualización del componente de :app_name',
'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' => 'Subscribirse a las notificaciones de :component_name.',
],
],
],
@@ -102,7 +101,7 @@ return [
'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",
'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' => [
'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' => [
'close' => 'Close',
'close' => 'Cerrar',
'subscribe' => [
'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.',
'title' => 'Subscribirse a actualizaciones de componentes',
'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',
],
],

View File

@@ -31,8 +31,8 @@ return [
'failure' => 'Algo salió mal con el incidente.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
'failure' => 'The incident could not be deleted. Please try again.',
'success' => 'El incidente se ha eliminado y no se mostrará en tu página de estado.',
'failure' => 'El incidente no se pudo eliminar. Por favor, inténtalo de nuevo.',
],
// Incident templates
@@ -40,7 +40,7 @@ return [
'title' => 'Plantillas de incidente',
'add' => [
'title' => 'Vorfallvorlage erstellen',
'message' => 'You should add an Incident Template.',
'message' => 'Deberías añadir una plantilla de incidente.',
'success' => 'Vorlage erstellt.',
'failure' => 'Etwas ist mit der Vorfallvorlage schiefgelaufen.',
],
@@ -50,8 +50,8 @@ return [
'failure' => 'Etwas ist mit dem Updaten der Vorfallvorlage schiefgelaufen',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'La plantilla de incidente se ha eliminado.',
'failure' => 'La plantilla de incidente no se pudo eliminar. Por favor, inténtalo de nuevo.',
],
],
],
@@ -59,7 +59,7 @@ return [
// Incident Maintenance
'schedule' => [
'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',
'add' => [
'title' => 'Planmäßige Wartung hinzufügen',
@@ -94,8 +94,8 @@ return [
'failure' => 'Algo salió mal con el componente.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'El componente se ha eliminado!',
'failure' => 'El componente no se pudo eliminar. Por favor, inténtalo de nuevo.',
],
// Component groups
@@ -113,8 +113,8 @@ return [
'failure' => 'Mit der Komponentengruppe ist etwas schiefgegangen.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'El grupo de componentes se ha eliminado!',
'failure' => 'El grupo de componentes no se pudo eliminar. Por favor, inténtalo de nuevo.',
],
],
],
@@ -124,7 +124,7 @@ return [
'metrics' => 'Metriken',
'add' => [
'title' => 'Metrik erstellen',
'message' => 'You should add a Metric.',
'message' => 'Deberías añadir una métrica.',
'success' => 'Metrik erstellt.',
'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
],
@@ -134,8 +134,8 @@ return [
'failure' => 'Mit der Metrik ist etwas schiefgegangen.',
],
'delete' => [
'success' => 'The metric has been deleted and will not show on your status page.',
'failure' => 'The metric could not be deleted. Please try again.',
'success' => 'La métrica se ha eliminado y no se mostrará más en tu página de estado.',
'failure' => 'La métrica no se pudo eliminar. Por favor, inténtalo de nuevo.',
],
],
// Subscribers
@@ -178,7 +178,7 @@ return [
],
'invite' => [
'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.',
],
],
@@ -235,7 +235,7 @@ return [
// Welcome modal
'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',
'close' => 'Gehe einfach direkt zu meinem Dashboard',
'steps' => [

View File

@@ -27,11 +27,11 @@ return [
// Login form fields
'login' => [
'login' => 'Username or Email',
'login' => 'Nombre de usuario o dirección de correo electrónico',
'email' => 'Correo electrónico',
'password' => 'Contraseña',
'2fauth' => 'Authentifizierungscode',
'invalid' => 'Invalid username or password',
'invalid' => 'Nombre de usuario o contraseña incorrectos',
'invalid-token' => 'Token ist ungültig',
'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.',
],
@@ -52,7 +52,7 @@ return [
'templates' => [
'name' => 'Nombre',
'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' => [
'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',
'type_sum' => 'Summe',
'type_avg' => 'Durchschnitt',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Cantidad de decimales',
'default_view' => 'Vista predeterminada',
'points' => [
'value' => 'Wert',
@@ -126,18 +126,18 @@ return [
],
'theme' => [
'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-padding' => 'Banner Padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'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)',
'blues' => 'Azul (usado para información)',
'greens' => 'Verde (usado para operaciones correctas)',
'yellows' => 'Amarillo (usado para alertas)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'oranges' => 'Naranja (usado para avisos)',
'metrics' => 'Relleno de las métricas',
'links' => 'Enlaces',
],
],

View File

@@ -50,7 +50,7 @@ return [
'in' => 'El :attribute seleccionado es inválido.',
'integer' => ':attribute muss eine ganze Zahl 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' => [
'numeric' => ':attribute darf maximal :max sein.',
'file' => ':attribute darf maximal :max Kilobytes groß sein.',
@@ -69,7 +69,7 @@ return [
'regex' => ':attribute Format ist ungültig.',
'required' => ':attribute muss ausgefüllt sein.',
'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_all' => 'El campo del :attribute se requiere cuando :values es presente.',
'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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'The incident could not be edited. Please try again.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Average',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site Name',
'site-name' => 'Site name',
'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'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 .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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 [
'setup' => 'Setup',
'title' => 'Setup Cachet',
'service_details' => 'Service Details',
'env_setup' => 'Environment Setup',
'status_page_setup' => 'Status Page Setup',
'service_details' => 'Service details',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Status page setup',
'show_support' => 'Show support for Cachet?',
'admin_account' => 'Administrator Account',
'complete_setup' => 'Complete Setup',
'admin_account' => 'Administrator account',
'complete_setup' => 'Complete setup',
'completed' => 'Cachet has been configured successfully!',
'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' => [
'none' => 'Ei ilmoitettuja tapahtumia.',
'none' => 'Ei raportoitavia tapauksia',
'past' => 'Aikaisemmat tapahtumat',
'previous_week' => 'Edellinen viikko',
'next_week' => 'Seuraava viikko',
'none' => 'Ei ilmoitettuja tapahtumia.',
'scheduled' => 'Määräaikaishuolto',
'scheduled_at' => ', ajoitettu: aikaleima',
'status' => [
@@ -40,9 +39,9 @@ return [
// Service Status
'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage',
'good' => '[0,1] järjestelmät ovat toiminnassa| [2, Inf] Kaikki järjestelmät ovat toiminnassa',
'bad' => '[0,1] järjestelmä on tällä hetkellä ongelmia| [2, Inf] Joissakin järjestelmissä on ongelmia',
'major' => '[0,1] Palveluissa on katkoksia| [2, Inf] Joissakin järjestelmissä on merkittävä katkoksia',
],
'api' => [
@@ -53,7 +52,7 @@ return [
// Metrics
'metrics' => [
'filter' => [
'last_hour' => 'Last Hour',
'last_hour' => 'Viimeisen tunnin',
'hourly' => 'Viimeisen 12 tunnin',
'weekly' => 'Viikko',
'monthly' => 'Kuukausi',
@@ -62,13 +61,13 @@ return [
// Subscriber
'subscriber' => [
'subscribe' => 'Subscribe to get the most recent updates',
'subscribe' => 'Tilaa uusimmat päivitykset',
'button' => 'Tilaa',
'email' => [
'subscribe' => 'Tilaa email päivitykset.',
'subscribed' => 'Olet tilannut sähköposti-ilmoitukset, tarkista sähköpostisi vahvistaaksesi tilauksen.',
'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.',
'failure' => 'Jokin meni vikaan sähköpostitilauksen käsittelyssä.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
@@ -122,10 +121,10 @@ return [
// Modal
'modal' => [
'close' => 'Close',
'close' => 'Sulje',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,37 +21,37 @@ return [
'incident-create-template' => 'Luo mallipohja',
'incident-templates' => 'Tapahtuma pohja',
'add' => [
'title' => 'Add an Incident',
'title' => 'Ilmoita tapahtuma',
'success' => 'Tapahtuma lisätty.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'Tapahtumaa ei voitu ilmoittaa. Yritä uudelleen.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Muokkaa tapahtumaa',
'success' => 'Tapahtuma päivitetty.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'Tapahtumaa ei voitu muokata. Yritä uudelleen.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
'failure' => 'The incident could not be deleted. Please try again.',
'success' => 'Tapaus on poistettu ja ei näytetä tila-sivulla.',
'failure' => 'Tapahtumaa ei voitu poistaa. Yritä uudelleen.',
],
// Incident templates
'templates' => [
'title' => 'Tapahtuma pohja',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'Mallipohja on luotu.',
'failure' => 'Something went wrong with the incident template.',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
],
],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'Komponenttien tilat',
'listed_group' => 'Grouped under :name',
'add' => [
'title' => 'Add a Component',
'title' => 'Lisää komponentti',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Komponentti on lisätty!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Muokkaa komponenttia',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Lisää komponentti-ryhmä',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Mittarit',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,15 +143,15 @@ return [
'subscribers' => 'Tilaajat',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Vahvistettu',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'title' => 'Add a new subscriber',
'success' => 'Tilaaja lisätty.',
'failure' => 'Something went wrong with the component.',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'Tapahtui virhe päivitettäessä.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profiili',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'title' => 'Add a new team member',
'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' => [
'title' => 'Update Profile',
'title' => 'Update profile',
'success' => 'Profiili päivitetty.',
'failure' => 'Tapahtui virhe päivitettäessä.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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' => [
'login' => 'Username or Email',
'login' => 'Käyttäjänimi tai sähköpostiosoite',
'email' => 'Sähköposti',
'password' => 'Salasana',
'2fauth' => 'Authentication Code',
'invalid' => 'Invalid username or password',
'invalid' => 'Virheellinen käyttäjätunnus tai salasana',
'invalid-token' => 'Invalid token',
'cookies' => 'Ota käyttöön evästeet kirjautuaksesi.',
],
@@ -81,11 +81,11 @@ return [
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Oletusarvo',
'calc_type' => 'Calculation of Metrics',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Summa',
'type_avg' => 'Keskiarvo',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Arvo',
@@ -115,7 +115,7 @@ return [
'site-timezone' => 'Sivuston aikavyöhyke',
'site-locale' => 'Sivuston kieli',
'date-format' => 'Päivämäärän muoto',
'incident-date-format' => 'Incident Timestamp Format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Sallittu toimialueet',
@@ -126,18 +126,18 @@ return [
],
'theme' => [
'background-color' => 'Taustaväri',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Tekstin väri',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => '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 [
'setup' => 'Asetukset',
'title' => 'Setup Cachet',
'service_details' => 'Service Details',
'env_setup' => 'Environment Setup',
'service_details' => 'Service details',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Sivun asetukset',
'show_support' => 'Show support for Cachet?',
'admin_account' => 'Järjestelmänvalvojantili',
'complete_setup' => 'Complete Setup',
'complete_setup' => 'Complete setup',
'completed' => 'Välimuisti on konfiguroitu onnistuneesti!',
'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' => [
'status' => [
1 => 'Funktionsfähig',
2 => 'Leistungsprobleme',
3 => 'Teilweiser Ausfall',
4 => 'Schwerer Ausfall',
1 => 'Opérationnel',
2 => 'Problèmes de performances',
3 => 'Panne partielle',
4 => 'Panne majeure',
],
],
// Incidents
'incidents' => [
'none' => 'Aucun incident signalé.',
'none' => 'Aucun incident signalé',
'past' => 'Incidents antérieurs',
'previous_week' => 'Semaine précédente',
'next_week' => 'Semaine suivante',
'none' => 'Aucun incident signalé.',
'scheduled' => 'Geplante Wartungen',
'scheduled_at' => ', geplant :timestamp',
'scheduled_at' => ', planifé à :timestamp',
'status' => [
0 => 'Geplant', // TODO: Hopefully remove this.
1 => 'Untersuchungen laufen',
2 => 'Identifiziert',
3 => 'Unter Beobachtung',
4 => 'Behoben',
0 => 'Planifié', // TODO: Hopefully remove this.
1 => 'Enquête en cours',
2 => 'Identifié',
3 => 'Sous surveillance',
4 => 'Corrigé',
],
],
// Service Status
'service' => [
'good' => '[0,1] System operational|[2,Inf] All systems are operational',
'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues',
'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage',
'good' => '[0,1] Système opérationnel|[2,Inf] Tous les systèmes sont opérationnels',
'bad' => '[0,1] Le système rencontre actuellement des problèmes|[2,Inf] Certains systèmes rencontrent des problèmes',
'major' => '[0,1] Le service rencontre une panne majeure|[2,Inf] Certains systèmes rencontrent une panne majeure',
],
'api' => [
'regenerate' => 'API-Schlüssel neu generieren',
'regenerate' => 'Régénérer la clé API',
'revoke' => 'API-Schlüssel widerrufen',
],
// Metrics
'metrics' => [
'filter' => [
'last_hour' => 'Last Hour',
'hourly' => 'Last 12 Hours',
'weekly' => 'Week',
'monthly' => 'Month',
'last_hour' => 'Dernière heure',
'hourly' => 'Les 12 dernières heures',
'weekly' => 'Semaine',
'monthly' => 'Mois',
],
],
// Subscriber
'subscriber' => [
'subscribe' => 'Abonnez-vous pour obtenir les dernières mises à jour.',
'button' => 'Abonnieren',
'button' => 'S\'abonner',
'email' => [
'subscribe' => 'Aktualisierungen per E-Mail abonnieren.',
'subscribed' => 'Sie haben E-Mail-Benachrichtigungen abonniert, überprüfen Sie bitte Ihre E-Mail, um Ihr Abonnement zu bestätigen.',
'verified' => 'Ihre E-Mail-Abonnement ist bestätigt worden. Danke!',
'subscribe' => 'S\'abonner aux notifications par email.',
'subscribed' => 'Vous êtes abonné aux notifications par email, veuillez vérifier votre messagerie pour confirmer votre adresse.',
'verified' => 'Votre abonnement aux notifications par email a été confirmé. Merci !',
'unsubscribe' => 'Désinscription des mises à jour par courriel.',
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.',
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
'unsubscribed' => 'Votre abonnement aux notifications par email a été annulé.',
'failure' => 'Une erreur est survenue lors de l\'abonnement.',
'already-subscribed' => 'Impossible de s\'abonner avec l\'adresse e-mail :email car celle-ci est déjà abonné.',
'verify' => [
'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' => '<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>',
'text' => "Veuillez confirmer votre abonnement aux notifications par email de :app_name.\n:link\nMerci, :app_name",
'html-preheader' => 'Veuillez confirmer votre abonnement aux notifications par email de :app_name.',
'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' => [
'text' => "Neue Wartung wurde für :app_name geplant.\nDanke, :app_name",
'html-preheader' => 'Neue Wartung wurde für :app_name geplant.',
'html' => '<p>Neue Wartung wurde für :app_name geplant.</p>',
'text' => "Une nouvelle maintenance a été planifiée pour :app_name.\nMerci, :app_name",
'html-preheader' => 'Une nouvelle maintenance a été planifiée pour :app_name.',
'html' => '<p>Une nouvelle maintenance a été planifiée pour :app_name</p>',
],
'incident' => [
'text' => "Ein neuer Vorfall wurde auf :app_name berichtet.\nDanke, :app_name",
'html-preheader' => 'Ein neuer Vorfall wurde über :app_name berichtet.',
'html' => '<p>Ein neuer Vorfall wurde über :app_name berichtet.</p> <p>Danke, :app_name</p>',
'text' => "Un nouvel incident a été signalé sur : app_name.\nMerci, :app_name",
'html-preheader' => 'Un nouvel incident a été signalé sur : app_name.',
'html' => '<p>Un nouvel incident a été signalé sur : app_name. </p><p>Merci, : app_name</p>',
],
'component' => [
'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',
'html-preheader' => 'Component Update from :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>',
'tooltip-title' => 'Subscribe to notifications for :component_name.',
'subject' => 'Mise à jour du statut d\'un composant',
'text' => 'Le statut du composant :component_name a été mis à jour. Il est maintenant :component_human_status.\nMerci, :app_name',
'html-preheader' => 'Mise à jour d\'un composant de :app_name',
'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' => 'S\'abonner aux notifications pour :component_name.',
],
],
],
@@ -102,7 +102,7 @@ return [
'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",
'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' => [
'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' => [
'close' => 'Close',
'close' => 'Fermer',
'subscribe' => [
'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.',
'button' => 'Abonnieren',
'title' => 'S\'abonner aux mises à jour du status du composant',
'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' => 'S\'abonner',
],
],
// 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',
'rss-feed' => 'RSS',
'atom-feed' => 'Atom',
'feed' => 'Status-Feed',
'feed' => 'Flux des statuts',
];

View File

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

View File

@@ -19,40 +19,40 @@ return [
'site_name' => 'Nom du site',
'site_domain' => 'Nom de domaine du site',
'site_timezone' => 'Choisissez votre fuseau horaire',
'site_locale' => 'Choisissez votre langue',
'enable_google2fa' => 'Activez la validation en deux étapes Google',
'site_locale' => 'Sélectionner votre langue',
'enable_google2fa' => 'Activer l\'authentification à deux facteurs de Google',
'cache_driver' => 'Pilote de cache',
'session_driver' => 'Pilote de session',
],
// Login form fields
'login' => [
'login' => 'Username or Email',
'login' => 'Nom d\'utilisateur ou e-mail',
'email' => 'Email',
'password' => 'Mot de passe ',
'2fauth' => 'Code d\'authentification',
'invalid' => 'Invalid username or password',
'invalid-token' => 'Jeton non valide',
'cookies' => 'Vous devez activer les cookies pour vous identifier.',
'invalid' => 'Nom d\'utilisateur ou mot de passe invalide',
'invalid-token' => 'Jeton invalide',
'cookies' => 'Vous devez activer les cookies pour vous connecter.',
],
// Incidents form fields
'incidents' => [
'name' => 'Nom',
'status' => 'Etat',
'status' => 'Statut',
'component' => 'Composant',
'message' => 'Message ',
'message' => 'Message',
'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 ?',
'notify_subscribers' => 'Aviser les abonnés',
'visibility' => 'Visibilité de l\'incident',
'public' => 'Visibles par le public',
'public' => 'Visible par le public',
'logged_in_only' => 'Uniquement visible des utilisateurs enregistrés',
'templates' => [
'name' => 'Nom',
'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',
'description' => 'Description',
'link' => 'Lien',
'tags' => 'Mots clés',
'tags' => 'Mots-clés',
'tags-help' => 'Séparés par des virgules.',
'enabled' => 'Component enabled?',
'groups' => [
'name' => 'Nom',
'collapsed' => 'Collapse the group by default?',
'collapsed' => 'Effrondrer le groupe par défaut ?',
],
],
@@ -85,7 +85,7 @@ return [
'type_sum' => 'Somme',
'type_avg' => 'Moyenne',
'places' => 'Nombre de chiffres après la virgule',
'default_view' => 'Default View',
'default_view' => 'Vue par défaut',
'points' => [
'value' => 'Valeur',
@@ -97,13 +97,13 @@ return [
/// Application setup
'app-setup' => [
'site-name' => 'Nom du site',
'site-url' => 'Url du site',
'display-graphs' => 'Afficher les graphiques sur la page de status ?',
'site-url' => 'URL du site',
'display-graphs' => 'Afficher les graphiques sur la page de statut ?',
'about-this-page' => 'À propos de cette page',
'days-of-incidents' => 'Combien de jours d\'incidents à montrer ?',
'banner' => 'Image d\'en-tête',
'banner-help' => 'Il est recommandé de téléchargez un fichier ne dépassant pas 930px de large .',
'subscribers' => 'Permettre aux gens de s\'inscrire aux notifications par email ?',
'banner-help' => 'Il est recommandé de télécharger un fichier ne dépassant pas les 930px de large.',
'subscribers' => 'Permettre aux personnes de s\'inscrire aux notifications par e-mail ?',
],
'analytics' => [
'analytics_google' => 'Code de Google Analytics',
@@ -125,19 +125,19 @@ return [
'custom-css' => 'Feuille de style personnalisée',
],
'theme' => [
'background-color' => 'Couleur de fond',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'background-color' => 'Couleur d\'arrière-plan',
'background-fills' => 'Couleur de remplissage de l\'arrière-plan (composants, incidents, pied de page)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'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 ?',
'reds' => 'Rouge (utilisé pour les erreurs)',
'blues' => 'Bleu (utilisé pour les informations)',
'greens' => 'Vert (utilisé pour les succès)',
'yellows' => 'Jaune (utilisé pour les alertes)',
'oranges' => 'Orange (utilisé pour les notices)',
'metrics' => 'Metrics Fill',
'metrics' => 'Remplissage des données',
'links' => 'Liens',
],
],
@@ -149,13 +149,13 @@ return [
'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.',
'gravatar' => 'Change your profile picture at Gravatar.',
'user_level' => 'User Level',
'user_level' => 'Niveau de l\'utilisateur',
'levels' => [
'admin' => 'Admin',
'user' => 'Utilisateur',
],
'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' => [
'description' => 'Invite your team members by entering their email addresses here.',
@@ -165,17 +165,17 @@ return [
// Buttons
'add' => 'Ajouter',
'save' => 'Enregistrer',
'update' => 'mettre à jour',
'create' => 'Nouveau',
'save' => 'Sauvegarder',
'update' => 'Mettre à jour',
'create' => 'Créer',
'edit' => 'Modifier',
'delete' => 'Supprimer',
'submit' => 'ENVOYER',
'submit' => 'Envoyer',
'cancel' => 'Annuler',
'remove' => 'Enlever',
'invite' => 'Inviter',
'signup' => 'Inscription',
// Other
'optional' => '* En option',
'optional' => '* Optionnel',
];

View File

@@ -50,7 +50,7 @@ return [
'in' => 'Le champ :attribute sélectionné est invalide.',
'integer' => ':attribute doit être un entier.',
'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' => [
'numeric' => ':attribute ne doit pas être plus grand que :max.',
'file' => 'attribute ne doit pas être plus grand que :max kilo-octets.',
@@ -69,7 +69,7 @@ return [
'regex' => 'Le format de :attribute est invalide.',
'required' => 'Le champ :attribute est requis.',
'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_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.',

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

@@ -22,11 +22,10 @@ return [
// Incidents
'incidents' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'תחזוקה מתוזמנת',
'scheduled_at' => ', scheduled :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'The incident could not be edited. Please try again.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'תבנית נוצרה.',
'failure' => 'Something went wrong with the incident template.',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'failure' => 'The scheduled maintenance could not be deleted. Please try again.',
],
],
@@ -83,19 +83,19 @@ return [
'component_statuses' => 'רכיב סטטוסים',
'listed_group' => 'Grouped under :name',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'רכיב נוצר.',
'failure' => 'Something went wrong with the component.',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'מדדים',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'מדד נוצר.',
'failure' => 'משהו השתבש עם המדד.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'משהו השתבש עם המדד.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'למתי לתזמן את התחזוקה?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'הגדרה',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Average',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'ערך',
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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' => 'הגדרות',
'title' => 'התקנת Cachet',
'service_details' => 'פרטי שרות',
'env_setup' => 'Environment Setup',
'env_setup' => 'Environment setup',
'status_page_setup' => 'הגדרת עמוד מצב',
'show_support' => 'Show support for Cachet?',
'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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Ütemezett karbantartás',
'scheduled_at' => ', ütemezett :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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-templates' => 'Incidens Sablonok',
'add' => [
'title' => 'Add an Incident',
'title' => 'Report an incident',
'success' => 'Incidens létrehozva.',
'failure' => 'Hiba történt az incidens létrehozása során.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incidens frissítve.',
'failure' => 'Hiba történt az incidens szerkesztése során.',
],
@@ -39,8 +39,8 @@ return [
'templates' => [
'title' => 'Incidens Sablonok',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'Sablon létrehozva.',
'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',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Leírás',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Összeg',
'type_avg' => 'Átlag',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Érték',
@@ -101,7 +101,7 @@ return [
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'days-of-incidents' => 'How many days of incidents to show?',
'banner' => 'Banner Image',
'banner' => 'Banner image',
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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',
'title' => 'Cachet telepítése',
'service_details' => 'A szolgáltatás részletei',
'env_setup' => 'Environment Setup',
'env_setup' => 'Environment setup',
'status_page_setup' => 'Állapotoldal beállítás',
'show_support' => 'Cachet támogató link megjelenítése?',
'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' => [
'none' => 'Tidak ada insiden.',
'none' => 'No incidents reported',
'past' => 'Insiden sebelumnya',
'previous_week' => 'Pekan sebelumnya',
'next_week' => 'Pekan selanjutnya',
'none' => 'Tidak ada insiden.',
'scheduled' => 'Jadwal Pemeliharaan',
'scheduled_at' => ', dijadwalkan pada :timestamp',
'status' => [
@@ -125,8 +124,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

View File

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

View File

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

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

@@ -22,11 +22,10 @@ return [
// Incidents
'incidents' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Manutenzione programmata',
'scheduled_at' => ', programmata il :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,12 +21,12 @@ return [
'incident-create-template' => 'Crea Modello',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'title' => 'Report an incident',
'success' => 'Incidente aggiunto.',
'failure' => 'Qualcosa è andato storto con l\'incidente.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incidente aggiornato.',
'failure' => 'Qualcosa è andato storto con l\'incidente.',
],
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'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' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metriche',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metrica creata.',
'failure' => 'Something went wrong with the metric.',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'title' => 'Edit a metric',
'success' => 'Metrica aggiornata.',
'failure' => 'Something went wrong with the metric.',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -145,14 +145,14 @@ return [
'verified' => 'Verified',
'not_verified' => 'Non Verificato',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profilo',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'Quando è accaduto questo incidente?',
'notify_subscribers' => 'Notify Subscribers?',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Visibilità dell\'Incidente',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
@@ -80,12 +80,12 @@ return [
'description' => 'Descrizione',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Somma',
'type_avg' => 'Media',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Valore',
@@ -101,7 +101,7 @@ return [
'display-graphs' => 'Visualizzare i grafici nella pagina di stato?',
'about-this-page' => 'About this page',
'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 .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,13 +112,13 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
@@ -126,18 +126,18 @@ return [
],
'theme' => [
'background-color' => 'Colore di Sfondo',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Colore del Testo',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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' => [
'none' => 'Nothing to report',
'none' => 'No incidents reported',
'past' => 'Past Incidents',
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report',
'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp',
'status' => [
@@ -124,8 +123,8 @@ return [
'modal' => [
'close' => 'Close',
'subscribe' => [
'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.',
'title' => 'Subscribe to component updates',
'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',
],
],

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

@@ -21,14 +21,14 @@ return [
'incident-create-template' => 'Create Template',
'incident-templates' => 'Incident Templates',
'add' => [
'title' => 'Add an Incident',
'success' => 'Incident added.',
'failure' => 'Something went wrong with the incident.',
'title' => 'Report an incident',
'success' => 'Incident reported.',
'failure' => 'The incident could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit an Incident',
'title' => 'Edit an incident',
'success' => 'Incident updated.',
'failure' => 'Something went wrong with the incident.',
'failure' => 'The incident could not be edited. Please try again.',
],
'delete' => [
'success' => 'The incident has been deleted and will not show on your status page.',
@@ -39,19 +39,19 @@ return [
'templates' => [
'title' => 'Incident Templates',
'add' => [
'title' => 'Create an Incident Template',
'message' => 'You should add an Incident Template.',
'success' => 'Template created.',
'failure' => 'Something went wrong with the incident template.',
'title' => 'Create an incident template',
'message' => 'You should add an incident template.',
'success' => 'The incdent template has been created!',
'failure' => 'The incident template could not be created. Please try again.',
],
'edit' => [
'title' => 'Edit Template',
'success' => 'Template has been updated!',
'failure' => 'Something went wrong updating the incident template',
'success' => 'The incdent template has been updated!',
'failure' => 'The incident template could not be edited. Please try again.',
],
'delete' => [
'success' => 'The tmplate has been deleted.',
'failure' => 'The template could not be deleted. Please try again.',
'success' => 'The incident template has been deleted.',
'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.',
'scheduled_at' => 'Scheduled at :timestamp',
'add' => [
'title' => 'Add Scheduled Maintenance',
'success' => 'Schedule added.',
'failure' => 'Something went wrong adding the schedule.',
'title' => 'Add scheduled maintenance',
'success' => 'Scheduled maintenance has been reported!',
'failure' => 'The scheduled maintenance could not be reported. Please try again.',
],
'edit' => [
'title' => 'Edit Scheduled Maintenance',
'success' => 'Schedule has been updated!',
'failure' => 'Something went wrong editing the schedule.',
'title' => 'Edit scheduled maintenance',
'success' => 'Scheduled maintenance has been edited!',
'failure' => 'The scheduled maintenance could not be edited. Please try again.',
],
'delete' => [
'success' => 'The schedule has been deleted and will not show on your status page.',
'failure' => 'The schedule could not be deleted. Please try again.',
'success' => 'Scheduled maintenance has been deleted!',
'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',
'add' => [
'title' => 'Add a Component',
'title' => 'Add a component',
'message' => 'You should add a component.',
'success' => 'Component created.',
'failure' => 'Something went wrong with the component.',
'success' => 'Component has been added!',
'failure' => 'The component could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component',
'success' => 'Component updated.',
'failure' => 'Something went wrong with the component.',
'title' => 'Edit a component',
'success' => 'Component has been updated!',
'failure' => 'The component could not be updated. Please try again.',
],
'delete' => [
'success' => 'Component deleted.',
'failure' => 'The Component could not be deleted. Please try again.',
'success' => 'The component has been deleted!',
'failure' => 'The component could not be deleted. Please try again.',
],
// Component groups
@@ -103,18 +103,18 @@ return [
'groups' => 'Component group|Component groups',
'no_components' => 'You should add a component group.',
'add' => [
'title' => 'Add a Component Group',
'success' => 'Component group added.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Add a component group',
'success' => 'Component group has been added!',
'failure' => 'The component group could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Component Group',
'success' => 'Component group updated.',
'failure' => 'Something went wrong with the component group.',
'title' => 'Edit a component group',
'success' => 'Component group has been edited!',
'failure' => 'The component group could not be edited. Please try again.',
],
'delete' => [
'success' => 'Component Group deleted.',
'failure' => 'The Component Group could not be deleted. Please try again.',
'success' => 'Component group has been deleted!',
'failure' => 'The component group could not be deleted. Please try again.',
],
],
],
@@ -123,18 +123,18 @@ return [
'metrics' => [
'metrics' => 'Metrics',
'add' => [
'title' => 'Create a Metric',
'message' => 'You should add a Metric.',
'success' => 'Metric created.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Create a metric',
'message' => 'You should add a metric.',
'success' => 'Metric has been added!',
'failure' => 'The metric could not be added. Please try again.',
],
'edit' => [
'title' => 'Edit a Metric',
'success' => 'Metric updated.',
'failure' => 'Something went wrong with the metric.',
'title' => 'Edit a metric',
'success' => 'Metric has been updated!',
'failure' => 'The metric could not be updated. Please try again.',
],
'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.',
],
],
@@ -143,16 +143,16 @@ return [
'subscribers' => 'Subscribers',
'description' => 'Subscribers will receive email updates when incidents are created.',
'verified' => 'Verified',
'not_verified' => 'Not Verified',
'not_verified' => 'Not verified',
'add' => [
'title' => 'Add a New Subscriber',
'success' => 'Subscriber added.',
'failure' => 'Something went wrong with the component.',
'title' => 'Add a new subscriber',
'success' => 'Subscriber has been added!',
'failure' => 'The subscriber could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Subscriber',
'success' => 'Subscriber updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update subscriber',
'success' => 'Subscriber has been updated!',
'failure' => 'The subscriber could not be updated. Please try again.',
],
],
@@ -163,23 +163,23 @@ return [
'profile' => 'Profile',
'description' => 'Team Members will be able to add, modify &amp; edit components and incidents.',
'add' => [
'title' => 'Add a New Team Member',
'success' => 'Team member added.',
'failure' => 'Something went wrong with the user.',
'title' => 'Add a new team member',
'success' => 'Team member has been added!',
'failure' => 'The team member could not be added. Please try again.',
],
'edit' => [
'title' => 'Update Profile',
'success' => 'Profile updated.',
'failure' => 'Something went wrong when updating.',
'title' => 'Update profile',
'success' => 'Team member has been updated!',
'failure' => 'The team member could not be updated. Please try again.',
],
'delete' => [
'success' => 'User deleted.',
'failure' => 'Something went wrong when deleting this user.',
'success' => 'Team member has been deleted and will no longer have access to the dashboard!',
'failure' => 'The team member could not be added. Please try again.',
],
'invite' => [
'title' => 'Invite a New Team Member',
'success' => 'The users invited.',
'failure' => 'Something went wrong with the invite.',
'title' => 'Invite a new team member',
'success' => 'An invite has been sent',
'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.',
'scheduled_at' => 'When to schedule the maintenance for?',
'incident_time' => 'When did this incident occur?',
'notify_subscribers' => 'Notify Subscribers?',
'visibility' => 'Incident Visibility',
'notify_subscribers' => 'Notify subscribers?',
'visibility' => 'Incident visibility',
'public' => 'Viewable by public',
'logged_in_only' => 'Only visible to logged in users',
'templates' => [
@@ -80,12 +80,12 @@ return [
'description' => 'Description',
'description-help' => 'You may also use Markdown.',
'display-chart' => 'Display chart on status page?',
'default-value' => 'Default Value',
'calc_type' => 'Calculation of Metrics',
'default-value' => 'Default value',
'calc_type' => 'Calculation of metrics',
'type_sum' => 'Sum',
'type_avg' => 'Average',
'places' => 'Decimal Places',
'default_view' => 'Default View',
'places' => 'Decimal places',
'default_view' => 'Default view',
'points' => [
'value' => 'Value',
@@ -96,12 +96,12 @@ return [
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site Name',
'site-name' => 'Site name',
'site-url' => 'Site URL',
'display-graphs' => 'Display graphs on status page?',
'about-this-page' => 'About this page',
'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 .",
'subscribers' => 'Allow people to signup to email notifications?',
],
@@ -112,32 +112,32 @@ return [
'analytics_piwik_siteid' => 'Piwik\'s site id',
],
'localization' => [
'site-timezone' => 'Site Timezone',
'site-locale' => 'Site Language',
'date-format' => 'Date Format',
'incident-date-format' => 'Incident Timestamp Format',
'site-timezone' => 'Site timezone',
'site-locale' => 'Site language',
'date-format' => 'Date format',
'incident-date-format' => 'Incident timestamp format',
],
'security' => [
'allowed-domains' => 'Allowed Domains',
'allowed-domains' => 'Allowed domains',
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.',
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet',
'custom-css' => 'Custom stylesheet',
],
'theme' => [
'background-color' => 'Background Color',
'background-fills' => 'Background Fills (Components, Incidents, Footer)',
'banner-background-color' => 'Banner Background Color',
'banner-padding' => 'Banner Padding',
'background-color' => 'Background color',
'background-fills' => 'Background fills (components, incidents, footer)',
'banner-background-color' => 'Banner background color',
'banner-padding' => 'Banner padding',
'fullwidth-banner' => 'Enable fullwidth banner?',
'text-color' => 'Text Color',
'text-color' => 'Text color',
'dashboard-login' => 'Show dashboard button in the footer?',
'reds' => 'Red (Used for errors)',
'blues' => 'Blue (Used for information)',
'greens' => 'Green (Used for success)',
'yellows' => 'Yellow (Used for alerts)',
'oranges' => 'Orange (Used for notices)',
'metrics' => 'Metrics Fill',
'reds' => 'Red (used for errors)',
'blues' => 'Blue (used for information)',
'greens' => 'Green (used for success)',
'yellows' => 'Yellow (used for alerts)',
'oranges' => 'Orange (used for notices)',
'metrics' => 'Metrics fill',
'links' => 'Links',
],
],

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