GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( f6c1f2...b9ff6f )
by Steve
21s
created

src/messages/es/audit.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php 
2
    return [
3
        '<b>{message}</b><br />in <i>{file}</i> on line <i>{line}</i>.<br/>-- {link}' => '',
4
        'Action' => 'Acción',
5
        'Args' => '',
6
        'Audit' => 'Auditoria',
7
        'Audit Error in Audit Entry #{entry_id}' => 'Auditoria de Error en Registro #{entry_id}',
8
        'Audit Module' => 'Modulo de Auditoria',
9
        'BCC' => '',
10
        'CC' => '',
11
        'CURL' => '',
12
        'Called' => 'Llamado',
13
        'Created' => 'Creado',
14
        'Data' => '',
15
        'Date' => 'Fecha',
16
        'Database Trails' => 'Rastro de Base de Datos',
17
        'Diff' => 'Diferencia',
18
        'Difference' => 'Diferencia',
19
        'Download' => 'Descargar',
20
        'Download eml file' => 'Descargar archivo eml',
21
        'Duration' => 'Duración',
22
        'Email Messages' => 'Mensaje de Correo',
23
        'Emailed' => 'Enviado por Correo',
24
        'Entries' => 'Registro',
25
        'Entry #{id}' => 'Registro #{id}',
26
        'Entry ID' => 'Registro ID',
27
        'Error' => '',
28
        'Error #{id}' => '',
29
        'Error Code' => 'Error Código',
30
        'Errors' => 'Errores',
31
        'Extra' => '',
32
        'Extra Data' => 'Datos Extra',
33
        'Field' => 'Campo',
34
        'File' => 'Archivo',
35
        'From' => 'De',
36
        'Guest' => 'Invitado',
37
        'HTML' => '',
38
        'HTML Body' => 'HTML Cuerpo',
39
        'Hash' => '',
40
        'ID' => '',
41
        'IP' => '',
42
        'Javascript' => '',
43
        'Javascript #{id}' => '',
44
        'Javascripts' => '',
45
        'Line' => 'Linea',
46
        'Mail' => 'Correo',
47
        'Mail #{id}' => 'Correo Mail #{id}',
48
        'Mails' => 'Correos',
49
        'Memory' => 'Memoria',
50
        'Message' => 'Mensaje',
51
        'New Value' => 'Valor Nuevo',
52
        'No' => '',
53
        'Old Value' => 'Valor Anterior',
54
        'Origin' => 'Origen',
55
        'Profiling' => 'Perfilado',
56
        'Reply' => 'Respuesta',
57
        'Request' => 'Petición',
58
        'Request Method' => 'Metodo de Petición',
59
        'Stack Trace' => 'Pila de Rastro',
60
        'Subject' => 'Asunto',
61
        'Successful' => 'Exitoso',
62
        'Text' => 'Texto',
63
        'Text Body' => 'Cuerpo del Texto',
64
        'To' => 'Para',
65
        'Trace' => 'Traza',
66
        'Trail' => 'Rastro',
67
        'Trail #{id}' => 'Rastro #{id}',
68
        'Trails' => 'Rastros',
69
        'Type' => 'Tipo',
70
        'User' => 'Usuario',
71
        'User ID' => 'Usuario ID',
72
        'Yes' => 'Si',
73
        'view audit entry' => 'Ver registro de auditoria',
74
        '{message}' => '',
75
        'CREATE' => 'CREAR',
76
        'UPDATE' => 'ACTUALIZAR',
77
        'DELETE' => 'ELIMINAR',
78
    ];
79
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...