Version Description
- Fixed: Plugin installs from uploaded ZIP files are now logged correctly. Fixes https://github.com/bonny/WordPress-Simple-History/issues/59.
- Fixed: Check that JavaScript variables it set and that the object have properties set. Fixes https://wordpress.org/support/topic/firefox-37-js-error-generated-by-simplehistoryipinfodropinjs.
- Updated: German translation updated.
- Changed: Loading of loggers, dropins, and so one are moved from action
plugins_loaded
toafter_setup_theme
so themes can actually use for example the load_dropin_*-filters... - Changed: Misc small design fixes.
Download this release
Release Info
Developer | eskapism |
Plugin | Simple History |
Version | 2.0.24 |
Comparing to | |
See all releases |
Code changes from version 2.0.23 to 2.0.24
- css/styles.css +9 -2
- dropins/SimpleHistoryIpInfoDropin.js +10 -0
- inc/SimpleHistory.php +7 -7
- index.php +2 -2
- languages/simple-history-de_DE.mo +0 -0
- languages/simple-history-de_DE.po +357 -335
- languages/simple-history.pot +92 -92
- loggers/SimplePluginLogger.php +43 -18
- readme.txt +13 -3
css/styles.css
CHANGED
@@ -514,6 +514,12 @@ i.e. the log is inside a .postbox element
|
|
514 |
height: 24px;;
|
515 |
}
|
516 |
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
.postbox .SimpleHistoryLogitem__secondcol {
|
518 |
margin-left: 40px;
|
519 |
}
|
@@ -691,7 +697,7 @@ Modal window with detailss
|
|
691 |
@media only screen and (max-width: 850px) {
|
692 |
|
693 |
.SimpleHistory-modal__content {
|
694 |
-
left: 10px /* admin meny width is 160 px */
|
695 |
}
|
696 |
|
697 |
}
|
@@ -774,7 +780,7 @@ Modal window with detailss
|
|
774 |
|
775 |
.SimpleHistoryLogitem__moreDetailsContext {
|
776 |
font-family: monospace;
|
777 |
-
white-space: pre-
|
778 |
font-size: 12px;
|
779 |
border-collapse: collapse;
|
780 |
}
|
@@ -830,6 +836,7 @@ Modal window with detailss
|
|
830 |
color: #999;
|
831 |
}
|
832 |
|
|
|
833 |
.SimpleHistoryLogitem--initiator-wp .SimpleHistoryLogitem__senderImage:before,
|
834 |
.SimpleHistoryLogitem--initiator-wp_cli .SimpleHistoryLogitem__senderImage:before {
|
835 |
content: "\f120";
|
514 |
height: 24px;;
|
515 |
}
|
516 |
|
517 |
+
.postbox .SimpleHistoryLogitem--initiator-wp .SimpleHistoryLogitem__senderImage:before,
|
518 |
+
.postbox .SimpleHistoryLogitem--initiator-wp_cli .SimpleHistoryLogitem__senderImage:before,
|
519 |
+
.postbox .SimpleHistoryLogitem--initiator-web_user .SimpleHistoryLogitem__senderImage:before {
|
520 |
+
font-size: 24px;
|
521 |
+
}
|
522 |
+
|
523 |
.postbox .SimpleHistoryLogitem__secondcol {
|
524 |
margin-left: 40px;
|
525 |
}
|
697 |
@media only screen and (max-width: 850px) {
|
698 |
|
699 |
.SimpleHistory-modal__content {
|
700 |
+
left: 10px; /* admin meny width is 160 px */
|
701 |
}
|
702 |
|
703 |
}
|
780 |
|
781 |
.SimpleHistoryLogitem__moreDetailsContext {
|
782 |
font-family: monospace;
|
783 |
+
white-space: pre-wrap;
|
784 |
font-size: 12px;
|
785 |
border-collapse: collapse;
|
786 |
}
|
836 |
color: #999;
|
837 |
}
|
838 |
|
839 |
+
|
840 |
.SimpleHistoryLogitem--initiator-wp .SimpleHistoryLogitem__senderImage:before,
|
841 |
.SimpleHistoryLogitem--initiator-wp_cli .SimpleHistoryLogitem__senderImage:before {
|
842 |
content: "\f120";
|
dropins/SimpleHistoryIpInfoDropin.js
CHANGED
@@ -56,6 +56,11 @@
|
|
56 |
|
57 |
function maybeHidePopup(e) {
|
58 |
|
|
|
|
|
|
|
|
|
|
|
59 |
var $target = (e.target);
|
60 |
|
61 |
// Don't hide if click inside popup
|
@@ -63,6 +68,11 @@
|
|
63 |
return true;
|
64 |
}
|
65 |
|
|
|
|
|
|
|
|
|
|
|
66 |
// If initiated by keyboard but not esc, then don't close
|
67 |
if (e.originalEvent.type == "keyup" && e.originalEvent.keyCode != 27) {
|
68 |
return;
|
56 |
|
57 |
function maybeHidePopup(e) {
|
58 |
|
59 |
+
// Make sure variable and properties exist before trying to work on them
|
60 |
+
if (!e || !e.target) {
|
61 |
+
return;
|
62 |
+
}
|
63 |
+
|
64 |
var $target = (e.target);
|
65 |
|
66 |
// Don't hide if click inside popup
|
68 |
return true;
|
69 |
}
|
70 |
|
71 |
+
// Make sure variable and properties exist before trying to work on them
|
72 |
+
if (!e.originalEvent || e.originalEvent.type || e.originalEvent.keyCode) {
|
73 |
+
return;
|
74 |
+
}
|
75 |
+
|
76 |
// If initiated by keyboard but not esc, then don't close
|
77 |
if (e.originalEvent.type == "keyup" && e.originalEvent.keyCode != 27) {
|
78 |
return;
|
inc/SimpleHistory.php
CHANGED
@@ -8,7 +8,7 @@ class SimpleHistory {
|
|
8 |
const NAME = "Simple History";
|
9 |
|
10 |
// Dont use this any more! Will be removed in future versions. Use global SIMPLE_HISTORY_VERSION instead.
|
11 |
-
const VERSION = "2.0.
|
12 |
|
13 |
/**
|
14 |
* For singleton
|
@@ -83,15 +83,15 @@ class SimpleHistory {
|
|
83 |
$this->setupVariables();
|
84 |
|
85 |
// Actions and filters, ordered by order specified in codex: http://codex.wordpress.org/Plugin_API/Action_Reference
|
86 |
-
add_action('
|
87 |
-
add_action('
|
88 |
-
add_action('
|
89 |
-
add_action('
|
90 |
|
91 |
// Run before loading of loggers and before menu items are added
|
92 |
-
add_action('
|
93 |
|
94 |
-
add_action('
|
95 |
|
96 |
add_action('admin_menu', array($this, 'add_admin_pages'));
|
97 |
add_action('admin_menu', array($this, 'add_settings'));
|
8 |
const NAME = "Simple History";
|
9 |
|
10 |
// Dont use this any more! Will be removed in future versions. Use global SIMPLE_HISTORY_VERSION instead.
|
11 |
+
const VERSION = "2.0.24";
|
12 |
|
13 |
/**
|
14 |
* For singleton
|
83 |
$this->setupVariables();
|
84 |
|
85 |
// Actions and filters, ordered by order specified in codex: http://codex.wordpress.org/Plugin_API/Action_Reference
|
86 |
+
add_action('after_setup_theme', array($this, 'load_plugin_textdomain'));
|
87 |
+
add_action('after_setup_theme', array($this, 'add_default_settings_tabs'));
|
88 |
+
add_action('after_setup_theme', array($this, 'loadLoggers'));
|
89 |
+
add_action('after_setup_theme', array($this, 'loadDropins'));
|
90 |
|
91 |
// Run before loading of loggers and before menu items are added
|
92 |
+
add_action('after_setup_theme', array($this, 'check_for_upgrade'), 5);
|
93 |
|
94 |
+
add_action('after_setup_theme', array($this, 'setup_cron'));
|
95 |
|
96 |
add_action('admin_menu', array($this, 'add_admin_pages'));
|
97 |
add_action('admin_menu', array($this, 'add_settings'));
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple History
|
4 |
Plugin URI: http://simple-history.com
|
5 |
Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
6 |
-
Version: 2.0.
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://simple-history.com/
|
9 |
License: GPL2
|
@@ -42,7 +42,7 @@ if ( version_compare( phpversion(), "5.3", ">=") ) {
|
|
42 |
*/
|
43 |
// register_activation_hook( trailingslashit(WP_PLUGIN_DIR) . trailingslashit( plugin_basename(__DIR__) ) . "index.php" , array("SimpleHistory", "on_plugin_activate" ) );
|
44 |
|
45 |
-
define( 'SIMPLE_HISTORY_VERSION', '2.0.
|
46 |
|
47 |
define( 'SIMPLE_HISTORY_FILE', __FILE__ );
|
48 |
define( 'SIMPLE_HISTORY_PATH', plugin_dir_path( SIMPLE_HISTORY_FILE ) );
|
3 |
Plugin Name: Simple History
|
4 |
Plugin URI: http://simple-history.com
|
5 |
Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
6 |
+
Version: 2.0.24
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://simple-history.com/
|
9 |
License: GPL2
|
42 |
*/
|
43 |
// register_activation_hook( trailingslashit(WP_PLUGIN_DIR) . trailingslashit( plugin_basename(__DIR__) ) . "index.php" , array("SimpleHistory", "on_plugin_activate" ) );
|
44 |
|
45 |
+
define( 'SIMPLE_HISTORY_VERSION', '2.0.24' );
|
46 |
|
47 |
define( 'SIMPLE_HISTORY_FILE', __FILE__ );
|
48 |
define( 'SIMPLE_HISTORY_PATH', plugin_dir_path( SIMPLE_HISTORY_FILE ) );
|
languages/simple-history-de_DE.mo
CHANGED
Binary file
|
languages/simple-history-de_DE.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Simple History 2.0.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/Simple-History\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
-
"PO-Revision-Date: 2015-
|
9 |
"Last-Translator: Ralph Stenzel <ralph@klein-aber-fein.de>\n"
|
10 |
"Language-Team: Ralph Stenzel <ralph@klein-aber-fein.de>\n"
|
11 |
"Language: de_DE\n"
|
@@ -22,284 +22,296 @@ msgstr ""
|
|
22 |
"X-Textdomain-Support: yes\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgid "Settings"
|
27 |
msgstr "Einstellungen"
|
28 |
|
29 |
-
#: SimpleHistory.php:
|
30 |
msgid "Log (debug)"
|
31 |
msgstr "Logbuch (Fehlersuche)"
|
32 |
|
33 |
-
#: SimpleHistory.php:
|
34 |
msgid "Styles example (debug)"
|
35 |
msgstr "Stil-Beispiel (Fehlersuche)"
|
36 |
|
37 |
#. Plugin Name of the plugin/theme
|
38 |
-
#: SimpleHistory.php:
|
39 |
msgid "Simple History"
|
40 |
msgstr "Simple History"
|
41 |
|
42 |
-
#: SimpleHistory.php:
|
43 |
msgid "Remove all log items?"
|
44 |
msgstr "Alle Einträge im Logbuch entfernen?"
|
45 |
|
46 |
-
#: SimpleHistory.php:
|
47 |
msgid "Go to the first page"
|
48 |
msgstr "Gehe zur ersten Seite"
|
49 |
|
50 |
-
#: SimpleHistory.php:
|
51 |
msgid "Go to the previous page"
|
52 |
msgstr "Gehe zur vorherigen Seite"
|
53 |
|
54 |
-
#: SimpleHistory.php:
|
55 |
msgid "Go to the next page"
|
56 |
msgstr "Gehe zur nächsten Seite"
|
57 |
|
58 |
-
#: SimpleHistory.php:
|
59 |
msgid "Go to the last page"
|
60 |
msgstr "Gehe zur letzten Seite"
|
61 |
|
62 |
-
#: SimpleHistory.php:
|
63 |
msgid "Current page"
|
64 |
msgstr "Aktuelle Seite"
|
65 |
|
66 |
-
#: SimpleHistory.php:
|
67 |
msgid "Oups, the log could not be loaded right now."
|
68 |
msgstr "Hoppla, das Logbuch konnte eben nicht geladen werden."
|
69 |
|
70 |
-
#: SimpleHistory.php:
|
71 |
msgid "Your search did not match any history events."
|
72 |
msgstr "Deine Suche erbrachte keine Übereinstimmungen mit Ereignissen."
|
73 |
|
74 |
-
#: SimpleHistory.php:
|
75 |
msgid "Simple History Settings"
|
76 |
msgstr "Simple History Einstellungen"
|
77 |
|
78 |
-
#: SimpleHistory.php:
|
79 |
msgid "No valid callback found"
|
80 |
msgstr "Kein valider Rückruf gefunden"
|
81 |
|
82 |
-
#: SimpleHistory.php:
|
83 |
msgid "Cleared database"
|
84 |
msgstr "Datenbank geleert"
|
85 |
|
86 |
-
#: SimpleHistory.php:
|
87 |
msgid "Show history"
|
88 |
msgstr "Zeige Logbuch"
|
89 |
|
90 |
-
#: SimpleHistory.php:
|
91 |
msgid "Number of items per page"
|
92 |
msgstr "Zahl der Einträge pro Seite"
|
93 |
|
94 |
-
#: SimpleHistory.php:
|
95 |
msgid "Clear log"
|
96 |
msgstr "Logbuch leeren"
|
97 |
|
98 |
-
#: SimpleHistory.php:
|
99 |
msgid "on the dashboard"
|
100 |
msgstr "auf dem Dashboard"
|
101 |
|
102 |
-
#: SimpleHistory.php:
|
103 |
msgid "as a page under the dashboard menu"
|
104 |
msgstr "als eine Seite im Dashboard-Menü"
|
105 |
|
106 |
-
#: SimpleHistory.php:
|
107 |
msgid "Items in the database are automatically removed after %1$s days."
|
108 |
msgstr "Einträge in der Datenbank werden nach %1$s Tagen automatisch entfernt."
|
109 |
|
110 |
-
#: SimpleHistory.php:
|
111 |
msgid "Items in the database are kept forever."
|
112 |
msgstr "Einträge in der Datenbank werden auf ewig behalten."
|
113 |
|
114 |
-
#: SimpleHistory.php:
|
115 |
msgid "Clear log now"
|
116 |
msgstr "Logbuch jetzt leeren"
|
117 |
|
118 |
-
#: SimpleHistory.php:
|
119 |
msgid "The log for Simple History was cleared ({num_rows} rows were removed)."
|
120 |
msgstr ""
|
121 |
"Das Logbuch von Simple History wurde geleert ({num_rows} Zeilen wurden "
|
122 |
"entfernt)."
|
123 |
|
124 |
-
#: SimpleHistory.php:
|
125 |
msgid "+%1$s similar event"
|
126 |
msgid_plural "+%1$s similar events"
|
127 |
msgstr[0] "+%1$s gleichartiges Ereignis"
|
128 |
msgstr[1] "+%1$s gleichartige Ereignisse"
|
129 |
|
130 |
-
#: SimpleHistory.php:
|
131 |
msgid "Loading…"
|
132 |
msgstr "Lade..."
|
133 |
|
134 |
-
#: SimpleHistory.php:
|
135 |
msgid "Showing %1$s more"
|
136 |
msgstr "Zeige %1$s mehr"
|
137 |
|
138 |
-
#: SimpleHistory.php:
|
139 |
msgid "Context data"
|
140 |
msgstr "Kontext-Daten"
|
141 |
|
142 |
-
#: SimpleHistory.php:
|
143 |
msgid "This is potentially useful meta data that a logger has saved."
|
144 |
msgstr ""
|
145 |
"Dies sind potentiell nützliche Meta-Daten, die ein Logger abgespeichert hat."
|
146 |
|
147 |
-
#: SimpleHistory.php:
|
148 |
msgid "No events today so far."
|
149 |
msgstr "Heute sind noch keine Ereignisse aufgetreten."
|
150 |
|
151 |
-
#: SimpleHistory.php:
|
152 |
msgid "One event today from one user."
|
153 |
msgstr "Ein Ereignis heute von einem Benutzer."
|
154 |
|
155 |
-
#: SimpleHistory.php:
|
156 |
msgid "One event today from one source."
|
157 |
msgstr "Ein Ereignis heute aus einer Quelle."
|
158 |
|
159 |
-
#: SimpleHistory.php:
|
160 |
msgid "%1$d events today from one user."
|
161 |
msgstr "%1$d Ereignisse heute von einem Benutzer."
|
162 |
|
163 |
-
#: SimpleHistory.php:
|
164 |
msgid "%1$d events today from %2$d users."
|
165 |
msgstr "%1$d Ereignisse heute von %2$d Benutzern."
|
166 |
|
167 |
-
#: SimpleHistory.php:
|
168 |
msgid "%1$d events today from one user and one other source."
|
169 |
msgstr "%1$d Ereignisse heute von einem Benutzer und einer anderen Quelle."
|
170 |
|
171 |
-
#: SimpleHistory.php:
|
172 |
msgid "%1$d events today from one user and %3$d other sources."
|
173 |
msgstr "%1$d Ereignisse heute von einem Benutzer und %3$d anderen Quellen."
|
174 |
|
175 |
-
#: SimpleHistory.php:
|
176 |
msgid "%1$s events today from %2$d users and %3$d other sources."
|
177 |
msgstr "%1$s Ereignisse heute von %2$d Benutzern und %3$d anderen Quellen."
|
178 |
|
179 |
-
#:
|
180 |
-
msgid "Donate"
|
181 |
-
msgstr "Spende"
|
182 |
-
|
183 |
-
#: dropins/SimpleHistoryDonateDropin.php:72
|
184 |
-
msgid ""
|
185 |
-
"If you find Simple History useful please <a href=\"%1$s\">donate</a> or <a "
|
186 |
-
"href=\"%2$s\">buy me something from my Amazon wish list</a>."
|
187 |
-
msgstr ""
|
188 |
-
"Falls Du Simple History nützlich findest, <a href=\"%1$s\">spende</a> bitte "
|
189 |
-
"oder <a href=\"%2$s\">kaufe mir etwas von meinem Amazon-Wunschzettel</a>."
|
190 |
-
|
191 |
-
#: dropins/SimpleHistoryFilterDropin.php:44
|
192 |
-
msgid "Filter history"
|
193 |
-
msgstr "Filter-Historie"
|
194 |
-
|
195 |
-
#: dropins/SimpleHistoryFilterDropin.php:48
|
196 |
-
#: dropins/SimpleHistoryFilterDropin.php:159
|
197 |
-
msgid "Search events"
|
198 |
-
msgstr "Durchsuche Ereignisse"
|
199 |
-
|
200 |
-
#: dropins/SimpleHistoryFilterDropin.php:56
|
201 |
-
msgid "All log levels"
|
202 |
-
msgstr "Alle Logbuch-Ebenen"
|
203 |
-
|
204 |
-
#: dropins/SimpleHistoryFilterDropin.php:70
|
205 |
-
msgid "All messages"
|
206 |
-
msgstr "Alle Nachrichten"
|
207 |
-
|
208 |
-
#: dropins/SimpleHistoryFilterDropin.php:124
|
209 |
-
msgid "All users"
|
210 |
-
msgstr "Alle Benutzer"
|
211 |
-
|
212 |
-
#: dropins/SimpleHistoryFilterDropin.php:145
|
213 |
-
msgid "All dates"
|
214 |
-
msgstr "Alle Tage"
|
215 |
-
|
216 |
-
#: dropins/SimpleHistoryFilterDropin.php:168
|
217 |
-
msgid "Search"
|
218 |
-
msgstr "Suche"
|
219 |
-
|
220 |
-
#: dropins/SimpleHistoryNewRowsNotifier.php:80
|
221 |
-
msgid "1 new row"
|
222 |
-
msgid_plural "%d new rows"
|
223 |
-
msgstr[0] "1 neue Zeile"
|
224 |
-
msgstr[1] "%d neue Zeilen"
|
225 |
-
|
226 |
-
#: dropins/SimpleHistoryRSSDropin.php:55
|
227 |
-
msgid "Address"
|
228 |
-
msgstr "Adresse"
|
229 |
-
|
230 |
-
#: dropins/SimpleHistoryRSSDropin.php:64
|
231 |
-
msgid "Regenerate"
|
232 |
-
msgstr "Wiederherstellen"
|
233 |
-
|
234 |
-
#: dropins/SimpleHistoryRSSDropin.php:81
|
235 |
-
msgid "Created new secret RSS address"
|
236 |
-
msgstr "Neue RSS-Geheim-Adresse erzeugt"
|
237 |
-
|
238 |
-
#: dropins/SimpleHistoryRSSDropin.php:148
|
239 |
-
#: dropins/SimpleHistoryRSSDropin.php:259
|
240 |
-
msgid "History for %s"
|
241 |
-
msgstr "Historie für"
|
242 |
-
|
243 |
-
#: dropins/SimpleHistoryRSSDropin.php:149
|
244 |
-
#: dropins/SimpleHistoryRSSDropin.php:260
|
245 |
-
msgid "WordPress History for %s"
|
246 |
-
msgstr "WordPress Historie für %s"
|
247 |
-
|
248 |
-
#: dropins/SimpleHistoryRSSDropin.php:196
|
249 |
-
msgid "+%1$s occasion"
|
250 |
-
msgid_plural "+%1$s occasions"
|
251 |
-
msgstr[0] "+%1$s Vorkommnis"
|
252 |
-
msgstr[1] "+%1$s Vorkommnisse"
|
253 |
-
|
254 |
-
#: dropins/SimpleHistoryRSSDropin.php:263
|
255 |
-
msgid "Wrong RSS secret"
|
256 |
-
msgstr "Falsche RSS-Geheimadresse"
|
257 |
-
|
258 |
-
#: dropins/SimpleHistoryRSSDropin.php:264
|
259 |
-
msgid ""
|
260 |
-
"Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
|
261 |
-
"settings for current link to the RSS feed."
|
262 |
-
msgstr ""
|
263 |
-
"Deine RSS-Geheimadresse für den Simple-History-RSS-Feed ist falsch. Bitte "
|
264 |
-
"schlage in den WordPress-Einstellungen die aktuelle Verlinkung des RSS-Feeds "
|
265 |
-
"nach."
|
266 |
-
|
267 |
-
#: dropins/SimpleHistoryRSSDropin.php:315
|
268 |
-
msgid ""
|
269 |
-
"You can generate a new address for the RSS feed. This is useful if you think "
|
270 |
-
"that the address has fallen into the wrong hands."
|
271 |
-
msgstr ""
|
272 |
-
"Du kannst eine neue Adresse für den RSS-Feed erzeugen. Dies ist hilfreich "
|
273 |
-
"falls Du denkst, daß die Adresse in die falschen Hände geraten sein könnte."
|
274 |
-
|
275 |
-
#: dropins/SimpleHistoryRSSDropin.php:318
|
276 |
-
msgid "Generate new address"
|
277 |
-
msgstr "Erzeuge neue Adresse"
|
278 |
-
|
279 |
-
#: dropins/SimpleHistoryRSSDropin.php:346
|
280 |
-
msgid ""
|
281 |
-
"Simple History has a RSS feed which you can subscribe to and receive log "
|
282 |
-
"updates. Make sure you only share the feed with people you trust, since it "
|
283 |
-
"can contain sensitive or confidential information."
|
284 |
-
msgstr ""
|
285 |
-
"Simple History hat einen RSS-Feed, den Du abonnieren kannst, um Updates in "
|
286 |
-
"der Logdatei zu empfangen. Stelle sicher, daß Du den Feed nur Menschen Deines "
|
287 |
-
"Vertrauens zugänglich machst, denn er kann sensible und vertrauliche "
|
288 |
-
"Informationen enthalten."
|
289 |
-
|
290 |
-
#: dropins/SimpleHistorySettingsLogtestDropin.php:20
|
291 |
-
msgid "Test data (debug)"
|
292 |
-
msgstr "Test-Daten (Fehlersuche)"
|
293 |
-
|
294 |
-
#: dropins/SimpleHistorySettingsStatsDropin.php:27
|
295 |
-
msgid "Stats"
|
296 |
-
msgstr "Statistiken"
|
297 |
-
|
298 |
-
#: dropins/SimpleHistorySidebarDropin.php:159 loggers/SimpleLogger.php:296
|
299 |
-
msgid "Just now"
|
300 |
-
msgstr "gerade eben"
|
301 |
-
|
302 |
-
#: index.php:59
|
303 |
msgid ""
|
304 |
"Simple History is a great plugin, but to use it your server must have at "
|
305 |
"least PHP 5.3 installed (you have version %s)."
|
@@ -336,8 +348,9 @@ msgid "Updated WordPress from {prev_version} to {new_version}"
|
|
336 |
msgstr "WordPress von {prev_version} auf {new_version} aktualisiert"
|
337 |
|
338 |
#: loggers/SimpleCoreUpdatesLogger.php:30
|
339 |
-
msgid "WordPress auto-updated
|
340 |
-
msgstr "
|
|
|
341 |
|
342 |
#: loggers/SimpleExportLogger.php:23
|
343 |
msgid "Created XML export"
|
@@ -351,25 +364,25 @@ msgstr "von %s"
|
|
351 |
msgid "%d occasions"
|
352 |
msgstr "%d Vorkommnisse"
|
353 |
|
354 |
-
#: loggers/SimpleLogger.php:
|
355 |
msgid "Deleted user (had id %1$s, email %2$s, login %3$s)"
|
356 |
msgstr "gelöschter Benutzer (hatte ID %1$s, E-Mail %2$s, Login %3$s)"
|
357 |
|
358 |
-
#: loggers/SimpleLogger.php:
|
359 |
msgid "Anonymous web user"
|
360 |
msgstr "Anonymer Netz-Nutzer"
|
361 |
|
362 |
-
#: loggers/SimpleLogger.php:
|
363 |
msgid "Anonymous user from %1$s"
|
364 |
msgstr "Anonymer Benutzer von %1$s"
|
365 |
|
366 |
#. translators: Date format for log row header, see http:php.net/date
|
367 |
-
#: loggers/SimpleLogger.php:
|
368 |
msgid "M j, Y \\a\\t G:i"
|
369 |
msgstr "j. M. Y \\u\\m G:i \\U\\h\\r"
|
370 |
|
371 |
#. translators: 1: last modified date and time in human time diff-format
|
372 |
-
#: loggers/SimpleLogger.php:
|
373 |
msgid "%1$s ago"
|
374 |
msgstr "vor %1$s"
|
375 |
|
@@ -386,29 +399,29 @@ msgid "Deleted {post_type} \"{attachment_title}\" (\"{attachment_filename}\")"
|
|
386 |
msgstr ""
|
387 |
"hat {post_type} \"{attachment_title}\" (\"{attachment_filename}\") gelöscht"
|
388 |
|
389 |
-
#: loggers/SimpleMediaLogger.php:
|
390 |
msgid "Edited {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
391 |
msgstr ""
|
392 |
"hat {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a> geändert"
|
393 |
|
394 |
-
#: loggers/SimpleMediaLogger.php:
|
395 |
msgid "Uploaded {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
396 |
msgstr ""
|
397 |
"hat {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a> hochgeladen"
|
398 |
|
399 |
-
#: loggers/SimpleMediaLogger.php:
|
400 |
msgid "{attachment_thumb}"
|
401 |
msgstr "{attachment_thumb}"
|
402 |
|
403 |
-
#: loggers/SimpleMediaLogger.php:
|
404 |
msgid "{attachment_size_format}"
|
405 |
msgstr "{attachment_size_format}"
|
406 |
|
407 |
-
#: loggers/SimpleMediaLogger.php:
|
408 |
msgid "{attachment_filetype_extension}"
|
409 |
msgstr "{attachment_filetype_extension}"
|
410 |
|
411 |
-
#: loggers/SimpleMediaLogger.php:
|
412 |
msgid "{full_image_width} × {full_image_height}"
|
413 |
msgstr "{full_image_width} × {full_image_height}"
|
414 |
|
@@ -448,36 +461,41 @@ msgstr "alter Wert"
|
|
448 |
msgid "Settings page"
|
449 |
msgstr "Einstellungs-Seite"
|
450 |
|
451 |
-
#: loggers/
|
|
|
|
|
|
|
|
|
|
|
452 |
msgid "Created {post_type} \"{post_title}\""
|
453 |
msgstr "hat {post_type} \"{post_title}\" erzeugt"
|
454 |
|
455 |
-
#: loggers/SimplePostLogger.php:
|
456 |
msgid "Updated {post_type} \"{post_title}\""
|
457 |
msgstr "hat {post_type} \"{post_title}\" aktualisiert"
|
458 |
|
459 |
-
#: loggers/SimplePostLogger.php:
|
460 |
msgid "Restored {post_type} \"{post_title}\" from trash"
|
461 |
msgstr "hat {post_type} \"{post_title}\" aus dem Papierkorb wiederhergestellt"
|
462 |
|
463 |
-
#: loggers/SimplePostLogger.php:
|
464 |
msgid "Deleted {post_type} \"{post_title}\""
|
465 |
msgstr "hat {post_type} \"{post_title}\" gelöscht"
|
466 |
|
467 |
-
#: loggers/SimplePostLogger.php:
|
468 |
msgid "Moved {post_type} \"{post_title}\" to the trash"
|
469 |
msgstr "hat {post_type} \"{post_title}\" in den Papierkorb verschoben"
|
470 |
|
471 |
-
#: loggers/SimplePostLogger.php:
|
472 |
msgid "Updated {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
473 |
msgstr ""
|
474 |
"hat {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> aktualisiert"
|
475 |
|
476 |
-
#: loggers/SimplePostLogger.php:
|
477 |
msgid "Created {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
478 |
msgstr "hat {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> erzeugt"
|
479 |
|
480 |
-
#: loggers/SimplePostLogger.php:
|
481 |
msgid ""
|
482 |
"Moved {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> to the trash"
|
483 |
msgstr ""
|
@@ -660,123 +678,6 @@ msgstr "Pär Thernström"
|
|
660 |
msgid "http://simple-history.com/"
|
661 |
msgstr "http://simple-history.com/"
|
662 |
|
663 |
-
#: SimpleHistory.php:249
|
664 |
-
msgctxt ""
|
665 |
-
"Message visible while waiting for log to load from server the first time"
|
666 |
-
msgid "Loading history..."
|
667 |
-
msgstr "Lade Historie..."
|
668 |
-
|
669 |
-
#: SimpleHistory.php:286
|
670 |
-
msgctxt "page n of n"
|
671 |
-
msgid "of"
|
672 |
-
msgstr "von"
|
673 |
-
|
674 |
-
#: SimpleHistory.php:357
|
675 |
-
msgctxt "API: not enought arguments passed"
|
676 |
-
msgid "Not enough args specified"
|
677 |
-
msgstr "Nicht genügend Argumente angegeben"
|
678 |
-
|
679 |
-
#: SimpleHistory.php:1235
|
680 |
-
msgctxt "dashboard menu name"
|
681 |
-
msgid "Simple History"
|
682 |
-
msgstr "Simple History"
|
683 |
-
|
684 |
-
#: SimpleHistory.php:1359
|
685 |
-
msgctxt "history page headline"
|
686 |
-
msgid "Simple History"
|
687 |
-
msgstr "Simple History"
|
688 |
-
|
689 |
-
#: SimpleHistory.php:1619
|
690 |
-
msgctxt "simple-history"
|
691 |
-
msgid "Simple History removed one event that were older than {days} days"
|
692 |
-
msgid_plural ""
|
693 |
-
"Simple History removed {num_rows} events that were older than {days} days"
|
694 |
-
msgstr[0] ""
|
695 |
-
"Simple History hat 1 Ereignis entfernt welches älter als {days} Tage war"
|
696 |
-
msgstr[1] ""
|
697 |
-
"Simple History hat {num_rows} Ereignisse entfernt welche älter als {days} "
|
698 |
-
"Tage waren"
|
699 |
-
|
700 |
-
#: SimpleHistory.php:1963
|
701 |
-
msgctxt "Log level in gui"
|
702 |
-
msgid "emergency"
|
703 |
-
msgstr "Notfall"
|
704 |
-
|
705 |
-
#: SimpleHistory.php:1967
|
706 |
-
msgctxt "Log level in gui"
|
707 |
-
msgid "alert"
|
708 |
-
msgstr "Alarm"
|
709 |
-
|
710 |
-
#: SimpleHistory.php:1971
|
711 |
-
msgctxt "Log level in gui"
|
712 |
-
msgid "critical"
|
713 |
-
msgstr "Kritisch"
|
714 |
-
|
715 |
-
#: SimpleHistory.php:1975
|
716 |
-
msgctxt "Log level in gui"
|
717 |
-
msgid "error"
|
718 |
-
msgstr "Fehler"
|
719 |
-
|
720 |
-
#: SimpleHistory.php:1979
|
721 |
-
msgctxt "Log level in gui"
|
722 |
-
msgid "warning"
|
723 |
-
msgstr "Warnung"
|
724 |
-
|
725 |
-
#: SimpleHistory.php:1983
|
726 |
-
msgctxt "Log level in gui"
|
727 |
-
msgid "notice"
|
728 |
-
msgstr "Hinweis"
|
729 |
-
|
730 |
-
#: SimpleHistory.php:1987
|
731 |
-
msgctxt "Log level in gui"
|
732 |
-
msgid "info"
|
733 |
-
msgstr "Information"
|
734 |
-
|
735 |
-
#: SimpleHistory.php:1991
|
736 |
-
msgctxt "Log level in gui"
|
737 |
-
msgid "debug"
|
738 |
-
msgstr "Fehlersuche"
|
739 |
-
|
740 |
-
#: SimpleHistory.php:1996
|
741 |
-
msgctxt "Log level in gui"
|
742 |
-
msgid "Emergency"
|
743 |
-
msgstr "Notfall"
|
744 |
-
|
745 |
-
#: SimpleHistory.php:2000
|
746 |
-
msgctxt "Log level in gui"
|
747 |
-
msgid "Alert"
|
748 |
-
msgstr "Alarm"
|
749 |
-
|
750 |
-
#: SimpleHistory.php:2004
|
751 |
-
msgctxt "Log level in gui"
|
752 |
-
msgid "Critical"
|
753 |
-
msgstr "Kritisch"
|
754 |
-
|
755 |
-
#: SimpleHistory.php:2008
|
756 |
-
msgctxt "Log level in gui"
|
757 |
-
msgid "Error"
|
758 |
-
msgstr "Fehler"
|
759 |
-
|
760 |
-
#: SimpleHistory.php:2012
|
761 |
-
msgctxt "Log level in gui"
|
762 |
-
msgid "Warning"
|
763 |
-
msgstr "Warnung"
|
764 |
-
|
765 |
-
#: SimpleHistory.php:2016
|
766 |
-
msgctxt "Log level in gui"
|
767 |
-
msgid "Notice"
|
768 |
-
msgstr "Hinweis"
|
769 |
-
|
770 |
-
#: SimpleHistory.php:2020
|
771 |
-
msgctxt "Log level in gui"
|
772 |
-
msgid "Info"
|
773 |
-
msgstr "Information"
|
774 |
-
|
775 |
-
#: SimpleHistory.php:2024
|
776 |
-
msgctxt "Log level in gui"
|
777 |
-
msgid "Debug"
|
778 |
-
msgstr "Fehlersuche"
|
779 |
-
|
780 |
#: dropins/SimpleHistoryDonateDropin.php:51
|
781 |
msgctxt "donate settings headline"
|
782 |
msgid "Donate"
|
@@ -895,6 +796,123 @@ msgstr ""
|
|
895 |
"Eine positive Besprechung hilft neuen Benutzern, auf dieses Plugin aufmerksam "
|
896 |
"zu werden. Und sie macht seinen Autor sehr glücklich! :)"
|
897 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
#: loggers/SimpleCommentsLogger.php:95
|
899 |
msgctxt "A comment was added to the database by a non-logged in internet user"
|
900 |
msgid "Added a comment to {comment_post_type} \"{comment_post_title}\""
|
@@ -1260,7 +1278,7 @@ msgctxt "Export logger: search"
|
|
1260 |
msgid "Created exports"
|
1261 |
msgstr "erstellte Exporte"
|
1262 |
|
1263 |
-
#: loggers/SimpleLogger.php:
|
1264 |
msgctxt "header output when initiator is the currently logged in user"
|
1265 |
msgid "You"
|
1266 |
msgstr "Dein eigener Benutzername"
|
@@ -1329,27 +1347,27 @@ msgctxt "Options logger: search"
|
|
1329 |
msgid "Changed options"
|
1330 |
msgstr "geänderte Optionen"
|
1331 |
|
1332 |
-
#: loggers/SimplePluginLogger.php:
|
1333 |
msgctxt "Plugin was non-silently activated by a user"
|
1334 |
msgid "Activated plugin \"{plugin_name}\""
|
1335 |
msgstr "hat Plugin \"{plugin_name}\" aktiviert"
|
1336 |
|
1337 |
-
#: loggers/SimplePluginLogger.php:
|
1338 |
msgctxt "Plugin was non-silently deactivated by a user"
|
1339 |
msgid "Deactivated plugin \"{plugin_name}\""
|
1340 |
msgstr "hat Plugin \"{plugin_name}\" deaktiviert"
|
1341 |
|
1342 |
-
#: loggers/SimplePluginLogger.php:
|
1343 |
msgctxt "Plugin was installed"
|
1344 |
msgid "Installed plugin \"{plugin_name}\""
|
1345 |
msgstr "hat Plugin \"{plugin_name}\" installiert"
|
1346 |
|
1347 |
-
#: loggers/SimplePluginLogger.php:
|
1348 |
msgctxt "Plugin failed to install"
|
1349 |
msgid "Failed to install plugin \"{plugin_name}\""
|
1350 |
msgstr "hat vergeblich versucht, das Plugin \"{plugin_name}\" zu installieren"
|
1351 |
|
1352 |
-
#: loggers/SimplePluginLogger.php:
|
1353 |
msgctxt "Plugin was updated"
|
1354 |
msgid ""
|
1355 |
"Updated plugin \"{plugin_name}\" to version {plugin_version} from "
|
@@ -1358,22 +1376,22 @@ msgstr ""
|
|
1358 |
"hat Plugin \"{plugin_name}\" auf Version {plugin_version} von "
|
1359 |
"{plugin_prev_version} aktualisiert"
|
1360 |
|
1361 |
-
#: loggers/SimplePluginLogger.php:
|
1362 |
msgctxt "Plugin update failed"
|
1363 |
msgid "Updated plugin \"{plugin_name}\""
|
1364 |
msgstr "hat Plugin \"{plugin_name}\" aktualisiert"
|
1365 |
|
1366 |
-
#: loggers/SimplePluginLogger.php:
|
1367 |
msgctxt "Plugin file edited"
|
1368 |
msgid "Edited plugin file \"{plugin_edited_file}\""
|
1369 |
msgstr "hat die Plugin-Datei \"{plugin_edited_file}\" geändert"
|
1370 |
|
1371 |
-
#: loggers/SimplePluginLogger.php:
|
1372 |
msgctxt "Plugin files was deleted"
|
1373 |
msgid "Deleted plugin \"{plugin_name}\""
|
1374 |
msgstr "hat Plugin \"{plugin_name}\" gelöscht"
|
1375 |
|
1376 |
-
#: loggers/SimplePluginLogger.php:
|
1377 |
msgctxt "Plugin was updated in bulk"
|
1378 |
msgid ""
|
1379 |
"Updated plugin \"{plugin_name}\" to {plugin_version} from "
|
@@ -1382,122 +1400,122 @@ msgstr ""
|
|
1382 |
"hat Plugin \"{plugin_name}\" auf {plugin_version} von {plugin_prev_version} "
|
1383 |
"aktualisiert"
|
1384 |
|
1385 |
-
#: loggers/SimplePluginLogger.php:
|
1386 |
msgctxt "Plugin logger: search"
|
1387 |
msgid "Plugins"
|
1388 |
msgstr "Plugins"
|
1389 |
|
1390 |
-
#: loggers/SimplePluginLogger.php:
|
1391 |
msgctxt "Plugin logger: search"
|
1392 |
msgid "Activated plugins"
|
1393 |
msgstr "aktivierte Plugins"
|
1394 |
|
1395 |
-
#: loggers/SimplePluginLogger.php:
|
1396 |
msgctxt "Plugin logger: search"
|
1397 |
msgid "Deactivated plugins"
|
1398 |
msgstr "deaktivierte Plugins"
|
1399 |
|
1400 |
-
#: loggers/SimplePluginLogger.php:
|
1401 |
msgctxt "Plugin logger: search"
|
1402 |
msgid "Installed plugins"
|
1403 |
msgstr "installierte Plugins"
|
1404 |
|
1405 |
-
#: loggers/SimplePluginLogger.php:
|
1406 |
msgctxt "Plugin logger: search"
|
1407 |
msgid "Failed plugin installs"
|
1408 |
msgstr "fehlgeschlagene Plugin-Installationen"
|
1409 |
|
1410 |
-
#: loggers/SimplePluginLogger.php:
|
1411 |
msgctxt "Plugin logger: search"
|
1412 |
msgid "Updated plugins"
|
1413 |
msgstr "aktualisierte Plugins"
|
1414 |
|
1415 |
-
#: loggers/SimplePluginLogger.php:
|
1416 |
msgctxt "Plugin logger: search"
|
1417 |
msgid "Failed plugin updates"
|
1418 |
msgstr "fehlgeschlagene Plugin-Updates"
|
1419 |
|
1420 |
-
#: loggers/SimplePluginLogger.php:
|
1421 |
msgctxt "Plugin logger: search"
|
1422 |
msgid "Edited plugin files"
|
1423 |
msgstr "geänderte Plugin-Dateien"
|
1424 |
|
1425 |
-
#: loggers/SimplePluginLogger.php:
|
1426 |
msgctxt "Plugin logger: search"
|
1427 |
msgid "Deleted plugins"
|
1428 |
msgstr "gelöschte Plugins"
|
1429 |
|
1430 |
-
#: loggers/SimplePluginLogger.php:
|
1431 |
msgctxt "plugin logger - detailed output version"
|
1432 |
msgid "Version"
|
1433 |
msgstr "Version"
|
1434 |
|
1435 |
-
#: loggers/SimplePluginLogger.php:
|
1436 |
msgctxt "plugin logger - detailed output author"
|
1437 |
msgid "Author"
|
1438 |
msgstr "Autor"
|
1439 |
|
1440 |
-
#: loggers/SimplePluginLogger.php:
|
1441 |
msgctxt "plugin logger - detailed output author"
|
1442 |
msgid "Requires"
|
1443 |
msgstr "erfordert"
|
1444 |
|
1445 |
-
#: loggers/SimplePluginLogger.php:
|
1446 |
msgctxt "plugin logger - detailed output url"
|
1447 |
msgid "URL"
|
1448 |
msgstr "URL"
|
1449 |
|
1450 |
-
#: loggers/SimplePluginLogger.php:
|
1451 |
msgctxt "plugin logger - detailed output compatible"
|
1452 |
msgid "Compatible up to"
|
1453 |
msgstr "kompatibel bis zu"
|
1454 |
|
1455 |
-
#: loggers/SimplePluginLogger.php:
|
1456 |
msgctxt "plugin logger - detailed output downloaded"
|
1457 |
msgid "Downloads"
|
1458 |
msgstr "Downloads"
|
1459 |
|
1460 |
-
#: loggers/SimplePluginLogger.php:
|
1461 |
msgctxt "plugin logger: plugin info thickbox title view all info"
|
1462 |
msgid "View plugin info"
|
1463 |
msgstr "Zeige Plugin-Info"
|
1464 |
|
1465 |
-
#: loggers/SimplePluginLogger.php:
|
1466 |
msgctxt "plugin logger: plugin info thickbox title"
|
1467 |
msgid "View plugin info"
|
1468 |
msgstr "Zeige Plugin-Info"
|
1469 |
|
1470 |
-
#: loggers/SimplePluginLogger.php:
|
1471 |
msgctxt "plugin logger: plugin info thickbox title"
|
1472 |
msgid "View changelog"
|
1473 |
msgstr "Zeige Changelog"
|
1474 |
|
1475 |
-
#: loggers/SimplePostLogger.php:
|
1476 |
msgctxt "Post logger: search"
|
1477 |
msgid "Posts & Pages"
|
1478 |
msgstr "Beiträge & Seiten"
|
1479 |
|
1480 |
-
#: loggers/SimplePostLogger.php:
|
1481 |
msgctxt "Post logger: search"
|
1482 |
msgid "Posts created"
|
1483 |
msgstr "erzeugte Beiträge"
|
1484 |
|
1485 |
-
#: loggers/SimplePostLogger.php:
|
1486 |
msgctxt "Post logger: search"
|
1487 |
msgid "Posts updated"
|
1488 |
msgstr "aktualisierte Beiträge"
|
1489 |
|
1490 |
-
#: loggers/SimplePostLogger.php:
|
1491 |
msgctxt "Post logger: search"
|
1492 |
msgid "Posts trashed"
|
1493 |
msgstr "In den Papierkorb verschobene Beiträge"
|
1494 |
|
1495 |
-
#: loggers/SimplePostLogger.php:
|
1496 |
msgctxt "Post logger: search"
|
1497 |
msgid "Posts deleted"
|
1498 |
msgstr "gelöschte Beiträge"
|
1499 |
|
1500 |
-
#: loggers/SimplePostLogger.php:
|
1501 |
msgctxt "Post logger: search"
|
1502 |
msgid "Posts restored"
|
1503 |
msgstr "wiederhergestellte Beiträge"
|
@@ -1557,6 +1575,10 @@ msgctxt "stats: date in rows per day chart"
|
|
1557 |
msgid "M j"
|
1558 |
msgstr "M j"
|
1559 |
|
|
|
|
|
|
|
|
|
1560 |
#~ msgid "Filter"
|
1561 |
#~ msgstr "Filter"
|
1562 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Simple History 2.0.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/Simple-History\n"
|
7 |
+
"POT-Creation-Date: 2015-02-28 22:22:18+00:00\n"
|
8 |
+
"PO-Revision-Date: 2015-03-07 07:47+0100\n"
|
9 |
"Last-Translator: Ralph Stenzel <ralph@klein-aber-fein.de>\n"
|
10 |
"Language-Team: Ralph Stenzel <ralph@klein-aber-fein.de>\n"
|
11 |
"Language: de_DE\n"
|
22 |
"X-Textdomain-Support: yes\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
+
#: dropins/SimpleHistoryDonateDropin.php:36
|
26 |
+
msgid "Donate"
|
27 |
+
msgstr "Spende"
|
28 |
+
|
29 |
+
#: dropins/SimpleHistoryDonateDropin.php:72
|
30 |
+
msgid ""
|
31 |
+
"If you find Simple History useful please <a href=\"%1$s\">donate</a> or <a "
|
32 |
+
"href=\"%2$s\">buy me something from my Amazon wish list</a>."
|
33 |
+
msgstr ""
|
34 |
+
"Falls Du Simple History nützlich findest, <a href=\"%1$s\">spende</a> bitte "
|
35 |
+
"oder <a href=\"%2$s\">kaufe mir etwas von meinem Amazon-Wunschzettel</a>."
|
36 |
+
|
37 |
+
#: dropins/SimpleHistoryFilterDropin.php:44
|
38 |
+
msgid "Filter history"
|
39 |
+
msgstr "Filter-Historie"
|
40 |
+
|
41 |
+
#: dropins/SimpleHistoryFilterDropin.php:48
|
42 |
+
#: dropins/SimpleHistoryFilterDropin.php:159
|
43 |
+
msgid "Search events"
|
44 |
+
msgstr "Durchsuche Ereignisse"
|
45 |
+
|
46 |
+
#: dropins/SimpleHistoryFilterDropin.php:56
|
47 |
+
msgid "All log levels"
|
48 |
+
msgstr "Alle Logbuch-Ebenen"
|
49 |
+
|
50 |
+
#: dropins/SimpleHistoryFilterDropin.php:70
|
51 |
+
msgid "All messages"
|
52 |
+
msgstr "Alle Nachrichten"
|
53 |
+
|
54 |
+
#: dropins/SimpleHistoryFilterDropin.php:124
|
55 |
+
msgid "All users"
|
56 |
+
msgstr "Alle Benutzer"
|
57 |
+
|
58 |
+
#: dropins/SimpleHistoryFilterDropin.php:145
|
59 |
+
msgid "All dates"
|
60 |
+
msgstr "Alle Tage"
|
61 |
+
|
62 |
+
#: dropins/SimpleHistoryFilterDropin.php:168
|
63 |
+
msgid "Search"
|
64 |
+
msgstr "Suche"
|
65 |
+
|
66 |
+
#: dropins/SimpleHistoryNewRowsNotifier.php:80
|
67 |
+
msgid "1 new row"
|
68 |
+
msgid_plural "%d new rows"
|
69 |
+
msgstr[0] "1 neue Zeile"
|
70 |
+
msgstr[1] "%d neue Zeilen"
|
71 |
+
|
72 |
+
#: dropins/SimpleHistoryRSSDropin.php:55
|
73 |
+
msgid "Address"
|
74 |
+
msgstr "Adresse"
|
75 |
+
|
76 |
+
#: dropins/SimpleHistoryRSSDropin.php:64
|
77 |
+
msgid "Regenerate"
|
78 |
+
msgstr "Wiederherstellen"
|
79 |
+
|
80 |
+
#: dropins/SimpleHistoryRSSDropin.php:81
|
81 |
+
msgid "Created new secret RSS address"
|
82 |
+
msgstr "Neue RSS-Geheim-Adresse erzeugt"
|
83 |
+
|
84 |
+
#: dropins/SimpleHistoryRSSDropin.php:148
|
85 |
+
#: dropins/SimpleHistoryRSSDropin.php:262
|
86 |
+
msgid "History for %s"
|
87 |
+
msgstr "Historie für"
|
88 |
+
|
89 |
+
#: dropins/SimpleHistoryRSSDropin.php:149
|
90 |
+
#: dropins/SimpleHistoryRSSDropin.php:263
|
91 |
+
msgid "WordPress History for %s"
|
92 |
+
msgstr "WordPress Historie für %s"
|
93 |
+
|
94 |
+
#: dropins/SimpleHistoryRSSDropin.php:186
|
95 |
+
msgid "Severity level: %1$s"
|
96 |
+
msgstr "Schweregrad: %1$s"
|
97 |
+
|
98 |
+
#: dropins/SimpleHistoryRSSDropin.php:199
|
99 |
+
msgid "+%1$s occasion"
|
100 |
+
msgid_plural "+%1$s occasions"
|
101 |
+
msgstr[0] "+%1$s Vorkommnis"
|
102 |
+
msgstr[1] "+%1$s Vorkommnisse"
|
103 |
+
|
104 |
+
#: dropins/SimpleHistoryRSSDropin.php:266
|
105 |
+
msgid "Wrong RSS secret"
|
106 |
+
msgstr "Falsche RSS-Geheimadresse"
|
107 |
+
|
108 |
+
#: dropins/SimpleHistoryRSSDropin.php:267
|
109 |
+
msgid ""
|
110 |
+
"Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
|
111 |
+
"settings for current link to the RSS feed."
|
112 |
+
msgstr ""
|
113 |
+
"Deine RSS-Geheimadresse für den Simple-History-RSS-Feed ist falsch. Bitte "
|
114 |
+
"schlage in den WordPress-Einstellungen die aktuelle Verlinkung des RSS-Feeds "
|
115 |
+
"nach."
|
116 |
+
|
117 |
+
#: dropins/SimpleHistoryRSSDropin.php:318
|
118 |
+
msgid ""
|
119 |
+
"You can generate a new address for the RSS feed. This is useful if you think "
|
120 |
+
"that the address has fallen into the wrong hands."
|
121 |
+
msgstr ""
|
122 |
+
"Du kannst eine neue Adresse für den RSS-Feed erzeugen. Dies ist hilfreich "
|
123 |
+
"falls Du denkst, daß die Adresse in die falschen Hände geraten sein könnte."
|
124 |
+
|
125 |
+
#: dropins/SimpleHistoryRSSDropin.php:321
|
126 |
+
msgid "Generate new address"
|
127 |
+
msgstr "Erzeuge neue Adresse"
|
128 |
+
|
129 |
+
#: dropins/SimpleHistoryRSSDropin.php:349
|
130 |
+
msgid ""
|
131 |
+
"Simple History has a RSS feed which you can subscribe to and receive log "
|
132 |
+
"updates. Make sure you only share the feed with people you trust, since it "
|
133 |
+
"can contain sensitive or confidential information."
|
134 |
+
msgstr ""
|
135 |
+
"Simple History hat einen RSS-Feed, den Du abonnieren kannst, um Updates in "
|
136 |
+
"der Logdatei zu empfangen. Stelle sicher, daß Du den Feed nur Menschen Deines "
|
137 |
+
"Vertrauens zugänglich machst, denn er kann sensible und vertrauliche "
|
138 |
+
"Informationen enthalten."
|
139 |
+
|
140 |
+
#: dropins/SimpleHistorySettingsLogtestDropin.php:20
|
141 |
+
msgid "Test data (debug)"
|
142 |
+
msgstr "Test-Daten (Fehlersuche)"
|
143 |
+
|
144 |
+
#: dropins/SimpleHistorySettingsLogtestDropin.php:225
|
145 |
+
msgid "Plugin"
|
146 |
+
msgstr "Plugin"
|
147 |
+
|
148 |
+
#: dropins/SimpleHistorySettingsLogtestDropin.php:226
|
149 |
+
msgid "Enter title of new page"
|
150 |
+
msgstr "Titel der neuen Seite eingeben"
|
151 |
+
|
152 |
+
#: dropins/SimpleHistorySettingsStatsDropin.php:27
|
153 |
+
msgid "Stats"
|
154 |
+
msgstr "Statistiken"
|
155 |
+
|
156 |
+
#: dropins/SimpleHistorySidebarDropin.php:159 loggers/SimpleLogger.php:300
|
157 |
+
msgid "Just now"
|
158 |
+
msgstr "gerade eben"
|
159 |
+
|
160 |
+
#: inc/SimpleHistory.php:533 inc/SimpleHistory.php:826
|
161 |
msgid "Settings"
|
162 |
msgstr "Einstellungen"
|
163 |
|
164 |
+
#: inc/SimpleHistory.php:544
|
165 |
msgid "Log (debug)"
|
166 |
msgstr "Logbuch (Fehlersuche)"
|
167 |
|
168 |
+
#: inc/SimpleHistory.php:549
|
169 |
msgid "Styles example (debug)"
|
170 |
msgstr "Stil-Beispiel (Fehlersuche)"
|
171 |
|
172 |
#. Plugin Name of the plugin/theme
|
173 |
+
#: inc/SimpleHistory.php:841
|
174 |
msgid "Simple History"
|
175 |
msgstr "Simple History"
|
176 |
|
177 |
+
#: inc/SimpleHistory.php:917
|
178 |
msgid "Remove all log items?"
|
179 |
msgstr "Alle Einträge im Logbuch entfernen?"
|
180 |
|
181 |
+
#: inc/SimpleHistory.php:919
|
182 |
msgid "Go to the first page"
|
183 |
msgstr "Gehe zur ersten Seite"
|
184 |
|
185 |
+
#: inc/SimpleHistory.php:920
|
186 |
msgid "Go to the previous page"
|
187 |
msgstr "Gehe zur vorherigen Seite"
|
188 |
|
189 |
+
#: inc/SimpleHistory.php:921
|
190 |
msgid "Go to the next page"
|
191 |
msgstr "Gehe zur nächsten Seite"
|
192 |
|
193 |
+
#: inc/SimpleHistory.php:922
|
194 |
msgid "Go to the last page"
|
195 |
msgstr "Gehe zur letzten Seite"
|
196 |
|
197 |
+
#: inc/SimpleHistory.php:923
|
198 |
msgid "Current page"
|
199 |
msgstr "Aktuelle Seite"
|
200 |
|
201 |
+
#: inc/SimpleHistory.php:925
|
202 |
msgid "Oups, the log could not be loaded right now."
|
203 |
msgstr "Hoppla, das Logbuch konnte eben nicht geladen werden."
|
204 |
|
205 |
+
#: inc/SimpleHistory.php:926
|
206 |
msgid "Your search did not match any history events."
|
207 |
msgstr "Deine Suche erbrachte keine Übereinstimmungen mit Ereignissen."
|
208 |
|
209 |
+
#: inc/SimpleHistory.php:1210 inc/SimpleHistory.php:1311
|
210 |
msgid "Simple History Settings"
|
211 |
msgstr "Simple History Einstellungen"
|
212 |
|
213 |
+
#: inc/SimpleHistory.php:1244
|
214 |
msgid "No valid callback found"
|
215 |
msgstr "Kein valider Rückruf gefunden"
|
216 |
|
217 |
+
#: inc/SimpleHistory.php:1332
|
218 |
msgid "Cleared database"
|
219 |
msgstr "Datenbank geleert"
|
220 |
|
221 |
+
#: inc/SimpleHistory.php:1359
|
222 |
msgid "Show history"
|
223 |
msgstr "Zeige Logbuch"
|
224 |
|
225 |
+
#: inc/SimpleHistory.php:1372
|
226 |
msgid "Number of items per page"
|
227 |
msgstr "Zahl der Einträge pro Seite"
|
228 |
|
229 |
+
#: inc/SimpleHistory.php:1384
|
230 |
msgid "Clear log"
|
231 |
msgstr "Logbuch leeren"
|
232 |
|
233 |
+
#: inc/SimpleHistory.php:1523
|
234 |
msgid "on the dashboard"
|
235 |
msgstr "auf dem Dashboard"
|
236 |
|
237 |
+
#: inc/SimpleHistory.php:1528
|
238 |
msgid "as a page under the dashboard menu"
|
239 |
msgstr "als eine Seite im Dashboard-Menü"
|
240 |
|
241 |
+
#: inc/SimpleHistory.php:1544
|
242 |
msgid "Items in the database are automatically removed after %1$s days."
|
243 |
msgstr "Einträge in der Datenbank werden nach %1$s Tagen automatisch entfernt."
|
244 |
|
245 |
+
#: inc/SimpleHistory.php:1546
|
246 |
msgid "Items in the database are kept forever."
|
247 |
msgstr "Einträge in der Datenbank werden auf ewig behalten."
|
248 |
|
249 |
+
#: inc/SimpleHistory.php:1550
|
250 |
msgid "Clear log now"
|
251 |
msgstr "Logbuch jetzt leeren"
|
252 |
|
253 |
+
#: inc/SimpleHistory.php:1594
|
254 |
msgid "The log for Simple History was cleared ({num_rows} rows were removed)."
|
255 |
msgstr ""
|
256 |
"Das Logbuch von Simple History wurde geleert ({num_rows} Zeilen wurden "
|
257 |
"entfernt)."
|
258 |
|
259 |
+
#: inc/SimpleHistory.php:1858
|
260 |
msgid "+%1$s similar event"
|
261 |
msgid_plural "+%1$s similar events"
|
262 |
msgstr[0] "+%1$s gleichartiges Ereignis"
|
263 |
msgstr[1] "+%1$s gleichartige Ereignisse"
|
264 |
|
265 |
+
#: inc/SimpleHistory.php:1865
|
266 |
msgid "Loading…"
|
267 |
msgstr "Lade..."
|
268 |
|
269 |
+
#: inc/SimpleHistory.php:1872
|
270 |
msgid "Showing %1$s more"
|
271 |
msgstr "Zeige %1$s mehr"
|
272 |
|
273 |
+
#: inc/SimpleHistory.php:1891
|
274 |
msgid "Context data"
|
275 |
msgstr "Kontext-Daten"
|
276 |
|
277 |
+
#: inc/SimpleHistory.php:1892
|
278 |
msgid "This is potentially useful meta data that a logger has saved."
|
279 |
msgstr ""
|
280 |
"Dies sind potentiell nützliche Meta-Daten, die ein Logger abgespeichert hat."
|
281 |
|
282 |
+
#: inc/SimpleHistory.php:2412
|
283 |
msgid "No events today so far."
|
284 |
msgstr "Heute sind noch keine Ereignisse aufgetreten."
|
285 |
|
286 |
+
#: inc/SimpleHistory.php:2431
|
287 |
msgid "One event today from one user."
|
288 |
msgstr "Ein Ereignis heute von einem Benutzer."
|
289 |
|
290 |
+
#: inc/SimpleHistory.php:2437
|
291 |
msgid "One event today from one source."
|
292 |
msgstr "Ein Ereignis heute aus einer Quelle."
|
293 |
|
294 |
+
#: inc/SimpleHistory.php:2443
|
295 |
msgid "%1$d events today from one user."
|
296 |
msgstr "%1$d Ereignisse heute von einem Benutzer."
|
297 |
|
298 |
+
#: inc/SimpleHistory.php:2449
|
299 |
msgid "%1$d events today from %2$d users."
|
300 |
msgstr "%1$d Ereignisse heute von %2$d Benutzern."
|
301 |
|
302 |
+
#: inc/SimpleHistory.php:2455 inc/SimpleHistory.php:2461
|
303 |
msgid "%1$d events today from one user and one other source."
|
304 |
msgstr "%1$d Ereignisse heute von einem Benutzer und einer anderen Quelle."
|
305 |
|
306 |
+
#: inc/SimpleHistory.php:2467
|
307 |
msgid "%1$d events today from one user and %3$d other sources."
|
308 |
msgstr "%1$d Ereignisse heute von einem Benutzer und %3$d anderen Quellen."
|
309 |
|
310 |
+
#: inc/SimpleHistory.php:2473
|
311 |
msgid "%1$s events today from %2$d users and %3$d other sources."
|
312 |
msgstr "%1$s Ereignisse heute von %2$d Benutzern und %3$d anderen Quellen."
|
313 |
|
314 |
+
#: index.php:58
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
msgid ""
|
316 |
"Simple History is a great plugin, but to use it your server must have at "
|
317 |
"least PHP 5.3 installed (you have version %s)."
|
348 |
msgstr "WordPress von {prev_version} auf {new_version} aktualisiert"
|
349 |
|
350 |
#: loggers/SimpleCoreUpdatesLogger.php:30
|
351 |
+
msgid "WordPress auto-updated to {new_version} from {prev_version}"
|
352 |
+
msgstr ""
|
353 |
+
"WordPress hat sich selbst von {prev_version} auf {new_version} aktualisiert"
|
354 |
|
355 |
#: loggers/SimpleExportLogger.php:23
|
356 |
msgid "Created XML export"
|
364 |
msgid "%d occasions"
|
365 |
msgstr "%d Vorkommnisse"
|
366 |
|
367 |
+
#: loggers/SimpleLogger.php:207
|
368 |
msgid "Deleted user (had id %1$s, email %2$s, login %3$s)"
|
369 |
msgstr "gelöschter Benutzer (hatte ID %1$s, E-Mail %2$s, Login %3$s)"
|
370 |
|
371 |
+
#: loggers/SimpleLogger.php:222
|
372 |
msgid "Anonymous web user"
|
373 |
msgstr "Anonymer Netz-Nutzer"
|
374 |
|
375 |
+
#: loggers/SimpleLogger.php:230
|
376 |
msgid "Anonymous user from %1$s"
|
377 |
msgstr "Anonymer Benutzer von %1$s"
|
378 |
|
379 |
#. translators: Date format for log row header, see http:php.net/date
|
380 |
+
#: loggers/SimpleLogger.php:305
|
381 |
msgid "M j, Y \\a\\t G:i"
|
382 |
msgstr "j. M. Y \\u\\m G:i \\U\\h\\r"
|
383 |
|
384 |
#. translators: 1: last modified date and time in human time diff-format
|
385 |
+
#: loggers/SimpleLogger.php:313
|
386 |
msgid "%1$s ago"
|
387 |
msgstr "vor %1$s"
|
388 |
|
399 |
msgstr ""
|
400 |
"hat {post_type} \"{attachment_title}\" (\"{attachment_filename}\") gelöscht"
|
401 |
|
402 |
+
#: loggers/SimpleMediaLogger.php:117
|
403 |
msgid "Edited {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
404 |
msgstr ""
|
405 |
"hat {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a> geändert"
|
406 |
|
407 |
+
#: loggers/SimpleMediaLogger.php:121
|
408 |
msgid "Uploaded {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
409 |
msgstr ""
|
410 |
"hat {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a> hochgeladen"
|
411 |
|
412 |
+
#: loggers/SimpleMediaLogger.php:233
|
413 |
msgid "{attachment_thumb}"
|
414 |
msgstr "{attachment_thumb}"
|
415 |
|
416 |
+
#: loggers/SimpleMediaLogger.php:242
|
417 |
msgid "{attachment_size_format}"
|
418 |
msgstr "{attachment_size_format}"
|
419 |
|
420 |
+
#: loggers/SimpleMediaLogger.php:243
|
421 |
msgid "{attachment_filetype_extension}"
|
422 |
msgstr "{attachment_filetype_extension}"
|
423 |
|
424 |
+
#: loggers/SimpleMediaLogger.php:245
|
425 |
msgid "{full_image_width} × {full_image_height}"
|
426 |
msgstr "{full_image_width} × {full_image_height}"
|
427 |
|
461 |
msgid "Settings page"
|
462 |
msgstr "Einstellungs-Seite"
|
463 |
|
464 |
+
#: loggers/SimplePluginLogger.php:169
|
465 |
+
msgid "You do not have sufficient permissions to delete plugins for this site."
|
466 |
+
msgstr ""
|
467 |
+
"Du hast keine ausreichenden Rechte, um Plugins von dieser Website zu löschen."
|
468 |
+
|
469 |
+
#: loggers/SimplePostLogger.php:180
|
470 |
msgid "Created {post_type} \"{post_title}\""
|
471 |
msgstr "hat {post_type} \"{post_title}\" erzeugt"
|
472 |
|
473 |
+
#: loggers/SimplePostLogger.php:181
|
474 |
msgid "Updated {post_type} \"{post_title}\""
|
475 |
msgstr "hat {post_type} \"{post_title}\" aktualisiert"
|
476 |
|
477 |
+
#: loggers/SimplePostLogger.php:182
|
478 |
msgid "Restored {post_type} \"{post_title}\" from trash"
|
479 |
msgstr "hat {post_type} \"{post_title}\" aus dem Papierkorb wiederhergestellt"
|
480 |
|
481 |
+
#: loggers/SimplePostLogger.php:183 loggers/SimplePostLogger.php:452
|
482 |
msgid "Deleted {post_type} \"{post_title}\""
|
483 |
msgstr "hat {post_type} \"{post_title}\" gelöscht"
|
484 |
|
485 |
+
#: loggers/SimplePostLogger.php:184
|
486 |
msgid "Moved {post_type} \"{post_title}\" to the trash"
|
487 |
msgstr "hat {post_type} \"{post_title}\" in den Papierkorb verschoben"
|
488 |
|
489 |
+
#: loggers/SimplePostLogger.php:448
|
490 |
msgid "Updated {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
491 |
msgstr ""
|
492 |
"hat {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> aktualisiert"
|
493 |
|
494 |
+
#: loggers/SimplePostLogger.php:456
|
495 |
msgid "Created {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
496 |
msgstr "hat {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> erzeugt"
|
497 |
|
498 |
+
#: loggers/SimplePostLogger.php:461
|
499 |
msgid ""
|
500 |
"Moved {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> to the trash"
|
501 |
msgstr ""
|
678 |
msgid "http://simple-history.com/"
|
679 |
msgstr "http://simple-history.com/"
|
680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
681 |
#: dropins/SimpleHistoryDonateDropin.php:51
|
682 |
msgctxt "donate settings headline"
|
683 |
msgid "Donate"
|
796 |
"Eine positive Besprechung hilft neuen Benutzern, auf dieses Plugin aufmerksam "
|
797 |
"zu werden. Und sie macht seinen Autor sehr glücklich! :)"
|
798 |
|
799 |
+
#: inc/SimpleHistory.php:277
|
800 |
+
msgctxt ""
|
801 |
+
"Message visible while waiting for log to load from server the first time"
|
802 |
+
msgid "Loading history..."
|
803 |
+
msgstr "Lade Historie..."
|
804 |
+
|
805 |
+
#: inc/SimpleHistory.php:314
|
806 |
+
msgctxt "page n of n"
|
807 |
+
msgid "of"
|
808 |
+
msgstr "von"
|
809 |
+
|
810 |
+
#: inc/SimpleHistory.php:385
|
811 |
+
msgctxt "API: not enought arguments passed"
|
812 |
+
msgid "Not enough args specified"
|
813 |
+
msgstr "Nicht genügend Argumente angegeben"
|
814 |
+
|
815 |
+
#: inc/SimpleHistory.php:1296
|
816 |
+
msgctxt "dashboard menu name"
|
817 |
+
msgid "Simple History"
|
818 |
+
msgstr "Simple History"
|
819 |
+
|
820 |
+
#: inc/SimpleHistory.php:1420
|
821 |
+
msgctxt "history page headline"
|
822 |
+
msgid "Simple History"
|
823 |
+
msgstr "Simple History"
|
824 |
+
|
825 |
+
#: inc/SimpleHistory.php:1682
|
826 |
+
msgctxt "simple-history"
|
827 |
+
msgid "Simple History removed one event that were older than {days} days"
|
828 |
+
msgid_plural ""
|
829 |
+
"Simple History removed {num_rows} events that were older than {days} days"
|
830 |
+
msgstr[0] ""
|
831 |
+
"Simple History hat 1 Ereignis entfernt welches älter als {days} Tage war"
|
832 |
+
msgstr[1] ""
|
833 |
+
"Simple History hat {num_rows} Ereignisse entfernt welche älter als {days} "
|
834 |
+
"Tage waren"
|
835 |
+
|
836 |
+
#: inc/SimpleHistory.php:2028
|
837 |
+
msgctxt "Log level in gui"
|
838 |
+
msgid "emergency"
|
839 |
+
msgstr "Notfall"
|
840 |
+
|
841 |
+
#: inc/SimpleHistory.php:2032
|
842 |
+
msgctxt "Log level in gui"
|
843 |
+
msgid "alert"
|
844 |
+
msgstr "Alarm"
|
845 |
+
|
846 |
+
#: inc/SimpleHistory.php:2036
|
847 |
+
msgctxt "Log level in gui"
|
848 |
+
msgid "critical"
|
849 |
+
msgstr "Kritisch"
|
850 |
+
|
851 |
+
#: inc/SimpleHistory.php:2040
|
852 |
+
msgctxt "Log level in gui"
|
853 |
+
msgid "error"
|
854 |
+
msgstr "Fehler"
|
855 |
+
|
856 |
+
#: inc/SimpleHistory.php:2044
|
857 |
+
msgctxt "Log level in gui"
|
858 |
+
msgid "warning"
|
859 |
+
msgstr "Warnung"
|
860 |
+
|
861 |
+
#: inc/SimpleHistory.php:2048
|
862 |
+
msgctxt "Log level in gui"
|
863 |
+
msgid "notice"
|
864 |
+
msgstr "Hinweis"
|
865 |
+
|
866 |
+
#: inc/SimpleHistory.php:2052
|
867 |
+
msgctxt "Log level in gui"
|
868 |
+
msgid "info"
|
869 |
+
msgstr "Information"
|
870 |
+
|
871 |
+
#: inc/SimpleHistory.php:2056
|
872 |
+
msgctxt "Log level in gui"
|
873 |
+
msgid "debug"
|
874 |
+
msgstr "Fehlersuche"
|
875 |
+
|
876 |
+
#: inc/SimpleHistory.php:2061
|
877 |
+
msgctxt "Log level in gui"
|
878 |
+
msgid "Emergency"
|
879 |
+
msgstr "Notfall"
|
880 |
+
|
881 |
+
#: inc/SimpleHistory.php:2065
|
882 |
+
msgctxt "Log level in gui"
|
883 |
+
msgid "Alert"
|
884 |
+
msgstr "Alarm"
|
885 |
+
|
886 |
+
#: inc/SimpleHistory.php:2069
|
887 |
+
msgctxt "Log level in gui"
|
888 |
+
msgid "Critical"
|
889 |
+
msgstr "Kritisch"
|
890 |
+
|
891 |
+
#: inc/SimpleHistory.php:2073
|
892 |
+
msgctxt "Log level in gui"
|
893 |
+
msgid "Error"
|
894 |
+
msgstr "Fehler"
|
895 |
+
|
896 |
+
#: inc/SimpleHistory.php:2077
|
897 |
+
msgctxt "Log level in gui"
|
898 |
+
msgid "Warning"
|
899 |
+
msgstr "Warnung"
|
900 |
+
|
901 |
+
#: inc/SimpleHistory.php:2081
|
902 |
+
msgctxt "Log level in gui"
|
903 |
+
msgid "Notice"
|
904 |
+
msgstr "Hinweis"
|
905 |
+
|
906 |
+
#: inc/SimpleHistory.php:2085
|
907 |
+
msgctxt "Log level in gui"
|
908 |
+
msgid "Info"
|
909 |
+
msgstr "Information"
|
910 |
+
|
911 |
+
#: inc/SimpleHistory.php:2089
|
912 |
+
msgctxt "Log level in gui"
|
913 |
+
msgid "Debug"
|
914 |
+
msgstr "Fehlersuche"
|
915 |
+
|
916 |
#: loggers/SimpleCommentsLogger.php:95
|
917 |
msgctxt "A comment was added to the database by a non-logged in internet user"
|
918 |
msgid "Added a comment to {comment_post_type} \"{comment_post_title}\""
|
1278 |
msgid "Created exports"
|
1279 |
msgstr "erstellte Exporte"
|
1280 |
|
1281 |
+
#: loggers/SimpleLogger.php:194
|
1282 |
msgctxt "header output when initiator is the currently logged in user"
|
1283 |
msgid "You"
|
1284 |
msgstr "Dein eigener Benutzername"
|
1347 |
msgid "Changed options"
|
1348 |
msgstr "geänderte Optionen"
|
1349 |
|
1350 |
+
#: loggers/SimplePluginLogger.php:25
|
1351 |
msgctxt "Plugin was non-silently activated by a user"
|
1352 |
msgid "Activated plugin \"{plugin_name}\""
|
1353 |
msgstr "hat Plugin \"{plugin_name}\" aktiviert"
|
1354 |
|
1355 |
+
#: loggers/SimplePluginLogger.php:31
|
1356 |
msgctxt "Plugin was non-silently deactivated by a user"
|
1357 |
msgid "Deactivated plugin \"{plugin_name}\""
|
1358 |
msgstr "hat Plugin \"{plugin_name}\" deaktiviert"
|
1359 |
|
1360 |
+
#: loggers/SimplePluginLogger.php:37
|
1361 |
msgctxt "Plugin was installed"
|
1362 |
msgid "Installed plugin \"{plugin_name}\""
|
1363 |
msgstr "hat Plugin \"{plugin_name}\" installiert"
|
1364 |
|
1365 |
+
#: loggers/SimplePluginLogger.php:43
|
1366 |
msgctxt "Plugin failed to install"
|
1367 |
msgid "Failed to install plugin \"{plugin_name}\""
|
1368 |
msgstr "hat vergeblich versucht, das Plugin \"{plugin_name}\" zu installieren"
|
1369 |
|
1370 |
+
#: loggers/SimplePluginLogger.php:49
|
1371 |
msgctxt "Plugin was updated"
|
1372 |
msgid ""
|
1373 |
"Updated plugin \"{plugin_name}\" to version {plugin_version} from "
|
1376 |
"hat Plugin \"{plugin_name}\" auf Version {plugin_version} von "
|
1377 |
"{plugin_prev_version} aktualisiert"
|
1378 |
|
1379 |
+
#: loggers/SimplePluginLogger.php:55
|
1380 |
msgctxt "Plugin update failed"
|
1381 |
msgid "Updated plugin \"{plugin_name}\""
|
1382 |
msgstr "hat Plugin \"{plugin_name}\" aktualisiert"
|
1383 |
|
1384 |
+
#: loggers/SimplePluginLogger.php:61
|
1385 |
msgctxt "Plugin file edited"
|
1386 |
msgid "Edited plugin file \"{plugin_edited_file}\""
|
1387 |
msgstr "hat die Plugin-Datei \"{plugin_edited_file}\" geändert"
|
1388 |
|
1389 |
+
#: loggers/SimplePluginLogger.php:67
|
1390 |
msgctxt "Plugin files was deleted"
|
1391 |
msgid "Deleted plugin \"{plugin_name}\""
|
1392 |
msgstr "hat Plugin \"{plugin_name}\" gelöscht"
|
1393 |
|
1394 |
+
#: loggers/SimplePluginLogger.php:74
|
1395 |
msgctxt "Plugin was updated in bulk"
|
1396 |
msgid ""
|
1397 |
"Updated plugin \"{plugin_name}\" to {plugin_version} from "
|
1400 |
"hat Plugin \"{plugin_name}\" auf {plugin_version} von {plugin_prev_version} "
|
1401 |
"aktualisiert"
|
1402 |
|
1403 |
+
#: loggers/SimplePluginLogger.php:82
|
1404 |
msgctxt "Plugin logger: search"
|
1405 |
msgid "Plugins"
|
1406 |
msgstr "Plugins"
|
1407 |
|
1408 |
+
#: loggers/SimplePluginLogger.php:84
|
1409 |
msgctxt "Plugin logger: search"
|
1410 |
msgid "Activated plugins"
|
1411 |
msgstr "aktivierte Plugins"
|
1412 |
|
1413 |
+
#: loggers/SimplePluginLogger.php:87
|
1414 |
msgctxt "Plugin logger: search"
|
1415 |
msgid "Deactivated plugins"
|
1416 |
msgstr "deaktivierte Plugins"
|
1417 |
|
1418 |
+
#: loggers/SimplePluginLogger.php:90
|
1419 |
msgctxt "Plugin logger: search"
|
1420 |
msgid "Installed plugins"
|
1421 |
msgstr "installierte Plugins"
|
1422 |
|
1423 |
+
#: loggers/SimplePluginLogger.php:93
|
1424 |
msgctxt "Plugin logger: search"
|
1425 |
msgid "Failed plugin installs"
|
1426 |
msgstr "fehlgeschlagene Plugin-Installationen"
|
1427 |
|
1428 |
+
#: loggers/SimplePluginLogger.php:96
|
1429 |
msgctxt "Plugin logger: search"
|
1430 |
msgid "Updated plugins"
|
1431 |
msgstr "aktualisierte Plugins"
|
1432 |
|
1433 |
+
#: loggers/SimplePluginLogger.php:100
|
1434 |
msgctxt "Plugin logger: search"
|
1435 |
msgid "Failed plugin updates"
|
1436 |
msgstr "fehlgeschlagene Plugin-Updates"
|
1437 |
|
1438 |
+
#: loggers/SimplePluginLogger.php:103
|
1439 |
msgctxt "Plugin logger: search"
|
1440 |
msgid "Edited plugin files"
|
1441 |
msgstr "geänderte Plugin-Dateien"
|
1442 |
|
1443 |
+
#: loggers/SimplePluginLogger.php:106
|
1444 |
msgctxt "Plugin logger: search"
|
1445 |
msgid "Deleted plugins"
|
1446 |
msgstr "gelöschte Plugins"
|
1447 |
|
1448 |
+
#: loggers/SimplePluginLogger.php:891
|
1449 |
msgctxt "plugin logger - detailed output version"
|
1450 |
msgid "Version"
|
1451 |
msgstr "Version"
|
1452 |
|
1453 |
+
#: loggers/SimplePluginLogger.php:893
|
1454 |
msgctxt "plugin logger - detailed output author"
|
1455 |
msgid "Author"
|
1456 |
msgstr "Autor"
|
1457 |
|
1458 |
+
#: loggers/SimplePluginLogger.php:895
|
1459 |
msgctxt "plugin logger - detailed output author"
|
1460 |
msgid "Requires"
|
1461 |
msgstr "erfordert"
|
1462 |
|
1463 |
+
#: loggers/SimplePluginLogger.php:894
|
1464 |
msgctxt "plugin logger - detailed output url"
|
1465 |
msgid "URL"
|
1466 |
msgstr "URL"
|
1467 |
|
1468 |
+
#: loggers/SimplePluginLogger.php:896
|
1469 |
msgctxt "plugin logger - detailed output compatible"
|
1470 |
msgid "Compatible up to"
|
1471 |
msgstr "kompatibel bis zu"
|
1472 |
|
1473 |
+
#: loggers/SimplePluginLogger.php:897
|
1474 |
msgctxt "plugin logger - detailed output downloaded"
|
1475 |
msgid "Downloads"
|
1476 |
msgstr "Downloads"
|
1477 |
|
1478 |
+
#: loggers/SimplePluginLogger.php:957
|
1479 |
msgctxt "plugin logger: plugin info thickbox title view all info"
|
1480 |
msgid "View plugin info"
|
1481 |
msgstr "Zeige Plugin-Info"
|
1482 |
|
1483 |
+
#: loggers/SimplePluginLogger.php:972
|
1484 |
msgctxt "plugin logger: plugin info thickbox title"
|
1485 |
msgid "View plugin info"
|
1486 |
msgstr "Zeige Plugin-Info"
|
1487 |
|
1488 |
+
#: loggers/SimplePluginLogger.php:976
|
1489 |
msgctxt "plugin logger: plugin info thickbox title"
|
1490 |
msgid "View changelog"
|
1491 |
msgstr "Zeige Changelog"
|
1492 |
|
1493 |
+
#: loggers/SimplePostLogger.php:188
|
1494 |
msgctxt "Post logger: search"
|
1495 |
msgid "Posts & Pages"
|
1496 |
msgstr "Beiträge & Seiten"
|
1497 |
|
1498 |
+
#: loggers/SimplePostLogger.php:190
|
1499 |
msgctxt "Post logger: search"
|
1500 |
msgid "Posts created"
|
1501 |
msgstr "erzeugte Beiträge"
|
1502 |
|
1503 |
+
#: loggers/SimplePostLogger.php:193
|
1504 |
msgctxt "Post logger: search"
|
1505 |
msgid "Posts updated"
|
1506 |
msgstr "aktualisierte Beiträge"
|
1507 |
|
1508 |
+
#: loggers/SimplePostLogger.php:196
|
1509 |
msgctxt "Post logger: search"
|
1510 |
msgid "Posts trashed"
|
1511 |
msgstr "In den Papierkorb verschobene Beiträge"
|
1512 |
|
1513 |
+
#: loggers/SimplePostLogger.php:199
|
1514 |
msgctxt "Post logger: search"
|
1515 |
msgid "Posts deleted"
|
1516 |
msgstr "gelöschte Beiträge"
|
1517 |
|
1518 |
+
#: loggers/SimplePostLogger.php:202
|
1519 |
msgctxt "Post logger: search"
|
1520 |
msgid "Posts restored"
|
1521 |
msgstr "wiederhergestellte Beiträge"
|
1575 |
msgid "M j"
|
1576 |
msgstr "M j"
|
1577 |
|
1578 |
+
#~ msgid "WordPress auto-updated from {prev_version} to {new_version}"
|
1579 |
+
#~ msgstr ""
|
1580 |
+
#~ "WordPress automatisch von {prev_version} auf {new_version} aktualisiert"
|
1581 |
+
|
1582 |
#~ msgid "Filter"
|
1583 |
#~ msgstr "Filter"
|
1584 |
|
languages/simple-history.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Simple History package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Simple History 2.0.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/Simple-History\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -82,46 +82,46 @@ msgid "Created new secret RSS address"
|
|
82 |
msgstr ""
|
83 |
|
84 |
#: dropins/SimpleHistoryRSSDropin.php:148
|
85 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
86 |
msgid "History for %s"
|
87 |
msgstr ""
|
88 |
|
89 |
#: dropins/SimpleHistoryRSSDropin.php:149
|
90 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
91 |
msgid "WordPress History for %s"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
95 |
msgid "Severity level: %1$s"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
99 |
msgid "+%1$s occasion"
|
100 |
msgid_plural "+%1$s occasions"
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
105 |
msgid "Wrong RSS secret"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
109 |
msgid ""
|
110 |
"Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
|
111 |
"settings for current link to the RSS feed."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
115 |
msgid ""
|
116 |
"You can generate a new address for the RSS feed. This is useful if you "
|
117 |
"think that the address has fallen into the wrong hands."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
121 |
msgid "Generate new address"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: dropins/SimpleHistoryRSSDropin.php:
|
125 |
msgid ""
|
126 |
"Simple History has a RSS feed which you can subscribe to and receive log "
|
127 |
"updates. Make sure you only share the feed with people you trust, since it "
|
@@ -148,159 +148,159 @@ msgstr ""
|
|
148 |
msgid "Just now"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: inc/SimpleHistory.php:
|
152 |
msgid "Settings"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/SimpleHistory.php:
|
156 |
msgid "Log (debug)"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/SimpleHistory.php:
|
160 |
msgid "Styles example (debug)"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/SimpleHistory.php:
|
164 |
-
#. #-#-#-#-# Simple-History.pot (Simple History 2.0.
|
165 |
#. Plugin Name of the plugin/theme
|
166 |
msgid "Simple History"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: inc/SimpleHistory.php:
|
170 |
msgid "Remove all log items?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: inc/SimpleHistory.php:
|
174 |
msgid "Go to the first page"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/SimpleHistory.php:
|
178 |
msgid "Go to the previous page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/SimpleHistory.php:
|
182 |
msgid "Go to the next page"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/SimpleHistory.php:
|
186 |
msgid "Go to the last page"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/SimpleHistory.php:
|
190 |
msgid "Current page"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/SimpleHistory.php:
|
194 |
msgid "Oups, the log could not be loaded right now."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/SimpleHistory.php:
|
198 |
msgid "Your search did not match any history events."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/SimpleHistory.php:
|
202 |
msgid "Simple History Settings"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/SimpleHistory.php:
|
206 |
msgid "No valid callback found"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/SimpleHistory.php:
|
210 |
msgid "Cleared database"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/SimpleHistory.php:
|
214 |
msgid "Show history"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/SimpleHistory.php:
|
218 |
msgid "Number of items per page"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/SimpleHistory.php:
|
222 |
msgid "Clear log"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/SimpleHistory.php:
|
226 |
msgid "on the dashboard"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/SimpleHistory.php:
|
230 |
msgid "as a page under the dashboard menu"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/SimpleHistory.php:
|
234 |
msgid "Items in the database are automatically removed after %1$s days."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/SimpleHistory.php:
|
238 |
msgid "Items in the database are kept forever."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/SimpleHistory.php:
|
242 |
msgid "Clear log now"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/SimpleHistory.php:
|
246 |
msgid "The log for Simple History was cleared ({num_rows} rows were removed)."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: inc/SimpleHistory.php:
|
250 |
msgid "+%1$s similar event"
|
251 |
msgid_plural "+%1$s similar events"
|
252 |
msgstr[0] ""
|
253 |
msgstr[1] ""
|
254 |
|
255 |
-
#: inc/SimpleHistory.php:
|
256 |
msgid "Loading…"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: inc/SimpleHistory.php:
|
260 |
msgid "Showing %1$s more"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: inc/SimpleHistory.php:
|
264 |
msgid "Context data"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: inc/SimpleHistory.php:
|
268 |
msgid "This is potentially useful meta data that a logger has saved."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/SimpleHistory.php:
|
272 |
msgid "No events today so far."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/SimpleHistory.php:
|
276 |
msgid "One event today from one user."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/SimpleHistory.php:
|
280 |
msgid "One event today from one source."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/SimpleHistory.php:
|
284 |
msgid "%1$d events today from one user."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/SimpleHistory.php:
|
288 |
msgid "%1$d events today from %2$d users."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/SimpleHistory.php:
|
292 |
msgid "%1$d events today from one user and one other source."
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/SimpleHistory.php:
|
296 |
msgid "%1$d events today from one user and %3$d other sources."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/SimpleHistory.php:
|
300 |
msgid "%1$s events today from %2$d users and %3$d other sources."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: index.php:
|
304 |
msgid ""
|
305 |
"Simple History is a great plugin, but to use it your server must have at "
|
306 |
"least PHP 5.3 installed (you have version %s)."
|
@@ -384,27 +384,27 @@ msgstr ""
|
|
384 |
msgid "Deleted {post_type} \"{attachment_title}\" (\"{attachment_filename}\")"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: loggers/SimpleMediaLogger.php:
|
388 |
msgid "Edited {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: loggers/SimpleMediaLogger.php:
|
392 |
msgid "Uploaded {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: loggers/SimpleMediaLogger.php:
|
396 |
msgid "{attachment_thumb}"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: loggers/SimpleMediaLogger.php:
|
400 |
msgid "{attachment_size_format}"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: loggers/SimpleMediaLogger.php:
|
404 |
msgid "{attachment_filetype_extension}"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: loggers/SimpleMediaLogger.php:
|
408 |
msgid "{full_image_width} × {full_image_height}"
|
409 |
msgstr ""
|
410 |
|
@@ -448,35 +448,35 @@ msgstr ""
|
|
448 |
msgid "You do not have sufficient permissions to delete plugins for this site."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: loggers/SimplePostLogger.php:
|
452 |
msgid "Created {post_type} \"{post_title}\""
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: loggers/SimplePostLogger.php:
|
456 |
msgid "Updated {post_type} \"{post_title}\""
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: loggers/SimplePostLogger.php:
|
460 |
msgid "Restored {post_type} \"{post_title}\" from trash"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: loggers/SimplePostLogger.php:
|
464 |
msgid "Deleted {post_type} \"{post_title}\""
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: loggers/SimplePostLogger.php:
|
468 |
msgid "Moved {post_type} \"{post_title}\" to the trash"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: loggers/SimplePostLogger.php:
|
472 |
msgid "Updated {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: loggers/SimplePostLogger.php:
|
476 |
msgid "Created {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: loggers/SimplePostLogger.php:
|
480 |
msgid "Moved {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> to the trash"
|
481 |
msgstr ""
|
482 |
|
@@ -742,114 +742,114 @@ msgid ""
|
|
742 |
"plugin author very happy :)"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: inc/SimpleHistory.php:
|
746 |
msgctxt "Message visible while waiting for log to load from server the first time"
|
747 |
msgid "Loading history..."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/SimpleHistory.php:
|
751 |
msgctxt "page n of n"
|
752 |
msgid "of"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: inc/SimpleHistory.php:
|
756 |
msgctxt "API: not enought arguments passed"
|
757 |
msgid "Not enough args specified"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: inc/SimpleHistory.php:
|
761 |
msgctxt "dashboard menu name"
|
762 |
msgid "Simple History"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: inc/SimpleHistory.php:
|
766 |
msgctxt "history page headline"
|
767 |
msgid "Simple History"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/SimpleHistory.php:
|
771 |
msgctxt "simple-history"
|
772 |
msgid "Simple History removed one event that were older than {days} days"
|
773 |
msgid_plural "Simple History removed {num_rows} events that were older than {days} days"
|
774 |
msgstr[0] ""
|
775 |
msgstr[1] ""
|
776 |
|
777 |
-
#: inc/SimpleHistory.php:
|
778 |
msgctxt "Log level in gui"
|
779 |
msgid "emergency"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/SimpleHistory.php:
|
783 |
msgctxt "Log level in gui"
|
784 |
msgid "alert"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: inc/SimpleHistory.php:
|
788 |
msgctxt "Log level in gui"
|
789 |
msgid "critical"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: inc/SimpleHistory.php:
|
793 |
msgctxt "Log level in gui"
|
794 |
msgid "error"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: inc/SimpleHistory.php:
|
798 |
msgctxt "Log level in gui"
|
799 |
msgid "warning"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: inc/SimpleHistory.php:
|
803 |
msgctxt "Log level in gui"
|
804 |
msgid "notice"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: inc/SimpleHistory.php:
|
808 |
msgctxt "Log level in gui"
|
809 |
msgid "info"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: inc/SimpleHistory.php:
|
813 |
msgctxt "Log level in gui"
|
814 |
msgid "debug"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: inc/SimpleHistory.php:
|
818 |
msgctxt "Log level in gui"
|
819 |
msgid "Emergency"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: inc/SimpleHistory.php:
|
823 |
msgctxt "Log level in gui"
|
824 |
msgid "Alert"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: inc/SimpleHistory.php:
|
828 |
msgctxt "Log level in gui"
|
829 |
msgid "Critical"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: inc/SimpleHistory.php:
|
833 |
msgctxt "Log level in gui"
|
834 |
msgid "Error"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: inc/SimpleHistory.php:
|
838 |
msgctxt "Log level in gui"
|
839 |
msgid "Warning"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: inc/SimpleHistory.php:
|
843 |
msgctxt "Log level in gui"
|
844 |
msgid "Notice"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: inc/SimpleHistory.php:
|
848 |
msgctxt "Log level in gui"
|
849 |
msgid "Info"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: inc/SimpleHistory.php:
|
853 |
msgctxt "Log level in gui"
|
854 |
msgid "Debug"
|
855 |
msgstr ""
|
@@ -1376,32 +1376,32 @@ msgctxt "plugin logger: plugin info thickbox title"
|
|
1376 |
msgid "View changelog"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: loggers/SimplePostLogger.php:
|
1380 |
msgctxt "Post logger: search"
|
1381 |
msgid "Posts & Pages"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: loggers/SimplePostLogger.php:
|
1385 |
msgctxt "Post logger: search"
|
1386 |
msgid "Posts created"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: loggers/SimplePostLogger.php:
|
1390 |
msgctxt "Post logger: search"
|
1391 |
msgid "Posts updated"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: loggers/SimplePostLogger.php:
|
1395 |
msgctxt "Post logger: search"
|
1396 |
msgid "Posts trashed"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: loggers/SimplePostLogger.php:
|
1400 |
msgctxt "Post logger: search"
|
1401 |
msgid "Posts deleted"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: loggers/SimplePostLogger.php:
|
1405 |
msgctxt "Post logger: search"
|
1406 |
msgid "Posts restored"
|
1407 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Simple History package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Simple History 2.0.23\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/Simple-History\n"
|
7 |
+
"POT-Creation-Date: 2015-03-12 22:36:43+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
82 |
msgstr ""
|
83 |
|
84 |
#: dropins/SimpleHistoryRSSDropin.php:148
|
85 |
+
#: dropins/SimpleHistoryRSSDropin.php:275
|
86 |
msgid "History for %s"
|
87 |
msgstr ""
|
88 |
|
89 |
#: dropins/SimpleHistoryRSSDropin.php:149
|
90 |
+
#: dropins/SimpleHistoryRSSDropin.php:276
|
91 |
msgid "WordPress History for %s"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: dropins/SimpleHistoryRSSDropin.php:199
|
95 |
msgid "Severity level: %1$s"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: dropins/SimpleHistoryRSSDropin.php:212
|
99 |
msgid "+%1$s occasion"
|
100 |
msgid_plural "+%1$s occasions"
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
+
#: dropins/SimpleHistoryRSSDropin.php:279
|
105 |
msgid "Wrong RSS secret"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: dropins/SimpleHistoryRSSDropin.php:280
|
109 |
msgid ""
|
110 |
"Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
|
111 |
"settings for current link to the RSS feed."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: dropins/SimpleHistoryRSSDropin.php:331
|
115 |
msgid ""
|
116 |
"You can generate a new address for the RSS feed. This is useful if you "
|
117 |
"think that the address has fallen into the wrong hands."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: dropins/SimpleHistoryRSSDropin.php:334
|
121 |
msgid "Generate new address"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: dropins/SimpleHistoryRSSDropin.php:362
|
125 |
msgid ""
|
126 |
"Simple History has a RSS feed which you can subscribe to and receive log "
|
127 |
"updates. Make sure you only share the feed with people you trust, since it "
|
148 |
msgid "Just now"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/SimpleHistory.php:535 inc/SimpleHistory.php:826
|
152 |
msgid "Settings"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/SimpleHistory.php:546
|
156 |
msgid "Log (debug)"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/SimpleHistory.php:551
|
160 |
msgid "Styles example (debug)"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/SimpleHistory.php:851
|
164 |
+
#. #-#-#-#-# Simple-History.pot (Simple History 2.0.23) #-#-#-#-#
|
165 |
#. Plugin Name of the plugin/theme
|
166 |
msgid "Simple History"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: inc/SimpleHistory.php:929
|
170 |
msgid "Remove all log items?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: inc/SimpleHistory.php:931
|
174 |
msgid "Go to the first page"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: inc/SimpleHistory.php:932
|
178 |
msgid "Go to the previous page"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: inc/SimpleHistory.php:933
|
182 |
msgid "Go to the next page"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: inc/SimpleHistory.php:934
|
186 |
msgid "Go to the last page"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: inc/SimpleHistory.php:935
|
190 |
msgid "Current page"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/SimpleHistory.php:937
|
194 |
msgid "Oups, the log could not be loaded right now."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: inc/SimpleHistory.php:938
|
198 |
msgid "Your search did not match any history events."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: inc/SimpleHistory.php:1222 inc/SimpleHistory.php:1337
|
202 |
msgid "Simple History Settings"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: inc/SimpleHistory.php:1256
|
206 |
msgid "No valid callback found"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/SimpleHistory.php:1358
|
210 |
msgid "Cleared database"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: inc/SimpleHistory.php:1385
|
214 |
msgid "Show history"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: inc/SimpleHistory.php:1398
|
218 |
msgid "Number of items per page"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: inc/SimpleHistory.php:1410
|
222 |
msgid "Clear log"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: inc/SimpleHistory.php:1549
|
226 |
msgid "on the dashboard"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: inc/SimpleHistory.php:1554
|
230 |
msgid "as a page under the dashboard menu"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: inc/SimpleHistory.php:1570
|
234 |
msgid "Items in the database are automatically removed after %1$s days."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: inc/SimpleHistory.php:1572
|
238 |
msgid "Items in the database are kept forever."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: inc/SimpleHistory.php:1576
|
242 |
msgid "Clear log now"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: inc/SimpleHistory.php:1626
|
246 |
msgid "The log for Simple History was cleared ({num_rows} rows were removed)."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: inc/SimpleHistory.php:1890
|
250 |
msgid "+%1$s similar event"
|
251 |
msgid_plural "+%1$s similar events"
|
252 |
msgstr[0] ""
|
253 |
msgstr[1] ""
|
254 |
|
255 |
+
#: inc/SimpleHistory.php:1897
|
256 |
msgid "Loading…"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: inc/SimpleHistory.php:1904
|
260 |
msgid "Showing %1$s more"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: inc/SimpleHistory.php:1923
|
264 |
msgid "Context data"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: inc/SimpleHistory.php:1924
|
268 |
msgid "This is potentially useful meta data that a logger has saved."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: inc/SimpleHistory.php:2444
|
272 |
msgid "No events today so far."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc/SimpleHistory.php:2463
|
276 |
msgid "One event today from one user."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/SimpleHistory.php:2469
|
280 |
msgid "One event today from one source."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/SimpleHistory.php:2475
|
284 |
msgid "%1$d events today from one user."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc/SimpleHistory.php:2481
|
288 |
msgid "%1$d events today from %2$d users."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc/SimpleHistory.php:2487 inc/SimpleHistory.php:2493
|
292 |
msgid "%1$d events today from one user and one other source."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: inc/SimpleHistory.php:2499
|
296 |
msgid "%1$d events today from one user and %3$d other sources."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: inc/SimpleHistory.php:2505
|
300 |
msgid "%1$s events today from %2$d users and %3$d other sources."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: index.php:74
|
304 |
msgid ""
|
305 |
"Simple History is a great plugin, but to use it your server must have at "
|
306 |
"least PHP 5.3 installed (you have version %s)."
|
384 |
msgid "Deleted {post_type} \"{attachment_title}\" (\"{attachment_filename}\")"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: loggers/SimpleMediaLogger.php:119
|
388 |
msgid "Edited {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: loggers/SimpleMediaLogger.php:123
|
392 |
msgid "Uploaded {post_type} <a href=\"{edit_link}\">\"{attachment_title}\"</a>"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: loggers/SimpleMediaLogger.php:235
|
396 |
msgid "{attachment_thumb}"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: loggers/SimpleMediaLogger.php:244
|
400 |
msgid "{attachment_size_format}"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: loggers/SimpleMediaLogger.php:245
|
404 |
msgid "{attachment_filetype_extension}"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: loggers/SimpleMediaLogger.php:247
|
408 |
msgid "{full_image_width} × {full_image_height}"
|
409 |
msgstr ""
|
410 |
|
448 |
msgid "You do not have sufficient permissions to delete plugins for this site."
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: loggers/SimplePostLogger.php:182
|
452 |
msgid "Created {post_type} \"{post_title}\""
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: loggers/SimplePostLogger.php:183
|
456 |
msgid "Updated {post_type} \"{post_title}\""
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: loggers/SimplePostLogger.php:184
|
460 |
msgid "Restored {post_type} \"{post_title}\" from trash"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: loggers/SimplePostLogger.php:185 loggers/SimplePostLogger.php:454
|
464 |
msgid "Deleted {post_type} \"{post_title}\""
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: loggers/SimplePostLogger.php:186
|
468 |
msgid "Moved {post_type} \"{post_title}\" to the trash"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: loggers/SimplePostLogger.php:450
|
472 |
msgid "Updated {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: loggers/SimplePostLogger.php:458
|
476 |
msgid "Created {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a>"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: loggers/SimplePostLogger.php:463
|
480 |
msgid "Moved {post_type} <a href=\"{edit_link}\">\"{post_title}\"</a> to the trash"
|
481 |
msgstr ""
|
482 |
|
742 |
"plugin author very happy :)"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/SimpleHistory.php:279
|
746 |
msgctxt "Message visible while waiting for log to load from server the first time"
|
747 |
msgid "Loading history..."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: inc/SimpleHistory.php:316
|
751 |
msgctxt "page n of n"
|
752 |
msgid "of"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/SimpleHistory.php:387
|
756 |
msgctxt "API: not enought arguments passed"
|
757 |
msgid "Not enough args specified"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: inc/SimpleHistory.php:1319
|
761 |
msgctxt "dashboard menu name"
|
762 |
msgid "Simple History"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc/SimpleHistory.php:1446
|
766 |
msgctxt "history page headline"
|
767 |
msgid "Simple History"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/SimpleHistory.php:1714
|
771 |
msgctxt "simple-history"
|
772 |
msgid "Simple History removed one event that were older than {days} days"
|
773 |
msgid_plural "Simple History removed {num_rows} events that were older than {days} days"
|
774 |
msgstr[0] ""
|
775 |
msgstr[1] ""
|
776 |
|
777 |
+
#: inc/SimpleHistory.php:2060
|
778 |
msgctxt "Log level in gui"
|
779 |
msgid "emergency"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/SimpleHistory.php:2064
|
783 |
msgctxt "Log level in gui"
|
784 |
msgid "alert"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: inc/SimpleHistory.php:2068
|
788 |
msgctxt "Log level in gui"
|
789 |
msgid "critical"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: inc/SimpleHistory.php:2072
|
793 |
msgctxt "Log level in gui"
|
794 |
msgid "error"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: inc/SimpleHistory.php:2076
|
798 |
msgctxt "Log level in gui"
|
799 |
msgid "warning"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: inc/SimpleHistory.php:2080
|
803 |
msgctxt "Log level in gui"
|
804 |
msgid "notice"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: inc/SimpleHistory.php:2084
|
808 |
msgctxt "Log level in gui"
|
809 |
msgid "info"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: inc/SimpleHistory.php:2088
|
813 |
msgctxt "Log level in gui"
|
814 |
msgid "debug"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: inc/SimpleHistory.php:2093
|
818 |
msgctxt "Log level in gui"
|
819 |
msgid "Emergency"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: inc/SimpleHistory.php:2097
|
823 |
msgctxt "Log level in gui"
|
824 |
msgid "Alert"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: inc/SimpleHistory.php:2101
|
828 |
msgctxt "Log level in gui"
|
829 |
msgid "Critical"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: inc/SimpleHistory.php:2105
|
833 |
msgctxt "Log level in gui"
|
834 |
msgid "Error"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: inc/SimpleHistory.php:2109
|
838 |
msgctxt "Log level in gui"
|
839 |
msgid "Warning"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: inc/SimpleHistory.php:2113
|
843 |
msgctxt "Log level in gui"
|
844 |
msgid "Notice"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: inc/SimpleHistory.php:2117
|
848 |
msgctxt "Log level in gui"
|
849 |
msgid "Info"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/SimpleHistory.php:2121
|
853 |
msgctxt "Log level in gui"
|
854 |
msgid "Debug"
|
855 |
msgstr ""
|
1376 |
msgid "View changelog"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: loggers/SimplePostLogger.php:190
|
1380 |
msgctxt "Post logger: search"
|
1381 |
msgid "Posts & Pages"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: loggers/SimplePostLogger.php:192
|
1385 |
msgctxt "Post logger: search"
|
1386 |
msgid "Posts created"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: loggers/SimplePostLogger.php:195
|
1390 |
msgctxt "Post logger: search"
|
1391 |
msgid "Posts updated"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: loggers/SimplePostLogger.php:198
|
1395 |
msgctxt "Post logger: search"
|
1396 |
msgid "Posts trashed"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: loggers/SimplePostLogger.php:201
|
1400 |
msgctxt "Post logger: search"
|
1401 |
msgid "Posts deleted"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: loggers/SimplePostLogger.php:204
|
1405 |
msgctxt "Post logger: search"
|
1406 |
msgid "Posts restored"
|
1407 |
msgstr ""
|
loggers/SimplePluginLogger.php
CHANGED
@@ -448,23 +448,43 @@ class SimplePluginLogger extends SimpleLogger
|
|
448 |
// Single plugin install
|
449 |
if ( isset( $arr_data["action"] ) && "install" == $arr_data["action"] && ! $plugin_upgrader_instance->bulk ) {
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
// Upgrader contains current info
|
452 |
$context = array(
|
453 |
-
"
|
454 |
-
"
|
455 |
-
"plugin_version" => $
|
456 |
-
"plugin_author" => $
|
457 |
-
"plugin_last_updated" => $
|
458 |
-
"plugin_requires" => $
|
459 |
-
"plugin_tested" => $
|
460 |
-
"plugin_rating" => $
|
461 |
-
"plugin_num_ratings" => $
|
462 |
-
"plugin_downloaded" => $
|
463 |
-
"plugin_added" => $
|
464 |
"plugin_source_files" => $this->simpleHistory->json_encode( $plugin_upgrader_instance->result["source_files"] ),
|
465 |
-
|
|
|
|
|
|
|
|
|
466 |
);
|
467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
468 |
if ( is_a( $plugin_upgrader_instance->skin->result, "WP_Error" ) ) {
|
469 |
|
470 |
// Add errors
|
@@ -485,12 +505,17 @@ class SimplePluginLogger extends SimpleLogger
|
|
485 |
// Try to grab more info from the readme
|
486 |
// Would be nice to grab a screenshot, but that is difficult since they often are stored remotely
|
487 |
$plugin_destination = isset( $plugin_upgrader_instance->result["destination"] ) ? $plugin_upgrader_instance->result["destination"] : null;
|
|
|
488 |
if ($plugin_destination) {
|
489 |
|
490 |
$plugin_info = $plugin_upgrader_instance->plugin_info();
|
491 |
$plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin_info );
|
492 |
-
$context["
|
493 |
-
$context["
|
|
|
|
|
|
|
|
|
494 |
|
495 |
}
|
496 |
|
@@ -888,13 +913,13 @@ class SimplePluginLogger extends SimpleLogger
|
|
888 |
|
889 |
// Keys to show
|
890 |
$arr_plugin_keys = array(
|
891 |
-
"plugin_version" => _x("Version", "plugin logger - detailed output version", "simple-history"),
|
892 |
"plugin_description" => "Description",
|
|
|
893 |
"plugin_author" => _x("Author", "plugin logger - detailed output author", "simple-history"),
|
894 |
"plugin_url" => _x("URL", "plugin logger - detailed output url", "simple-history"),
|
895 |
-
"
|
896 |
-
"
|
897 |
-
"
|
898 |
// also available: plugin_rating, plugin_num_ratings
|
899 |
);
|
900 |
|
448 |
// Single plugin install
|
449 |
if ( isset( $arr_data["action"] ) && "install" == $arr_data["action"] && ! $plugin_upgrader_instance->bulk ) {
|
450 |
|
451 |
+
$upgrader_skin_options = isset( $plugin_upgrader_instance->skin->options ) && is_array( $plugin_upgrader_instance->skin->options ) ? $plugin_upgrader_instance->skin->options : array();
|
452 |
+
$upgrader_skin_result = isset( $plugin_upgrader_instance->skin->result ) && is_array( $plugin_upgrader_instance->skin->result ) ? $plugin_upgrader_instance->skin->result : array();
|
453 |
+
$upgrader_skin_api = isset( $plugin_upgrader_instance->skin->api ) ? $plugin_upgrader_instance->skin->api : (object) array();
|
454 |
+
|
455 |
+
$plugin_slug = isset( $upgrader_skin_result["destination_name"] ) ? $upgrader_skin_result["destination_name"] : "";
|
456 |
+
|
457 |
// Upgrader contains current info
|
458 |
$context = array(
|
459 |
+
"plugin_slug" => $plugin_slug,
|
460 |
+
"plugin_name" => isset( $upgrader_skin_api->name ) ? $upgrader_skin_api->name : "",
|
461 |
+
"plugin_version" => isset( $upgrader_skin_api->version ) ? $upgrader_skin_api->version : "",
|
462 |
+
"plugin_author" => isset( $upgrader_skin_api->author ) ? $upgrader_skin_api->author : "",
|
463 |
+
"plugin_last_updated" => isset( $upgrader_skin_api->last_updated ) ? $upgrader_skin_api->last_updated : "",
|
464 |
+
"plugin_requires" => isset( $upgrader_skin_api->requires ) ? $upgrader_skin_api->requires : "",
|
465 |
+
"plugin_tested" => isset( $upgrader_skin_api->tested ) ? $upgrader_skin_api->tested : "",
|
466 |
+
"plugin_rating" => isset( $upgrader_skin_api->rating ) ? $upgrader_skin_api->rating : "",
|
467 |
+
"plugin_num_ratings" => isset( $upgrader_skin_api->num_ratings ) ? $upgrader_skin_api->num_ratings : "",
|
468 |
+
"plugin_downloaded" => isset( $upgrader_skin_api->downloaded ) ? $upgrader_skin_api->downloaded : "",
|
469 |
+
"plugin_added" => isset( $upgrader_skin_api->added ) ? $upgrader_skin_api->added : "",
|
470 |
"plugin_source_files" => $this->simpleHistory->json_encode( $plugin_upgrader_instance->result["source_files"] ),
|
471 |
+
|
472 |
+
// To debug comment out these:
|
473 |
+
// "debug_skin_options" => $this->simpleHistory->json_encode( $upgrader_skin_options ),
|
474 |
+
// "debug_skin_result" => $this->simpleHistory->json_encode( $upgrader_skin_result ),
|
475 |
+
|
476 |
);
|
477 |
|
478 |
+
/*
|
479 |
+
Detect install plugin from wordpress.org
|
480 |
+
- options[type] = "web"
|
481 |
+
- options[api] contains all we need
|
482 |
+
|
483 |
+
Detect install from upload ZIP
|
484 |
+
- options[type] = "upload"
|
485 |
+
|
486 |
+
*/
|
487 |
+
|
488 |
if ( is_a( $plugin_upgrader_instance->skin->result, "WP_Error" ) ) {
|
489 |
|
490 |
// Add errors
|
505 |
// Try to grab more info from the readme
|
506 |
// Would be nice to grab a screenshot, but that is difficult since they often are stored remotely
|
507 |
$plugin_destination = isset( $plugin_upgrader_instance->result["destination"] ) ? $plugin_upgrader_instance->result["destination"] : null;
|
508 |
+
|
509 |
if ($plugin_destination) {
|
510 |
|
511 |
$plugin_info = $plugin_upgrader_instance->plugin_info();
|
512 |
$plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin_info );
|
513 |
+
$context["plugin_name"] = isset( $plugin_data["Name"] ) ? $plugin_data["Name"] : "";
|
514 |
+
$context["plugin_description"] = isset( $plugin_data["Description"] ) ? $plugin_data["Description"] : "";
|
515 |
+
$context["plugin_url"] = isset( $plugin_data["PluginURI"] ) ? $plugin_data["PluginURI"] : "";
|
516 |
+
$context["plugin_version"] = isset( $plugin_data["Version"] ) ? $plugin_data["Version"] : "";
|
517 |
+
$context["plugin_author"] = isset( $plugin_data["AuthorName"] ) ? $plugin_data["AuthorName"] : "";
|
518 |
+
#$context["debug_plugin_data"] = $this->simpleHistory->json_encode( $plugin_data );
|
519 |
|
520 |
}
|
521 |
|
913 |
|
914 |
// Keys to show
|
915 |
$arr_plugin_keys = array(
|
|
|
916 |
"plugin_description" => "Description",
|
917 |
+
"plugin_version" => _x("Version", "plugin logger - detailed output version", "simple-history"),
|
918 |
"plugin_author" => _x("Author", "plugin logger - detailed output author", "simple-history"),
|
919 |
"plugin_url" => _x("URL", "plugin logger - detailed output url", "simple-history"),
|
920 |
+
#"plugin_downloaded" => _x("Downloads", "plugin logger - detailed output downloaded", "simple-history"),
|
921 |
+
#"plugin_requires" => _x("Requires", "plugin logger - detailed output author", "simple-history"),
|
922 |
+
#"plugin_tested" => _x("Compatible up to", "plugin logger - detailed output compatible", "simple-history"),
|
923 |
// also available: plugin_rating, plugin_num_ratings
|
924 |
);
|
925 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
|
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog, feed, activity, stream
|
5 |
Requires at least: 3.6.0
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
10 |
|
@@ -29,7 +29,7 @@ activation and deactivation
|
|
29 |
* **User profiles**<br>
|
30 |
info about added, updated or removed users
|
31 |
* **User logins**<br>
|
32 |
-
see when a user login &
|
33 |
* **Failed user logins**<br>
|
34 |
see when someone has tried to log in, but failed. The log will then include ip address of the possible hacker.
|
35 |
|
@@ -47,7 +47,7 @@ _"Has someone done anything today? Ah, Sarah uploaded
|
|
47 |
the new press release and created an article for it. Great! Now I don't have to do that."_
|
48 |
|
49 |
Or for debug purposes:
|
50 |
-
_"The site feels
|
51 |
that must be it."_
|
52 |
|
53 |
#### See it in action
|
@@ -113,6 +113,16 @@ initiated by a specific user.
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
= 2.0.23 =
|
117 |
|
118 |
- Added: Filter `simple_history/rss_item_link`, so plugins can modify the link used in the RSS feed.
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog, feed, activity, stream
|
5 |
Requires at least: 3.6.0
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 2.0.24
|
8 |
|
9 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
10 |
|
29 |
* **User profiles**<br>
|
30 |
info about added, updated or removed users
|
31 |
* **User logins**<br>
|
32 |
+
see when a user login & logout
|
33 |
* **Failed user logins**<br>
|
34 |
see when someone has tried to log in, but failed. The log will then include ip address of the possible hacker.
|
35 |
|
47 |
the new press release and created an article for it. Great! Now I don't have to do that."_
|
48 |
|
49 |
Or for debug purposes:
|
50 |
+
_"The site feels slow since yesterday. Has anyone done anything special? ... Ah, Steven activated 'naughy-plugin-x',
|
51 |
that must be it."_
|
52 |
|
53 |
#### See it in action
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
## Changelog
|
117 |
+
|
118 |
+
= 2.0.24 =
|
119 |
+
|
120 |
+
- Fixed: Plugin installs from uploaded ZIP files are now logged correctly. Fixes https://github.com/bonny/WordPress-Simple-History/issues/59.
|
121 |
+
- Fixed: Check that JavaScript variables it set and that the object have properties set. Fixes https://wordpress.org/support/topic/firefox-37-js-error-generated-by-simplehistoryipinfodropinjs.
|
122 |
+
- Updated: German translation updated.
|
123 |
+
- Changed: Loading of loggers, dropins, and so one are moved from action `plugins_loaded` to `after_setup_theme` so themes can actually use for example the load_dropin_*-filters...
|
124 |
+
- Changed: Misc small design fixes.
|
125 |
+
|
126 |
= 2.0.23 =
|
127 |
|
128 |
- Added: Filter `simple_history/rss_item_link`, so plugins can modify the link used in the RSS feed.
|