2016-01-29 22:05:05 +00:00
< ? php
/*
* This file is part of Cachet .
*
* ( c ) Alt Three Services Limited
*
* For the full copyright and license information , please view the LICENSE
* file that was distributed with this source code .
*/
return [
// Setup form fields
'setup' => [
'email' => 'E-posta' ,
2016-04-17 17:17:29 +01:00
'username' => 'Kullanı cı adı ' ,
2016-01-29 22:05:05 +00:00
'password' => 'Parola' ,
2016-04-17 17:17:29 +01:00
'site_name' => 'Site Adı ' ,
'site_domain' => 'Site Alan Adı ' ,
2016-01-29 22:05:05 +00:00
'site_timezone' => 'Zaman dilimi seçin' ,
'site_locale' => 'Dil seçin' ,
'enable_google2fa' => 'Google İki Faktor Doğrulamayı etkinleştir' ,
2016-04-17 17:17:29 +01:00
'cache_driver' => 'Önbellek Sürücüsü' ,
'session_driver' => 'Oturum Sürücüsü' ,
2016-01-29 22:05:05 +00:00
],
// Login form fields
'login' => [
2016-04-17 17:17:29 +01:00
'login' => 'Kullanı cı Adı veya E-Posta' ,
2016-01-29 22:05:05 +00:00
'email' => 'E-posta' ,
'password' => 'Parola' ,
'2fauth' => 'Onaylama Kodu' ,
2016-04-17 17:17:29 +01:00
'invalid' => 'Kullanı cı adı veya parola hatalı ' ,
'invalid-token' => 'Geçersiz jeton' ,
'cookies' => 'Oturum açabilmek yapabilmek için çerezleri açmalı sı nı z.' ,
2016-01-29 22:05:05 +00:00
],
// Incidents form fields
'incidents' => [
'name' => 'İsim' ,
'status' => 'Durum' ,
'component' => 'Bileşen' ,
'message' => 'Mesaj' ,
2016-04-17 17:17:29 +01:00
'message-help' => 'Markdown işaretleri kullanabilirsiniz.' ,
2016-01-29 22:05:05 +00:00
'scheduled_at' => 'Bakı m ne zaman?' ,
'incident_time' => 'When did this incident occur?' ,
2016-02-18 14:16:40 +00:00
'notify_subscribers' => 'Notify subscribers?' ,
2016-03-20 16:26:21 +00:00
'visibility' => 'Incident Visibility' ,
2016-01-29 22:05:05 +00:00
'public' => 'Herkese açı k' ,
'logged_in_only' => 'Only visible to logged in users' ,
'templates' => [
'name' => 'İsim' ,
'template' => 'Tema' ,
'twig' => 'Incident Templates can make use of the <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> templating language.' ,
],
],
// Components form fields
'components' => [
'name' => 'İsim' ,
'status' => 'Durum' ,
'group' => 'Grup' ,
'description' => 'Açı klama' ,
2016-04-17 17:17:29 +01:00
'link' => 'Bağlantı ' ,
2016-01-29 22:05:05 +00:00
'tags' => 'Etiketler' ,
2016-04-17 17:17:29 +01:00
'tags-help' => 'Virgül ile ayrı lmı ş.' ,
2016-01-29 22:05:05 +00:00
'enabled' => 'Component enabled?' ,
'groups' => [
2016-03-20 16:26:21 +00:00
'name' => 'İsim' ,
'collapsing' => 'Choose visibility of the group' ,
'visible' => 'Always expanded' ,
'collapsed' => 'Collapse the group by default' ,
'collapsed_incident' => 'Collapse the group, but expand if there are issues' ,
2016-01-29 22:05:05 +00:00
],
],
// Metric form fields
'metrics' => [
'name' => 'İsim' ,
'suffix' => 'Suffix' ,
'description' => 'Açı klama' ,
2016-04-17 17:17:29 +01:00
'description-help' => 'Markdown işaretleri kullanabilirsiniz.' ,
2016-01-29 22:05:05 +00:00
'display-chart' => 'Display chart on status page?' ,
2016-04-17 17:17:29 +01:00
'default-value' => 'Varsayı lan değer' ,
2016-02-18 14:16:40 +00:00
'calc_type' => 'Calculation of metrics' ,
2016-01-29 22:05:05 +00:00
'type_sum' => 'Toplam' ,
'type_avg' => 'Ortalama' ,
2016-02-18 14:16:40 +00:00
'places' => 'Decimal places' ,
'default_view' => 'Default view' ,
2016-01-29 22:05:05 +00:00
'points' => [
'value' => 'Değer' ,
],
],
// Settings
'settings' => [
/// Application setup
'app-setup' => [
2016-04-17 17:17:29 +01:00
'site-name' => 'Site Adı ' ,
'site-url' => 'Site url adresi' ,
2016-01-29 22:05:05 +00:00
'display-graphs' => 'Display graphs on status page?' ,
'about-this-page' => 'Hakkı nda' ,
'days-of-incidents' => 'How many days of incidents to show?' ,
2016-03-20 16:26:21 +00:00
'banner' => 'Banner Image' ,
2016-01-29 22:05:05 +00:00
'banner-help' => " It's recommended that you upload files no bigger than 930px wide . " ,
'subscribers' => 'Allow people to signup to email notifications?' ,
],
'analytics' => [
'analytics_google' => 'Google Analytics code' ,
'analytics_gosquared' => 'GoSquared Analytics code' ,
'analytics_piwik_url' => 'URL of your Piwik instance (without http(s)://)' ,
'analytics_piwik_siteid' => 'Piwik\'s site id' ,
],
'localization' => [
2016-02-18 14:16:40 +00:00
'site-timezone' => 'Site timezone' ,
'site-locale' => 'Site language' ,
'date-format' => 'Date format' ,
'incident-date-format' => 'Incident timestamp format' ,
2016-01-29 22:05:05 +00:00
],
'security' => [
2016-02-18 14:16:40 +00:00
'allowed-domains' => 'Allowed domains' ,
2016-01-29 22:05:05 +00:00
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.' ,
],
'stylesheet' => [
2016-03-20 16:26:21 +00:00
'custom-css' => 'Custom Stylesheet' ,
2016-01-29 22:05:05 +00:00
],
'theme' => [
2016-03-20 16:26:21 +00:00
'background-color' => 'Background Color' ,
2016-02-18 14:16:40 +00:00
'background-fills' => 'Background fills (components, incidents, footer)' ,
'banner-background-color' => 'Banner background color' ,
'banner-padding' => 'Banner padding' ,
2016-01-29 22:05:05 +00:00
'fullwidth-banner' => 'Enable fullwidth banner?' ,
2016-03-20 16:26:21 +00:00
'text-color' => 'Text Color' ,
2016-01-29 22:05:05 +00:00
'dashboard-login' => 'Show dashboard button in the footer?' ,
2016-02-18 14:16:40 +00:00
'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' ,
2016-01-29 22:05:05 +00:00
'links' => 'Links' ,
],
],
'user' => [
2016-04-17 17:17:29 +01:00
'username' => 'Kullanı cı adı ' ,
2016-01-29 22:05:05 +00:00
'email' => 'E-posta' ,
'password' => 'Parola' ,
2016-04-17 17:17:29 +01:00
'api-token' => 'API jetonu' ,
2016-01-29 22:05:05 +00:00
'api-token-help' => 'Regenerating your API token will prevent existing applications from accessing Cachet.' ,
'gravatar' => 'Change your profile picture at Gravatar.' ,
'user_level' => 'User Level' ,
'levels' => [
'admin' => 'Admin' ,
2016-04-17 17:17:29 +01:00
'user' => 'Kullanı cı ' ,
2016-01-29 22:05:05 +00:00
],
'2fa' => [
'help' => 'Enabling two factor authentication increases security of your account. You will need to download <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a> or a similar app on to your mobile device. When you login you will be asked to provide a token generated by the app.' ,
],
'team' => [
2016-04-17 17:17:29 +01:00
'description' => 'E-posta adreslerini buraya girerek ekip üyelerini davet edin.' ,
'email' => 'E-posta #:id' ,
2016-01-29 22:05:05 +00:00
],
],
// Buttons
2016-04-17 17:17:29 +01:00
'add' => 'Ekle' ,
'save' => 'Kaydet' ,
'update' => 'Güncelle' ,
'create' => 'Oluştur' ,
'edit' => 'Düzenle' ,
'delete' => 'Sil' ,
'submit' => 'Gönder' ,
'cancel' => 'İptal' ,
'remove' => 'Kaldı r' ,
'invite' => 'Davet et' ,
'signup' => 'Kayı t Ol' ,
2016-01-29 22:05:05 +00:00
// Other
2016-04-17 17:17:29 +01:00
'optional' => '* İsteğe bağlı ' ,
2016-01-29 22:05:05 +00:00
];