@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); defined('BASEPATH') OR exit('No direct script access allowed'); |
|
1 | +<?php declare(strict_types = 1); defined('BASEPATH') OR exit('No direct script access allowed'); |
|
2 | 2 | |
3 | 3 | class Batoto extends Base_Site_Model { |
4 | 4 | //Batoto is a bit tricky to track. Unlike MangaFox and MangaHere, it doesn't store anything in the title_url, which means we have to get the data via other methods. |
@@ -25,12 +25,12 @@ discard block |
||
25 | 25 | |
26 | 26 | $chapter_parts = explode(':--:', $chapter); |
27 | 27 | return [ |
28 | - 'url' => "https://bato.to/reader#" . $chapter_parts[0], |
|
28 | + 'url' => "https://bato.to/reader#".$chapter_parts[0], |
|
29 | 29 | 'number' => $chapter_parts[1] |
30 | 30 | ]; |
31 | 31 | } |
32 | 32 | |
33 | - public function getTitleData(string $title_url, bool $firstGet = FALSE) : ?array { |
|
33 | + public function getTitleData(string $title_url, bool $firstGet = FALSE) : ? array { |
|
34 | 34 | $titleData = []; |
35 | 35 | |
36 | 36 | $title_parts = explode(':--:', $title_url); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | preg_match('/^(?:Vol\.(?<volume>\S+) )?(?:Ch.(?<chapter>[^\s:]+)(?:\s?-\s?(?<extra>[0-9]+))?):?.*/', trim($data['nodes_chapter']->nodeValue), $text); |
62 | 62 | $chapter_url = $data['nodes_chapter']->getAttribute('href'); |
63 | - $titleData['latest_chapter'] = substr($chapter_url, strpos($chapter_url, "reader#") + 7) . ':--:' . ((!empty($text['volume']) ? 'v'.$text['volume'].'/' : '') . 'c'.$text['chapter'] . (!empty($text['extra']) ? '-'.$text['extra'] : '')); |
|
63 | + $titleData['latest_chapter'] = substr($chapter_url, strpos($chapter_url, "reader#") + 7).':--:'.((!empty($text['volume']) ? 'v'.$text['volume'].'/' : '').'c'.$text['chapter'].(!empty($text['extra']) ? '-'.$text['extra'] : '')); |
|
64 | 64 | |
65 | 65 | $dateString = $data['nodes_latest']->nodeValue; |
66 | 66 | if($dateString == 'An hour ago') { |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | $chapter = $nodes_chapter->item(0); |
171 | 171 | preg_match('/^(?:Vol\.(?<volume>\S+) )?(?:Ch.(?<chapter>[^\s:]+)(?:\s?-\s?(?<extra>[0-9]+))?):?.*/', trim($chapter->nodeValue), $text); |
172 | 172 | $chapter_url = $chapter->getAttribute('href'); |
173 | - $titleData['latest_chapter'] = substr($chapter_url, strpos($chapter_url, "reader#") + 7) . ':--:' . ((!empty($text['volume']) ? 'v'.$text['volume'].'/' : '') . 'c'.$text['chapter'] . (!empty($text['extra']) ? '-'.$text['extra'] : '')); |
|
173 | + $titleData['latest_chapter'] = substr($chapter_url, strpos($chapter_url, "reader#") + 7).':--:'.((!empty($text['volume']) ? 'v'.$text['volume'].'/' : '').'c'.$text['chapter'].(!empty($text['extra']) ? '-'.$text['extra'] : '')); |
|
174 | 174 | |
175 | 175 | $dateString = $nodes_latest->item(0)->nodeValue; |
176 | 176 | if($dateString == 'An hour ago') { |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); defined('BASEPATH') OR exit('No direct script access allowed'); |
|
1 | +<?php declare(strict_types = 1); defined('BASEPATH') OR exit('No direct script access allowed'); |
|
2 | 2 | |
3 | 3 | class Tracker_Admin_Model extends Tracker_Base_Model { |
4 | 4 | public function __construct() { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | // @formatter:on |
65 | 65 | |
66 | 66 | if($query->num_rows() > 0) { |
67 | - foreach ($query->result() as $row) { |
|
67 | + foreach($query->result() as $row) { |
|
68 | 68 | print "> {$row->title} <{$row->site_class}> | <{$row->title_id}>"; //Print this prior to doing anything so we can more easily find out if something went wrong |
69 | 69 | $titleData = $this->sites->{$row->site_class}->getTitleData($row->title_url); |
70 | 70 | if(is_array($titleData) && !is_null($titleData['latest_chapter'])) { |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $query = $query->get(); |
143 | 143 | |
144 | 144 | if($query->num_rows() > 0) { |
145 | - foreach ($query->result() as $row) { |
|
145 | + foreach($query->result() as $row) { |
|
146 | 146 | print "> {$row->title} <{$row->site_class}> | <{$row->title_id}>"; //Print this prior to doing anything so we can more easily find out if something went wrong |
147 | 147 | $titleData = $this->sites->{$row->site_class}->getTitleData($row->title_url); |
148 | 148 | if(is_array($titleData) && !is_null($titleData['latest_chapter'])) { |
@@ -183,10 +183,10 @@ discard block |
||
183 | 183 | ->get(); |
184 | 184 | |
185 | 185 | $sites = $query->result_array(); |
186 | - foreach ($sites as $site) { |
|
186 | + foreach($sites as $site) { |
|
187 | 187 | $siteClass = $this->sites->{$site['site_class']}; |
188 | 188 | if($titleDataList = $siteClass->doCustomUpdate()) { |
189 | - foreach ($titleDataList as $titleURL => $titleData) { |
|
189 | + foreach($titleDataList as $titleURL => $titleData) { |
|
190 | 190 | print "> {$titleData['title']} <{$site['site_class']}>"; //Print this prior to doing anything so we can more easily find out if something went wrong |
191 | 191 | if(is_array($titleData) && !is_null($titleData['latest_chapter'])) { |
192 | 192 | if($dbTitleData = $this->Tracker->title->getID($titleURL, (int) $site['id'], FALSE, TRUE)) { |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | $query = $this->db->select('tracker_titles.id, tracker_titles.title_url, tracker_sites.site_class') |
227 | 227 | ->from('tracker_titles') |
228 | 228 | ->join('tracker_sites', 'tracker_sites.id = tracker_titles.site_id', 'left') |
229 | - ->where('tracker_titles.followed','N') |
|
229 | + ->where('tracker_titles.followed', 'N') |
|
230 | 230 | ->where('tracker_titles !=', '255') |
231 | 231 | ->where('tracker_sites.status', 'enabled') |
232 | 232 | ->where('tracker_sites.use_custom', 'Y') |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | // @formatter:on |
285 | 285 | |
286 | 286 | if($query->num_rows() > 0) { |
287 | - foreach ($query->result() as $row) { |
|
287 | + foreach($query->result() as $row) { |
|
288 | 288 | print "> {$row->title} <{$row->site_class}>"; //Print this prior to doing anything so we can more easily find out if something went wrong |
289 | 289 | $titleData = $this->sites->{$row->site_class}->getTitleData($row->title_url); |
290 | 290 | if($titleData['title'] && is_array($titleData) && !is_null($titleData['latest_chapter'])) { |
@@ -19,17 +19,17 @@ discard block |
||
19 | 19 | function __construct() { |
20 | 20 | $this->ci = & get_instance(); |
21 | 21 | $this->ci->load->config('recaptcha', TRUE); |
22 | - if ($this->ci->config->item('recaptcha_secretkey', 'recaptcha') == NULL || $this->ci->config->item('recaptcha_secretkey', 'recaptcha') == "") { |
|
22 | + if($this->ci->config->item('recaptcha_secretkey', 'recaptcha') == NULL || $this->ci->config->item('recaptcha_secretkey', 'recaptcha') == "") { |
|
23 | 23 | die("To use reCAPTCHA you must get an API key from <a href='" |
24 | - . $this->signup_url . "'>" . $this->signup_url . "</a>"); |
|
24 | + . $this->signup_url."'>".$this->signup_url."</a>"); |
|
25 | 25 | } |
26 | - if ($this->ci->config->item('recaptcha_sitekey', 'recaptcha') == NULL || $this->ci->config->item('recaptcha_sitekey', 'recaptcha') == "") { |
|
26 | + if($this->ci->config->item('recaptcha_sitekey', 'recaptcha') == NULL || $this->ci->config->item('recaptcha_sitekey', 'recaptcha') == "") { |
|
27 | 27 | die("To use reCAPTCHA you must get an API key from <a href='" |
28 | - . $this->signup_url . "'>" . $this->signup_url . "</a>"); |
|
28 | + . $this->signup_url."'>".$this->signup_url."</a>"); |
|
29 | 29 | } |
30 | 30 | $this->_secret = $this->ci->config->item('recaptcha_secretkey', 'recaptcha'); |
31 | 31 | $this->_sitekey = $this->ci->config->item('recaptcha_sitekey', 'recaptcha'); |
32 | - if ($this->ci->config->item('lang', 'recaptcha') == NULL || $this->ci->config->item('lang', 'recaptcha') == "") { |
|
32 | + if($this->ci->config->item('lang', 'recaptcha') == NULL || $this->ci->config->item('lang', 'recaptcha') == "") { |
|
33 | 33 | $this->_lang = 'en'; |
34 | 34 | } else { |
35 | 35 | $this->_lang = $this->ci->config->item('lang', 'recaptcha'); |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | */ |
44 | 44 | private function _encodeQS($data) { |
45 | 45 | $req = ""; |
46 | - foreach ($data as $key => $value) { |
|
47 | - $req .= $key . '=' . urlencode(stripslashes($value)) . '&'; |
|
46 | + foreach($data as $key => $value) { |
|
47 | + $req .= $key.'='.urlencode(stripslashes($value)).'&'; |
|
48 | 48 | } |
49 | 49 | return substr($req, 0, strlen($req) - 1); |
50 | 50 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | private function _submitHTTPGet($path, $data) { |
59 | 59 | $req = $this->_encodeQS($data); |
60 | - $response = file_get_contents($path . $req); |
|
60 | + $response = file_get_contents($path.$req); |
|
61 | 61 | return $response; |
62 | 62 | } |
63 | 63 | |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | * @return string embedded HTML |
68 | 68 | */ |
69 | 69 | public function render() { |
70 | - $return = '<div class="g-recaptcha" data-sitekey="' . $this->_sitekey . '"></div> |
|
71 | - <script src="https://www.google.com/recaptcha/api.js?hl=' . $this->_lang . '" async defer></script>'; |
|
70 | + $return = '<div class="g-recaptcha" data-sitekey="'.$this->_sitekey.'"></div> |
|
71 | + <script src="https://www.google.com/recaptcha/api.js?hl=' . $this->_lang.'" async defer></script>'; |
|
72 | 72 | return $return; |
73 | 73 | } |
74 | 74 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @return array Array of response |
80 | 80 | */ |
81 | 81 | public function verifyResponse($response, $remoteIp = NULL) { |
82 | - if ($response == null || strlen($response) == 0) { |
|
82 | + if($response == null || strlen($response) == 0) { |
|
83 | 83 | // Empty user's input |
84 | 84 | $return = array( |
85 | 85 | 'success' => FALSE, |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | ); |
98 | 98 | $answers = json_decode($getResponse, TRUE); |
99 | 99 | |
100 | - if (trim($answers ['success']) == true) { |
|
100 | + if(trim($answers ['success']) == true) { |
|
101 | 101 | // Right captcha! |
102 | 102 | $return = array( |
103 | 103 | 'success' => TRUE, |
@@ -6,7 +6,7 @@ |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | $config['table'] = 'rate_limit'; |
9 | -$config['base_limit'] = 0; // Infinite |
|
9 | +$config['base_limit'] = 0; // Infinite |
|
10 | 10 | $config['header_show'] = TRUE; // Should a rate limit info header be injected? |
11 | 11 | $config['header_prefix'] = 'X-RateLimit-'; |
12 | 12 | $config['whitelist'] = array('127.0.0.1'); // Clients ignored by the limiter |
@@ -217,7 +217,7 @@ |
||
217 | 217 | * @return bool Is whitelisted |
218 | 218 | */ |
219 | 219 | public function is_whitelisted($ip = null) { |
220 | - $ip = $ip ?: $this->CI->input->ip_address(); |
|
220 | + $ip = $ip ?: $this->CI->input->ip_address(); |
|
221 | 221 | return in_array($ip, $this->whitelist); |
222 | 222 | } |
223 | 223 |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
|
1 | +<?php if(!defined('BASEPATH')) exit('No direct script access allowed'); |
|
2 | 2 | /** |
3 | 3 | * Name: Ion Auth Lang - Turkish (UTF-8) |
4 | 4 | * |
@@ -19,40 +19,40 @@ discard block |
||
19 | 19 | */ |
20 | 20 | |
21 | 21 | // Account Creation |
22 | -$lang['account_creation_successful'] = 'Üyelik kaydınız başarıyla tamamlandı'; |
|
23 | -$lang['account_creation_unsuccessful'] = 'Üyelik kaydınız yapılamadı'; |
|
24 | -$lang['account_creation_duplicate_email'] = 'E-posta adresi geçersiz ya da daha önceden alınmış'; |
|
22 | +$lang['account_creation_successful'] = 'Üyelik kaydınız başarıyla tamamlandı'; |
|
23 | +$lang['account_creation_unsuccessful'] = 'Üyelik kaydınız yapılamadı'; |
|
24 | +$lang['account_creation_duplicate_email'] = 'E-posta adresi geçersiz ya da daha önceden alınmış'; |
|
25 | 25 | $lang['account_creation_duplicate_identity'] = 'Kullanıcı adı geçersiz ya da daha önceden alınmış'; |
26 | 26 | $lang['account_creation_missing_default_group'] = 'Herhangi bir varsayılan grup ayarlanmamış'; |
27 | 27 | $lang['account_creation_invalid_default_group'] = 'Geçersiz bir varsayılan grup seçimi'; |
28 | 28 | |
29 | 29 | // Password |
30 | 30 | $lang['password_change_successful'] = 'Şifreniz değiştirildi'; |
31 | -$lang['password_change_unsuccessful'] = 'Şifre değiştirme isteği gerçekleştirilemedi'; |
|
31 | +$lang['password_change_unsuccessful'] = 'Şifre değiştirme isteği gerçekleştirilemedi'; |
|
32 | 32 | $lang['forgot_password_successful'] = 'Yeni şifreniz e-posta adresinize gönderildi'; |
33 | -$lang['forgot_password_unsuccessful'] = 'Şifre yenileme isteği gerçekleştirilemedi'; |
|
33 | +$lang['forgot_password_unsuccessful'] = 'Şifre yenileme isteği gerçekleştirilemedi'; |
|
34 | 34 | |
35 | 35 | // Activation |
36 | -$lang['activate_successful'] = 'Hesap başarıyla etkinleştirildi'; |
|
37 | -$lang['activate_unsuccessful'] = 'Hesap etkinleştirme başarısız'; |
|
38 | -$lang['deactivate_successful'] = 'Hesap devre dışı bırakıldı'; |
|
36 | +$lang['activate_successful'] = 'Hesap başarıyla etkinleştirildi'; |
|
37 | +$lang['activate_unsuccessful'] = 'Hesap etkinleştirme başarısız'; |
|
38 | +$lang['deactivate_successful'] = 'Hesap devre dışı bırakıldı'; |
|
39 | 39 | $lang['deactivate_unsuccessful'] = 'Hesap devre dışı bırakma isteğiniz gerçekleştirilemedi'; |
40 | -$lang['activation_email_successful'] = 'Hesap etkinleştirme e-postası gönderildi'; |
|
41 | -$lang['activation_email_unsuccessful'] = 'Hesap etkinleştirme e-postası gönderilemedi'; |
|
42 | -$lang['deactivate_current_user_unsuccessful']= 'You cannot De-Activate your self.'; |
|
40 | +$lang['activation_email_successful'] = 'Hesap etkinleştirme e-postası gönderildi'; |
|
41 | +$lang['activation_email_unsuccessful'] = 'Hesap etkinleştirme e-postası gönderilemedi'; |
|
42 | +$lang['deactivate_current_user_unsuccessful'] = 'You cannot De-Activate your self.'; |
|
43 | 43 | |
44 | 44 | // Login / Logout |
45 | -$lang['login_successful'] = 'Giriş başarılı'; |
|
46 | -$lang['login_unsuccessful'] = 'Giriş başarısız'; |
|
45 | +$lang['login_successful'] = 'Giriş başarılı'; |
|
46 | +$lang['login_unsuccessful'] = 'Giriş başarısız'; |
|
47 | 47 | $lang['login_unsuccessful_not_active'] = 'Giriş başarısız, hesap aktif değil'; |
48 | 48 | $lang['login_timeout'] = 'Oturum zaman aşımı, daha sonra tekrar deneyiniz.'; |
49 | 49 | $lang['logout_successful'] = 'Çıkış başarılı'; |
50 | 50 | |
51 | 51 | // Account Changes |
52 | 52 | $lang['update_successful'] = 'Üyelik bilgileri güncellendi'; |
53 | -$lang['update_unsuccessful'] = 'Üyelik bilgileri güncellenemedi'; |
|
53 | +$lang['update_unsuccessful'] = 'Üyelik bilgileri güncellenemedi'; |
|
54 | 54 | $lang['delete_successful'] = 'Kullanıcı silindi'; |
55 | -$lang['delete_unsuccessful'] = 'Kullanıcı silme başarısız'; |
|
55 | +$lang['delete_unsuccessful'] = 'Kullanıcı silme başarısız'; |
|
56 | 56 | |
57 | 57 | // Groups |
58 | 58 | $lang['group_creation_successful'] = 'Grup başarıyla oluşturuldu'; |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $lang['group_delete_successful'] = 'Grup silindi '; |
62 | 62 | $lang['group_delete_unsuccessful'] = 'Grup silinemedi'; |
63 | 63 | $lang['group_delete_notallowed'] = 'Yönetici grup silinemez'; |
64 | -$lang['group_name_required'] = 'Grup adı alanı gereklidir'; |
|
64 | +$lang['group_name_required'] = 'Grup adı alanı gereklidir'; |
|
65 | 65 | $lang['group_name_admin_not_alter'] = 'Yönetici grup adı değiştirilemez'; |
66 | 66 | |
67 | 67 | // Activation Email |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
|
1 | +<?php if(!defined('BASEPATH')) exit('No direct script access allowed'); |
|
2 | 2 | /** |
3 | 3 | * Name: Auth Lang - Turkish |
4 | 4 | * |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | $lang['forgot_password_username_identity_label'] = 'Kullanıcı Adı'; |
136 | 136 | $lang['forgot_password_email_identity_label'] = 'Eposta'; |
137 | 137 | $lang['forgot_password_email_not_found'] = 'Belirttiğiniz Eposta adresi için bir kayıt bulunamadı.'; |
138 | -$lang['forgot_password_identity_not_found'] = 'No record of that username address.'; |
|
138 | +$lang['forgot_password_identity_not_found'] = 'No record of that username address.'; |
|
139 | 139 | |
140 | 140 | // Reset Password |
141 | 141 | $lang['reset_password_heading'] = 'Şifre Değiştirme'; |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
|
1 | +<?php if(!defined('BASEPATH')) exit('No direct script access allowed'); |
|
2 | 2 | /** |
3 | 3 | * Name: Ion Auth Lang - Bulgarian |
4 | 4 | * |
@@ -15,9 +15,9 @@ discard block |
||
15 | 15 | */ |
16 | 16 | |
17 | 17 | // Account Creation |
18 | -$lang['account_creation_successful'] = 'Регистрацията бе създадена успешно'; |
|
19 | -$lang['account_creation_unsuccessful'] = 'Неуспешен опит за създаване на регистрация'; |
|
20 | -$lang['account_creation_duplicate_email'] = 'Email адреса е вече използван или невалиден'; |
|
18 | +$lang['account_creation_successful'] = 'Регистрацията бе създадена успешно'; |
|
19 | +$lang['account_creation_unsuccessful'] = 'Неуспешен опит за създаване на регистрация'; |
|
20 | +$lang['account_creation_duplicate_email'] = 'Email адреса е вече използван или невалиден'; |
|
21 | 21 | $lang['account_creation_duplicate_identity'] = 'Потребителското име е вече използвано или невалидно'; |
22 | 22 | |
23 | 23 | // TODO Please Translate |
@@ -26,31 +26,31 @@ discard block |
||
26 | 26 | |
27 | 27 | // Password |
28 | 28 | $lang['password_change_successful'] = 'Паролата бе сменена успешно'; |
29 | -$lang['password_change_unsuccessful'] = 'Неуспешен опит за смяна на паролата'; |
|
29 | +$lang['password_change_unsuccessful'] = 'Неуспешен опит за смяна на паролата'; |
|
30 | 30 | $lang['forgot_password_successful'] = 'Изпратен е Email за нулиране на паролата'; |
31 | -$lang['forgot_password_unsuccessful'] = 'Неуспешен опит за нулиране на паролата'; |
|
31 | +$lang['forgot_password_unsuccessful'] = 'Неуспешен опит за нулиране на паролата'; |
|
32 | 32 | |
33 | 33 | // Activation |
34 | -$lang['activate_successful'] = 'Регистрацията е активирана'; |
|
35 | -$lang['activate_unsuccessful'] = 'Неуспешен опит за активиране на регистрацията'; |
|
36 | -$lang['deactivate_successful'] = 'Регистрацията е деактивирана'; |
|
34 | +$lang['activate_successful'] = 'Регистрацията е активирана'; |
|
35 | +$lang['activate_unsuccessful'] = 'Неуспешен опит за активиране на регистрацията'; |
|
36 | +$lang['deactivate_successful'] = 'Регистрацията е деактивирана'; |
|
37 | 37 | $lang['deactivate_unsuccessful'] = 'Неуспешен опит за деактивиране на регистрацията'; |
38 | 38 | $lang['activation_email_successful'] = 'Изпратен е Email за активиране на регистрацията'; |
39 | -$lang['activation_email_unsuccessful'] = 'Неуспешен опит за изпращане на Email за активация'; |
|
40 | -$lang['deactivate_current_user_unsuccessful']= 'You cannot De-Activate your self.'; |
|
39 | +$lang['activation_email_unsuccessful'] = 'Неуспешен опит за изпращане на Email за активация'; |
|
40 | +$lang['deactivate_current_user_unsuccessful'] = 'You cannot De-Activate your self.'; |
|
41 | 41 | |
42 | 42 | // Login / Logout |
43 | -$lang['login_successful'] = 'Успешен вход в системата'; |
|
44 | -$lang['login_unsuccessful'] = 'Неуспешен вход в системата'; |
|
45 | -$lang['login_unsuccessful_not_active'] = 'Регистрацията не е активирана'; |
|
46 | -$lang['login_timeout'] = 'Временно заключен. Моля опитайте по-късно'; |
|
43 | +$lang['login_successful'] = 'Успешен вход в системата'; |
|
44 | +$lang['login_unsuccessful'] = 'Неуспешен вход в системата'; |
|
45 | +$lang['login_unsuccessful_not_active'] = 'Регистрацията не е активирана'; |
|
46 | +$lang['login_timeout'] = 'Временно заключен. Моля опитайте по-късно'; |
|
47 | 47 | $lang['logout_successful'] = 'Успешен изход от системата'; |
48 | 48 | |
49 | 49 | // Account Changes |
50 | 50 | $lang['update_successful'] = 'Регистрацията беше актуализирана успешно'; |
51 | -$lang['update_unsuccessful'] = 'Неуспешен опит за актуализиране на регистрацията'; |
|
52 | -$lang['delete_successful'] = 'Потребителя бе изтрит'; |
|
53 | -$lang['delete_unsuccessful'] = 'Неуспешен опит за изтриване на потребител'; |
|
51 | +$lang['update_unsuccessful'] = 'Неуспешен опит за актуализиране на регистрацията'; |
|
52 | +$lang['delete_successful'] = 'Потребителя бе изтрит'; |
|
53 | +$lang['delete_unsuccessful'] = 'Неуспешен опит за изтриване на потребител'; |
|
54 | 54 | |
55 | 55 | // Groups |
56 | 56 | $lang['group_creation_successful'] = 'Групата бе създадена успешно'; |
@@ -60,21 +60,21 @@ discard block |
||
60 | 60 | $lang['group_delete_unsuccessful'] = 'Неуспешен опит за изтриване на групата'; |
61 | 61 | //TO DO Please translate |
62 | 62 | $lang['group_delete_notallowed'] = 'Can\'t delete the administrators\' group'; |
63 | -$lang['group_name_required'] = 'Group name is a required field'; |
|
63 | +$lang['group_name_required'] = 'Group name is a required field'; |
|
64 | 64 | $lang['group_name_admin_not_alter'] = 'Admin group name can not be changed'; |
65 | 65 | |
66 | 66 | //TO DO Please translate |
67 | 67 | // Activation Email |
68 | -$lang['email_activation_subject'] = 'Активиране на регистрацията'; |
|
68 | +$lang['email_activation_subject'] = 'Активиране на регистрацията'; |
|
69 | 69 | $lang['email_activate_heading'] = 'Activate account for %s'; |
70 | 70 | $lang['email_activate_subheading'] = 'Please click this link to %s.'; |
71 | 71 | $lang['email_activate_link'] = 'Activate Your Account'; |
72 | 72 | // Forgot Password Email |
73 | -$lang['email_forgotten_password_subject'] = 'Проверка за забравена парола'; |
|
73 | +$lang['email_forgotten_password_subject'] = 'Проверка за забравена парола'; |
|
74 | 74 | $lang['email_forgot_password_heading'] = 'Reset Password for %s'; |
75 | 75 | $lang['email_forgot_password_subheading'] = 'Please click this link to %s.'; |
76 | 76 | $lang['email_forgot_password_link'] = 'Reset Your Password'; |
77 | 77 | // New Password Email |
78 | -$lang['email_new_password_subject'] = 'Нова парола'; |
|
78 | +$lang['email_new_password_subject'] = 'Нова парола'; |
|
79 | 79 | $lang['email_new_password_heading'] = 'New Password for %s'; |
80 | 80 | $lang['email_new_password_subheading'] = 'Your password has been reset to: %s'; |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
|
1 | +<?php if(!defined('BASEPATH')) exit('No direct script access allowed'); |
|
2 | 2 | /** |
3 | 3 | * Name: Auth Lang - English |
4 | 4 | * |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | $lang['forgot_password_username_identity_label'] = 'Username'; |
135 | 135 | $lang['forgot_password_email_identity_label'] = 'Email'; |
136 | 136 | $lang['forgot_password_email_not_found'] = 'No record of that email address.'; |
137 | -$lang['forgot_password_identity_not_found'] = 'No record of that username address.'; |
|
137 | +$lang['forgot_password_identity_not_found'] = 'No record of that username address.'; |
|
138 | 138 | |
139 | 139 | // Reset Password |
140 | 140 | $lang['reset_password_heading'] = 'Change Password'; |