Version Description
- New! - Added translate: Finnish (fi) - Thanks to Nazq (topic)
- Tweak! - Better actions label in list table
- Fixed! - Notice php warring in MU delete site
- Tested up to WordPress v4.3
Download this release
Release Info
Developer | KingYes |
Plugin | Activity Log |
Version | 2.2.5 |
Comparing to | |
See all releases |
Code changes from version 2.2.4 to 2.2.5
- aryo-activity-log.php +1 -1
- classes/class-aal-activity-log-list-table.php +6 -2
- classes/class-aal-maintenance.php +1 -1
- language/aryo-aal-fi.mo +0 -0
- language/aryo-aal-fi.po +736 -0
- language/aryo-aal.pot +26 -26
- readme.txt +9 -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://pojo.me/
|
8 |
-
Version: 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.5
|
9 |
Text Domain: aryo-aal
|
10 |
Domain Path: /language/
|
11 |
License: GPLv2 or later
|
classes/class-aal-activity-log-list-table.php
CHANGED
@@ -65,6 +65,10 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
|
|
65 |
|
66 |
return 'AND (' . implode( ' OR ', $where ) . ') AND (' . implode( ' OR ', $where_caps ) . ')';
|
67 |
}
|
|
|
|
|
|
|
|
|
68 |
|
69 |
public function __construct( $args = array() ) {
|
70 |
parent::__construct(
|
@@ -131,7 +135,7 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
|
|
131 |
|
132 |
switch ( $column_name ) {
|
133 |
case 'action' :
|
134 |
-
$return =
|
135 |
break;
|
136 |
case 'date' :
|
137 |
$return = sprintf( '<strong>' . __( '%s ago', 'aryo-aal' ) . '</strong>', human_time_diff( $item->hist_time, current_time( 'timestamp' ) ) );
|
@@ -350,7 +354,7 @@ class AAL_Activity_Log_List_Table extends WP_List_Table {
|
|
350 |
|
351 |
$output = array();
|
352 |
foreach ( $actions as $type )
|
353 |
-
$output[] = sprintf( '<option value="%
|
354 |
|
355 |
echo '<select name="showaction" id="hs-filter-showaction">';
|
356 |
printf( '<option value="">%s</option>', __( 'All Actions', 'aryo-aal' ) );
|
65 |
|
66 |
return 'AND (' . implode( ' OR ', $where ) . ') AND (' . implode( ' OR ', $where_caps ) . ')';
|
67 |
}
|
68 |
+
|
69 |
+
protected function _get_action_label( $action ) {
|
70 |
+
return ucwords( str_replace( '_', ' ', __( $action, 'aryo-aal' ) ) );
|
71 |
+
}
|
72 |
|
73 |
public function __construct( $args = array() ) {
|
74 |
parent::__construct(
|
135 |
|
136 |
switch ( $column_name ) {
|
137 |
case 'action' :
|
138 |
+
$return = $this->_get_action_label( $item->action );
|
139 |
break;
|
140 |
case 'date' :
|
141 |
$return = sprintf( '<strong>' . __( '%s ago', 'aryo-aal' ) . '</strong>', human_time_diff( $item->hist_time, current_time( 'timestamp' ) ) );
|
354 |
|
355 |
$output = array();
|
356 |
foreach ( $actions as $type )
|
357 |
+
$output[] = sprintf( '<option value="%s"%s>%s</option>', $type->action, selected( $_REQUEST['showaction'], $type->action, false ), $this->_get_action_label( $type->action ) );
|
358 |
|
359 |
echo '<select name="showaction" id="hs-filter-showaction">';
|
360 |
printf( '<option value="">%s</option>', __( 'All Actions', 'aryo-aal' ) );
|
classes/class-aal-maintenance.php
CHANGED
@@ -92,7 +92,7 @@ class AAL_Maintenance {
|
|
92 |
$wpdb->query( "DROP TABLE IF EXISTS `{$wpdb->prefix}aryo_activity_log`;" );
|
93 |
|
94 |
$admin_role = get_role( 'administrator' );
|
95 |
-
if ( $admin_role->has_cap( 'view_all_aryo_activity_log' ) )
|
96 |
$admin_role->remove_cap( 'view_all_aryo_activity_log' );
|
97 |
|
98 |
delete_option( 'activity_log_db_version' );
|
92 |
$wpdb->query( "DROP TABLE IF EXISTS `{$wpdb->prefix}aryo_activity_log`;" );
|
93 |
|
94 |
$admin_role = get_role( 'administrator' );
|
95 |
+
if ( $admin_role && $admin_role->has_cap( 'view_all_aryo_activity_log' ) )
|
96 |
$admin_role->remove_cap( 'view_all_aryo_activity_log' );
|
97 |
|
98 |
delete_option( 'activity_log_db_version' );
|
language/aryo-aal-fi.mo
ADDED
Binary file
|
language/aryo-aal-fi.po
ADDED
@@ -0,0 +1,736 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# SOME DESCRIPTIVE TITLE.
|
2 |
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3 |
+
# This file is distributed under the same license as the PACKAGE package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: aryo-activity-log 2.2.4\n"
|
9 |
+
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2015-08-10 07:03+0300\n"
|
11 |
+
"PO-Revision-Date: 2015-08-10 11:54+0300\n"
|
12 |
+
"Language-Team: Nazq\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"X-Generator: Poedit 1.8.2\n"
|
17 |
+
"Last-Translator: Yakir Sitbon <yakir@pojo.me>\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"Language: fi_FI\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;_c;esc_attr__\n"
|
21 |
+
|
22 |
+
#: aryo-activity-log.php:110 aryo-activity-log.php:121
|
23 |
+
msgid "Cheatin’ huh?"
|
24 |
+
msgstr "Yritätkös huijata, häh?"
|
25 |
+
|
26 |
+
#: classes/class-aal-activity-log-list-table.php:100
|
27 |
+
msgid "Activities"
|
28 |
+
msgstr "Tapahtumat"
|
29 |
+
|
30 |
+
#: classes/class-aal-activity-log-list-table.php:111
|
31 |
+
msgid "Date"
|
32 |
+
msgstr "Päivämäärä"
|
33 |
+
|
34 |
+
#: classes/class-aal-activity-log-list-table.php:112
|
35 |
+
msgid "Author"
|
36 |
+
msgstr "Käyttäjä"
|
37 |
+
|
38 |
+
#: classes/class-aal-activity-log-list-table.php:113
|
39 |
+
msgid "IP"
|
40 |
+
msgstr "IP"
|
41 |
+
|
42 |
+
#: classes/class-aal-activity-log-list-table.php:114
|
43 |
+
msgid "Type"
|
44 |
+
msgstr "Tyyppi"
|
45 |
+
|
46 |
+
#: classes/class-aal-activity-log-list-table.php:115
|
47 |
+
msgid "Label"
|
48 |
+
msgstr "Nimike"
|
49 |
+
|
50 |
+
#: classes/class-aal-activity-log-list-table.php:116
|
51 |
+
msgid "Action"
|
52 |
+
msgstr "Tapahtuma"
|
53 |
+
|
54 |
+
#: classes/class-aal-activity-log-list-table.php:117
|
55 |
+
msgid "Description"
|
56 |
+
msgstr "Kuvaus"
|
57 |
+
|
58 |
+
#: classes/class-aal-activity-log-list-table.php:137
|
59 |
+
#, php-format
|
60 |
+
msgid "%s ago"
|
61 |
+
msgstr "%s sitten"
|
62 |
+
|
63 |
+
#: classes/class-aal-activity-log-list-table.php:166
|
64 |
+
msgid "Unknown"
|
65 |
+
msgstr "Tuntematon"
|
66 |
+
|
67 |
+
#: classes/class-aal-activity-log-list-table.php:172
|
68 |
+
#: classes/class-aal-activity-log-list-table.php:291
|
69 |
+
msgid "Guest"
|
70 |
+
msgstr "Vieras"
|
71 |
+
|
72 |
+
#: classes/class-aal-activity-log-list-table.php:215
|
73 |
+
msgid "All"
|
74 |
+
msgstr "Kaikki"
|
75 |
+
|
76 |
+
#: classes/class-aal-activity-log-list-table.php:235
|
77 |
+
msgid "Search"
|
78 |
+
msgstr "Etsi"
|
79 |
+
|
80 |
+
#: classes/class-aal-activity-log-list-table.php:278
|
81 |
+
msgid "All Roles"
|
82 |
+
msgstr "Kaikki roolit"
|
83 |
+
|
84 |
+
#: classes/class-aal-activity-log-list-table.php:302
|
85 |
+
msgid "All Users"
|
86 |
+
msgstr "Kaikki käyttäjät"
|
87 |
+
|
88 |
+
#: classes/class-aal-activity-log-list-table.php:330
|
89 |
+
msgid "All Types"
|
90 |
+
msgstr "Kaikki tyypit"
|
91 |
+
|
92 |
+
#: classes/class-aal-activity-log-list-table.php:356
|
93 |
+
msgid "All Actions"
|
94 |
+
msgstr "Kaikki tapahtumat"
|
95 |
+
|
96 |
+
#: classes/class-aal-activity-log-list-table.php:367
|
97 |
+
msgid "All Time"
|
98 |
+
msgstr "Koko ajalta"
|
99 |
+
|
100 |
+
#: classes/class-aal-activity-log-list-table.php:368
|
101 |
+
msgid "Today"
|
102 |
+
msgstr "Tänään"
|
103 |
+
|
104 |
+
#: classes/class-aal-activity-log-list-table.php:369
|
105 |
+
msgid "Yesterday"
|
106 |
+
msgstr "Eilen"
|
107 |
+
|
108 |
+
#: classes/class-aal-activity-log-list-table.php:370
|
109 |
+
msgid "Week"
|
110 |
+
msgstr "Viikko"
|
111 |
+
|
112 |
+
#: classes/class-aal-activity-log-list-table.php:371
|
113 |
+
msgid "Month"
|
114 |
+
msgstr "Kuukausi"
|
115 |
+
|
116 |
+
#: classes/class-aal-activity-log-list-table.php:378
|
117 |
+
msgid "Filter"
|
118 |
+
msgstr "Suodata"
|
119 |
+
|
120 |
+
#: classes/class-aal-admin-ui.php:16 classes/class-aal-admin-ui.php:26
|
121 |
+
#: language/strings.php:5
|
122 |
+
msgid "Activity Log"
|
123 |
+
msgstr "Tapahtumaloki"
|
124 |
+
|
125 |
+
#: classes/class-aal-help.php:20
|
126 |
+
msgid "Overview"
|
127 |
+
msgstr "Yleiskatsaus"
|
128 |
+
|
129 |
+
#: classes/class-aal-help.php:23 classes/class-aal-settings.php:125
|
130 |
+
#: classes/class-aal-settings.php:197
|
131 |
+
msgid "Notifications"
|
132 |
+
msgstr "Ilmoitukset"
|
133 |
+
|
134 |
+
#: classes/class-aal-help.php:24
|
135 |
+
msgid ""
|
136 |
+
"This screen lets you control what will happen once a user on your site does "
|
137 |
+
"something you define. For instance, let us assume that you have created a "
|
138 |
+
"user on your site\n"
|
139 |
+
" for your content editor. Now, let's say that every time "
|
140 |
+
"that user updates a post, you want to know about it. You can easily do it "
|
141 |
+
"from this page."
|
142 |
+
msgstr ""
|
143 |
+
"Tämä ikkuna antaa sinulle mahdollisuuden hallita mitä tapahtuu, kun käyttäjä "
|
144 |
+
"sivustollasi tekee jotain, minkä olet määrittänyt. Esimerkiksi oletetaan, "
|
145 |
+
"että olet luonut käyttäjän sivustollesi sisällön muokkausta varten. Nyt, "
|
146 |
+
"joka kerta kun tämä käyttäjä päivittää artikkelia, haluat tietää siitä. Voit "
|
147 |
+
"helposti tehdä sen tältä sivulta."
|
148 |
+
|
149 |
+
#: classes/class-aal-notifications.php:273
|
150 |
+
msgid "The AAL notification handler you are trying to register does not exist."
|
151 |
+
msgstr ""
|
152 |
+
"AAL-ilmoituksenkäsittelijää, jota yrität rekisteröidä, ei ole olemassa."
|
153 |
+
|
154 |
+
#: classes/class-aal-settings.php:26
|
155 |
+
msgid "GitHub"
|
156 |
+
msgstr "GitHub"
|
157 |
+
|
158 |
+
#: classes/class-aal-settings.php:29 classes/class-aal-settings.php:44
|
159 |
+
msgid "Settings"
|
160 |
+
msgstr "Asetukset"
|
161 |
+
|
162 |
+
#: classes/class-aal-settings.php:43 classes/class-aal-settings.php:227
|
163 |
+
msgid "Activity Log Settings"
|
164 |
+
msgstr "Tapahtumalokin Asetukset"
|
165 |
+
|
166 |
+
#: classes/class-aal-settings.php:82
|
167 |
+
msgid "Display Options"
|
168 |
+
msgstr "Näyttöasetukset"
|
169 |
+
|
170 |
+
#: classes/class-aal-settings.php:89
|
171 |
+
msgid "Keep logs for"
|
172 |
+
msgstr "Pidä lokit"
|
173 |
+
|
174 |
+
#: classes/class-aal-settings.php:98
|
175 |
+
msgid "days."
|
176 |
+
msgstr "päivältä."
|
177 |
+
|
178 |
+
#: classes/class-aal-settings.php:99 classes/class-aal-settings.php:139
|
179 |
+
msgid ""
|
180 |
+
"Maximum number of days to keep activity log. Leave blank to keep activity "
|
181 |
+
"log forever (not recommended)."
|
182 |
+
msgstr ""
|
183 |
+
"Suurin määrä päiviä, joiden ajalta pidetään tapahtumalokia. Jätä tyhjäksi "
|
184 |
+
"pitääksesi tapahtumalokia ikuisesti (ei suositella)."
|
185 |
+
|
186 |
+
#: classes/class-aal-settings.php:106
|
187 |
+
msgid "Delete Log Activities"
|
188 |
+
msgstr "Poista lokin tapahtumat"
|
189 |
+
|
190 |
+
#: classes/class-aal-settings.php:111
|
191 |
+
#, php-format
|
192 |
+
msgid "<a href=\"%s\" id=\"%s\">Reset Database</a>"
|
193 |
+
msgstr "<a href=\"%s\" id=\"%s\">Poista tietokanta</a>"
|
194 |
+
|
195 |
+
#: classes/class-aal-settings.php:115
|
196 |
+
msgid "Warning: Clicking this will delete all activities from the database."
|
197 |
+
msgstr "Varoitus: Klikkaamalla tätä poistat kaikki tapahtumat tietokannasta."
|
198 |
+
|
199 |
+
#: classes/class-aal-settings.php:132
|
200 |
+
msgid "Notification Events"
|
201 |
+
msgstr "Tapahtumailmoitukset"
|
202 |
+
|
203 |
+
#: classes/class-aal-settings.php:160
|
204 |
+
msgid "Enable?"
|
205 |
+
msgstr "Ota käyttöön?"
|
206 |
+
|
207 |
+
#: classes/class-aal-settings.php:196
|
208 |
+
msgid "General"
|
209 |
+
msgstr "Yleinen"
|
210 |
+
|
211 |
+
#: classes/class-aal-settings.php:246
|
212 |
+
msgid "All activities have been successfully deleted."
|
213 |
+
msgstr "Kaikki tapahtumat on poistettu onnistuneesti."
|
214 |
+
|
215 |
+
#: classes/class-aal-settings.php:257
|
216 |
+
msgid "Are you sure you want to do this action?"
|
217 |
+
msgstr "Oletko varma, että haluat tehdä tämän?"
|
218 |
+
|
219 |
+
#: classes/class-aal-settings.php:268
|
220 |
+
msgid "You do not have sufficient permissions to access this page."
|
221 |
+
msgstr "Sinulla ei ole tarvittavia oikeuksia päästäksesi tälle sivulle."
|
222 |
+
|
223 |
+
#: classes/class-aal-settings.php:321
|
224 |
+
msgid "These are some basic settings for Activity Log."
|
225 |
+
msgstr "Nämä ovat perusasetukset Tapahtumalokille."
|
226 |
+
|
227 |
+
#: classes/class-aal-settings.php:327
|
228 |
+
msgid ""
|
229 |
+
"Serve yourself with custom-tailored notifications. First, define your "
|
230 |
+
"conditions. Then, choose how the notifications will be sent."
|
231 |
+
msgstr ""
|
232 |
+
"Tarjoa itsellesi räätälöityjä ilmoituksia. Ensimmäiseksi määritä ehtosi. Sen "
|
233 |
+
"jälkeen valitse miten ilmoitukset lähetetään."
|
234 |
+
|
235 |
+
#: classes/class-aal-settings.php:426
|
236 |
+
msgid "Yes"
|
237 |
+
msgstr "Kyllä"
|
238 |
+
|
239 |
+
#: classes/class-aal-settings.php:427
|
240 |
+
msgid "No"
|
241 |
+
msgstr "Ei"
|
242 |
+
|
243 |
+
#: classes/class-aal-settings.php:444 language/strings.php:22
|
244 |
+
#: notifications/abstract-class-aal-notification-base.php:98
|
245 |
+
msgid "User"
|
246 |
+
msgstr "Käyttäjä"
|
247 |
+
|
248 |
+
#: classes/class-aal-settings.php:445
|
249 |
+
#: notifications/abstract-class-aal-notification-base.php:101
|
250 |
+
msgid "Action Type"
|
251 |
+
msgstr "Tapahtuman tyyppi"
|
252 |
+
|
253 |
+
#: classes/class-aal-settings.php:446
|
254 |
+
msgid "Action Performed"
|
255 |
+
msgstr "Tapahtuman suoritus"
|
256 |
+
|
257 |
+
#: classes/class-aal-settings.php:450
|
258 |
+
msgid "equals to"
|
259 |
+
msgstr "vastaa"
|
260 |
+
|
261 |
+
#: classes/class-aal-settings.php:451
|
262 |
+
msgid "not equals to"
|
263 |
+
msgstr "ei vastaa"
|
264 |
+
|
265 |
+
#: classes/class-aal-settings.php:461
|
266 |
+
msgid ""
|
267 |
+
"A notification will be sent upon a successful match with the following "
|
268 |
+
"conditions:"
|
269 |
+
msgstr ""
|
270 |
+
"Ilmoitus lähetetään, kun tapahtuma vastaa onnistuneesti seuraavia ehtoja:"
|
271 |
+
|
272 |
+
#: hooks/class-aal-hook-posts.php:10
|
273 |
+
msgid "(no title)"
|
274 |
+
msgstr "(ei otsikkoa)"
|
275 |
+
|
276 |
+
#: language/strings.php:6
|
277 |
+
msgid ""
|
278 |
+
"Get aware of any activities that are taking place on your dashboard! Imagine "
|
279 |
+
"it like a black-box for your WordPress site. e.g. post was deleted, plugin "
|
280 |
+
"was activated, user logged in or logged out - it's all these for you to see."
|
281 |
+
msgstr ""
|
282 |
+
"Tule tietoiseksi kaikesta toiminnasta, joka tapahtuu ohjausnäkymässäsi! "
|
283 |
+
"Kuvittele lisäosaa mustana laatikkona WordPress-sivustollesi. Esim. "
|
284 |
+
"artikkeli poistettiin, lisäosa aktivoitiin, käyttäjä kirjautui ulos tai "
|
285 |
+
"käyttäjä kirjautui sisään - tämä kaikki sinulle nähtäväksi!"
|
286 |
+
|
287 |
+
#: language/strings.php:8
|
288 |
+
msgid "Administrator"
|
289 |
+
msgstr "Ylläpitäjä"
|
290 |
+
|
291 |
+
#: language/strings.php:9
|
292 |
+
msgid "Editor"
|
293 |
+
msgstr "Päätoimittaja"
|
294 |
+
|
295 |
+
#: language/strings.php:12
|
296 |
+
msgid "Post"
|
297 |
+
msgstr "Artikkeli"
|
298 |
+
|
299 |
+
#: language/strings.php:13
|
300 |
+
msgid "created"
|
301 |
+
msgstr "Luotu"
|
302 |
+
|
303 |
+
#: language/strings.php:14
|
304 |
+
msgid "updated"
|
305 |
+
msgstr "Päivitetty"
|
306 |
+
|
307 |
+
#: language/strings.php:15
|
308 |
+
msgid "deleted"
|
309 |
+
msgstr "Poistettu"
|
310 |
+
|
311 |
+
#: language/strings.php:18
|
312 |
+
msgid "Attachment"
|
313 |
+
msgstr "Liite"
|
314 |
+
|
315 |
+
#: language/strings.php:19
|
316 |
+
msgid "added"
|
317 |
+
msgstr "Lisätty"
|
318 |
+
|
319 |
+
#: language/strings.php:23
|
320 |
+
msgid "logged_out"
|
321 |
+
msgstr "kirjautui_ulos"
|
322 |
+
|
323 |
+
#: language/strings.php:24
|
324 |
+
msgid "logged_in"
|
325 |
+
msgstr "kirjautui_sisään"
|
326 |
+
|
327 |
+
#: language/strings.php:25
|
328 |
+
msgid "wrong_password"
|
329 |
+
msgstr "väärä_salasana"
|
330 |
+
|
331 |
+
#: language/strings.php:28
|
332 |
+
msgid "Plugin"
|
333 |
+
msgstr "Lisäosa"
|
334 |
+
|
335 |
+
#: language/strings.php:29
|
336 |
+
msgid "activated"
|
337 |
+
msgstr "Aktivoitu"
|
338 |
+
|
339 |
+
#: language/strings.php:30
|
340 |
+
msgid "deactivated"
|
341 |
+
msgstr "Deaktivoitu"
|
342 |
+
|
343 |
+
#: language/strings.php:31
|
344 |
+
msgid "installed"
|
345 |
+
msgstr "asennettu"
|
346 |
+
|
347 |
+
#: language/strings.php:34
|
348 |
+
msgid "Theme"
|
349 |
+
msgstr "Teema"
|
350 |
+
|
351 |
+
#: language/strings.php:35
|
352 |
+
msgid "Theme Customizer"
|
353 |
+
msgstr "Teeman muokkain"
|
354 |
+
|
355 |
+
#: language/strings.php:38
|
356 |
+
msgid "Widget"
|
357 |
+
msgstr "Vimpain"
|
358 |
+
|
359 |
+
#: language/strings.php:41
|
360 |
+
msgid "Options"
|
361 |
+
msgstr "Asetukset"
|
362 |
+
|
363 |
+
#: language/strings.php:44
|
364 |
+
msgid "Menu"
|
365 |
+
msgstr "Valikko"
|
366 |
+
|
367 |
+
#: language/strings.php:47
|
368 |
+
msgid "Taxonomy"
|
369 |
+
msgstr "Taksonomia"
|
370 |
+
|
371 |
+
#: language/strings.php:50
|
372 |
+
msgid "Core"
|
373 |
+
msgstr "WP:n ydin"
|
374 |
+
|
375 |
+
#: language/strings.php:51
|
376 |
+
msgid "WordPress Updated"
|
377 |
+
msgstr "WordPress päivitetty"
|
378 |
+
|
379 |
+
#: language/strings.php:52
|
380 |
+
msgid "WordPress Auto Updated"
|
381 |
+
msgstr "WordPress päivitetty automaattisesti"
|
382 |
+
|
383 |
+
#: language/strings.php:55
|
384 |
+
msgid "Comments"
|
385 |
+
msgstr "Kommentit"
|
386 |
+
|
387 |
+
#: language/strings.php:56
|
388 |
+
msgid "pending"
|
389 |
+
msgstr "vireillä"
|
390 |
+
|
391 |
+
#: language/strings.php:57
|
392 |
+
msgid "approved"
|
393 |
+
msgstr "hyväksytty"
|
394 |
+
|
395 |
+
#: language/strings.php:58
|
396 |
+
msgid "unapproved"
|
397 |
+
msgstr "hylätty"
|
398 |
+
|
399 |
+
#: language/strings.php:59
|
400 |
+
msgid "trashed"
|
401 |
+
msgstr "roskakoriin"
|
402 |
+
|
403 |
+
#: language/strings.php:60
|
404 |
+
msgid "untrashed"
|
405 |
+
msgstr "palautettu"
|
406 |
+
|
407 |
+
#: language/strings.php:61
|
408 |
+
msgid "spammed"
|
409 |
+
msgstr "spämmätty"
|
410 |
+
|
411 |
+
#: language/strings.php:62
|
412 |
+
msgid "unspammed"
|
413 |
+
msgstr "ei-spämmätty"
|
414 |
+
|
415 |
+
#: language/strings.php:67
|
416 |
+
msgid "blogname"
|
417 |
+
msgstr "sivuston nimi"
|
418 |
+
|
419 |
+
#: language/strings.php:68
|
420 |
+
msgid "blogdescription"
|
421 |
+
msgstr "sivuston kuvaus"
|
422 |
+
|
423 |
+
#: language/strings.php:69
|
424 |
+
msgid "siteurl"
|
425 |
+
msgstr "sivuston url"
|
426 |
+
|
427 |
+
#: language/strings.php:70
|
428 |
+
msgid "home"
|
429 |
+
msgstr "koti"
|
430 |
+
|
431 |
+
#: language/strings.php:71
|
432 |
+
msgid "admin_email"
|
433 |
+
msgstr "admin_email"
|
434 |
+
|
435 |
+
#: language/strings.php:72
|
436 |
+
msgid "users_can_register"
|
437 |
+
msgstr "users_can_register"
|
438 |
+
|
439 |
+
#: language/strings.php:73
|
440 |
+
msgid "default_role"
|
441 |
+
msgstr "default_role"
|
442 |
+
|
443 |
+
#: language/strings.php:74
|
444 |
+
msgid "timezone_string"
|
445 |
+
msgstr "timezone_string"
|
446 |
+
|
447 |
+
#: language/strings.php:75
|
448 |
+
msgid "date_format"
|
449 |
+
msgstr "date_format"
|
450 |
+
|
451 |
+
#: language/strings.php:76
|
452 |
+
msgid "time_format"
|
453 |
+
msgstr "time_format"
|
454 |
+
|
455 |
+
#: language/strings.php:77
|
456 |
+
msgid "start_of_week"
|
457 |
+
msgstr "start_of_week"
|
458 |
+
|
459 |
+
#: language/strings.php:80
|
460 |
+
msgid "use_smilies"
|
461 |
+
msgstr "use_smilies"
|
462 |
+
|
463 |
+
#: language/strings.php:81
|
464 |
+
msgid "use_balanceTags"
|
465 |
+
msgstr "use_balanceTags"
|
466 |
+
|
467 |
+
#: language/strings.php:82
|
468 |
+
msgid "default_category"
|
469 |
+
msgstr "default_category"
|
470 |
+
|
471 |
+
#: language/strings.php:83
|
472 |
+
msgid "default_post_format"
|
473 |
+
msgstr "default_post_format"
|
474 |
+
|
475 |
+
#: language/strings.php:84
|
476 |
+
msgid "mailserver_url"
|
477 |
+
msgstr "mailserver_url"
|
478 |
+
|
479 |
+
#: language/strings.php:85
|
480 |
+
msgid "mailserver_login"
|
481 |
+
msgstr "mailserver_login"
|
482 |
+
|
483 |
+
#: language/strings.php:86
|
484 |
+
msgid "mailserver_pass"
|
485 |
+
msgstr "mailserver_pass"
|
486 |
+
|
487 |
+
#: language/strings.php:87
|
488 |
+
msgid "default_email_category"
|
489 |
+
msgstr "default_email_category"
|
490 |
+
|
491 |
+
#: language/strings.php:88
|
492 |
+
msgid "ping_sites"
|
493 |
+
msgstr "ping_sites"
|
494 |
+
|
495 |
+
#: language/strings.php:91
|
496 |
+
msgid "show_on_front"
|
497 |
+
msgstr "show_on_front"
|
498 |
+
|
499 |
+
#: language/strings.php:92
|
500 |
+
msgid "page_on_front"
|
501 |
+
msgstr "page_on_front"
|
502 |
+
|
503 |
+
#: language/strings.php:93
|
504 |
+
msgid "page_for_posts"
|
505 |
+
msgstr "page_for_posts"
|
506 |
+
|
507 |
+
#: language/strings.php:94
|
508 |
+
msgid "posts_per_page"
|
509 |
+
msgstr "posts_per_page"
|
510 |
+
|
511 |
+
#: language/strings.php:95
|
512 |
+
msgid "posts_per_rss"
|
513 |
+
msgstr "posts_per_rss"
|
514 |
+
|
515 |
+
#: language/strings.php:96
|
516 |
+
msgid "rss_use_excerpt"
|
517 |
+
msgstr "rss_use_excerpt"
|
518 |
+
|
519 |
+
#: language/strings.php:97
|
520 |
+
msgid "blog_public"
|
521 |
+
msgstr "blog_public"
|
522 |
+
|
523 |
+
#: language/strings.php:100
|
524 |
+
msgid "default_pingback_flag"
|
525 |
+
msgstr "default_pingback_flag"
|
526 |
+
|
527 |
+
#: language/strings.php:101
|
528 |
+
msgid "default_ping_status"
|
529 |
+
msgstr "default_ping_status"
|
530 |
+
|
531 |
+
#: language/strings.php:102
|
532 |
+
msgid "default_comment_status"
|
533 |
+
msgstr "default_comment_status"
|
534 |
+
|
535 |
+
#: language/strings.php:103
|
536 |
+
msgid "require_name_email"
|
537 |
+
msgstr "require_name_email"
|
538 |
+
|
539 |
+
#: language/strings.php:104
|
540 |
+
msgid "comment_registration"
|
541 |
+
msgstr "comment_registration"
|
542 |
+
|
543 |
+
#: language/strings.php:105
|
544 |
+
msgid "close_comments_for_old_posts"
|
545 |
+
msgstr "close_comments_for_old_posts"
|
546 |
+
|
547 |
+
#: language/strings.php:106
|
548 |
+
msgid "close_comments_days_old"
|
549 |
+
msgstr "close_comments_days_old"
|
550 |
+
|
551 |
+
#: language/strings.php:107
|
552 |
+
msgid "thread_comments"
|
553 |
+
msgstr "thread_comments"
|
554 |
+
|
555 |
+
#: language/strings.php:108
|
556 |
+
msgid "thread_comments_depth"
|
557 |
+
msgstr "thread_comments_depth"
|
558 |
+
|
559 |
+
#: language/strings.php:109
|
560 |
+
msgid "page_comments"
|
561 |
+
msgstr "page_comments"
|
562 |
+
|
563 |
+
#: language/strings.php:110
|
564 |
+
msgid "comments_per_page"
|
565 |
+
msgstr "comments_per_page"
|
566 |
+
|
567 |
+
#: language/strings.php:111
|
568 |
+
msgid "default_comments_page"
|
569 |
+
msgstr "default_comments_page"
|
570 |
+
|
571 |
+
#: language/strings.php:112
|
572 |
+
msgid "comment_order"
|
573 |
+
msgstr "comment_order"
|
574 |
+
|
575 |
+
#: language/strings.php:113
|
576 |
+
msgid "comments_notify"
|
577 |
+
msgstr "comments_notify"
|
578 |
+
|
579 |
+
#: language/strings.php:114
|
580 |
+
msgid "moderation_notify"
|
581 |
+
msgstr "moderation_notify"
|
582 |
+
|
583 |
+
#: language/strings.php:115
|
584 |
+
msgid "comment_moderation"
|
585 |
+
msgstr "comment_moderation"
|
586 |
+
|
587 |
+
#: language/strings.php:116
|
588 |
+
msgid "comment_whitelist"
|
589 |
+
msgstr "comment_whitelist"
|
590 |
+
|
591 |
+
#: language/strings.php:117
|
592 |
+
msgid "comment_max_links"
|
593 |
+
msgstr "comment_max_links"
|
594 |
+
|
595 |
+
#: language/strings.php:118
|
596 |
+
msgid "moderation_keys"
|
597 |
+
msgstr "moderation_keys"
|
598 |
+
|
599 |
+
#: language/strings.php:119
|
600 |
+
msgid "blacklist_keys"
|
601 |
+
msgstr "blacklist_keys"
|
602 |
+
|
603 |
+
#: language/strings.php:120
|
604 |
+
msgid "show_avatars"
|
605 |
+
msgstr "show_avatars"
|
606 |
+
|
607 |
+
#: language/strings.php:121
|
608 |
+
msgid "avatar_rating"
|
609 |
+
msgstr "avatar_rating"
|
610 |
+
|
611 |
+
#: language/strings.php:122
|
612 |
+
msgid "avatar_default"
|
613 |
+
msgstr "avatar_default"
|
614 |
+
|
615 |
+
#: language/strings.php:125
|
616 |
+
msgid "thumbnail_size_w"
|
617 |
+
msgstr "thumbnail_size_w"
|
618 |
+
|
619 |
+
#: language/strings.php:126
|
620 |
+
msgid "thumbnail_size_h"
|
621 |
+
msgstr "thumbnail_size_h"
|
622 |
+
|
623 |
+
#: language/strings.php:127
|
624 |
+
msgid "thumbnail_crop"
|
625 |
+
msgstr "thumbnail_crop"
|
626 |
+
|
627 |
+
#: language/strings.php:128
|
628 |
+
msgid "medium_size_w"
|
629 |
+
msgstr "medium_size_w"
|
630 |
+
|
631 |
+
#: language/strings.php:129
|
632 |
+
msgid "medium_size_h"
|
633 |
+
msgstr "medium_size_h"
|
634 |
+
|
635 |
+
#: language/strings.php:130
|
636 |
+
msgid "large_size_w"
|
637 |
+
msgstr "large_size_w"
|
638 |
+
|
639 |
+
#: language/strings.php:131
|
640 |
+
msgid "large_size_h"
|
641 |
+
msgstr "large_size_h"
|
642 |
+
|
643 |
+
#: language/strings.php:132
|
644 |
+
msgid "uploads_use_yearmonth_folders"
|
645 |
+
msgstr "uploads_use_yearmonth_folders"
|
646 |
+
|
647 |
+
#: language/strings.php:135
|
648 |
+
msgid "permalink_structure"
|
649 |
+
msgstr "permalink_structure"
|
650 |
+
|
651 |
+
#: language/strings.php:136
|
652 |
+
msgid "category_base"
|
653 |
+
msgstr "category_base"
|
654 |
+
|
655 |
+
#: language/strings.php:137
|
656 |
+
msgid "tag_base"
|
657 |
+
msgstr "tag_base"
|
658 |
+
|
659 |
+
#: language/strings.php:140
|
660 |
+
msgid "Export"
|
661 |
+
msgstr "Vie"
|
662 |
+
|
663 |
+
#: language/strings.php:141
|
664 |
+
msgid "downloaded"
|
665 |
+
msgstr "ladattu"
|
666 |
+
|
667 |
+
#: notifications/abstract-class-aal-notification-base.php:99
|
668 |
+
msgid "Object Type"
|
669 |
+
msgstr "Objektin tyyppi"
|
670 |
+
|
671 |
+
#: notifications/abstract-class-aal-notification-base.php:100
|
672 |
+
msgid "Object Name"
|
673 |
+
msgstr "Objektin nimi"
|
674 |
+
|
675 |
+
#: notifications/abstract-class-aal-notification-base.php:102
|
676 |
+
msgid "IP Address"
|
677 |
+
msgstr "IP-Osoite"
|
678 |
+
|
679 |
+
#: notifications/abstract-class-aal-notification-base.php:121
|
680 |
+
msgid "N/A"
|
681 |
+
msgstr "N/A"
|
682 |
+
|
683 |
+
#: notifications/class-aal-notification-email.php:15
|
684 |
+
msgid "Email"
|
685 |
+
msgstr "Sähköposti"
|
686 |
+
|
687 |
+
#: notifications/class-aal-notification-email.php:16
|
688 |
+
msgid "Get notified by Email."
|
689 |
+
msgstr "Vastaanota ilmoituksia sähköpostilla."
|
690 |
+
|
691 |
+
#: notifications/class-aal-notification-email.php:49
|
692 |
+
msgid "New notification from Activity Log"
|
693 |
+
msgstr "Uusi ilmoitus Tapahtumalokista"
|
694 |
+
|
695 |
+
#: notifications/class-aal-notification-email.php:65
|
696 |
+
msgid ""
|
697 |
+
"Hi there!\n"
|
698 |
+
"\n"
|
699 |
+
"A notification condition on [sitename] was matched. Here are the details:\n"
|
700 |
+
"\n"
|
701 |
+
"[action-details]\n"
|
702 |
+
"\n"
|
703 |
+
"Sent by ARYO Activity Log"
|
704 |
+
msgstr ""
|
705 |
+
"Hei!\n"
|
706 |
+
"\n"
|
707 |
+
"Ilmoitusehto sivustollasi [sitename] täyttyi. Tässä tiedot tapahtumasta:\n"
|
708 |
+
"\n"
|
709 |
+
"[action-details]\n"
|
710 |
+
"\n"
|
711 |
+
"Lähettänyt: ARYO-Tapahtumaloki"
|
712 |
+
|
713 |
+
#: notifications/class-aal-notification-email.php:67
|
714 |
+
msgid "From Email"
|
715 |
+
msgstr "Lähettäjä"
|
716 |
+
|
717 |
+
#: notifications/class-aal-notification-email.php:67
|
718 |
+
msgid "The source Email address"
|
719 |
+
msgstr "Lähettäjän sähköpostiosoite"
|
720 |
+
|
721 |
+
#: notifications/class-aal-notification-email.php:68
|
722 |
+
msgid "To Email"
|
723 |
+
msgstr "Vastaanottaja"
|
724 |
+
|
725 |
+
#: notifications/class-aal-notification-email.php:68
|
726 |
+
msgid "The Email address notifications will be sent to"
|
727 |
+
msgstr "Sähköpostiosoite, johon ilmoitukset lähetetään"
|
728 |
+
|
729 |
+
#: notifications/class-aal-notification-email.php:69
|
730 |
+
msgid "Message"
|
731 |
+
msgstr "Viesti"
|
732 |
+
|
733 |
+
#: notifications/class-aal-notification-email.php:69
|
734 |
+
#, php-format
|
735 |
+
msgid "Customize the message using the following placeholders: %s"
|
736 |
+
msgstr "Muokkaa viestiä käyttäen seuraavia Shortcodeja: %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.
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2015-08-
|
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"
|
@@ -21,97 +21,97 @@ msgstr ""
|
|
21 |
msgid "Cheatin’ huh?"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: classes/class-aal-activity-log-list-table.php:
|
25 |
msgid "Activities"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: classes/class-aal-activity-log-list-table.php:
|
29 |
msgid "Date"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: classes/class-aal-activity-log-list-table.php:
|
33 |
msgid "Author"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: classes/class-aal-activity-log-list-table.php:
|
37 |
msgid "IP"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: classes/class-aal-activity-log-list-table.php:
|
41 |
msgid "Type"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: classes/class-aal-activity-log-list-table.php:
|
45 |
msgid "Label"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: classes/class-aal-activity-log-list-table.php:
|
49 |
msgid "Action"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: classes/class-aal-activity-log-list-table.php:
|
53 |
msgid "Description"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: classes/class-aal-activity-log-list-table.php:
|
57 |
#, php-format
|
58 |
msgid "%s ago"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: classes/class-aal-activity-log-list-table.php:
|
62 |
msgid "Unknown"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: classes/class-aal-activity-log-list-table.php:
|
66 |
-
#: classes/class-aal-activity-log-list-table.php:
|
67 |
msgid "Guest"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: classes/class-aal-activity-log-list-table.php:
|
71 |
msgid "All"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: classes/class-aal-activity-log-list-table.php:
|
75 |
msgid "Search"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: classes/class-aal-activity-log-list-table.php:
|
79 |
msgid "All Roles"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: classes/class-aal-activity-log-list-table.php:
|
83 |
msgid "All Users"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: classes/class-aal-activity-log-list-table.php:
|
87 |
msgid "All Types"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: classes/class-aal-activity-log-list-table.php:
|
91 |
msgid "All Actions"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: classes/class-aal-activity-log-list-table.php:
|
95 |
msgid "All Time"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: classes/class-aal-activity-log-list-table.php:
|
99 |
msgid "Today"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: classes/class-aal-activity-log-list-table.php:
|
103 |
msgid "Yesterday"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: classes/class-aal-activity-log-list-table.php:
|
107 |
msgid "Week"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: classes/class-aal-activity-log-list-table.php:
|
111 |
msgid "Month"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: classes/class-aal-activity-log-list-table.php:
|
115 |
msgid "Filter"
|
116 |
msgstr ""
|
117 |
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: aryo-activity-log 2.2.5\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2015-08-20 14:17+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"
|
21 |
msgid "Cheatin’ huh?"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: classes/class-aal-activity-log-list-table.php:104
|
25 |
msgid "Activities"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: classes/class-aal-activity-log-list-table.php:115
|
29 |
msgid "Date"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: classes/class-aal-activity-log-list-table.php:116
|
33 |
msgid "Author"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: classes/class-aal-activity-log-list-table.php:117
|
37 |
msgid "IP"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: classes/class-aal-activity-log-list-table.php:118
|
41 |
msgid "Type"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: classes/class-aal-activity-log-list-table.php:119
|
45 |
msgid "Label"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: classes/class-aal-activity-log-list-table.php:120
|
49 |
msgid "Action"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: classes/class-aal-activity-log-list-table.php:121
|
53 |
msgid "Description"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: classes/class-aal-activity-log-list-table.php:141
|
57 |
#, php-format
|
58 |
msgid "%s ago"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: classes/class-aal-activity-log-list-table.php:170
|
62 |
msgid "Unknown"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: classes/class-aal-activity-log-list-table.php:176
|
66 |
+
#: classes/class-aal-activity-log-list-table.php:295
|
67 |
msgid "Guest"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: classes/class-aal-activity-log-list-table.php:219
|
71 |
msgid "All"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: classes/class-aal-activity-log-list-table.php:239
|
75 |
msgid "Search"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: classes/class-aal-activity-log-list-table.php:282
|
79 |
msgid "All Roles"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: classes/class-aal-activity-log-list-table.php:306
|
83 |
msgid "All Users"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: classes/class-aal-activity-log-list-table.php:334
|
87 |
msgid "All Types"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: classes/class-aal-activity-log-list-table.php:360
|
91 |
msgid "All Actions"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: classes/class-aal-activity-log-list-table.php:371
|
95 |
msgid "All Time"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: classes/class-aal-activity-log-list-table.php:372
|
99 |
msgid "Today"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: classes/class-aal-activity-log-list-table.php:373
|
103 |
msgid "Yesterday"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: classes/class-aal-activity-log-list-table.php:374
|
107 |
msgid "Week"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: classes/class-aal-activity-log-list-table.php:375
|
111 |
msgid "Month"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: classes/class-aal-activity-log-list-table.php:382
|
115 |
msgid "Filter"
|
116 |
msgstr ""
|
117 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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.
|
6 |
-
Stable tag: 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.
|
@@ -60,6 +60,7 @@ If you have tens of users or more, you really can’t know who did it. This plug
|
|
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,6 +96,12 @@ Would you like to like to contribute to Activity Log? You are more than welcome
|
|
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 |
|
2 |
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.3
|
6 |
+
Stable tag: 2.2.5
|
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.
|
60 |
* Russian (ru_RU) - Oleg Reznikov
|
61 |
* Polish (pl_PL) - Maciej Gryniuk
|
62 |
* Czech (cs_CZ) - Martin Kokeš
|
63 |
+
* Finnish (fi) - Nazq
|
64 |
|
65 |
The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
|
66 |
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= 2.2.5 =
|
100 |
+
* New! - Added translate: Finnish (fi) - Thanks to Nazq ([topic](https://wordpress.org/support/topic/finnish-translation-1))
|
101 |
+
* Tweak! - Better actions label in list table
|
102 |
+
* Fixed! - Notice php warring in MU delete site
|
103 |
+
* Tested up to WordPress v4.3
|
104 |
+
|
105 |
= 2.2.4 =
|
106 |
* New! - Added translate: Czech (cs_CZ) - Thanks to Martin Kokeš ([#76](https://github.com/KingYes/wordpress-aryo-activity-log/pull/76))
|
107 |
|