Version Description
- New! Now tracking when menus created and deleted
- New! Added translate: Portuguese (pt_BR) - Thanks to Criao de Sites
Download this release
Release Info
Developer | KingYes |
Plugin | Activity Log |
Version | 2.1.10 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.1.10
- aryo-activity-log.php +1 -1
- hooks/class-aal-hook-menu.php +26 -8
- language/aryo-aal-pt_BR.mo +0 -0
- language/aryo-aal-pt_BR.po +712 -0
- language/aryo-aal.pot +2 -2
- readme.txt +7 -2
aryo-activity-log.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://wordpress.org/plugins/aryo-activity-log/
|
|
5 |
Description: Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out - it's all these for you to see.
|
6 |
Author: Yakir Sitbon, Maor Chasen, Ariel Klikstein
|
7 |
Author URI: http://www.aryodigital.com
|
8 |
-
Version: 2.1.
|
9 |
Text Domain: aryo-aal
|
10 |
Domain Path: /language/
|
11 |
License: GPLv2 or later
|
5 |
Description: Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out - it's all these for you to see.
|
6 |
Author: Yakir Sitbon, Maor Chasen, Ariel Klikstein
|
7 |
Author URI: http://www.aryodigital.com
|
8 |
+
Version: 2.1.10
|
9 |
Text Domain: aryo-aal
|
10 |
Domain Path: /language/
|
11 |
License: GPLv2 or later
|
hooks/class-aal-hook-menu.php
CHANGED
@@ -3,19 +3,37 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
3 |
|
4 |
class AAL_Hook_Menu extends AAL_Hook_Base {
|
5 |
|
6 |
-
public function
|
7 |
if ( $menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ) ) {
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
'
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
public function __construct() {
|
17 |
-
add_action( 'wp_update_nav_menu', array( &$this, '
|
18 |
-
|
|
|
19 |
parent::__construct();
|
20 |
}
|
21 |
|
3 |
|
4 |
class AAL_Hook_Menu extends AAL_Hook_Base {
|
5 |
|
6 |
+
public function hooks_menu_created_or_updated( $nav_menu_selected_id ) {
|
7 |
if ( $menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ) ) {
|
8 |
+
if ( 'wp_create_nav_menu' === current_action() )
|
9 |
+
$action = 'created';
|
10 |
+
else
|
11 |
+
$action = 'updated';
|
12 |
+
|
13 |
+
aal_insert_log(
|
14 |
+
array(
|
15 |
+
'action' => $action,
|
16 |
+
'object_type' => 'Menu',
|
17 |
+
'object_name' => $menu_object->name,
|
18 |
+
)
|
19 |
+
);
|
20 |
}
|
21 |
}
|
22 |
+
|
23 |
+
public function hooks_menu_deleted( $term, $tt_id, $deleted_term ) {
|
24 |
+
aal_insert_log(
|
25 |
+
array(
|
26 |
+
'action' => 'deleted',
|
27 |
+
'object_type' => 'Menu',
|
28 |
+
'object_name' => $deleted_term->name,
|
29 |
+
)
|
30 |
+
);
|
31 |
+
}
|
32 |
|
33 |
public function __construct() {
|
34 |
+
add_action( 'wp_update_nav_menu', array( &$this, 'hooks_menu_created_or_updated' ) );
|
35 |
+
add_action( 'wp_create_nav_menu', array( &$this, 'hooks_menu_created_or_updated' ) );
|
36 |
+
add_action( 'delete_nav_menu', array( &$this, 'hooks_menu_deleted' ), 10, 3 );
|
37 |
parent::__construct();
|
38 |
}
|
39 |
|
language/aryo-aal-pt_BR.mo
ADDED
Binary file
|
language/aryo-aal-pt_BR.po
ADDED
@@ -0,0 +1,712 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"MIME-Version: 1.0\n"
|
4 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
+
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: Poedit 1.6.9\n"
|
7 |
+
"Project-Id-Version: ARYO Activity Log\n"
|
8 |
+
"Language: pt_BR\n"
|
9 |
+
"POT-Creation-Date: \n"
|
10 |
+
"PO-Revision-Date: \n"
|
11 |
+
"Last-Translator: Yakir Sitbon <kingyes1@gmail.com>\n"
|
12 |
+
"Language-Team: \n"
|
13 |
+
|
14 |
+
#: aryo-activity-log.php:110 aryo-activity-log.php:121
|
15 |
+
msgid "Cheatin’ huh?"
|
16 |
+
msgstr "Trapaceando & # 8217; hein?"
|
17 |
+
|
18 |
+
#: classes/class-aal-activity-log-list-table.php:92
|
19 |
+
msgid "Activities"
|
20 |
+
msgstr "Atividades"
|
21 |
+
|
22 |
+
#: classes/class-aal-activity-log-list-table.php:103
|
23 |
+
msgid "Date"
|
24 |
+
msgstr "Data"
|
25 |
+
|
26 |
+
#: classes/class-aal-activity-log-list-table.php:104
|
27 |
+
msgid "Author"
|
28 |
+
msgstr "Autor"
|
29 |
+
|
30 |
+
#: classes/class-aal-activity-log-list-table.php:105
|
31 |
+
msgid "IP"
|
32 |
+
msgstr "IP"
|
33 |
+
|
34 |
+
#: classes/class-aal-activity-log-list-table.php:106
|
35 |
+
msgid "Type"
|
36 |
+
msgstr "Tipo"
|
37 |
+
|
38 |
+
#: classes/class-aal-activity-log-list-table.php:107
|
39 |
+
msgid "Label"
|
40 |
+
msgstr "Etiqueta"
|
41 |
+
|
42 |
+
#: classes/class-aal-activity-log-list-table.php:108
|
43 |
+
msgid "Action"
|
44 |
+
msgstr "Ação"
|
45 |
+
|
46 |
+
#: classes/class-aal-activity-log-list-table.php:109
|
47 |
+
msgid "Description"
|
48 |
+
msgstr "Descrição"
|
49 |
+
|
50 |
+
#: classes/class-aal-activity-log-list-table.php:129
|
51 |
+
msgid "%s ago"
|
52 |
+
msgstr "% s atrás"
|
53 |
+
|
54 |
+
#: classes/class-aal-activity-log-list-table.php:156
|
55 |
+
msgid "Unknown"
|
56 |
+
msgstr "Desconhecido"
|
57 |
+
|
58 |
+
#: classes/class-aal-activity-log-list-table.php:162
|
59 |
+
#: classes/class-aal-activity-log-list-table.php:256
|
60 |
+
msgid "Guest"
|
61 |
+
msgstr "Visitante"
|
62 |
+
|
63 |
+
#: classes/class-aal-activity-log-list-table.php:201
|
64 |
+
msgid "All"
|
65 |
+
msgstr "Todos"
|
66 |
+
|
67 |
+
#: classes/class-aal-activity-log-list-table.php:267
|
68 |
+
msgid "All Users"
|
69 |
+
msgstr "Todos os usuários"
|
70 |
+
|
71 |
+
#: classes/class-aal-activity-log-list-table.php:294
|
72 |
+
msgid "All Types"
|
73 |
+
msgstr "Todos os Tipos"
|
74 |
+
|
75 |
+
#: classes/class-aal-activity-log-list-table.php:305
|
76 |
+
msgid "All Time"
|
77 |
+
msgstr "Desde o Começo"
|
78 |
+
|
79 |
+
#: classes/class-aal-activity-log-list-table.php:306
|
80 |
+
msgid "Today"
|
81 |
+
msgstr "Hoje"
|
82 |
+
|
83 |
+
#: classes/class-aal-activity-log-list-table.php:307
|
84 |
+
msgid "Yesterday"
|
85 |
+
msgstr "Ontem"
|
86 |
+
|
87 |
+
#: classes/class-aal-activity-log-list-table.php:308
|
88 |
+
msgid "Week"
|
89 |
+
msgstr "Semana"
|
90 |
+
|
91 |
+
#: classes/class-aal-activity-log-list-table.php:309
|
92 |
+
msgid "Month"
|
93 |
+
msgstr "Mês"
|
94 |
+
|
95 |
+
#: classes/class-aal-activity-log-list-table.php:316
|
96 |
+
msgid "Filter"
|
97 |
+
msgstr "Filtrar"
|
98 |
+
|
99 |
+
#: classes/class-aal-admin-ui.php:17 classes/class-aal-admin-ui.php:27
|
100 |
+
msgid "Activity Log"
|
101 |
+
msgstr "Registro de Atividades"
|
102 |
+
|
103 |
+
#: classes/class-aal-help.php:21
|
104 |
+
msgid "Overview"
|
105 |
+
msgstr "Visão Geral"
|
106 |
+
|
107 |
+
#: classes/class-aal-help.php:24 classes/class-aal-settings.php:126
|
108 |
+
#: classes/class-aal-settings.php:198
|
109 |
+
msgid "Notifications"
|
110 |
+
msgstr "Notificações"
|
111 |
+
|
112 |
+
#: classes/class-aal-help.php:25
|
113 |
+
msgid ""
|
114 |
+
"This screen lets you control what will happen once a user on your site does "
|
115 |
+
"something you define. For instance, let us assume that you have created a "
|
116 |
+
"user on your site\n"
|
117 |
+
" for your content editor. Now, let's say that every time "
|
118 |
+
"that user updates a post, you want to know about it. You can easily do it "
|
119 |
+
"from this page."
|
120 |
+
msgstr ""
|
121 |
+
"Esta tela permite que você controle o que vai acontecer quando um usuário em "
|
122 |
+
"seu site faz algo que você definir. Por exemplo, vamos supor que você tenha "
|
123 |
+
"criado um usuário em seu site\n"
|
124 |
+
" para o seu editor de conteúdo. Agora, vamos dizer que "
|
125 |
+
"cada vez que o usuário atualiza um post, você quer saber a respeito. Você "
|
126 |
+
"pode facilmente fazê-lo a partir desta página."
|
127 |
+
|
128 |
+
#: classes/class-aal-notifications.php:274
|
129 |
+
msgid "The AAL notification handler you are trying to register does not exist."
|
130 |
+
msgstr ""
|
131 |
+
"O manipulador de notificação AAL que você está tentando registrar não existe."
|
132 |
+
|
133 |
+
#: classes/class-aal-settings.php:27
|
134 |
+
msgid "GitHub"
|
135 |
+
msgstr "GitHub"
|
136 |
+
|
137 |
+
#: classes/class-aal-settings.php:30 classes/class-aal-settings.php:45
|
138 |
+
msgid "Settings"
|
139 |
+
msgstr "Configurações"
|
140 |
+
|
141 |
+
#: classes/class-aal-settings.php:44 classes/class-aal-settings.php:228
|
142 |
+
msgid "Activity Log Settings"
|
143 |
+
msgstr "Configuração do Registro de Atividades"
|
144 |
+
|
145 |
+
#: classes/class-aal-settings.php:83
|
146 |
+
msgid "Display Options"
|
147 |
+
msgstr "Opções de Exibição"
|
148 |
+
|
149 |
+
#: classes/class-aal-settings.php:90
|
150 |
+
msgid "Keep logs for"
|
151 |
+
msgstr "Manter registros por"
|
152 |
+
|
153 |
+
#: classes/class-aal-settings.php:99
|
154 |
+
msgid "days."
|
155 |
+
msgstr "dias."
|
156 |
+
|
157 |
+
#: classes/class-aal-settings.php:100 classes/class-aal-settings.php:140
|
158 |
+
msgid ""
|
159 |
+
"Maximum number of days to keep activity log. Leave blank to keep activity "
|
160 |
+
"log forever (not recommended)."
|
161 |
+
msgstr ""
|
162 |
+
"O número máximo de dias para manter registro de atividades. Deixe em branco "
|
163 |
+
"para manter registro de atividades para sempre (não recomendado)."
|
164 |
+
|
165 |
+
#: classes/class-aal-settings.php:107
|
166 |
+
msgid "Delete Log Activities"
|
167 |
+
msgstr "Excluir Log Atividades"
|
168 |
+
|
169 |
+
#: classes/class-aal-settings.php:112
|
170 |
+
msgid "<a href=\"%s\" id=\"%s\">Reset Database</a>"
|
171 |
+
msgstr "<a href=\"%s\" id=\"%s\"> Redefinir </a> Banco de Dados"
|
172 |
+
|
173 |
+
#: classes/class-aal-settings.php:116
|
174 |
+
msgid "Warning: Clicking this will delete all activities from the database."
|
175 |
+
msgstr ""
|
176 |
+
"Aviso: Ao clicar aqui, você apagará todas as atividades do banco de dados."
|
177 |
+
|
178 |
+
#: classes/class-aal-settings.php:133
|
179 |
+
msgid "Notification Events"
|
180 |
+
msgstr "Notificação de Eventos"
|
181 |
+
|
182 |
+
#: classes/class-aal-settings.php:161
|
183 |
+
msgid "Enable?"
|
184 |
+
msgstr "Habilitar?"
|
185 |
+
|
186 |
+
#: classes/class-aal-settings.php:197
|
187 |
+
msgid "General"
|
188 |
+
msgstr "Geral"
|
189 |
+
|
190 |
+
#: classes/class-aal-settings.php:247
|
191 |
+
msgid "All activities have been successfully deleted."
|
192 |
+
msgstr "Todas as atividades foram deletadas com sucesso."
|
193 |
+
|
194 |
+
#: classes/class-aal-settings.php:258
|
195 |
+
msgid "Are you sure you want to do this action?"
|
196 |
+
msgstr "Tem certeza de que quer fazer esta ação?"
|
197 |
+
|
198 |
+
#: classes/class-aal-settings.php:269
|
199 |
+
msgid "You do not have sufficient permissions to access this page."
|
200 |
+
msgstr "Você não tem permissões suficientes para acessar esta página."
|
201 |
+
|
202 |
+
#: classes/class-aal-settings.php:322
|
203 |
+
msgid "These are some basic settings for Activity Log."
|
204 |
+
msgstr "Estas são algumas configurações básicas para o Registro de Atividades."
|
205 |
+
|
206 |
+
#: classes/class-aal-settings.php:328
|
207 |
+
msgid ""
|
208 |
+
"Serve yourself with custom-tailored notifications. First, define your "
|
209 |
+
"conditions. Then, choose how the notifications will be sent."
|
210 |
+
msgstr ""
|
211 |
+
"Sirva-se com notificações sob medida. Primeiro, defina as suas condições. Em "
|
212 |
+
"seguida, escolha como as notificações serão enviadas."
|
213 |
+
|
214 |
+
#: classes/class-aal-settings.php:427
|
215 |
+
msgid "Yes"
|
216 |
+
msgstr "Sim"
|
217 |
+
|
218 |
+
#: classes/class-aal-settings.php:428
|
219 |
+
msgid "No"
|
220 |
+
msgstr "Não"
|
221 |
+
|
222 |
+
#: classes/class-aal-settings.php:445 language/strings.php:19
|
223 |
+
#: notifications/abstract-class-aal-notification-base.php:98
|
224 |
+
msgid "User"
|
225 |
+
msgstr "Usuário"
|
226 |
+
|
227 |
+
#: classes/class-aal-settings.php:446
|
228 |
+
#: notifications/abstract-class-aal-notification-base.php:101
|
229 |
+
msgid "Action Type"
|
230 |
+
msgstr "Tipo de Ação"
|
231 |
+
|
232 |
+
#: classes/class-aal-settings.php:447
|
233 |
+
msgid "Action Performed"
|
234 |
+
msgstr "Ação Realizada"
|
235 |
+
|
236 |
+
#: classes/class-aal-settings.php:451
|
237 |
+
msgid "equals to"
|
238 |
+
msgstr "é igual a"
|
239 |
+
|
240 |
+
#: classes/class-aal-settings.php:452
|
241 |
+
msgid "not equals to"
|
242 |
+
msgstr "não é igual a"
|
243 |
+
|
244 |
+
#: classes/class-aal-settings.php:462
|
245 |
+
msgid ""
|
246 |
+
"A notification will be sent upon a successful match with the following "
|
247 |
+
"conditions:"
|
248 |
+
msgstr ""
|
249 |
+
"A notificação será enviada baseando-se numa correspondência bem-sucedida com "
|
250 |
+
"as seguintes condições:"
|
251 |
+
|
252 |
+
#: hooks/class-aal-hook-posts.php:9
|
253 |
+
msgid "(no title)"
|
254 |
+
msgstr "(Sem título)"
|
255 |
+
|
256 |
+
#: language/strings.php:5
|
257 |
+
msgid "ARYO Activity Log"
|
258 |
+
msgstr "Registro de Atividades do ARYO"
|
259 |
+
|
260 |
+
#: language/strings.php:6
|
261 |
+
msgid ""
|
262 |
+
"Get aware of any activities that are taking place on your dashboard! Imagine "
|
263 |
+
"it like a black-box for your WordPress site. e.g. post was deleted, plugin "
|
264 |
+
"was activated, user logged in or logged out - it's all these for you to see."
|
265 |
+
msgstr ""
|
266 |
+
"Fique sabendo de quaisquer atividades que ocorrem em seu painel! Imagine-o "
|
267 |
+
"como uma caixa-preta para o seu site WordPress. Por exemplo: um post foi "
|
268 |
+
"deletado, um plugin ativado, um usuário logou ou sais — você ficará sabendo "
|
269 |
+
"de tudo."
|
270 |
+
|
271 |
+
#: language/strings.php:9
|
272 |
+
msgid "Post"
|
273 |
+
msgstr "Post"
|
274 |
+
|
275 |
+
#: language/strings.php:10
|
276 |
+
msgid "created"
|
277 |
+
msgstr "criado"
|
278 |
+
|
279 |
+
#: language/strings.php:11
|
280 |
+
msgid "updated"
|
281 |
+
msgstr "atualizado"
|
282 |
+
|
283 |
+
#: language/strings.php:12
|
284 |
+
msgid "deleted"
|
285 |
+
msgstr "deletado"
|
286 |
+
|
287 |
+
#: language/strings.php:15
|
288 |
+
msgid "Attachment"
|
289 |
+
msgstr "Anexo"
|
290 |
+
|
291 |
+
#: language/strings.php:16
|
292 |
+
msgid "added"
|
293 |
+
msgstr "adicionado"
|
294 |
+
|
295 |
+
#: language/strings.php:20
|
296 |
+
msgid "logged_out"
|
297 |
+
msgstr "logged_out"
|
298 |
+
|
299 |
+
#: language/strings.php:21
|
300 |
+
msgid "logged_in"
|
301 |
+
msgstr "logged_in"
|
302 |
+
|
303 |
+
#: language/strings.php:22
|
304 |
+
msgid "wrong_password"
|
305 |
+
msgstr "wrong_password"
|
306 |
+
|
307 |
+
#: language/strings.php:25
|
308 |
+
msgid "Plugin"
|
309 |
+
msgstr "Plugin"
|
310 |
+
|
311 |
+
#: language/strings.php:26
|
312 |
+
msgid "activated"
|
313 |
+
msgstr "ativado"
|
314 |
+
|
315 |
+
#: language/strings.php:27
|
316 |
+
msgid "deactivated"
|
317 |
+
msgstr "desativado"
|
318 |
+
|
319 |
+
#: language/strings.php:28
|
320 |
+
msgid "installed"
|
321 |
+
msgstr "instalado"
|
322 |
+
|
323 |
+
#: language/strings.php:31
|
324 |
+
msgid "Theme"
|
325 |
+
msgstr "Tema"
|
326 |
+
|
327 |
+
#: language/strings.php:32
|
328 |
+
msgid "Theme Customizer"
|
329 |
+
msgstr "Customizador do Tema"
|
330 |
+
|
331 |
+
#: language/strings.php:35
|
332 |
+
msgid "Widget"
|
333 |
+
msgstr "Widget"
|
334 |
+
|
335 |
+
#: language/strings.php:38
|
336 |
+
msgid "Options"
|
337 |
+
msgstr "Opções"
|
338 |
+
|
339 |
+
#: language/strings.php:41
|
340 |
+
msgid "Menu"
|
341 |
+
msgstr "Menu"
|
342 |
+
|
343 |
+
#: language/strings.php:44
|
344 |
+
msgid "Taxonomy"
|
345 |
+
msgstr "Taxonomia"
|
346 |
+
|
347 |
+
#: language/strings.php:47
|
348 |
+
msgid "Core"
|
349 |
+
msgstr "Núcleo"
|
350 |
+
|
351 |
+
#: language/strings.php:48
|
352 |
+
msgid "WordPress Updated"
|
353 |
+
msgstr "WordPress Atualizado"
|
354 |
+
|
355 |
+
#: language/strings.php:49
|
356 |
+
msgid "WordPress Auto Updated"
|
357 |
+
msgstr "WordPress Auto Atualizado"
|
358 |
+
|
359 |
+
#: language/strings.php:52
|
360 |
+
msgid "Comments"
|
361 |
+
msgstr "Comentários"
|
362 |
+
|
363 |
+
#: language/strings.php:53
|
364 |
+
msgid "pending"
|
365 |
+
msgstr "pendente"
|
366 |
+
|
367 |
+
#: language/strings.php:54
|
368 |
+
msgid "approved"
|
369 |
+
msgstr "aprovado"
|
370 |
+
|
371 |
+
#: language/strings.php:55
|
372 |
+
msgid "unapproved"
|
373 |
+
msgstr "não aprovado"
|
374 |
+
|
375 |
+
#: language/strings.php:56
|
376 |
+
msgid "trashed"
|
377 |
+
msgstr "para a lixeira"
|
378 |
+
|
379 |
+
#: language/strings.php:57
|
380 |
+
msgid "untrashed"
|
381 |
+
msgstr "recuperado da lixeira"
|
382 |
+
|
383 |
+
#: language/strings.php:58
|
384 |
+
msgid "spammed"
|
385 |
+
msgstr "movido para o spam"
|
386 |
+
|
387 |
+
#: language/strings.php:59
|
388 |
+
msgid "unspammed"
|
389 |
+
msgstr "removido do spam"
|
390 |
+
|
391 |
+
#: language/strings.php:64
|
392 |
+
msgid "blogname"
|
393 |
+
msgstr "blogname"
|
394 |
+
|
395 |
+
#: language/strings.php:65
|
396 |
+
msgid "blogdescription"
|
397 |
+
msgstr "BlogDescription"
|
398 |
+
|
399 |
+
#: language/strings.php:66
|
400 |
+
msgid "siteurl"
|
401 |
+
msgstr "siteurl"
|
402 |
+
|
403 |
+
#: language/strings.php:67
|
404 |
+
msgid "home"
|
405 |
+
msgstr "home"
|
406 |
+
|
407 |
+
#: language/strings.php:68
|
408 |
+
msgid "admin_email"
|
409 |
+
msgstr "admin_email"
|
410 |
+
|
411 |
+
#: language/strings.php:69
|
412 |
+
msgid "users_can_register"
|
413 |
+
msgstr "users_can_register"
|
414 |
+
|
415 |
+
#: language/strings.php:70
|
416 |
+
msgid "default_role"
|
417 |
+
msgstr "default_role"
|
418 |
+
|
419 |
+
#: language/strings.php:71
|
420 |
+
msgid "timezone_string"
|
421 |
+
msgstr "timezone_string"
|
422 |
+
|
423 |
+
#: language/strings.php:72
|
424 |
+
msgid "date_format"
|
425 |
+
msgstr "date_format"
|
426 |
+
|
427 |
+
#: language/strings.php:73
|
428 |
+
msgid "time_format"
|
429 |
+
msgstr "TIME_FORMAT"
|
430 |
+
|
431 |
+
#: language/strings.php:74
|
432 |
+
msgid "start_of_week"
|
433 |
+
msgstr "start_of_week"
|
434 |
+
|
435 |
+
#: language/strings.php:77
|
436 |
+
msgid "use_smilies"
|
437 |
+
msgstr "use_smilies"
|
438 |
+
|
439 |
+
#: language/strings.php:78
|
440 |
+
msgid "use_balanceTags"
|
441 |
+
msgstr "use_balanceTags"
|
442 |
+
|
443 |
+
#: language/strings.php:79
|
444 |
+
msgid "default_category"
|
445 |
+
msgstr "default_category"
|
446 |
+
|
447 |
+
#: language/strings.php:80
|
448 |
+
msgid "default_post_format"
|
449 |
+
msgstr "default_post_format"
|
450 |
+
|
451 |
+
#: language/strings.php:81
|
452 |
+
msgid "mailserver_url"
|
453 |
+
msgstr "mailserver_url"
|
454 |
+
|
455 |
+
#: language/strings.php:82
|
456 |
+
msgid "mailserver_login"
|
457 |
+
msgstr "mailserver_login"
|
458 |
+
|
459 |
+
#: language/strings.php:83
|
460 |
+
msgid "mailserver_pass"
|
461 |
+
msgstr "mailserver_pass"
|
462 |
+
|
463 |
+
#: language/strings.php:84
|
464 |
+
msgid "default_email_category"
|
465 |
+
msgstr "default_email_category"
|
466 |
+
|
467 |
+
#: language/strings.php:85
|
468 |
+
msgid "ping_sites"
|
469 |
+
msgstr "ping_sites"
|
470 |
+
|
471 |
+
#: language/strings.php:88
|
472 |
+
msgid "show_on_front"
|
473 |
+
msgstr "show_on_front"
|
474 |
+
|
475 |
+
#: language/strings.php:89
|
476 |
+
msgid "page_on_front"
|
477 |
+
msgstr "page_on_front"
|
478 |
+
|
479 |
+
#: language/strings.php:90
|
480 |
+
msgid "page_for_posts"
|
481 |
+
msgstr "page_for_posts"
|
482 |
+
|
483 |
+
#: language/strings.php:91
|
484 |
+
msgid "posts_per_page"
|
485 |
+
msgstr "posts_per_page"
|
486 |
+
|
487 |
+
#: language/strings.php:92
|
488 |
+
msgid "posts_per_rss"
|
489 |
+
msgstr "posts_per_rss"
|
490 |
+
|
491 |
+
#: language/strings.php:93
|
492 |
+
msgid "rss_use_excerpt"
|
493 |
+
msgstr "rss_use_excerpt"
|
494 |
+
|
495 |
+
#: language/strings.php:94
|
496 |
+
msgid "blog_public"
|
497 |
+
msgstr "blog_public"
|
498 |
+
|
499 |
+
#: language/strings.php:97
|
500 |
+
msgid "default_pingback_flag"
|
501 |
+
msgstr "default_pingback_flag"
|
502 |
+
|
503 |
+
#: language/strings.php:98
|
504 |
+
msgid "default_ping_status"
|
505 |
+
msgstr "default_ping_status"
|
506 |
+
|
507 |
+
#: language/strings.php:99
|
508 |
+
msgid "default_comment_status"
|
509 |
+
msgstr "default_comment_status"
|
510 |
+
|
511 |
+
#: language/strings.php:100
|
512 |
+
msgid "require_name_email"
|
513 |
+
msgstr "require_name_email"
|
514 |
+
|
515 |
+
#: language/strings.php:101
|
516 |
+
msgid "comment_registration"
|
517 |
+
msgstr "comment_registration"
|
518 |
+
|
519 |
+
#: language/strings.php:102
|
520 |
+
msgid "close_comments_for_old_posts"
|
521 |
+
msgstr "close_comments_for_old_posts"
|
522 |
+
|
523 |
+
#: language/strings.php:103
|
524 |
+
msgid "close_comments_days_old"
|
525 |
+
msgstr "close_comments_days_old"
|
526 |
+
|
527 |
+
#: language/strings.php:104
|
528 |
+
msgid "thread_comments"
|
529 |
+
msgstr "thread_comments"
|
530 |
+
|
531 |
+
#: language/strings.php:105
|
532 |
+
msgid "thread_comments_depth"
|
533 |
+
msgstr "thread_comments_depth"
|
534 |
+
|
535 |
+
#: language/strings.php:106
|
536 |
+
msgid "page_comments"
|
537 |
+
msgstr "page_comments"
|
538 |
+
|
539 |
+
#: language/strings.php:107
|
540 |
+
msgid "comments_per_page"
|
541 |
+
msgstr "comments_per_page"
|
542 |
+
|
543 |
+
#: language/strings.php:108
|
544 |
+
msgid "default_comments_page"
|
545 |
+
msgstr "default_comments_page"
|
546 |
+
|
547 |
+
#: language/strings.php:109
|
548 |
+
msgid "comment_order"
|
549 |
+
msgstr "comment_order"
|
550 |
+
|
551 |
+
#: language/strings.php:110
|
552 |
+
msgid "comments_notify"
|
553 |
+
msgstr "comments_notify"
|
554 |
+
|
555 |
+
#: language/strings.php:111
|
556 |
+
msgid "moderation_notify"
|
557 |
+
msgstr "moderation_notify"
|
558 |
+
|
559 |
+
#: language/strings.php:112
|
560 |
+
msgid "comment_moderation"
|
561 |
+
msgstr "comment_moderation"
|
562 |
+
|
563 |
+
#: language/strings.php:113
|
564 |
+
msgid "comment_whitelist"
|
565 |
+
msgstr "comment_whitelist"
|
566 |
+
|
567 |
+
#: language/strings.php:114
|
568 |
+
msgid "comment_max_links"
|
569 |
+
msgstr "comment_max_links"
|
570 |
+
|
571 |
+
#: language/strings.php:115
|
572 |
+
msgid "moderation_keys"
|
573 |
+
msgstr "moderation_keys"
|
574 |
+
|
575 |
+
#: language/strings.php:116
|
576 |
+
msgid "blacklist_keys"
|
577 |
+
msgstr "blacklist_keys"
|
578 |
+
|
579 |
+
#: language/strings.php:117
|
580 |
+
msgid "show_avatars"
|
581 |
+
msgstr "show_avatars"
|
582 |
+
|
583 |
+
#: language/strings.php:118
|
584 |
+
msgid "avatar_rating"
|
585 |
+
msgstr "avatar_rating"
|
586 |
+
|
587 |
+
#: language/strings.php:119
|
588 |
+
msgid "avatar_default"
|
589 |
+
msgstr "avatar_default"
|
590 |
+
|
591 |
+
#: language/strings.php:122
|
592 |
+
msgid "thumbnail_size_w"
|
593 |
+
msgstr "thumbnail_size_w"
|
594 |
+
|
595 |
+
#: language/strings.php:123
|
596 |
+
msgid "thumbnail_size_h"
|
597 |
+
msgstr "thumbnail_size_h"
|
598 |
+
|
599 |
+
#: language/strings.php:124
|
600 |
+
msgid "thumbnail_crop"
|
601 |
+
msgstr "thumbnail_crop"
|
602 |
+
|
603 |
+
#: language/strings.php:125
|
604 |
+
msgid "medium_size_w"
|
605 |
+
msgstr "medium_size_w"
|
606 |
+
|
607 |
+
#: language/strings.php:126
|
608 |
+
msgid "medium_size_h"
|
609 |
+
msgstr "medium_size_h"
|
610 |
+
|
611 |
+
#: language/strings.php:127
|
612 |
+
msgid "large_size_w"
|
613 |
+
msgstr "large_size_w"
|
614 |
+
|
615 |
+
#: language/strings.php:128
|
616 |
+
msgid "large_size_h"
|
617 |
+
msgstr "large_size_h"
|
618 |
+
|
619 |
+
#: language/strings.php:129
|
620 |
+
msgid "uploads_use_yearmonth_folders"
|
621 |
+
msgstr "uploads_use_yearmonth_folders"
|
622 |
+
|
623 |
+
#: language/strings.php:132
|
624 |
+
msgid "permalink_structure"
|
625 |
+
msgstr "permalink_structure"
|
626 |
+
|
627 |
+
#: language/strings.php:133
|
628 |
+
msgid "category_base"
|
629 |
+
msgstr "category_base"
|
630 |
+
|
631 |
+
#: language/strings.php:134
|
632 |
+
msgid "tag_base"
|
633 |
+
msgstr "tag_base"
|
634 |
+
|
635 |
+
#: language/strings.php:137
|
636 |
+
msgid "Export"
|
637 |
+
msgstr "Exportação"
|
638 |
+
|
639 |
+
#: language/strings.php:138
|
640 |
+
msgid "downloaded"
|
641 |
+
msgstr "baixado"
|
642 |
+
|
643 |
+
#: notifications/abstract-class-aal-notification-base.php:99
|
644 |
+
msgid "Object Type"
|
645 |
+
msgstr "Tipo de objeto"
|
646 |
+
|
647 |
+
#: notifications/abstract-class-aal-notification-base.php:100
|
648 |
+
msgid "Object Name"
|
649 |
+
msgstr "Nome do objeto"
|
650 |
+
|
651 |
+
#: notifications/abstract-class-aal-notification-base.php:102
|
652 |
+
msgid "IP Address"
|
653 |
+
msgstr "Endereço IP"
|
654 |
+
|
655 |
+
#: notifications/abstract-class-aal-notification-base.php:121
|
656 |
+
msgid "N/A"
|
657 |
+
msgstr "N / D"
|
658 |
+
|
659 |
+
#: notifications/class-aal-notification-email.php:15
|
660 |
+
msgid "Email"
|
661 |
+
msgstr "Email"
|
662 |
+
|
663 |
+
#: notifications/class-aal-notification-email.php:16
|
664 |
+
msgid "Get notified by Email."
|
665 |
+
msgstr "Seja notificado por e-mail."
|
666 |
+
|
667 |
+
#: notifications/class-aal-notification-email.php:49
|
668 |
+
msgid "New notification from Activity Log"
|
669 |
+
msgstr "Nova notificação do Registro de Atividades"
|
670 |
+
|
671 |
+
#: notifications/class-aal-notification-email.php:65
|
672 |
+
msgid ""
|
673 |
+
"Hi there!\n"
|
674 |
+
"\n"
|
675 |
+
"A notification condition on [sitename] was matched. Here are the details:\n"
|
676 |
+
"\n"
|
677 |
+
"[action-details]\n"
|
678 |
+
"\n"
|
679 |
+
"Sent by ARYO Activity Log"
|
680 |
+
msgstr ""
|
681 |
+
"Olá!\n"
|
682 |
+
"\n"
|
683 |
+
"Uma condição de notificação no [nome do site] foi correspondido. Aqui estão "
|
684 |
+
"os detalhes:\n"
|
685 |
+
"\n"
|
686 |
+
"[Ação-details]\n"
|
687 |
+
"\n"
|
688 |
+
"Enviado por Aryo Activity Log"
|
689 |
+
|
690 |
+
#: notifications/class-aal-notification-email.php:67
|
691 |
+
msgid "From Email"
|
692 |
+
msgstr "Do Email"
|
693 |
+
|
694 |
+
#: notifications/class-aal-notification-email.php:67
|
695 |
+
msgid "The source Email address"
|
696 |
+
msgstr "O endereço de Email de origem"
|
697 |
+
|
698 |
+
#: notifications/class-aal-notification-email.php:68
|
699 |
+
msgid "To Email"
|
700 |
+
msgstr "Para o email"
|
701 |
+
|
702 |
+
#: notifications/class-aal-notification-email.php:68
|
703 |
+
msgid "The Email address notifications will be sent to"
|
704 |
+
msgstr "As notificações de email serão enviadas para"
|
705 |
+
|
706 |
+
#: notifications/class-aal-notification-email.php:69
|
707 |
+
msgid "Message"
|
708 |
+
msgstr "Mensagem"
|
709 |
+
|
710 |
+
#: notifications/class-aal-notification-email.php:69
|
711 |
+
msgid "Customize the message using the following placeholders: %s"
|
712 |
+
msgstr "Personalize a mensagem com os seguintes espaços reservados:% s"
|
language/aryo-aal.pot
CHANGED
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: aryo-activity-log 2.1.
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2014-09-
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: aryo-activity-log 2.1.10\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2014-09-18 19:40+0300\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: pojo.me, KingYes, ariel.k, maor
|
|
3 |
Tags: administration, activity, event, monitor, multisite, multi-users, log, logger, audit log, stats, security, tracking, woocommerce, notifications, email notifications
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.0
|
6 |
-
Stable tag: 2.1.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site.
|
@@ -30,7 +30,7 @@ If you have tens of users or more, you really can’t know who did it. This plug
|
|
30 |
* <strong>Plugins</strong> - Installed, Updated, Activated, Deactivated, Changed
|
31 |
* <strong>Themes</strong> - Installed, Updated, Deleted, Activated, Changed (Editor and Customizer)
|
32 |
* <strong>Widgets</strong> - Added to a sidebar / Deleted from a sidebar, Order widgets
|
33 |
-
* <strong>Menus</strong> - A menu is being
|
34 |
* <strong>Setting</strong> - General, Writing, Reading, Discussion, Media, Permalinks
|
35 |
* <strong>Options</strong> - Can be extend by east filter
|
36 |
* <strong>Export</strong> - User download export file from the site
|
@@ -54,6 +54,7 @@ If you have tens of users or more, you really can’t know who did it. This plug
|
|
54 |
* Danish (da_DK) - [Morten Dalgaard Johansen](http://www.iosoftgame.com/)
|
55 |
* Hebrew (he_IL) + RTL Support - [Aryo Digital](http://www.aryodigital.com/)
|
56 |
* Armenia (hy_AM) - Hayk Jomardyan
|
|
|
57 |
|
58 |
The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
|
59 |
|
@@ -89,6 +90,10 @@ Would you like to like to contribute to Activity Log? You are more than welcome
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
|
|
92 |
= 2.1.9 =
|
93 |
* New! Store all WooCommerce settings ([#62](https://github.com/KingYes/wordpress-aryo-activity-log/issues/62))
|
94 |
* Tested up to WordPress v4.0
|
3 |
Tags: administration, activity, event, monitor, multisite, multi-users, log, logger, audit log, stats, security, tracking, woocommerce, notifications, email notifications
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.0
|
6 |
+
Stable tag: 2.1.10
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site.
|
30 |
* <strong>Plugins</strong> - Installed, Updated, Activated, Deactivated, Changed
|
31 |
* <strong>Themes</strong> - Installed, Updated, Deleted, Activated, Changed (Editor and Customizer)
|
32 |
* <strong>Widgets</strong> - Added to a sidebar / Deleted from a sidebar, Order widgets
|
33 |
+
* <strong>Menus</strong> - A menu is being Created, Updated, Deleted
|
34 |
* <strong>Setting</strong> - General, Writing, Reading, Discussion, Media, Permalinks
|
35 |
* <strong>Options</strong> - Can be extend by east filter
|
36 |
* <strong>Export</strong> - User download export file from the site
|
54 |
* Danish (da_DK) - [Morten Dalgaard Johansen](http://www.iosoftgame.com/)
|
55 |
* Hebrew (he_IL) + RTL Support - [Aryo Digital](http://www.aryodigital.com/)
|
56 |
* Armenia (hy_AM) - Hayk Jomardyan
|
57 |
+
* Brazilian Portuguese (pt_BR) - [Criação de Sites](http://www.techload.com.br/criacao-de-sites-ribeirao-preto)
|
58 |
|
59 |
The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
|
60 |
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 2.1.10 =
|
94 |
+
* New! Now tracking when menus created and deleted
|
95 |
+
* New! Added translate: Portuguese (pt_BR) - Thanks to [Criação de Sites](http://www.techload.com.br/criacao-de-sites-ribeirao-preto)
|
96 |
+
|
97 |
= 2.1.9 =
|
98 |
* New! Store all WooCommerce settings ([#62](https://github.com/KingYes/wordpress-aryo-activity-log/issues/62))
|
99 |
* Tested up to WordPress v4.0
|