Activity Log - Version 2.2.4

Version Description

  • New! - Added translate: Czech (cs_CZ) - Thanks to Martin Koke (#76)
Download this release

Release Info

Developer KingYes
Plugin Icon 128x128 Activity Log
Version 2.2.4
Comparing to
See all releases

Code changes from version 2.2.2 to 2.2.4

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://pojo.me/
8
- Version: 2.2.2
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://pojo.me/
8
+ Version: 2.2.4
9
  Text Domain: aryo-aal
10
  Domain Path: /language/
11
  License: GPLv2 or later
classes/class-aal-activity-log-list-table.php CHANGED
@@ -145,6 +145,8 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
145
  if ( isset( $item->$column_name ) )
146
  $return = $item->$column_name;
147
  }
 
 
148
 
149
  return $return;
150
  }
@@ -173,6 +175,8 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
173
 
174
  public function column_type( $item ) {
175
  $return = __( $item->object_type, 'aryo-aal' );
 
 
176
  return $return;
177
  }
178
 
@@ -182,6 +186,8 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
182
  $pt = get_post_type_object( $item->object_subtype );
183
  $return = ! empty( $pt->label ) ? $pt->label : $item->object_subtype;
184
  }
 
 
185
  return $return;
186
  }
187
 
@@ -219,6 +225,8 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
219
  break;
220
  }
221
 
 
 
222
  return $return;
223
  }
224
 
145
  if ( isset( $item->$column_name ) )
146
  $return = $item->$column_name;
147
  }
148
+
149
+ $return = apply_filters( 'aal_table_list_column_default', $return, $item, $column_name );
150
 
151
  return $return;
152
  }
175
 
176
  public function column_type( $item ) {
177
  $return = __( $item->object_type, 'aryo-aal' );
178
+
179
+ $return = apply_filters( 'aal_table_list_column_type', $return, $item );
180
  return $return;
181
  }
182
 
186
  $pt = get_post_type_object( $item->object_subtype );
187
  $return = ! empty( $pt->label ) ? $pt->label : $item->object_subtype;
188
  }
189
+
190
+ $return = apply_filters( 'aal_table_list_column_label', $return, $item );
191
  return $return;
192
  }
193
 
225
  break;
226
  }
227
 
228
+ $return = apply_filters( 'aal_table_list_column_description', $return, $item );
229
+
230
  return $return;
231
  }
232
 
hooks/class-aal-hook-posts.php CHANGED
@@ -5,14 +5,14 @@ class AAL_Hook_Posts extends AAL_Hook_Base {
5
 
6
  protected function _draft_or_post_title( $post = 0 ) {
7
  $title = get_the_title( $post );
 
8
  if ( empty( $title ) )
9
  $title = __( '(no title)', 'aryo-aal' );
 
10
  return $title;
11
  }
12
 
13
  public function hooks_transition_post_status( $new_status, $old_status, $post ) {
14
- $action = '';
15
-
16
  if ( 'auto-draft' === $old_status && ( 'auto-draft' !== $new_status && 'inherit' !== $new_status ) ) {
17
  // page created
18
  $action = 'created';
@@ -37,13 +37,15 @@ class AAL_Hook_Posts extends AAL_Hook_Base {
37
  if ( 'nav_menu_item' === get_post_type( $post->ID ) )
38
  return;
39
 
40
- aal_insert_log( array(
41
- 'action' => $action,
42
- 'object_type' => 'Post',
43
- 'object_subtype' => $post->post_type,
44
- 'object_id' => $post->ID,
45
- 'object_name' => $this->_draft_or_post_title( $post->ID ),
46
- ) );
 
 
47
  }
48
 
49
  public function hooks_delete_post( $post_id ) {
@@ -59,13 +61,15 @@ class AAL_Hook_Posts extends AAL_Hook_Base {
59
  if ( 'nav_menu_item' === get_post_type( $post->ID ) )
60
  return;
61
 
62
- aal_insert_log( array(
63
- 'action' => 'deleted',
64
- 'object_type' => 'Post',
65
- 'object_subtype' => $post->post_type,
66
- 'object_id' => $post->ID,
67
- 'object_name' => $this->_draft_or_post_title( $post->ID ),
68
- ) );
 
 
69
  }
70
 
71
  public function __construct() {
5
 
6
  protected function _draft_or_post_title( $post = 0 ) {
7
  $title = get_the_title( $post );
8
+
9
  if ( empty( $title ) )
10
  $title = __( '(no title)', 'aryo-aal' );
11
+
12
  return $title;
13
  }
14
 
15
  public function hooks_transition_post_status( $new_status, $old_status, $post ) {
 
 
16
  if ( 'auto-draft' === $old_status && ( 'auto-draft' !== $new_status && 'inherit' !== $new_status ) ) {
17
  // page created
18
  $action = 'created';
37
  if ( 'nav_menu_item' === get_post_type( $post->ID ) )
38
  return;
39
 
40
+ aal_insert_log(
41
+ array(
42
+ 'action' => $action,
43
+ 'object_type' => 'Post',
44
+ 'object_subtype' => $post->post_type,
45
+ 'object_id' => $post->ID,
46
+ 'object_name' => $this->_draft_or_post_title( $post->ID ),
47
+ )
48
+ );
49
  }
50
 
51
  public function hooks_delete_post( $post_id ) {
61
  if ( 'nav_menu_item' === get_post_type( $post->ID ) )
62
  return;
63
 
64
+ aal_insert_log(
65
+ array(
66
+ 'action' => 'deleted',
67
+ 'object_type' => 'Post',
68
+ 'object_subtype' => $post->post_type,
69
+ 'object_id' => $post->ID,
70
+ 'object_name' => $this->_draft_or_post_title( $post->ID ),
71
+ )
72
+ );
73
  }
74
 
75
  public function __construct() {
language/aryo-aal-cs_CZ.mo ADDED
Binary file
language/aryo-aal-cs_CZ.po ADDED
@@ -0,0 +1,714 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-07-12 16:14+0300\n"
6
+ "PO-Revision-Date: 2015-08-04 13:58+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "Language: cs_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7.5\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
+
17
+ #: aryo-activity-log.php:110 aryo-activity-log.php:121
18
+ msgid "Cheatin&#8217; huh?"
19
+ msgstr "No tak, vy podvádíte?"
20
+
21
+ #: classes/class-aal-activity-log-list-table.php:100
22
+ msgid "Activities"
23
+ msgstr "Aktivity"
24
+
25
+ #: classes/class-aal-activity-log-list-table.php:111
26
+ msgid "Date"
27
+ msgstr "Datum"
28
+
29
+ #: classes/class-aal-activity-log-list-table.php:112
30
+ msgid "Author"
31
+ msgstr "Autor"
32
+
33
+ #: classes/class-aal-activity-log-list-table.php:113
34
+ msgid "IP"
35
+ msgstr "IP"
36
+
37
+ #: classes/class-aal-activity-log-list-table.php:114
38
+ msgid "Type"
39
+ msgstr "Typ"
40
+
41
+ #: classes/class-aal-activity-log-list-table.php:115
42
+ msgid "Label"
43
+ msgstr "Označení"
44
+
45
+ #: classes/class-aal-activity-log-list-table.php:116
46
+ msgid "Action"
47
+ msgstr "Akce"
48
+
49
+ #: classes/class-aal-activity-log-list-table.php:117
50
+ msgid "Description"
51
+ msgstr "Popis"
52
+
53
+ #: classes/class-aal-activity-log-list-table.php:137
54
+ #, php-format
55
+ msgid "%s ago"
56
+ msgstr "%s nazpět"
57
+
58
+ #: classes/class-aal-activity-log-list-table.php:166
59
+ msgid "Unknown"
60
+ msgstr "Neznámý"
61
+
62
+ #: classes/class-aal-activity-log-list-table.php:172
63
+ #: classes/class-aal-activity-log-list-table.php:291
64
+ msgid "Guest"
65
+ msgstr "Host"
66
+
67
+ #: classes/class-aal-activity-log-list-table.php:215
68
+ msgid "All"
69
+ msgstr "Vše"
70
+
71
+ #: classes/class-aal-activity-log-list-table.php:235
72
+ msgid "Search"
73
+ msgstr "Hledat"
74
+
75
+ #: classes/class-aal-activity-log-list-table.php:278
76
+ msgid "All Roles"
77
+ msgstr "Všechny role"
78
+
79
+ #: classes/class-aal-activity-log-list-table.php:302
80
+ msgid "All Users"
81
+ msgstr "Všichni uživatelé"
82
+
83
+ #: classes/class-aal-activity-log-list-table.php:330
84
+ msgid "All Types"
85
+ msgstr "Všechny typy"
86
+
87
+ #: classes/class-aal-activity-log-list-table.php:356
88
+ msgid "All Actions"
89
+ msgstr "Všechny akce"
90
+
91
+ #: classes/class-aal-activity-log-list-table.php:367
92
+ msgid "All Time"
93
+ msgstr "Od počátku"
94
+
95
+ #: classes/class-aal-activity-log-list-table.php:368
96
+ msgid "Today"
97
+ msgstr "Dnes"
98
+
99
+ #: classes/class-aal-activity-log-list-table.php:369
100
+ msgid "Yesterday"
101
+ msgstr "Včera"
102
+
103
+ #: classes/class-aal-activity-log-list-table.php:370
104
+ msgid "Week"
105
+ msgstr "Týden"
106
+
107
+ #: classes/class-aal-activity-log-list-table.php:371
108
+ msgid "Month"
109
+ msgstr "Měsíc"
110
+
111
+ #: classes/class-aal-activity-log-list-table.php:378
112
+ msgid "Filter"
113
+ msgstr "Filtrovat"
114
+
115
+ #: classes/class-aal-admin-ui.php:16 classes/class-aal-admin-ui.php:26
116
+ #: language/strings.php:5
117
+ msgid "Activity Log"
118
+ msgstr "Protokol změn"
119
+
120
+ #: classes/class-aal-help.php:20
121
+ msgid "Overview"
122
+ msgstr "Přehled"
123
+
124
+ #: classes/class-aal-help.php:23 classes/class-aal-settings.php:125
125
+ #: classes/class-aal-settings.php:197
126
+ msgid "Notifications"
127
+ msgstr "Upozornění"
128
+
129
+ #: classes/class-aal-help.php:24
130
+ msgid ""
131
+ "This screen lets you control what will happen once a user on your site does "
132
+ "something you define. For instance, let us assume that you have created a "
133
+ "user on your site\n"
134
+ " for your content editor. Now, let's say that every time "
135
+ "that user updates a post, you want to know about it. You can easily do it "
136
+ "from this page."
137
+ msgstr ""
138
+
139
+ #: classes/class-aal-notifications.php:273
140
+ msgid "The AAL notification handler you are trying to register does not exist."
141
+ msgstr ""
142
+
143
+ #: classes/class-aal-settings.php:26
144
+ msgid "GitHub"
145
+ msgstr "GitHub"
146
+
147
+ #: classes/class-aal-settings.php:29 classes/class-aal-settings.php:44
148
+ msgid "Settings"
149
+ msgstr "Nastavení"
150
+
151
+ #: classes/class-aal-settings.php:43 classes/class-aal-settings.php:227
152
+ msgid "Activity Log Settings"
153
+ msgstr "Nastavení protokolu změn"
154
+
155
+ #: classes/class-aal-settings.php:82
156
+ msgid "Display Options"
157
+ msgstr "Možnosti zobrazení"
158
+
159
+ #: classes/class-aal-settings.php:89
160
+ msgid "Keep logs for"
161
+ msgstr "Uchovat protokoly na"
162
+
163
+ #: classes/class-aal-settings.php:98
164
+ msgid "days."
165
+ msgstr "dnů."
166
+
167
+ #: classes/class-aal-settings.php:99 classes/class-aal-settings.php:139
168
+ msgid ""
169
+ "Maximum number of days to keep activity log. Leave blank to keep activity "
170
+ "log forever (not recommended)."
171
+ msgstr ""
172
+ "Maximální počet dnů uchování protokolu změn. Ponechejte prázdné pro uchování "
173
+ "protokolu změn nadobro (není doporučeno)."
174
+
175
+ #: classes/class-aal-settings.php:106
176
+ msgid "Delete Log Activities"
177
+ msgstr "Odstranit protokol změn"
178
+
179
+ #: classes/class-aal-settings.php:111
180
+ #, php-format
181
+ msgid "<a href=\"%s\" id=\"%s\">Reset Database</a>"
182
+ msgstr "<a href=\"%s\" id=\"%s\">Obnovit databázi</a>"
183
+
184
+ #: classes/class-aal-settings.php:115
185
+ msgid "Warning: Clicking this will delete all activities from the database."
186
+ msgstr ""
187
+ "Upozornění: Klepnutím na toto tlačítko odstraníte všechny změny z databáze."
188
+
189
+ #: classes/class-aal-settings.php:132
190
+ msgid "Notification Events"
191
+ msgstr "Oznámení událostí"
192
+
193
+ #: classes/class-aal-settings.php:160
194
+ msgid "Enable?"
195
+ msgstr "Povolit?"
196
+
197
+ #: classes/class-aal-settings.php:196
198
+ msgid "General"
199
+ msgstr "Všeobecné"
200
+
201
+ #: classes/class-aal-settings.php:246
202
+ msgid "All activities have been successfully deleted."
203
+ msgstr "Všechny změny byly úspěšně odstraněny."
204
+
205
+ #: classes/class-aal-settings.php:257
206
+ msgid "Are you sure you want to do this action?"
207
+ msgstr "Jste si jisti, že chcete provést tuto akci?"
208
+
209
+ #: classes/class-aal-settings.php:268
210
+ msgid "You do not have sufficient permissions to access this page."
211
+ msgstr "Nemáte dostatečná oprávnění pro přístup na tuto stránku."
212
+
213
+ #: classes/class-aal-settings.php:321
214
+ msgid "These are some basic settings for Activity Log."
215
+ msgstr "Toto jsou některá základní nastavení Protokolu změn."
216
+
217
+ #: classes/class-aal-settings.php:327
218
+ msgid ""
219
+ "Serve yourself with custom-tailored notifications. First, define your "
220
+ "conditions. Then, choose how the notifications will be sent."
221
+ msgstr ""
222
+ "Poslužte si oznámeními na míru. Nejprve definujte své podmínky. Pak vyberte, "
223
+ "jak budou oznámení odeslána."
224
+
225
+ #: classes/class-aal-settings.php:426
226
+ msgid "Yes"
227
+ msgstr "Ano"
228
+
229
+ #: classes/class-aal-settings.php:427
230
+ msgid "No"
231
+ msgstr "Ne"
232
+
233
+ #: classes/class-aal-settings.php:444 language/strings.php:22
234
+ #: notifications/abstract-class-aal-notification-base.php:98
235
+ msgid "User"
236
+ msgstr "Uživatel"
237
+
238
+ #: classes/class-aal-settings.php:445
239
+ #: notifications/abstract-class-aal-notification-base.php:101
240
+ msgid "Action Type"
241
+ msgstr "Typ akce"
242
+
243
+ #: classes/class-aal-settings.php:446
244
+ msgid "Action Performed"
245
+ msgstr "Provedená akce"
246
+
247
+ #: classes/class-aal-settings.php:450
248
+ msgid "equals to"
249
+ msgstr "rovná se"
250
+
251
+ #: classes/class-aal-settings.php:451
252
+ msgid "not equals to"
253
+ msgstr "nerovná se"
254
+
255
+ #: classes/class-aal-settings.php:461
256
+ msgid ""
257
+ "A notification will be sent upon a successful match with the following "
258
+ "conditions:"
259
+ msgstr "Oznámení bude odesláno v případě úspěšné shody s těmito podmínkami:"
260
+
261
+ #: hooks/class-aal-hook-posts.php:9
262
+ msgid "(no title)"
263
+ msgstr "(bez názvu)"
264
+
265
+ #: language/strings.php:6
266
+ msgid ""
267
+ "Get aware of any activities that are taking place on your dashboard! Imagine "
268
+ "it like a black-box for your WordPress site. e.g. post was deleted, plugin "
269
+ "was activated, user logged in or logged out - it's all these for you to see."
270
+ msgstr ""
271
+
272
+ #: language/strings.php:8
273
+ msgid "Administrator"
274
+ msgstr "Správce"
275
+
276
+ #: language/strings.php:9
277
+ msgid "Editor"
278
+ msgstr "Editor"
279
+
280
+ #: language/strings.php:12
281
+ msgid "Post"
282
+ msgstr "Příspěvek"
283
+
284
+ #: language/strings.php:13
285
+ msgid "created"
286
+ msgstr "vytvořen"
287
+
288
+ #: language/strings.php:14
289
+ msgid "updated"
290
+ msgstr "aktualizován"
291
+
292
+ #: language/strings.php:15
293
+ msgid "deleted"
294
+ msgstr "odstraněn"
295
+
296
+ #: language/strings.php:18
297
+ msgid "Attachment"
298
+ msgstr "Příloha"
299
+
300
+ #: language/strings.php:19
301
+ msgid "added"
302
+ msgstr "přidána"
303
+
304
+ #: language/strings.php:23
305
+ msgid "logged_out"
306
+ msgstr "přihlášen"
307
+
308
+ #: language/strings.php:24
309
+ msgid "logged_in"
310
+ msgstr "odhlášen"
311
+
312
+ #: language/strings.php:25
313
+ msgid "wrong_password"
314
+ msgstr "špatné_heslo"
315
+
316
+ #: language/strings.php:28
317
+ msgid "Plugin"
318
+ msgstr "Plugin"
319
+
320
+ #: language/strings.php:29
321
+ msgid "activated"
322
+ msgstr "aktivován"
323
+
324
+ #: language/strings.php:30
325
+ msgid "deactivated"
326
+ msgstr "deaktivován"
327
+
328
+ #: language/strings.php:31
329
+ msgid "installed"
330
+ msgstr "nainstalován"
331
+
332
+ #: language/strings.php:34
333
+ msgid "Theme"
334
+ msgstr "Téma"
335
+
336
+ #: language/strings.php:35
337
+ msgid "Theme Customizer"
338
+ msgstr "Přizpůsobení tématu"
339
+
340
+ #: language/strings.php:38
341
+ msgid "Widget"
342
+ msgstr "Widget"
343
+
344
+ #: language/strings.php:41
345
+ msgid "Options"
346
+ msgstr "Nastavení"
347
+
348
+ #: language/strings.php:44
349
+ msgid "Menu"
350
+ msgstr "Menu"
351
+
352
+ #: language/strings.php:47
353
+ msgid "Taxonomy"
354
+ msgstr "Taxonomie"
355
+
356
+ #: language/strings.php:50
357
+ msgid "Core"
358
+ msgstr "Jádro"
359
+
360
+ #: language/strings.php:51
361
+ msgid "WordPress Updated"
362
+ msgstr "WordPress aktualizován"
363
+
364
+ #: language/strings.php:52
365
+ msgid "WordPress Auto Updated"
366
+ msgstr "WordPress automaticky aktualizován"
367
+
368
+ #: language/strings.php:55
369
+ msgid "Comments"
370
+ msgstr "Komentáře"
371
+
372
+ #: language/strings.php:56
373
+ msgid "pending"
374
+ msgstr "čekající"
375
+
376
+ #: language/strings.php:57
377
+ msgid "approved"
378
+ msgstr "schválen"
379
+
380
+ #: language/strings.php:58
381
+ msgid "unapproved"
382
+ msgstr "neschválen"
383
+
384
+ #: language/strings.php:59
385
+ msgid "trashed"
386
+ msgstr "odstraněn"
387
+
388
+ #: language/strings.php:60
389
+ msgid "untrashed"
390
+ msgstr "obnoven"
391
+
392
+ #: language/strings.php:61
393
+ msgid "spammed"
394
+ msgstr ""
395
+
396
+ #: language/strings.php:62
397
+ msgid "unspammed"
398
+ msgstr ""
399
+
400
+ #: language/strings.php:67
401
+ msgid "blogname"
402
+ msgstr ""
403
+
404
+ #: language/strings.php:68
405
+ msgid "blogdescription"
406
+ msgstr ""
407
+
408
+ #: language/strings.php:69
409
+ msgid "siteurl"
410
+ msgstr ""
411
+
412
+ #: language/strings.php:70
413
+ msgid "home"
414
+ msgstr ""
415
+
416
+ #: language/strings.php:71
417
+ msgid "admin_email"
418
+ msgstr ""
419
+
420
+ #: language/strings.php:72
421
+ msgid "users_can_register"
422
+ msgstr ""
423
+
424
+ #: language/strings.php:73
425
+ msgid "default_role"
426
+ msgstr ""
427
+
428
+ #: language/strings.php:74
429
+ msgid "timezone_string"
430
+ msgstr ""
431
+
432
+ #: language/strings.php:75
433
+ msgid "date_format"
434
+ msgstr ""
435
+
436
+ #: language/strings.php:76
437
+ msgid "time_format"
438
+ msgstr ""
439
+
440
+ #: language/strings.php:77
441
+ msgid "start_of_week"
442
+ msgstr ""
443
+
444
+ #: language/strings.php:80
445
+ msgid "use_smilies"
446
+ msgstr ""
447
+
448
+ #: language/strings.php:81
449
+ msgid "use_balanceTags"
450
+ msgstr ""
451
+
452
+ #: language/strings.php:82
453
+ msgid "default_category"
454
+ msgstr ""
455
+
456
+ #: language/strings.php:83
457
+ msgid "default_post_format"
458
+ msgstr ""
459
+
460
+ #: language/strings.php:84
461
+ msgid "mailserver_url"
462
+ msgstr ""
463
+
464
+ #: language/strings.php:85
465
+ msgid "mailserver_login"
466
+ msgstr ""
467
+
468
+ #: language/strings.php:86
469
+ msgid "mailserver_pass"
470
+ msgstr ""
471
+
472
+ #: language/strings.php:87
473
+ msgid "default_email_category"
474
+ msgstr ""
475
+
476
+ #: language/strings.php:88
477
+ msgid "ping_sites"
478
+ msgstr ""
479
+
480
+ #: language/strings.php:91
481
+ msgid "show_on_front"
482
+ msgstr ""
483
+
484
+ #: language/strings.php:92
485
+ msgid "page_on_front"
486
+ msgstr ""
487
+
488
+ #: language/strings.php:93
489
+ msgid "page_for_posts"
490
+ msgstr ""
491
+
492
+ #: language/strings.php:94
493
+ msgid "posts_per_page"
494
+ msgstr ""
495
+
496
+ #: language/strings.php:95
497
+ msgid "posts_per_rss"
498
+ msgstr ""
499
+
500
+ #: language/strings.php:96
501
+ msgid "rss_use_excerpt"
502
+ msgstr ""
503
+
504
+ #: language/strings.php:97
505
+ msgid "blog_public"
506
+ msgstr ""
507
+
508
+ #: language/strings.php:100
509
+ msgid "default_pingback_flag"
510
+ msgstr ""
511
+
512
+ #: language/strings.php:101
513
+ msgid "default_ping_status"
514
+ msgstr ""
515
+
516
+ #: language/strings.php:102
517
+ msgid "default_comment_status"
518
+ msgstr ""
519
+
520
+ #: language/strings.php:103
521
+ msgid "require_name_email"
522
+ msgstr ""
523
+
524
+ #: language/strings.php:104
525
+ msgid "comment_registration"
526
+ msgstr ""
527
+
528
+ #: language/strings.php:105
529
+ msgid "close_comments_for_old_posts"
530
+ msgstr ""
531
+
532
+ #: language/strings.php:106
533
+ msgid "close_comments_days_old"
534
+ msgstr ""
535
+
536
+ #: language/strings.php:107
537
+ msgid "thread_comments"
538
+ msgstr ""
539
+
540
+ #: language/strings.php:108
541
+ msgid "thread_comments_depth"
542
+ msgstr ""
543
+
544
+ #: language/strings.php:109
545
+ msgid "page_comments"
546
+ msgstr ""
547
+
548
+ #: language/strings.php:110
549
+ msgid "comments_per_page"
550
+ msgstr ""
551
+
552
+ #: language/strings.php:111
553
+ msgid "default_comments_page"
554
+ msgstr ""
555
+
556
+ #: language/strings.php:112
557
+ msgid "comment_order"
558
+ msgstr ""
559
+
560
+ #: language/strings.php:113
561
+ msgid "comments_notify"
562
+ msgstr ""
563
+
564
+ #: language/strings.php:114
565
+ msgid "moderation_notify"
566
+ msgstr ""
567
+
568
+ #: language/strings.php:115
569
+ msgid "comment_moderation"
570
+ msgstr ""
571
+
572
+ #: language/strings.php:116
573
+ msgid "comment_whitelist"
574
+ msgstr ""
575
+
576
+ #: language/strings.php:117
577
+ msgid "comment_max_links"
578
+ msgstr ""
579
+
580
+ #: language/strings.php:118
581
+ msgid "moderation_keys"
582
+ msgstr ""
583
+
584
+ #: language/strings.php:119
585
+ msgid "blacklist_keys"
586
+ msgstr ""
587
+
588
+ #: language/strings.php:120
589
+ msgid "show_avatars"
590
+ msgstr ""
591
+
592
+ #: language/strings.php:121
593
+ msgid "avatar_rating"
594
+ msgstr ""
595
+
596
+ #: language/strings.php:122
597
+ msgid "avatar_default"
598
+ msgstr ""
599
+
600
+ #: language/strings.php:125
601
+ msgid "thumbnail_size_w"
602
+ msgstr ""
603
+
604
+ #: language/strings.php:126
605
+ msgid "thumbnail_size_h"
606
+ msgstr ""
607
+
608
+ #: language/strings.php:127
609
+ msgid "thumbnail_crop"
610
+ msgstr ""
611
+
612
+ #: language/strings.php:128
613
+ msgid "medium_size_w"
614
+ msgstr ""
615
+
616
+ #: language/strings.php:129
617
+ msgid "medium_size_h"
618
+ msgstr ""
619
+
620
+ #: language/strings.php:130
621
+ msgid "large_size_w"
622
+ msgstr ""
623
+
624
+ #: language/strings.php:131
625
+ msgid "large_size_h"
626
+ msgstr ""
627
+
628
+ #: language/strings.php:132
629
+ msgid "uploads_use_yearmonth_folders"
630
+ msgstr ""
631
+
632
+ #: language/strings.php:135
633
+ msgid "permalink_structure"
634
+ msgstr ""
635
+
636
+ #: language/strings.php:136
637
+ msgid "category_base"
638
+ msgstr ""
639
+
640
+ #: language/strings.php:137
641
+ msgid "tag_base"
642
+ msgstr ""
643
+
644
+ #: language/strings.php:140
645
+ msgid "Export"
646
+ msgstr "Exportovat"
647
+
648
+ #: language/strings.php:141
649
+ msgid "downloaded"
650
+ msgstr ""
651
+
652
+ #: notifications/abstract-class-aal-notification-base.php:99
653
+ msgid "Object Type"
654
+ msgstr "Typ objektu"
655
+
656
+ #: notifications/abstract-class-aal-notification-base.php:100
657
+ msgid "Object Name"
658
+ msgstr "Název objektu"
659
+
660
+ #: notifications/abstract-class-aal-notification-base.php:102
661
+ msgid "IP Address"
662
+ msgstr "IP adresa"
663
+
664
+ #: notifications/abstract-class-aal-notification-base.php:121
665
+ msgid "N/A"
666
+ msgstr "N/A"
667
+
668
+ #: notifications/class-aal-notification-email.php:15
669
+ msgid "Email"
670
+ msgstr "E-mail"
671
+
672
+ #: notifications/class-aal-notification-email.php:16
673
+ msgid "Get notified by Email."
674
+ msgstr "Získejte oznámení prostřednictvím e-mailu."
675
+
676
+ #: notifications/class-aal-notification-email.php:49
677
+ msgid "New notification from Activity Log"
678
+ msgstr "Nové oznámení od Protokolu změn"
679
+
680
+ #: notifications/class-aal-notification-email.php:65
681
+ msgid ""
682
+ "Hi there!\n"
683
+ "\n"
684
+ "A notification condition on [sitename] was matched. Here are the details:\n"
685
+ "\n"
686
+ "[action-details]\n"
687
+ "\n"
688
+ "Sent by ARYO Activity Log"
689
+ msgstr ""
690
+
691
+ #: notifications/class-aal-notification-email.php:67
692
+ msgid "From Email"
693
+ msgstr "E-mail odesílatele"
694
+
695
+ #: notifications/class-aal-notification-email.php:67
696
+ msgid "The source Email address"
697
+ msgstr "E-mailová adresa odesílatele"
698
+
699
+ #: notifications/class-aal-notification-email.php:68
700
+ msgid "To Email"
701
+ msgstr "E-mail příjemce"
702
+
703
+ #: notifications/class-aal-notification-email.php:68
704
+ msgid "The Email address notifications will be sent to"
705
+ msgstr "E-mailová adresa pro zaslání oznámení"
706
+
707
+ #: notifications/class-aal-notification-email.php:69
708
+ msgid "Message"
709
+ msgstr "Zpráva"
710
+
711
+ #: notifications/class-aal-notification-email.php:69
712
+ #, php-format
713
+ msgid "Customize the message using the following placeholders: %s"
714
+ msgstr "Upravte zprávu pomocí následujících zástupných znaků: %s"
language/aryo-aal.pot CHANGED
@@ -6,9 +6,9 @@
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: aryo-activity-log 2.2.2\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-06-29 19:15+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"
@@ -58,60 +58,60 @@ msgstr ""
58
  msgid "%s ago"
59
  msgstr ""
60
 
61
- #: classes/class-aal-activity-log-list-table.php:164
62
  msgid "Unknown"
63
  msgstr ""
64
 
65
- #: classes/class-aal-activity-log-list-table.php:170
66
- #: classes/class-aal-activity-log-list-table.php:283
67
  msgid "Guest"
68
  msgstr ""
69
 
70
- #: classes/class-aal-activity-log-list-table.php:209
71
  msgid "All"
72
  msgstr ""
73
 
74
- #: classes/class-aal-activity-log-list-table.php:227
75
  msgid "Search"
76
  msgstr ""
77
 
78
- #: classes/class-aal-activity-log-list-table.php:270
79
  msgid "All Roles"
80
  msgstr ""
81
 
82
- #: classes/class-aal-activity-log-list-table.php:294
83
  msgid "All Users"
84
  msgstr ""
85
 
86
- #: classes/class-aal-activity-log-list-table.php:322
87
  msgid "All Types"
88
  msgstr ""
89
 
90
- #: classes/class-aal-activity-log-list-table.php:348
91
  msgid "All Actions"
92
  msgstr ""
93
 
94
- #: classes/class-aal-activity-log-list-table.php:359
95
  msgid "All Time"
96
  msgstr ""
97
 
98
- #: classes/class-aal-activity-log-list-table.php:360
99
  msgid "Today"
100
  msgstr ""
101
 
102
- #: classes/class-aal-activity-log-list-table.php:361
103
  msgid "Yesterday"
104
  msgstr ""
105
 
106
- #: classes/class-aal-activity-log-list-table.php:362
107
  msgid "Week"
108
  msgstr ""
109
 
110
- #: classes/class-aal-activity-log-list-table.php:363
111
  msgid "Month"
112
  msgstr ""
113
 
114
- #: classes/class-aal-activity-log-list-table.php:370
115
  msgid "Filter"
116
  msgstr ""
117
 
@@ -256,7 +256,7 @@ msgid ""
256
  "conditions:"
257
  msgstr ""
258
 
259
- #: hooks/class-aal-hook-posts.php:9
260
  msgid "(no title)"
261
  msgstr ""
262
 
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: aryo-activity-log 2.2.4\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2015-08-06 18:44+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"
58
  msgid "%s ago"
59
  msgstr ""
60
 
61
+ #: classes/class-aal-activity-log-list-table.php:166
62
  msgid "Unknown"
63
  msgstr ""
64
 
65
+ #: classes/class-aal-activity-log-list-table.php:172
66
+ #: classes/class-aal-activity-log-list-table.php:291
67
  msgid "Guest"
68
  msgstr ""
69
 
70
+ #: classes/class-aal-activity-log-list-table.php:215
71
  msgid "All"
72
  msgstr ""
73
 
74
+ #: classes/class-aal-activity-log-list-table.php:235
75
  msgid "Search"
76
  msgstr ""
77
 
78
+ #: classes/class-aal-activity-log-list-table.php:278
79
  msgid "All Roles"
80
  msgstr ""
81
 
82
+ #: classes/class-aal-activity-log-list-table.php:302
83
  msgid "All Users"
84
  msgstr ""
85
 
86
+ #: classes/class-aal-activity-log-list-table.php:330
87
  msgid "All Types"
88
  msgstr ""
89
 
90
+ #: classes/class-aal-activity-log-list-table.php:356
91
  msgid "All Actions"
92
  msgstr ""
93
 
94
+ #: classes/class-aal-activity-log-list-table.php:367
95
  msgid "All Time"
96
  msgstr ""
97
 
98
+ #: classes/class-aal-activity-log-list-table.php:368
99
  msgid "Today"
100
  msgstr ""
101
 
102
+ #: classes/class-aal-activity-log-list-table.php:369
103
  msgid "Yesterday"
104
  msgstr ""
105
 
106
+ #: classes/class-aal-activity-log-list-table.php:370
107
  msgid "Week"
108
  msgstr ""
109
 
110
+ #: classes/class-aal-activity-log-list-table.php:371
111
  msgid "Month"
112
  msgstr ""
113
 
114
+ #: classes/class-aal-activity-log-list-table.php:378
115
  msgid "Filter"
116
  msgstr ""
117
 
256
  "conditions:"
257
  msgstr ""
258
 
259
+ #: hooks/class-aal-hook-posts.php:10
260
  msgid "(no title)"
261
  msgstr ""
262
 
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.2
6
- Stable tag: 2.2.2
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.
@@ -59,6 +59,7 @@ If you have tens of users or more, you really can’t know who did it. This plug
59
  * Persian (fa_IR) - [Promising](http://vwp.ir/)
60
  * Russian (ru_RU) - Oleg Reznikov
61
  * Polish (pl_PL) - Maciej Gryniuk
 
62
 
63
  The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
64
 
@@ -94,6 +95,12 @@ Would you like to like to contribute to Activity Log? You are more than welcome
94
 
95
  == Changelog ==
96
 
 
 
 
 
 
 
97
  = 2.2.2 =
98
  * Fixed! some PHP strict standards (PHP v5.4+)
99
 
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.2
6
+ Stable tag: 2.2.4
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.
59
  * Persian (fa_IR) - [Promising](http://vwp.ir/)
60
  * Russian (ru_RU) - Oleg Reznikov
61
  * Polish (pl_PL) - Maciej Gryniuk
62
+ * Czech (cs_CZ) - Martin Kokeš
63
 
64
  The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
65
 
95
 
96
  == Changelog ==
97
 
98
+ = 2.2.4 =
99
+ * New! - Added translate: Czech (cs_CZ) - Thanks to Martin Kokeš ([#76](https://github.com/KingYes/wordpress-aryo-activity-log/pull/76))
100
+
101
+ = 2.2.3 =
102
+ * Tweak! - Added more filters in table list columns
103
+
104
  = 2.2.2 =
105
  * Fixed! some PHP strict standards (PHP v5.4+)
106