@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $('#delete').click(function() { |
233 | 233 | var trans_id = $('.trans-id').val(); |
234 | 234 | <?php $url_route = url('/').'/'.config('laralang.default.prefix').'/delete'; |
235 | - ?> |
|
235 | + ?> |
|
236 | 236 | $.ajax({ |
237 | 237 | type: "POST", |
238 | 238 | url: "{{ $url_route }}", |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | |
249 | 249 | $('#delete-all-button-confirm').click(function() { |
250 | 250 | <?php $url_route = url('/').'/'.config('laralang.default.prefix').'/delete/all'; |
251 | - ?> |
|
251 | + ?> |
|
252 | 252 | $.ajax({ |
253 | 253 | type: "POST", |
254 | 254 | url: "{{ $url_route }}", |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | $('#edit').click(function() { |
266 | 266 | var trans_id = $('.trans-id').val(); |
267 | 267 | <?php $url_route = url('/').'/'.config('laralang.default.prefix').'/edit'; |
268 | - ?> |
|
268 | + ?> |
|
269 | 269 | $.ajax({ |
270 | 270 | type: "POST", |
271 | 271 | url: "{{ $url_route }}", |
@@ -5,47 +5,47 @@ |
||
5 | 5 | class MymemoryTrans extends Translation |
6 | 6 | { |
7 | 7 | /** |
8 | - * Get translation from mymemory API. |
|
9 | - */ |
|
10 | - public function main() |
|
11 | - { |
|
12 | - $host = 'api.mymemory.translated.net'; |
|
13 | - |
|
14 | - // Check if host is online. |
|
15 | - if ($this->checkHost($host)) { |
|
16 | - |
|
17 | - // Host online |
|
18 | - $urlString = urlencode($this->string); |
|
19 | - $urldata = file_get_contents("http://$host/get?q=$urlString&langpair=$this->from|$this->to"); |
|
20 | - $data = json_decode($urldata, true); |
|
21 | - |
|
22 | - if ($data['responseStatus'] != 200) { |
|
23 | - if ($this->debug == true) { |
|
24 | - if ($data['responseStatus'] == 403) { |
|
25 | - $details = ($data['responseDetails']); |
|
26 | - } else { |
|
27 | - $details = $data['responseDetails']; |
|
28 | - } |
|
29 | - $this->translation = "<font style='color:red;'>Error ".$data->responseStatus.': '.$details.'</font>'; |
|
30 | - } |
|
31 | - |
|
32 | - return; |
|
33 | - } |
|
34 | - |
|
35 | - // Checking if any translation provides from 24aitor to use it |
|
36 | - foreach ($data['matches'] as $match) { |
|
37 | - if ($match['last-updated-by'] == '24aitor') { |
|
38 | - $this->translation = $match['translation']; |
|
39 | - $this->checkSave(); |
|
40 | - |
|
41 | - return; |
|
42 | - } |
|
43 | - } |
|
44 | - |
|
45 | - $this->translation = $data['responseData']['translatedText']; |
|
46 | - $this->checkSave(); |
|
47 | - |
|
48 | - return; |
|
49 | - } |
|
50 | - } |
|
8 | + * Get translation from mymemory API. |
|
9 | + */ |
|
10 | + public function main() |
|
11 | + { |
|
12 | + $host = 'api.mymemory.translated.net'; |
|
13 | + |
|
14 | + // Check if host is online. |
|
15 | + if ($this->checkHost($host)) { |
|
16 | + |
|
17 | + // Host online |
|
18 | + $urlString = urlencode($this->string); |
|
19 | + $urldata = file_get_contents("http://$host/get?q=$urlString&langpair=$this->from|$this->to"); |
|
20 | + $data = json_decode($urldata, true); |
|
21 | + |
|
22 | + if ($data['responseStatus'] != 200) { |
|
23 | + if ($this->debug == true) { |
|
24 | + if ($data['responseStatus'] == 403) { |
|
25 | + $details = ($data['responseDetails']); |
|
26 | + } else { |
|
27 | + $details = $data['responseDetails']; |
|
28 | + } |
|
29 | + $this->translation = "<font style='color:red;'>Error ".$data->responseStatus.': '.$details.'</font>'; |
|
30 | + } |
|
31 | + |
|
32 | + return; |
|
33 | + } |
|
34 | + |
|
35 | + // Checking if any translation provides from 24aitor to use it |
|
36 | + foreach ($data['matches'] as $match) { |
|
37 | + if ($match['last-updated-by'] == '24aitor') { |
|
38 | + $this->translation = $match['translation']; |
|
39 | + $this->checkSave(); |
|
40 | + |
|
41 | + return; |
|
42 | + } |
|
43 | + } |
|
44 | + |
|
45 | + $this->translation = $data['responseData']['translatedText']; |
|
46 | + $this->checkSave(); |
|
47 | + |
|
48 | + return; |
|
49 | + } |
|
50 | + } |
|
51 | 51 | } |
@@ -5,31 +5,31 @@ |
||
5 | 5 | class GoogleTrans extends Translation |
6 | 6 | { |
7 | 7 | /** |
8 | - * Get translation from Google. |
|
9 | - */ |
|
10 | - public function main() |
|
11 | - { |
|
12 | - $host = 'translate.googleapis.com'; |
|
8 | + * Get translation from Google. |
|
9 | + */ |
|
10 | + public function main() |
|
11 | + { |
|
12 | + $host = 'translate.googleapis.com'; |
|
13 | 13 | |
14 | - // Check if host is online. |
|
15 | - if ($this->checkHost($host)) { |
|
14 | + // Check if host is online. |
|
15 | + if ($this->checkHost($host)) { |
|
16 | 16 | |
17 | - // Host online |
|
18 | - $urlString = urlencode($this->string); |
|
19 | - $urldata = file_get_contents("https://translate.googleapis.com/translate_a/single?client=gtx&sl=$this->from&tl=$this->to&dt=t&q=$urlString"); |
|
20 | - $tr = $urldata; |
|
21 | - $tr = substr($tr, 3, -6); |
|
22 | - $tr = $tr.'["'; |
|
23 | - $tr = explode('],[', $tr); |
|
24 | - $trans = []; |
|
25 | - foreach ($tr as $tran) { |
|
26 | - $transl = explode('","', $tran); |
|
27 | - array_push($trans, str_replace('\"', '"', ucfirst(substr($transl[0], 1)))); |
|
28 | - } |
|
29 | - $this->translation = implode(' ', $trans); |
|
30 | - $this->checkSave(); |
|
17 | + // Host online |
|
18 | + $urlString = urlencode($this->string); |
|
19 | + $urldata = file_get_contents("https://translate.googleapis.com/translate_a/single?client=gtx&sl=$this->from&tl=$this->to&dt=t&q=$urlString"); |
|
20 | + $tr = $urldata; |
|
21 | + $tr = substr($tr, 3, -6); |
|
22 | + $tr = $tr.'["'; |
|
23 | + $tr = explode('],[', $tr); |
|
24 | + $trans = []; |
|
25 | + foreach ($tr as $tran) { |
|
26 | + $transl = explode('","', $tran); |
|
27 | + array_push($trans, str_replace('\"', '"', ucfirst(substr($transl[0], 1)))); |
|
28 | + } |
|
29 | + $this->translation = implode(' ', $trans); |
|
30 | + $this->checkSave(); |
|
31 | 31 | |
32 | - return; |
|
33 | - } |
|
34 | - } |
|
32 | + return; |
|
33 | + } |
|
34 | + } |
|
35 | 35 | } |