Skip to content

Commit 4583501

Browse files
Merge pull request chriskacerguis#564 from ivantcholakov/master
A minor language line correction
2 parents 186f52e + 1bc2301 commit 4583501

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>403 Forbidden</title>
5+
</head>
6+
<body>
7+
8+
<p>Directory access is forbidden.</p>
9+
10+
</body>
11+
</html>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
/*
4+
* Bulgarian language
5+
*/
6+
7+
$lang['text_rest_invalid_api_key'] = 'Невалиден API ключ %s';
8+
$lang['text_rest_invalid_credentials'] = 'Невалидни данни за достъп';
9+
$lang['text_rest_ip_denied'] = 'Отказан IP адрес';
10+
$lang['text_rest_ip_unauthorized'] = 'Неоторизиран IP адрес';
11+
$lang['text_rest_unauthorized'] = 'Неоторизиран достъп';
12+
$lang['text_rest_ajax_only'] = 'Само AJAX заявки са разрешени';
13+
$lang['text_rest_api_key_unauthorized'] = 'API ключът не е оторизиран зо достъп до заявения контролер';
14+
$lang['text_rest_api_key_permissions'] = 'API ключът няма достатъчно права';
15+
$lang['text_rest_api_key_time_limit'] = 'API ключът е изполван с превишаване на времевия лимит за този метод';
16+
$lang['text_rest_unknown_method'] = 'Неизвестен метод';
17+
$lang['text_rest_unsupported'] = 'Неподдържан протокол';

application/language/english/rest_controller_lang.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
$lang['text_rest_ip_denied'] = 'IP denied';
1010
$lang['text_rest_ip_unauthorized'] = 'IP unauthorized';
1111
$lang['text_rest_unauthorized'] = 'Unauthorized';
12-
$lang['text_rest_ajax_only'] = 'Only Ajax requests are only allowed';
12+
$lang['text_rest_ajax_only'] = 'Only AJAX requests are allowed';
1313
$lang['text_rest_api_key_unauthorized'] = 'This API key does not have access to the requested controller';
1414
$lang['text_rest_api_key_permissions'] = 'This API key does not have enough permissions';
1515
$lang['text_rest_api_key_time_limit'] = 'This API key has reached the time limit for this method';

0 commit comments

Comments
 (0)