Simple History - Version 1.3.6

Version Description

  • Added Polish translation
  • Added correct XML encoding and header
  • Fixed notice warnings when media did not exist on file system
Download this release

Release Info

Developer eskapism
Plugin Icon 128x128 Simple History
Version 1.3.6
Comparing to
See all releases

Code changes from version 1.3.5 to 1.3.6

index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
- Version: 1.3.5
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
@@ -27,7 +27,7 @@ License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
- define( "SIMPLE_HISTORY_VERSION", "1.3.5");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
 
33
  // Find the plugin directory URL
@@ -418,7 +418,8 @@ define("SIMPLE_HISTORY_URL", $plugin_dir_url);
418
  die();
419
  }
420
 
421
- echo '<?xml version="1.0"?>';
 
422
  $self_link = simple_history_get_rss_address();
423
 
424
  if ($rss_secret_option === $rss_secret_get) {
@@ -1801,11 +1802,16 @@ function simple_history_print_history($args = null) {
1801
  $attachment_mime = get_post_mime_type( $object_id );
1802
  $attachment_url = wp_get_attachment_url( $object_id );
1803
 
 
 
 
1804
  // Get attachment thumbnail. 60 x 60 is the same size as the media overview uses
1805
  // Is thumbnail of object if image, is wp icon if not
1806
  $attachment_image_src = wp_get_attachment_image_src($object_id, array(60, 60), true);
1807
- if ($attachment_image_src) {
1808
  $object_image_out .= "<a class='simple-history-attachment-thumbnail' href='$edit_link'><img src='{$attachment_image_src[0]}' alt='Attachment icon' width='{$attachment_image_src[1]}' height='{$attachment_image_src[2]}' /></a>";
 
 
1809
  }
1810
 
1811
  // Begin adding nice to have meta info about to attachment (name, size, mime, etc.)
@@ -1815,9 +1821,20 @@ function simple_history_print_history($args = null) {
1815
 
1816
  // Get size in human readable format. Code snippet from media.php
1817
  $sizes = array( 'KB', 'MB', 'GB' );
1818
- $attachment_filesize = filesize( $attachment_file );
1819
- for ( $u = -1; $attachment_filesize > 1024 && $u < count( $sizes ) - 1; $u++ ) {
1820
- $attachment_filesize /= 1024;
 
 
 
 
 
 
 
 
 
 
 
1821
  }
1822
 
1823
  // File type
@@ -1834,10 +1851,8 @@ function simple_history_print_history($args = null) {
1834
  }
1835
 
1836
  // Generate string with metainfo
1837
- $size_unit = ($u == -1) ? __("bytes", "simple-history") : $sizes[$u];
1838
- $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("File name:"), esc_html( basename( $attachment_file ) ) );;
1839
- $object_image_out .= sprintf('<p>%1$s %2$s %3$s</p>', __("File size:", "simple-history"), round( $attachment_filesize, 0 ), $size_unit );
1840
- // $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("File type:"), $file_type_out );
1841
  if ( ! empty( $media_dims ) ) $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("Dimensions:"), $media_dims );
1842
  if ( ! empty( $attachment_metadata["length_formatted"] ) ) $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("Length:"), $attachment_metadata["length_formatted"] );
1843
 
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
+ Version: 1.3.6
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
+ define( "SIMPLE_HISTORY_VERSION", "1.3.6");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
 
33
  // Find the plugin directory URL
418
  die();
419
  }
420
 
421
+ header ("Content-Type:text/xml");
422
+ echo '<?xml version="1.0" encoding="UTF-8"?>';
423
  $self_link = simple_history_get_rss_address();
424
 
425
  if ($rss_secret_option === $rss_secret_get) {
1802
  $attachment_mime = get_post_mime_type( $object_id );
1803
  $attachment_url = wp_get_attachment_url( $object_id );
1804
 
1805
+ // Check that file exists. It may not due to local dev vs remove dev etc.
1806
+ $file_exists = file_exists($attachment_file);
1807
+
1808
  // Get attachment thumbnail. 60 x 60 is the same size as the media overview uses
1809
  // Is thumbnail of object if image, is wp icon if not
1810
  $attachment_image_src = wp_get_attachment_image_src($object_id, array(60, 60), true);
1811
+ if ($attachment_image_src && $file_exists) {
1812
  $object_image_out .= "<a class='simple-history-attachment-thumbnail' href='$edit_link'><img src='{$attachment_image_src[0]}' alt='Attachment icon' width='{$attachment_image_src[1]}' height='{$attachment_image_src[2]}' /></a>";
1813
+ } else {
1814
+ $object_image_out .= "<a class='simple-history-attachment-thumbnail' href='$edit_link'></a>";
1815
  }
1816
 
1817
  // Begin adding nice to have meta info about to attachment (name, size, mime, etc.)
1821
 
1822
  // Get size in human readable format. Code snippet from media.php
1823
  $sizes = array( 'KB', 'MB', 'GB' );
1824
+
1825
+ $attachment_filesize = "";
1826
+ if ( $file_exists ) {
1827
+ $attachment_filesize = filesize( $attachment_file );
1828
+ for ( $u = -1; $attachment_filesize > 1024 && $u < count( $sizes ) - 1; $u++ ) {
1829
+ $attachment_filesize /= 1024;
1830
+ }
1831
+ }
1832
+
1833
+ if (empty($attachment_filesize)) {
1834
+ $str_attachment_size = "<p>" . __("File size: Unknown ", "simple-history") . "</p>";
1835
+ } else {
1836
+ $size_unit = ($u == -1) ? __("bytes", "simple-history") : $sizes[$u];
1837
+ $str_attachment_size = sprintf('<p>%1$s %2$s %3$s</p>', __("File size:", "simple-history"), round( $attachment_filesize, 0 ), $size_unit );
1838
  }
1839
 
1840
  // File type
1851
  }
1852
 
1853
  // Generate string with metainfo
1854
+ $object_image_out .= $str_attachment_size;
1855
+ $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("File type:"), $file_type_out );
 
 
1856
  if ( ! empty( $media_dims ) ) $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("Dimensions:"), $media_dims );
1857
  if ( ! empty( $attachment_metadata["length_formatted"] ) ) $object_image_out .= sprintf('<p>%1$s %2$s</p>', __("Length:"), $attachment_metadata["length_formatted"] );
1858
 
languages/simple-history-pl_PL.mo ADDED
Binary file
languages/simple-history-pl_PL.po ADDED
@@ -0,0 +1,736 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Simple History\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-history\n"
7
+ "POT-Creation-Date: 2013-05-22 13:16:18+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2013-10-10 09:11+0100\n"
12
+ "Last-Translator: Mateusz Czardybon <mczardybon@netizens.pl>\n"
13
+ "Language-Team: Mateusz Czardybon <mczardybon@netizens.pl>\n"
14
+ "X-Generator: Poedit 1.5.7\n"
15
+ "Language: pl_PL\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
+ "|| n%100>=20) ? 1 : 2;\n"
19
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
20
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
21
+ "esc_attr_x:1,2c\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: index.php:88 index.php:105
26
+ msgid "added"
27
+ msgstr "dodano"
28
+
29
+ #: index.php:89
30
+ msgid "approved"
31
+ msgstr "zatwierdzony"
32
+
33
+ #: index.php:90
34
+ msgid "unapproved"
35
+ msgstr "niezatwierdzony"
36
+
37
+ #: index.php:91 simple-history-extender/class.simple-history-extend.php:92
38
+ msgid "marked as spam"
39
+ msgstr "oznaczony jako spam"
40
+
41
+ #: index.php:92 simple-history-extender/class.simple-history-extend.php:94
42
+ msgid "trashed"
43
+ msgstr "wyrzucono do kosza"
44
+
45
+ #: index.php:93 simple-history-extender/class.simple-history-extend.php:95
46
+ msgid "untrashed"
47
+ msgstr "przywrócono z kosza"
48
+
49
+ #: index.php:94 simple-history-extender/class.simple-history-extend.php:89
50
+ msgid "created"
51
+ msgstr "utworzono"
52
+
53
+ #: index.php:95 simple-history-extender/class.simple-history-extend.php:91
54
+ msgid "deleted"
55
+ msgstr "usunięto"
56
+
57
+ #: index.php:96 simple-history-extender/class.simple-history-extend.php:239
58
+ msgid "updated"
59
+ msgstr "zaktualizowano"
60
+
61
+ #: index.php:97
62
+ msgid "nav_menu_item"
63
+ msgstr "element menu"
64
+
65
+ #: index.php:98 index.php:1770
66
+ msgid "attachment"
67
+ msgstr "załącznik"
68
+
69
+ #: index.php:99 index.php:1851
70
+ msgid "user"
71
+ msgstr "użytkownik"
72
+
73
+ #: index.php:100
74
+ msgid "settings page"
75
+ msgstr "strona z ustawieniami"
76
+
77
+ #: index.php:101 simple-history-extender/class.simple-history-extend.php:90
78
+ msgid "edited"
79
+ msgstr "edytowano"
80
+
81
+ #: index.php:102
82
+ msgid "comment"
83
+ msgstr "komentarz"
84
+
85
+ #: index.php:103
86
+ msgid "logged in"
87
+ msgstr "zalogowany"
88
+
89
+ #: index.php:104
90
+ msgid "logged out"
91
+ msgstr "wylogowany"
92
+
93
+ #: index.php:106
94
+ msgid "modified"
95
+ msgstr "zmienono"
96
+
97
+ #: index.php:107
98
+ msgid "upgraded it\\'s database"
99
+ msgstr "zaktualizował swoją bazę danych"
100
+
101
+ #: index.php:108
102
+ msgid "plugin"
103
+ msgstr "wtyczka"
104
+
105
+ #: index.php:121 index.php:283 index.php:1078
106
+ msgid "History"
107
+ msgstr "Historia"
108
+
109
+ #: index.php:181
110
+ msgid "WordPress %1$s"
111
+ msgstr "WordPress %1$s"
112
+
113
+ #: index.php:194 index.php:299
114
+ msgid "Donate"
115
+ msgstr "Darowizna"
116
+
117
+ #: index.php:269 index.php:290
118
+ msgid "Simple History Settings"
119
+ msgstr "Historia zdarzeń - ustawienia"
120
+
121
+ #: index.php:295
122
+ msgid "Show Simple History"
123
+ msgstr "Pokaż historię zdarzeń"
124
+
125
+ #: index.php:296
126
+ msgid "Number of items per page"
127
+ msgstr "Liczba elementów na stronie"
128
+
129
+ #: index.php:297 index.php:2024
130
+ msgid "RSS feed"
131
+ msgstr "Kanał RSS"
132
+
133
+ #: index.php:298
134
+ msgid "Clear log"
135
+ msgstr "Wyczyść historię"
136
+
137
+ #: index.php:315
138
+ msgid "failed to log in because they entered the wrong password"
139
+ msgstr "nie umiał(-a) się zalogować, ponieważ wpisywane hasło było niepoprawne"
140
+
141
+ #: index.php:391 index.php:450
142
+ msgid "History for %s"
143
+ msgstr "Historia dla %s"
144
+
145
+ #: index.php:392 index.php:451
146
+ msgid "WordPress History for %s"
147
+ msgstr "Historia WordPressa dla %s"
148
+
149
+ #: index.php:415
150
+ msgid "By %s"
151
+ msgstr "Przez %s"
152
+
153
+ #: index.php:419
154
+ msgid "%d occasions"
155
+ msgstr "%d więcej"
156
+
157
+ #: index.php:454
158
+ msgid "Wrong RSS secret"
159
+ msgstr "Błędny klucz kanału RSS"
160
+
161
+ #: index.php:455
162
+ msgid ""
163
+ "Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
164
+ "settings for current link to the RSS feed."
165
+ msgstr ""
166
+ "Twój sekretny link z dostępem do kanału RSS Historii zdarzeń jest błędny. "
167
+ "Przejdź do ustawień WordPressa, żeby zobaczyć aktualny adres tego kanału."
168
+
169
+ #: index.php:534 index.php:1448
170
+ msgid "One item"
171
+ msgid_plural "%1$d items"
172
+ msgstr[0] "1 element"
173
+ msgstr[1] "%1$d elementy"
174
+ msgstr[2] "%1$d elementów"
175
+
176
+ #: index.php:597
177
+ msgid "on the dashboard"
178
+ msgstr "jako widget w Kokpicie"
179
+
180
+ #: index.php:602
181
+ msgid "as a page under the dashboard menu"
182
+ msgstr "jako podstronę w menu Kokpit"
183
+
184
+ #: index.php:617
185
+ msgid "Cleared database"
186
+ msgstr "Wyczyść bazę danych"
187
+
188
+ #: index.php:625
189
+ msgid "Items in the database are automatically removed after 60 days."
190
+ msgstr "Zdarzenia będą usuwane automatycznie z bazy danych po 60 dniach."
191
+
192
+ #: index.php:627
193
+ msgid "Clear it now."
194
+ msgstr "Wyczyść teraz."
195
+
196
+ #: index.php:641
197
+ msgid ""
198
+ "\n"
199
+ "\t\t\tPlease\n"
200
+ "\t\t\t<a href=\"http://eskapism.se/sida/donate/?"
201
+ "utm_source=wordpress&utm_medium=settingpage&utm_campaign=simplehistory\">\n"
202
+ "\t\t\tdonate\n"
203
+ "\t\t\t</a> to support the development of this plugin and to keep it free.\n"
204
+ "\t\t\tThanks!\n"
205
+ "\t\t\t"
206
+ msgstr ""
207
+ "\n"
208
+ "\t\t\tProsimy\n"
209
+ "\t\t\t<a href=\"http://eskapism.se/sida/donate/?"
210
+ "utm_source=wordpress&utm_medium=settingpage&utm_campaign=simplehistory\">\n"
211
+ "\t\t\to wsparcie\n"
212
+ "\t\t\t</a> procesu tworzenia wtyczki.\n"
213
+ "\t\t\tDzięki!!\n"
214
+ "\t\t\t"
215
+
216
+ #: index.php:675
217
+ msgid "Created new secret RSS address"
218
+ msgstr "Utworzono nowy sekretny link do kanału RSS"
219
+
220
+ #: index.php:686
221
+ msgid ""
222
+ "This is a secret RSS feed for Simple History. Only share the link with "
223
+ "people you trust"
224
+ msgstr ""
225
+ "To jest sekretny link do kanału RSS Historii zdarzeń. Nie publikuj go "
226
+ "nigdzie."
227
+
228
+ #: index.php:689
229
+ msgid ""
230
+ "You can <a href='%s'>generate a new address</a> for the RSS feed. This is "
231
+ "useful if you think that the address has fallen into the wrong hands."
232
+ msgstr ""
233
+ "Możesz <a href='%s'>wygenerować nowy link</a> kanału RSS. Ta opcja jest "
234
+ "przydatna, jeśli poprzednii link wpadł w niepowołane ręce."
235
+
236
+ #: index.php:740 index.php:756 index.php:788
237
+ msgid "From %1$s on %2$s"
238
+ msgstr ""
239
+
240
+ #: index.php:1195
241
+ msgid "All types"
242
+ msgstr "Wszystkie wydarzenia"
243
+
244
+ #: index.php:1356 index.php:1360
245
+ msgid "By all users"
246
+ msgstr "Wszyscy użytkownicy"
247
+
248
+ #: index.php:1414
249
+ msgid "Search"
250
+ msgstr "Szukaj"
251
+
252
+ #: index.php:1452
253
+ msgid "Go to the first page"
254
+ msgstr "Idź na pierwszą stronę"
255
+
256
+ #: index.php:1453
257
+ msgid "Go to the previous page"
258
+ msgstr "Poprzednia strona"
259
+
260
+ #: index.php:1454
261
+ msgid "Current page"
262
+ msgstr "Aktualna strona"
263
+
264
+ #: index.php:1455
265
+ msgid "of"
266
+ msgstr "z"
267
+
268
+ #: index.php:1456
269
+ msgid "Go to the next page"
270
+ msgstr "Następna strona"
271
+
272
+ #: index.php:1457
273
+ msgid "Go to the last page"
274
+ msgstr "Ostatnia strona"
275
+
276
+ #: index.php:1724
277
+ msgid "Unknown or deleted user"
278
+ msgstr "Nieznany lub usunięty użytkownik"
279
+
280
+ #: index.php:1819
281
+ msgid "File name:"
282
+ msgstr "Nazwa pliku:"
283
+
284
+ #: index.php:1820
285
+ msgid "File size:"
286
+ msgstr "Rozmiar pliku:"
287
+
288
+ #: index.php:1822
289
+ msgid "Dimensions:"
290
+ msgstr ""
291
+
292
+ #: index.php:1823
293
+ msgid "Length:"
294
+ msgstr ""
295
+
296
+ #: index.php:1894 simple-history-extender/simple-history-extender.php:274
297
+ msgid "activated"
298
+ msgstr "aktywowano"
299
+
300
+ #: index.php:1897 simple-history-extender/simple-history-extender.php:274
301
+ msgid "deactivated"
302
+ msgstr "deaktywowano"
303
+
304
+ #: index.php:1900
305
+ msgid "enabled"
306
+ msgstr "włączono"
307
+
308
+ #: index.php:1903
309
+ msgid "disabled"
310
+ msgstr "wyłączono"
311
+
312
+ #: index.php:1919
313
+ msgid "<span class=\"when\">%1$s ago</span> by %2$s"
314
+ msgstr "<span class=\"when\">%1$s temu</span> przez %2$s"
315
+
316
+ #: index.php:1921
317
+ msgid "%s at %s"
318
+ msgstr "%s o %s"
319
+
320
+ #: index.php:1933 index.php:1981
321
+ msgid "Details"
322
+ msgstr "Szczegóły"
323
+
324
+ #: index.php:1957
325
+ msgid "+ 1 occasion"
326
+ msgstr "+ 1 więcej"
327
+
328
+ #: index.php:1960
329
+ msgid "+ %d occasions"
330
+ msgstr "+ %d więcej"
331
+
332
+ #: index.php:1974
333
+ msgid "%s ago (%s at %s)"
334
+ msgstr "%s temu (%s o %s)"
335
+
336
+ #: index.php:2017
337
+ msgid "Show 5 more"
338
+ msgstr "Pokaż 5 więcej"
339
+
340
+ #: index.php:2018
341
+ msgid "Show 15 more"
342
+ msgstr "Pokaż 15 więcej"
343
+
344
+ #: index.php:2019
345
+ msgid "Show 50 more"
346
+ msgstr "Pokaż 50 więcej"
347
+
348
+ #: index.php:2020
349
+ msgid "Show 100 more"
350
+ msgstr "Pokaż 100 więcej"
351
+
352
+ #: index.php:2023
353
+ msgid "No matching items found."
354
+ msgstr "Brak pasujących wyników"
355
+
356
+ #: index.php:2026
357
+ msgid "Show"
358
+ msgstr "Pokaż"
359
+
360
+ #: index.php:2032
361
+ msgid "Loading..."
362
+ msgstr "Ładowanie..."
363
+
364
+ #: index.php:2051
365
+ msgid "No history items found."
366
+ msgstr "Nie ma elementów w historii."
367
+
368
+ #: index.php:2052
369
+ msgid ""
370
+ "Please note that Simple History only records things that happen after this "
371
+ "plugin have been installed."
372
+ msgstr ""
373
+
374
+ #: index.php:2065
375
+ msgid "General Settings"
376
+ msgstr "Ustawienia ogólne"
377
+
378
+ #: index.php:2066
379
+ msgid "Writing Settings"
380
+ msgstr "Ustawienia pisania"
381
+
382
+ #: index.php:2067
383
+ msgid "Reading Settings"
384
+ msgstr "Ustawienia czytania"
385
+
386
+ #: index.php:2068
387
+ msgid "Discussion Settings"
388
+ msgstr "Ustawienia dyskusji"
389
+
390
+ #: index.php:2069
391
+ msgid "Media Settings"
392
+ msgstr "Ustawienia mediów"
393
+
394
+ #: index.php:2070
395
+ msgid "Privacy Settings"
396
+ msgstr "Ustawienia prywatności"
397
+
398
+ #: index.php:2086
399
+ msgid "Permalink Settings"
400
+ msgstr "Ustawienia odnośników bezpośrednich"
401
+
402
+ #: simple-history-extender/class.simple-history-extend.php:68
403
+ msgid "Log events for the %s plugin."
404
+ msgstr "Loguj zdarzenia dla wtyczki: %s."
405
+
406
+ #: simple-history-extender/class.simple-history-extend.php:69
407
+ msgid "Log events for %s."
408
+ msgstr "Loguj wydarzenia dla: %s."
409
+
410
+ #: simple-history-extender/class.simple-history-extend.php:93
411
+ msgid "unmarked as spam"
412
+ msgstr ""
413
+
414
+ #: simple-history-extender/class.simple-history-extend.php:96
415
+ msgid "submitted"
416
+ msgstr ""
417
+
418
+ #: simple-history-extender/class.simple-history-extend.php:150
419
+ msgid "The %s module logs the following events:"
420
+ msgstr ""
421
+
422
+ #: simple-history-extender/class.simple-history-extend.php:165
423
+ msgid "The %s module does not support the following events:"
424
+ msgstr ""
425
+
426
+ #: simple-history-extender/class.simple-history-extend.php:263
427
+ msgid "User"
428
+ msgstr "Użytkownik"
429
+
430
+ #: simple-history-extender/modules/bbpress.php:28
431
+ msgid "BBPress"
432
+ msgstr ""
433
+
434
+ #: simple-history-extender/modules/bbpress.php:32
435
+ msgid "Creating, editing and deleting a forum, topic, reply."
436
+ msgstr ""
437
+
438
+ #: simple-history-extender/modules/bbpress.php:33
439
+ msgid "Setting the type of a forum to category or forum."
440
+ msgstr ""
441
+
442
+ #: simple-history-extender/modules/bbpress.php:34
443
+ msgid "Setting the status of a forum, topic to open or closed."
444
+ msgstr ""
445
+
446
+ #: simple-history-extender/modules/bbpress.php:35
447
+ msgid "Setting the forum visibility to public, private or hidden."
448
+ msgstr ""
449
+
450
+ #: simple-history-extender/modules/bbpress.php:36
451
+ msgid "Trashing and untrashing a forum, topic, reply."
452
+ msgstr ""
453
+
454
+ #: simple-history-extender/modules/bbpress.php:37
455
+ msgid "Marking and unmarking a topic, reply as spam."
456
+ msgstr ""
457
+
458
+ #: simple-history-extender/modules/bbpress.php:38
459
+ msgid "Marking and unmarking a topic as sticky."
460
+ msgstr ""
461
+
462
+ #: simple-history-extender/modules/bbpress.php:39
463
+ msgid "Merging and splitting a topic."
464
+ msgstr ""
465
+
466
+ #: simple-history-extender/modules/bbpress.php:40
467
+ msgid "Updating, merging and deleting a topic tag."
468
+ msgstr ""
469
+
470
+ #: simple-history-extender/modules/bbpress.php:41
471
+ msgid "A user (un)favoriting and (un)subscribing to a topic."
472
+ msgstr ""
473
+
474
+ #: simple-history-extender/modules/bbpress.php:42
475
+ msgid "A user saving his/her profile."
476
+ msgstr ""
477
+
478
+ #: simple-history-extender/modules/bbpress.php:53
479
+ msgid "closed"
480
+ msgstr ""
481
+
482
+ #: simple-history-extender/modules/bbpress.php:54
483
+ msgid "opened"
484
+ msgstr ""
485
+
486
+ #: simple-history-extender/modules/bbpress.php:55
487
+ msgid "marked as sticky"
488
+ msgstr ""
489
+
490
+ #: simple-history-extender/modules/bbpress.php:56
491
+ msgid "marked as super sticky"
492
+ msgstr ""
493
+
494
+ #: simple-history-extender/modules/bbpress.php:57
495
+ msgid "unmarked as sticky"
496
+ msgstr ""
497
+
498
+ #: simple-history-extender/modules/bbpress.php:58
499
+ msgid "set to category type"
500
+ msgstr ""
501
+
502
+ #: simple-history-extender/modules/bbpress.php:59
503
+ msgid "set to forum type"
504
+ msgstr ""
505
+
506
+ #: simple-history-extender/modules/bbpress.php:60
507
+ msgid "set to public"
508
+ msgstr ""
509
+
510
+ #: simple-history-extender/modules/bbpress.php:61
511
+ msgid "set to private"
512
+ msgstr ""
513
+
514
+ #: simple-history-extender/modules/bbpress.php:62
515
+ msgid "set to hidden"
516
+ msgstr ""
517
+
518
+ #: simple-history-extender/modules/bbpress.php:63
519
+ msgid "in forum %s merged into %s"
520
+ msgstr ""
521
+
522
+ #: simple-history-extender/modules/bbpress.php:64
523
+ msgid "in forum %s split from reply %s by %s into %s in forum %s"
524
+ msgstr ""
525
+
526
+ #: simple-history-extender/modules/bbpress.php:131
527
+ msgid "Forum"
528
+ msgstr ""
529
+
530
+ #: simple-history-extender/modules/bbpress.php:141
531
+ msgid "Topic"
532
+ msgstr ""
533
+
534
+ #: simple-history-extender/modules/bbpress.php:150
535
+ msgid "Topic Tag"
536
+ msgstr ""
537
+
538
+ #: simple-history-extender/modules/bbpress.php:161
539
+ msgid "by %s"
540
+ msgstr ""
541
+
542
+ #: simple-history-extender/modules/bbpress.php:162
543
+ msgid "Reply"
544
+ msgstr ""
545
+
546
+ #: simple-history-extender/modules/bbpress.php:174
547
+ msgid "as child of %s"
548
+ msgstr ""
549
+
550
+ #: simple-history-extender/modules/bbpress.php:235
551
+ #: simple-history-extender/modules/bbpress.php:245
552
+ msgid "in forum %s"
553
+ msgstr ""
554
+
555
+ #: simple-history-extender/modules/bbpress.php:358
556
+ msgid "favorited"
557
+ msgstr ""
558
+
559
+ #: simple-history-extender/modules/bbpress.php:362
560
+ msgid "unfavorited"
561
+ msgstr ""
562
+
563
+ #: simple-history-extender/modules/bbpress.php:366
564
+ msgid "subscribed"
565
+ msgstr ""
566
+
567
+ #: simple-history-extender/modules/bbpress.php:370
568
+ msgid "unsubscribed"
569
+ msgstr ""
570
+
571
+ #: simple-history-extender/modules/bbpress.php:374
572
+ msgid "profile updated"
573
+ msgstr ""
574
+
575
+ #: simple-history-extender/modules/bbpress.php:378
576
+ msgid "registered"
577
+ msgstr ""
578
+
579
+ #: simple-history-extender/modules/bbpress.php:390
580
+ msgid "changed forum role to %s"
581
+ msgstr ""
582
+
583
+ #: simple-history-extender/modules/bbpress.php:390
584
+ msgid "none"
585
+ msgstr ""
586
+
587
+ #: simple-history-extender/modules/gravityforms.php:28
588
+ msgid "Gravity Forms"
589
+ msgstr ""
590
+
591
+ #: simple-history-extender/modules/gravityforms.php:32
592
+ msgid "Creating, editing and deleting a form."
593
+ msgstr ""
594
+
595
+ #: simple-history-extender/modules/gravityforms.php:33
596
+ msgid "Deleting a field from an existing form."
597
+ msgstr ""
598
+
599
+ #: simple-history-extender/modules/gravityforms.php:34
600
+ msgid "Submitting, editing and deleting an entry."
601
+ msgstr ""
602
+
603
+ #: simple-history-extender/modules/gravityforms.php:35
604
+ msgid "Changing the status of an entry, including read/unread and star/unstar."
605
+ msgstr ""
606
+
607
+ #: simple-history-extender/modules/gravityforms.php:38
608
+ msgid "Duplicating a form."
609
+ msgstr ""
610
+
611
+ #: simple-history-extender/modules/gravityforms.php:39
612
+ msgid "Setting a form to active/inactive."
613
+ msgstr ""
614
+
615
+ #: simple-history-extender/modules/gravityforms.php:48
616
+ msgid "starred"
617
+ msgstr ""
618
+
619
+ #: simple-history-extender/modules/gravityforms.php:49
620
+ msgid "unstarred"
621
+ msgstr ""
622
+
623
+ #: simple-history-extender/modules/gravityforms.php:50
624
+ msgid "marked as read"
625
+ msgstr ""
626
+
627
+ #: simple-history-extender/modules/gravityforms.php:51
628
+ msgid "marked as unread"
629
+ msgstr ""
630
+
631
+ #: simple-history-extender/modules/gravityforms.php:110
632
+ msgid "from %s"
633
+ msgstr ""
634
+
635
+ #: simple-history-extender/modules/gravityforms.php:112
636
+ msgid "from unknown"
637
+ msgstr ""
638
+
639
+ #: simple-history-extender/modules/gravityforms.php:120
640
+ msgid "Form"
641
+ msgstr ""
642
+
643
+ #: simple-history-extender/modules/gravityforms.php:129
644
+ msgid "Form entry"
645
+ msgstr ""
646
+
647
+ #: simple-history-extender/modules/gravityforms.php:150
648
+ msgid "without entries deleted"
649
+ msgstr ""
650
+
651
+ #: simple-history-extender/modules/gravityforms.php:151
652
+ msgid "with %d entries deleted"
653
+ msgstr ""
654
+
655
+ #: simple-history-extender/modules/gravityforms.php:160
656
+ msgid "field %s deleted"
657
+ msgstr ""
658
+
659
+ #: simple-history-extender/modules/gravityforms.php:201
660
+ msgid "restored"
661
+ msgstr ""
662
+
663
+ #: simple-history-extender/modules/gravityforms.php:206
664
+ msgid "changed status"
665
+ msgstr ""
666
+
667
+ #: simple-history-extender/modules/widgets.php:25
668
+ msgid "Widgets"
669
+ msgstr ""
670
+
671
+ #: simple-history-extender/modules/widgets.php:27
672
+ msgid "Log events for the Widgets section of your WP install."
673
+ msgstr ""
674
+
675
+ #: simple-history-extender/modules/widgets.php:30
676
+ msgid "Adding, updating and deleting widgets in/from a sidebar."
677
+ msgstr ""
678
+
679
+ #: simple-history-extender/modules/widgets.php:33
680
+ msgid "Moving widgets between sidebars."
681
+ msgstr ""
682
+
683
+ #: simple-history-extender/modules/widgets.php:34
684
+ msgid "Setting a widget to active/inactive."
685
+ msgstr ""
686
+
687
+ #: simple-history-extender/modules/widgets.php:86
688
+ msgid "removed from sidebar %s"
689
+ msgstr ""
690
+
691
+ #: simple-history-extender/modules/widgets.php:88
692
+ msgid "updated in sidebar %s"
693
+ msgstr ""
694
+
695
+ #: simple-history-extender/modules/widgets.php:90
696
+ msgid "added to sidebar %s"
697
+ msgstr ""
698
+
699
+ #: simple-history-extender/modules/widgets.php:95
700
+ msgid "Widget"
701
+ msgstr ""
702
+
703
+ #: simple-history-extender/simple-history-extender.php:139
704
+ msgid "Settings"
705
+ msgstr "Ustawienia"
706
+
707
+ #: simple-history-extender/simple-history-extender.php:162
708
+ msgid ""
709
+ "The Simple History Extender plugin was deactivated because the Simple "
710
+ "History plugin was not found installed or active."
711
+ msgstr ""
712
+
713
+ #: simple-history-extender/simple-history-extender.php:163
714
+ msgid "The Simple History Extender plugin was deactivated."
715
+ msgstr ""
716
+
717
+ #: simple-history-extender/simple-history-extender.php:167
718
+ msgid "Return"
719
+ msgstr ""
720
+
721
+ #: simple-history-extender/simple-history-extender.php:226
722
+ msgid "Simple History Extender Modules"
723
+ msgstr "Historia zdarzeń - moduły rozszerzeń"
724
+
725
+ #: simple-history-extender/simple-history-extender.php:236
726
+ msgid ""
727
+ "Activate or deactivate the events you want to log. Read the Help tab if you "
728
+ "want to know which actions are supported and which aren't."
729
+ msgstr ""
730
+ "Zaznacz te zdarzenia, które mają być zapisywane w historii. Otwórz zakładnkę "
731
+ "Pomoc u góry ekranu, aby dowiedzieć się jakie akcje są wspierane w ramach "
732
+ "danego rozszerzenia."
733
+
734
+ #: simple-history-extender/simple-history-extender.php:275
735
+ msgid "Simple History Extender Module"
736
+ msgstr "Historia zdarzeń - moduł rozszerzeń"
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
5
  Requires at least: 3.8.0
6
  Tested up to: 3.8.1
7
- Stable tag: 1.3.5
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
@@ -175,6 +175,11 @@ to only use the secret RSS feed to keep track of the changes on you web site/Wor
175
 
176
  == Changelog ==
177
 
 
 
 
 
 
178
  = 1.3.5 =
179
  - Added a reload-button at top. Click it to reload the history. No need to refresh page no more!
180
  - Fixed items being reloaded when just clicking the dropdown (not having selected anything yet)
4
  Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog
5
  Requires at least: 3.8.0
6
  Tested up to: 3.8.1
7
+ Stable tag: 1.3.6
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
175
 
176
  == Changelog ==
177
 
178
+ = 1.3.6 =
179
+ - Added Polish translation
180
+ - Added correct XML encoding and header
181
+ - Fixed notice warnings when media did not exist on file system
182
+
183
  = 1.3.5 =
184
  - Added a reload-button at top. Click it to reload the history. No need to refresh page no more!
185
  - Fixed items being reloaded when just clicking the dropdown (not having selected anything yet)