Search & Replace - Version 2.4.1

Version Description

Download this release

Release Info

Developer Bueltge
Plugin Icon 128x128 Search & Replace
Version 2.4.1
Comparing to
See all releases

Code changes from version 1.8.1 to 2.4.1

screenshot-1.png ADDED
Binary file
search-and-replace.php ADDED
@@ -0,0 +1,561 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Search &amp; Replace
4
+ Plugin URI: http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114
5
+ Description: A simple search for find strings in your database and replace the string. Use in <a href="admin.php?page=search-and-replace/search-and-replace.php">Manage -> Search/Replace</a>.
6
+ Author: <a href='http://thedeadone.net/'>Mark Cunningham</a> and <a href="http://bueltge.de" >Frank Bueltge</a>
7
+ Version: 2.4.1
8
+ */
9
+
10
+ /**
11
+ Um dieses Plugin zu nutzen, musst du das File in den
12
+ Plugin-Ordner deines WP kopieren und aktivieren.
13
+ Es fuegt einen neuen Tab im Bereich "Verwalten" hinzu.
14
+ Dort koennen Strings dann gesucht und ersetzt werden.
15
+ */
16
+
17
+ if(function_exists('load_plugin_textdomain'))
18
+ load_plugin_textdomain('searchandreplace', str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
19
+
20
+ if ( !is_plugin_page() ) {
21
+
22
+ function tdo_searchandreplace_hook() {
23
+ if (function_exists('add_management_page')) {
24
+ add_management_page(__('Suchen &amp; Ersetzen', 'searchandreplace'),
25
+ __('Suchen &amp; Ersetzen', 'searchandreplace'),
26
+ 10, /* only admins */
27
+ __FILE__,
28
+ 'tdo_searchandreplace_hook');
29
+ }
30
+ }
31
+
32
+ add_action('admin_head', 'tdo_searchandreplace_hook');
33
+
34
+ } else {
35
+
36
+ // some basic security with nonce
37
+ if ( !function_exists('wp_nonce_field') ) {
38
+ function searchandreplace_nonce_field($action = -1) { return; }
39
+ $searchandreplace_nonce = -1;
40
+ } else {
41
+ function searchandreplace_nonce_field($action = -1) { return wp_nonce_field($action); }
42
+ $searchandreplace_nonce = 'searchandreplace-update-key';
43
+ }
44
+
45
+ /* this does the important stuff! */
46
+ function tdo_do_searchandreplace($search_text,
47
+ $replace_text,
48
+ $content = TRUE,
49
+ $guid = TRUE,
50
+ $id = TRUE,
51
+ $title = TRUE,
52
+ $excerpt = TRUE,
53
+ $meta_value = TRUE,
54
+ $comment_content = TRUE,
55
+ $comment_author = TRUE,
56
+ $comment_author_email = TRUE,
57
+ $comment_author_url = TRUE,
58
+ $comment_count = TRUE,
59
+ $cat_description = TRUE,
60
+ $tag = TRUE,
61
+ $user_id = TRUE,
62
+ $user_login = TRUE
63
+ ) {
64
+ global $wpdb;
65
+
66
+ // slug string
67
+ $search_slug = strtolower($search_text);
68
+ $replace_slug = strtolower($replace_text);
69
+
70
+ if (!$content && !$id && !$guid && !$title && !$excerpt && !$meta_value && !$comment_content && !$comment_author && !$comment_author_email && !$comment_author_url && !$comment_count && !$cat_description && !$tag && !$user_id && !$user_login) {
71
+ return __('<p><strong>Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!</strong></p>', 'searchandreplace');
72
+ }
73
+
74
+ echo '<br /><div class="updated">' . "\n" . '<ul>';
75
+
76
+ // post content
77
+ if ($content) {
78
+ echo "\n" . '<li>' . __('Suche nach Beitr&auml;gen', 'searchandreplace') . ' ...';
79
+
80
+ echo "\n" . '<ul>' . "\n";
81
+ fb_sql_results('post_content', 'posts');
82
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
83
+
84
+ $query = "UPDATE $wpdb->posts ";
85
+ $query .= "SET post_content = ";
86
+ $query .= "REPLACE(post_content, \"$search_text\", \"$replace_text\") ";
87
+ $wpdb->get_results($query);
88
+ }
89
+
90
+ // post id
91
+ if ($id) {
92
+ echo "\n" . '<li>' . __('Suche nach ID', 'searchandreplace') . ' ...';
93
+
94
+ echo "\n" . '<ul>' . "\n";
95
+ fb_sql_results('ID', 'posts');
96
+ fb_sql_results('post_parent', 'posts');
97
+ fb_sql_results('post_id', 'postmeta');
98
+ fb_sql_results('object_id', 'term_relationships');
99
+ fb_sql_results('comment_post_ID', 'comments');
100
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
101
+
102
+ $query = "UPDATE $wpdb->posts ";
103
+ $query .= "SET ID = ";
104
+ $query .= "REPLACE(ID, \"$search_text\", \"$replace_text\") ";
105
+ $wpdb->get_results($query);
106
+
107
+
108
+ $query = "UPDATE $wpdb->posts ";
109
+ $query .= "SET post_parent = ";
110
+ $query .= "REPLACE(post_parent, \"$search_text\", \"$replace_text\") ";
111
+ $wpdb->get_results($query);
112
+
113
+ $query = "UPDATE $wpdb->postmeta ";
114
+ $query .= "SET post_id = ";
115
+ $query .= "REPLACE(post_id, \"$search_text\", \"$replace_text\") ";
116
+ $wpdb->get_results($query);
117
+
118
+ $query = "UPDATE $wpdb->term_relationships ";
119
+ $query .= "SET object_id = ";
120
+ $query .= "REPLACE(object_id, \"$search_text\", \"$replace_text\") ";
121
+ $wpdb->get_results($query);
122
+
123
+ $query = "UPDATE $wpdb->comments ";
124
+ $query .= "SET comment_post_ID = ";
125
+ $query .= "REPLACE(comment_post_ID, \"$search_text\", \"$replace_text\") ";
126
+ $wpdb->get_results($query);
127
+ }
128
+
129
+ // post guid
130
+ if ($guid) {
131
+ echo "\n" . '<li>' . __('Suche nach GUID', 'searchandreplace') . ' ...';
132
+
133
+ echo "\n" . '<ul>' . "\n";
134
+ fb_sql_results('guid', 'posts');
135
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
136
+
137
+ $query = "UPDATE $wpdb->posts ";
138
+ $query .= "SET guid = ";
139
+ $query .= "REPLACE(guid, \"$search_text\", \"$replace_text\") ";
140
+ $wpdb->get_results($query);
141
+ }
142
+
143
+ // post title
144
+ if ($title) {
145
+ echo "\n" . '<li>' . __('Suche nach Titeln', 'searchandreplace') . ' ...';
146
+
147
+ echo "\n" . '<ul>' . "\n";
148
+ fb_sql_results('post_title', 'posts');
149
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
150
+
151
+ $query = "UPDATE $wpdb->posts ";
152
+ $query .= "SET post_title = ";
153
+ $query .= "REPLACE(post_title, \"$search_text\", \"$replace_text\") ";
154
+ $wpdb->get_results($query);
155
+ }
156
+
157
+ // post excerpt
158
+ if ($excerpt) {
159
+ echo "\n" . '<li>' . __('Suche nach Ausz&uuml;gen', 'searchandreplace') . ' ...';
160
+
161
+ echo "\n" . '<ul>' . "\n";
162
+ fb_sql_results('post_excerpt', 'posts');
163
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
164
+
165
+ $query = "UPDATE $wpdb->posts ";
166
+ $query .= "SET post_excerpt = ";
167
+ $query .= "REPLACE(post_excerpt, \"$search_text\", \"$replace_text\") ";
168
+ $wpdb->get_results($query);
169
+ }
170
+
171
+ // meta_value
172
+ if ($meta_value) {
173
+ echo "\n" . '<li>' . __('Suche nach Meta Daten', 'searchandreplace') . ' ...';
174
+
175
+ echo "\n" . '<ul>' . "\n";
176
+ fb_sql_results('meta_value', 'postmeta');
177
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
178
+
179
+ $query = "UPDATE $wpdb->postmeta ";
180
+ $query .= "SET meta_value = ";
181
+ $query .= "REPLACE(meta_value, \"$search_text\", \"$replace_text\") ";
182
+ $wpdb->get_results($query);
183
+ }
184
+
185
+ // comment content
186
+ if ($comment_content) {
187
+ echo "\n" . '<li>' . __('Suche nach Kommentarbetr&auml;gen', 'searchandreplace') . ' ...';
188
+
189
+ echo "\n" . '<ul>' . "\n";
190
+ fb_sql_results('comment_content', 'comments');
191
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
192
+
193
+ $query = "UPDATE $wpdb->comments ";
194
+ $query .= "SET comment_content = ";
195
+ $query .= "REPLACE(comment_content, \"$search_text\", \"$replace_text\") ";
196
+ $wpdb->get_results($query);
197
+ }
198
+
199
+ // comment_author
200
+ if ($comment_author) {
201
+ echo "\n" . '<li>' . __('Suche nach Kommentarautor', 'searchandreplace') . ' ...';
202
+
203
+ echo "\n" . '<ul>' . "\n";
204
+ fb_sql_results('comment_author', 'comments');
205
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
206
+
207
+ $query = "UPDATE $wpdb->comments ";
208
+ $query .= "SET comment_author = ";
209
+ $query .= "REPLACE(comment_author, \"$search_text\", \"$replace_text\") ";
210
+ $wpdb->get_results($query);
211
+ }
212
+
213
+ // comment_author_email
214
+ if ($comment_author_email) {
215
+ echo "\n" . '<li>' . __('Suche nach Kommentarautoren-E-Mails', 'searchandreplace') . ' ...';
216
+
217
+ echo "\n" . '<ul>' . "\n";
218
+ fb_sql_results('comment_author_email', 'comments');
219
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
220
+
221
+ $query = "UPDATE $wpdb->comments ";
222
+ $query .= "SET comment_author_email = ";
223
+ $query .= "REPLACE(comment_author_email, \"$search_text\", \"$replace_text\") ";
224
+ $wpdb->get_results($query);
225
+ }
226
+
227
+ // comment_author_url
228
+ if ($comment_author_url) {
229
+ echo "\n" . '<li>' . __('Suche nach Kommentarautor-URLs', 'searchandreplace') . ' ...';
230
+
231
+ echo "\n" . '<ul>' . "\n";
232
+ fb_sql_results('comment_author_url', 'comments');
233
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
234
+
235
+ $query = "UPDATE $wpdb->comments ";
236
+ $query .= "SET comment_author_url = ";
237
+ $query .= "REPLACE(comment_author_url, \"$search_text\", \"$replace_text\") ";
238
+ $wpdb->get_results($query);
239
+ }
240
+
241
+ // comment_count
242
+ if ($comment_count) {
243
+ echo "\n" . '<li>' . __('Suche nach Kommentar-Counter', 'searchandreplace') . ' ...';
244
+
245
+ echo "\n" . '<ul>' . "\n";
246
+ fb_sql_results('comment_count', 'posts');
247
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
248
+
249
+ $query = "UPDATE $wpdb->posts ";
250
+ $query .= "SET comment_count = ";
251
+ $query .= "REPLACE(comment_count, \"$search_text\", \"$replace_text\") ";
252
+ $wpdb->get_results($query);
253
+ }
254
+
255
+ // category description
256
+ if ($cat_description) {
257
+ echo "\n" . '<li>' . __('Suche nach Kategorie-Beschreibungen', 'searchandreplace') . ' ...';
258
+
259
+ echo "\n" . '<ul>' . "\n";
260
+ fb_sql_results('description', 'term_taxonomy');
261
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
262
+
263
+ $query = "UPDATE $wpdb->term_taxonomy ";
264
+ $query .= "SET description = ";
265
+ $query .= "REPLACE(description, \"$search_text\", \"$replace_text\") ";
266
+ $wpdb->get_results($query);
267
+ }
268
+
269
+ // tags and category
270
+ if ($tag) {
271
+ echo "\n" . '<li>' . __('Suche nach Tags', 'searchandreplace') . ' ...';
272
+
273
+ echo "\n" . '<ul>' . "\n";
274
+ fb_sql_results('name', 'terms');
275
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
276
+
277
+ $query = "UPDATE $wpdb->terms ";
278
+ $query .= "SET name = ";
279
+ $query .= "REPLACE(name, \"$search_text\", \"$replace_text\") ";
280
+ $wpdb->get_results($query);
281
+
282
+ $query = "UPDATE $wpdb->terms ";
283
+ $query .= "SET slug = ";
284
+ $query .= "REPLACE(slug, \"$search_slug\", \"$replace_slug\") ";
285
+ $wpdb->get_results($query);
286
+ }
287
+
288
+ // user_id
289
+ if ($user_id) {
290
+ echo "\n" . '<li>' . __('Suche nach User-ID', 'searchandreplace') . ' ...';
291
+
292
+ echo "\n" . '<ul>' . "\n";
293
+ fb_sql_results('ID', 'users');
294
+ fb_sql_results('user_id', 'usermeta');
295
+ fb_sql_results('post_author', 'posts');
296
+ fb_sql_results('link_owner', 'links');
297
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
298
+
299
+ $query = "UPDATE $wpdb->users ";
300
+ $query .= "SET ID = ";
301
+ $query .= "REPLACE(ID, \"$search_text\", \"$replace_text\") ";
302
+ $wpdb->get_results($query);
303
+
304
+ $query = "UPDATE $wpdb->usermeta ";
305
+ $query .= "SET user_id = ";
306
+ $query .= "REPLACE(user_id, \"$search_slug\", \"$replace_slug\") ";
307
+ $wpdb->get_results($query);
308
+
309
+ $query = "UPDATE $wpdb->posts ";
310
+ $query .= "SET post_author = ";
311
+ $query .= "REPLACE(post_author, \"$search_slug\", \"$replace_slug\") ";
312
+ $wpdb->get_results($query);
313
+
314
+ $query = "UPDATE $wpdb->links ";
315
+ $query .= "SET link_owner = ";
316
+ $query .= "REPLACE(link_owner, \"$search_slug\", \"$replace_slug\") ";
317
+ $wpdb->get_results($query);
318
+ }
319
+
320
+ // user_login
321
+ if ($user_login) {
322
+ echo "\n" . '<li>' . __('Suche nach User Login', 'searchandreplace') . ' ...';
323
+
324
+ echo "\n" . '<ul>' . "\n";
325
+ fb_sql_results('user_login', 'users');
326
+ echo "\n" . '</ul>' . "\n" . '</li>' . "\n";
327
+
328
+ $query = "UPDATE $wpdb->users ";
329
+ $query .= "SET user_login = ";
330
+ $query .= "REPLACE(user_login, \"$search_text\", \"$replace_text\") ";
331
+ $wpdb->get_results($query);
332
+ }
333
+
334
+ echo "\n" . '</ul>' . "\n";
335
+ return '';
336
+ }
337
+
338
+ /**
339
+ * View results
340
+ * @var: $field, $tabel
341
+ */
342
+ function fb_sql_results($field, $table) {
343
+ global $wpdb;
344
+
345
+ $results == '';
346
+ $search_text = $_POST['search_text'];
347
+
348
+ echo "\n" . '<li>';
349
+ $results = "SELECT $field FROM " . $wpdb->$table . " WHERE $field = \"$search_text\"";
350
+ //echo $results . '<br />';
351
+ _e('... in Tabelle ', 'searchandreplace');
352
+ echo '<code>' . $table . '</code>: ';
353
+ $results = mysql_query($results);
354
+
355
+ if (!$results) {
356
+ _e('Die Anfrage konnte nicht ausgef&uuml;hrt werden : ', 'searchandreplace') . mysql_error();
357
+ } else {
358
+
359
+ if (mysql_num_rows($results) == 0) {
360
+ _e('Keine Eintr&auml;ge gefunden.', 'searchandreplace');
361
+ } else {
362
+
363
+ while ( $row = mysql_fetch_assoc($results) ) {
364
+ //echo $row[$field] . "\n";
365
+ echo '|';
366
+ }
367
+ $result = mysql_num_rows($results);
368
+ echo ' - <strong>' . $result . '</strong>';
369
+ echo '</li>' . "\n";
370
+
371
+ }
372
+
373
+ }
374
+ }
375
+ ?>
376
+
377
+ <div class="wrap" id="top">
378
+ <h2><?php _e('Search &amp; Replace', 'searchandreplace') ?></h2>
379
+ <script type="text/javascript" language="JavaScript">
380
+ //<![CDATA[
381
+ function selectcb(thisobj,var1){
382
+ var o = document.forms[thisobj].elements;
383
+ if(o){
384
+ for (i=0; i<o.length; i++){
385
+ if (o[i].type == 'checkbox'){
386
+ o[i].checked = var1;
387
+ }
388
+ }
389
+ }
390
+ }
391
+ //]]>
392
+ </script>
393
+
394
+ <?php if ( isset($_POST['submitted']) ) {
395
+ if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
396
+ check_admin_referer($searchandreplace_nonce);
397
+
398
+ if (empty($_POST['search_text'])) { ?>
399
+ <div class="error"><p><strong><?php _e('&raquo; Du musst Text spezifizieren, um Text zu ersetzen!', 'searchandreplace'); ?></strong></p></div>
400
+ <?php } else { ?>
401
+ <div class="updated">
402
+ <p><strong><?php _e('&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ...', 'searchandreplace'); ?></strong></p>
403
+ <p>&raquo; <?php _e('Suche nach', 'searchandreplace'); ?> <code><?php echo $_POST['search_text']; ?></code> ... <?php _e('und ersetze mit', 'searchandreplace'); ?> <code><?php echo $_POST['replace_text']; ?></code></p>
404
+ </div>
405
+
406
+ <?php $error = tdo_do_searchandreplace(
407
+ $_POST['search_text'],
408
+ $_POST['replace_text'],
409
+ isset($_POST['content']),
410
+ isset($_POST['guid']),
411
+ isset($_POST['id']),
412
+ isset($_POST['title']),
413
+ isset($_POST['excerpt']),
414
+ isset($_POST['meta_value']),
415
+ isset($_POST['comment_content']),
416
+ isset($_POST['comment_author']),
417
+ isset($_POST['comment_author_email']),
418
+ isset($_POST['comment_author_url']),
419
+ isset($_POST['comment_count']),
420
+ isset($_POST['cat_description']),
421
+ isset($_POST['tag']),
422
+ isset($_POST['user_id']),
423
+ isset($_POST['user_login'])
424
+ );
425
+
426
+ if ($error != '') { ?>
427
+ <div class="error"><p><?php _e('Es gab eine St&ouml;rung!', 'searchandreplace'); ?></p>
428
+ <p><code><?php echo $error; ?></code></p></div>
429
+ <?php } else { ?>
430
+ <p><?php _e('Erfolgreich durchgef&uuml;hrt!', 'searchandreplace'); ?></p></div>
431
+ <?php }
432
+ }
433
+ } else {
434
+ wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.').'</p>');
435
+ }
436
+ } ?>
437
+
438
+ <h3><?php _e('Hinweise Suchen &amp; Ersetzen', 'searchandreplace') ?></h3>
439
+ <p><?php _e('Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br /><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. <strong>Fertige eine <a href="http://bueltge.de/wp-datenbank-backup-mit-phpmyadmin/97/" title="Klick zum Tutorial">Sicherung deiner Datenbank</a> im Vorfeld an.</strong> Keine Rechtsanspr&uuml;che an den Autor des Plugins! <strong>Aktiviere</strong> das Plugin <strong>nur</strong>, wenn es ben&ouml;tigt wird!', 'searchandreplace'); ?></p>
440
+ <p><?php _e('Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung. Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen.', 'searchandreplace'); ?></p>
441
+
442
+ <div class="tablenav">
443
+ <br style="clear: both;" />
444
+ </div>
445
+
446
+ <h3><?php _e('Suche in', 'searchandreplace') ?></h3>
447
+ <form name="replace" action="" method="post">
448
+ <?php searchandreplace_nonce_field($searchandreplace_nonce) ?>
449
+ <table summary="config" class="widefat">
450
+ <tr>
451
+ <th><label for="content_label"><?php _e('Beitr&auml;gen', 'searchandreplace'); ?></label></th>
452
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='content' id='content_label' /></td>
453
+ <td><label for="content_label"><?php _e('Feld: <code>post_content</code> Tabelle: <code>_posts</code>', 'searchandreplace'); ?></label></td>
454
+ </tr>
455
+ <?php if(mysql_num_rows(mysql_query("SHOW TABLES LIKE '".$wpdb->prefix . 'terms'."'") ) == 1) { ?>
456
+ <tr class="form-invalid">
457
+ <th><label for="id_label"><?php _e('ID', 'searchandreplace'); ?></label></th>
458
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='id' id='id_label' /></td>
459
+ <td><label for="id_label"><?php _e('Feld: <code>ID</code>, <code>post_parent</code>, <code>post_id</code>, <code>object_id</code> und <code>comments</code><br />Tabelle: <code>_posts</code>, <code>_postmeta</code>, <code>_term_relationships</code> und <code>_comment_post_ID</code>', 'searchandreplace'); ?></label></td>
460
+ </tr>
461
+ <?php } ?>
462
+ <tr>
463
+ <th><label for="guid_label"><?php _e('GUID', 'searchandreplace'); ?></label></th>
464
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='guid' id='guid_label' /></td>
465
+ <td><label for="guid_label"><?php _e('Feld: <code>guid</code> Tabelle: <code>_posts</code>', 'searchandreplace'); ?></label></td>
466
+ </tr>
467
+ <tr class="form-invalid">
468
+ <th><label for="title_label"><?php _e('Titeln', 'searchandreplace'); ?></label></th>
469
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='title' id='title_label' /></td>
470
+ <td><label for="title_label"><?php _e('Feld: <code>post_tilte</code> Tabelle: <code>_posts</code>', 'searchandreplace'); ?></label></td>
471
+ </tr>
472
+ <tr>
473
+ <th><label for="excerpt_label"><?php _e('Ausz&uuml;gen', 'searchandreplace'); ?></label></th>
474
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='excerpt' id='excerpt_label' /></td>
475
+ <td><label for="excerpt_label"><?php _e('Feld: <code>post_excerpt</code> Tabelle: <code>_posts</code>', 'searchandreplace'); ?></label></td>
476
+ </tr>
477
+ <tr class="form-invalid">
478
+ <th><label for="meta_value_label"><?php _e('Meta Daten', 'searchandreplace'); ?></label></th>
479
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='meta_value' id='meta_value_label' /></td>
480
+ <td><label for="meta_value_label"><?php _e('Feld: <code>meta_value</code> Tabelle: <code>_postmeta</code>', 'searchandreplace'); ?></label></td>
481
+ </tr>
482
+ <tr>
483
+ <th><label for="comment_content_label"><?php _e('Kommentarbeitr&auml;gen', 'searchandreplace'); ?></label></th>
484
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_content' id='comment_content_label' /></td>
485
+ <td><label for="comment_content_label"><?php _e('Feld: <code>comment_content</code> Tabelle: <code>_comments</code>', 'searchandreplace'); ?></label></td>
486
+ </tr>
487
+ <tr class="form-invalid">
488
+ <th><label for="comment_author_label"><?php _e('Kommentarautoren', 'searchandreplace'); ?></label></th>
489
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_author' id='comment_author_label' /></td>
490
+ <td><label for="comment_author_label"><?php _e('Feld: <code>comment_author</code> Tabelle: <code>_comments</code>', 'searchandreplace'); ?></label></td>
491
+ </tr>
492
+ <tr>
493
+ <th><label for="comment_author_email_label"><?php _e('Kommentarautoren-E-Mail', 'searchandreplace'); ?></label></th>
494
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_author_email' id='comment_author_email_label' /></td>
495
+ <td><label for="comment_author_email_label"><?php _e('Feld: <code>comment_author_email</code> Tabelle: <code>_comments</code>', 'searchandreplace'); ?></label></td>
496
+ </tr>
497
+ <tr class="form-invalid">
498
+ <th><label for="comment_author_url_label"><?php _e('Kommentarautoren-URLs', 'searchandreplace'); ?></label></th>
499
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_author_url' id='comment_author_url_label' /></td>
500
+ <td><label for="comment_author_url_label"><?php _e('Feld: <code>comment_author_url</code> Tabelle: <code>_comments</code>', 'searchandreplace'); ?></label></td>
501
+ </tr>
502
+ <tr>
503
+ <th><label for="comment_count_label"><?php _e('Kommentar-Counter', 'searchandreplace'); ?></label></th>
504
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_count' id='comment_count_label' /></td>
505
+ <td><label for="comment_count_label"><?php _e('Feld: <code>comment_count</code> Tabelle: <code>_posts</code>', 'searchandreplace'); ?></label></td>
506
+ </tr>
507
+ <?php if(mysql_num_rows(mysql_query("SHOW TABLES LIKE '".$wpdb->prefix . 'terms'."'") ) == 1) { ?>
508
+ <tr class="form-invalid">
509
+ <th><label for="cat_description_label"><?php _e('Kategorie-Beschreibung', 'searchandreplace'); ?></label></th>
510
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='cat_description' id='cat_description_label' /></td>
511
+ <td><label for="cat_description_label"><?php _e('Feld: <code>description</code> Tabelle: <code>_term_taxonomy</code>', 'searchandreplace'); ?></label></td>
512
+ </tr>
513
+ <tr>
514
+ <th><label for="tag_label"><?php _e('Tags &amp; Kategorien', 'searchandreplace'); ?></label></th>
515
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='tag' id='tag_label' /></td>
516
+ <td><label for="tag_label"><?php _e('Feld: <code>name</code> und <code>slug</code> Tabelle: <code>_terms</code>', 'searchandreplace'); ?></label></td>
517
+ </tr>
518
+ <?php } ?>
519
+ <tr class="form-invalid">
520
+ <th><label for="user_id_label"><?php _e('User-ID', 'searchandreplace'); ?></label></th>
521
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='user_id' id='user_id_label' /></td>
522
+ <td><label for="user_id_label"><?php _e('Feld: <code>ID</code>, <code>user_id</code>, <code>post_author</code> und <code>link_owner</code><br />Tabelle: <code>_users</code>, <code>_usermeta</code>, <code>_posts</code> und <code>_links</code>', 'searchandreplace'); ?></label></td>
523
+ </tr>
524
+ <tr>
525
+ <th><label for="user_login_label"><?php _e('User-Login', 'searchandreplace'); ?></label></th>
526
+ <td colspan="2" style="text-align: center;"><input type='checkbox' name='user_login' id='user_login_label' /></td>
527
+ <td><label for="user_login_label"><?php _e('Feld: <code>user_login</code> Tabelle: <code>_users</code>', 'searchandreplace'); ?></label></td>
528
+ </tr>
529
+ <tr class="form-invalid">
530
+ <th>&nbsp;</th>
531
+ <td colspan="2" style="text-align: center;">&nbsp;&nbsp; <a href="javascript:selectcb('replace', true);" title="<?php _e('Checkboxen markieren', 'searchandreplace'); ?>"><?php _e('alle', 'searchandreplace'); ?></a> | <a href="javascript:selectcb('replace', false);" title="<?php _e('Checkboxen demarkieren', 'searchandreplace'); ?>"><?php _e('keine', 'searchandreplace'); ?></a></td>
532
+ <td>&nbsp;</td>
533
+ </tr>
534
+ </table>
535
+
536
+ <table summary="submit" class="form-table">
537
+ <tr>
538
+ <th><?php _e('Ersetze', 'searchandreplace'); ?></th>
539
+ <td><input class="code" type="text" name="search_text" value="" size="80" /></td>
540
+ </tr>
541
+ <tr>
542
+ <th><?php _e('mit', 'searchandreplace'); ?></th>
543
+ <td><input class="code" type="text" name="replace_text" value="" size="80" /></td>
544
+ </tr>
545
+ </table>
546
+ <p class="submit">
547
+ <input class="button" type="submit" value="<?php _e('Ausf&uuml;hren', 'searchandreplace'); ?> &raquo;" />
548
+ <input type="hidden" name="submitted" />
549
+ </p>
550
+ </form>
551
+
552
+ <div class="tablenav">
553
+ <br style="clear: both;" />
554
+ </div>
555
+
556
+ <h3><?php _e('Hinweise zum Plugin', 'searchandreplace') ?></h3>
557
+ <p><small><?php _e('&quot;Search and Replace&quot; Originalplugin (en) ist von <a href=\'http://thedeadone.net/\'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href=\'http://www.gonahkar.com\'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href=\'http://bueltge.de\'>Frank Bueltge</a>.', 'searchandreplace'); ?></small></p>
558
+ <p><small><?php _e('Weitere Informationen: Besuche die <a href=\'http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114\'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins.', 'searchandreplace'); ?><br />&copy; Copyright 2006 - <?php echo date("Y"); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php _e('Du willst Danke sagen? Besuche meine <a href=\'http://bueltge.de/wunschliste\'>Wunschliste</a>.', 'searchandreplace'); ?></small></p>
559
+ </div>
560
+
561
+ <?php } ?>
searchandreplace/fr_FR.mo DELETED
Binary file
searchandreplace/fr_FR.po DELETED
@@ -1,136 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Search and Replace\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2007-11-04 10:27+0100\n"
6
- "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
7
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-KeywordsList: __;_e\n"
12
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\searchandreplace\\\n"
13
- "X-Poedit-SearchPath-0: .\n"
14
-
15
- #: searchandreplace.php:23
16
- #: searchandreplace.php:24
17
- #: searchandreplace.php:113
18
- msgid "Suchen &amp; Ersetzen"
19
- msgstr "Chercher et Remplacer"
20
-
21
- #: searchandreplace.php:48
22
- msgid "Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!"
23
- msgstr "Aucune s&eacute;lection (case &agrave; cocher) &agrave; modifier"
24
-
25
- #: searchandreplace.php:52
26
- msgid "Suche nach Beitr&auml;gen"
27
- msgstr "Chercher &agrave; modifier le contenu d'un billet"
28
-
29
- #: searchandreplace.php:60
30
- msgid "Suche nach Titeln"
31
- msgstr "Chercher dans les titres de billet"
32
-
33
- #: searchandreplace.php:68
34
- msgid "Suche nach Ausz&uuml;gen"
35
- msgstr "Chercher dans les extraits de billet"
36
-
37
- #: searchandreplace.php:76
38
- msgid "Suche nach Kommentarbetr&auml;gen"
39
- msgstr "Chercher &agrave; modifier le contenu des commentaires"
40
-
41
- #: searchandreplace.php:84
42
- msgid "Suche nach Kommentarautor"
43
- msgstr "Chercher &agrave; modifier l'auteur des commentaires"
44
-
45
- #: searchandreplace.php:92
46
- msgid "Suche nach Kommentarautoren-E-Mails"
47
- msgstr "Chercher &agrave; modifier l'e-mail de l'auteur des commentaires"
48
-
49
- #: searchandreplace.php:100
50
- msgid "Suche nach Kommentarautor-URLs"
51
- msgstr "Chercher &agrave; modifier l'URL de l'auteur des commentaires"
52
-
53
- #: searchandreplace.php:117
54
- msgid "&raquo; Du musst Text spezifizieren, um Text zu ersetzen!"
55
- msgstr "&raquo; Vous devez sp&eacute;cifier le texte &agrave; remplacer"
56
-
57
- #: searchandreplace.php:119
58
- msgid "&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ..."
59
- msgstr "&raquo; Tente d'ex&eacute;cuter la recherche et le remplacement..."
60
-
61
- #: searchandreplace.php:120
62
- msgid "Suche nach"
63
- msgstr "Recherche"
64
-
65
- #: searchandreplace.php:134
66
- msgid "Es gab eine St&ouml;rung!"
67
- msgstr "Il ya eu une erreur !"
68
-
69
- #: searchandreplace.php:137
70
- msgid "Erfolgreich durchgef&uuml;hrt!"
71
- msgstr "Accompli avec succ&egrave;s !"
72
-
73
- #: searchandreplace.php:142
74
- msgid "Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br \t/><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. Wenn du dir nicht sicher bist, fertige eine Sicherung deiner Datenbank im Vorfeld an."
75
- msgstr "Ce module utilise une requ&ecirc;te SQL standard afin qu'il modifie votre base de donn&eacute;es directement! <br /> <strong> Attention: </ strong> Vous ne pouvez pas annuler les modifications apport&eacute;es par ce module. Il est donc conseill&eacute; de sauvegarder la base de donn&eacute;es avant de lancer ce module."
76
-
77
- #: searchandreplace.php:143
78
- msgid "Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung.<br />Du kannst folgende Eintr&auml;ge bearbeiten: Beitrag (content), Titel (titles), Auszug (excerpt), Kommentarbeitr&auml;ge (comment_content), Kommentarautor (comment_author) und Kommentar-URL (comment_author_url).<br />Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen."
79
- msgstr "Le texte de recherche est sensible &agrave; la casse et n'a pas de capacit&eacute; de motifs. <br /> Vous pouvez choisir de modifier le titre, le contenu ou les extraits de billets, le contenu des commentaires et leurs auteurs ainsi que leur URL.<br /> Cette fonction \"remplacer\" fait correspondre le texte brut de sorte qu'il peut &ecirc;tre aussi utilis&eacute; pour remplacer les balises HTML."
80
-
81
- #: searchandreplace.php:147
82
- msgid "Suche in"
83
- msgstr "Chercher dans"
84
-
85
- #: searchandreplace.php:150
86
- msgid "Beitr&auml;gen"
87
- msgstr "Contenu"
88
-
89
- #: searchandreplace.php:153
90
- msgid "Titeln"
91
- msgstr "Titres"
92
-
93
- #: searchandreplace.php:156
94
- msgid "Ausz&uuml;gen"
95
- msgstr "Extraits"
96
-
97
- #: searchandreplace.php:159
98
- msgid "Kommentarbeitr&auml;gen"
99
- msgstr "Contenu des commentaires"
100
-
101
- #: searchandreplace.php:162
102
- msgid "Kommentarautoren"
103
- msgstr "Auteur de commentaires"
104
-
105
- #: searchandreplace.php:165
106
- msgid "Kommentarautoren-E-Mail"
107
- msgstr "E-mail de l'auteur de commentaires"
108
-
109
- #: searchandreplace.php:168
110
- msgid "Kommentarautoren-URLs"
111
- msgstr "URLs de l'auteur de commentaires"
112
-
113
- #: searchandreplace.php:176
114
- msgid "Ersetze"
115
- msgstr "Remplacer"
116
-
117
- #: searchandreplace.php:180
118
- msgid "mit"
119
- msgstr "avec"
120
-
121
- #: searchandreplace.php:184
122
- msgid "Ausf&uuml;hren"
123
- msgstr "Go"
124
-
125
- #: searchandreplace.php:189
126
- msgid "&quot;Search and Replace&quot; Originalplugin (en) ist von <a href='http://thedeadone.net/'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href='http://bueltge.de'>Frank Bueltge</a>."
127
- msgstr "&quot;Search and Replace&quot; originalplugin (en) created by <a href='http://thedeadone.net/'>Mark Cunningham</a> and provided (comments) by durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Search &amp; Replace&quot;, current version provided by <a href='http://bueltge.de'>Frank Bueltge</a>."
128
-
129
- #: searchandreplace.php:190
130
- msgid "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins."
131
- msgstr "Further information: Visit the <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> for further information or to grab the latest version of this plugin."
132
-
133
- #: searchandreplace.php:190
134
- msgid "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste'>Wunschliste</a>."
135
- msgstr "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste'>wishlist</a>."
136
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
searchandreplace/searchandreplace-en_US.mo DELETED
Binary file
searchandreplace/searchandreplace-en_US.po DELETED
@@ -1,208 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Search and Replace\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-01-31 10:23+0100\n"
6
- "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
7
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-KeywordsList: __;_e\n"
12
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\searchandreplace\\\n"
13
- "X-Poedit-SearchPath-0: .\n"
14
-
15
- #: searchandreplace.php:24
16
- #: searchandreplace.php:25
17
- #: searchandreplace.php:153
18
- msgid "Suchen &amp; Ersetzen"
19
- msgstr "Search &amp; Replace"
20
-
21
- #: searchandreplace.php:56
22
- msgid "<p><strong>Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!</strong></p>"
23
- msgstr "<p><strong>Nothing (Checkbox) selected to modify!</strong></p>"
24
-
25
- #: searchandreplace.php:63
26
- msgid "Suche nach Beitr&auml;gen"
27
- msgstr "Looking @ modifying post content"
28
-
29
- #: searchandreplace.php:72
30
- msgid "Suche nach Titeln"
31
- msgstr "Looking @ post titles"
32
-
33
- #: searchandreplace.php:81
34
- msgid "Suche nach Ausz&uuml;gen"
35
- msgstr "Looking @ post excerpts"
36
-
37
- #: searchandreplace.php:90
38
- msgid "Suche nach Kommentarbetr&auml;gen"
39
- msgstr "Looking @ modifying comments text"
40
-
41
- #: searchandreplace.php:99
42
- msgid "Suche nach Kommentarautor"
43
- msgstr "Looking @ modifying comments author"
44
-
45
- #: searchandreplace.php:108
46
- msgid "Suche nach Kommentarautoren-E-Mails"
47
- msgstr "Looking @ modifying comments author e-mail"
48
-
49
- #: searchandreplace.php:117
50
- msgid "Suche nach Kommentarautor-URLs"
51
- msgstr "Looking @ modifying comments author URLs"
52
-
53
- #: searchandreplace.php:126
54
- msgid "Suche nach Kategorie-Beschreibungen"
55
- msgstr "Looking @ category description"
56
-
57
- #: searchandreplace.php:135
58
- msgid "Suche nach Tags"
59
- msgstr "Search @ tags"
60
-
61
- #: searchandreplace.php:170
62
- msgid "open"
63
- msgstr "open"
64
-
65
- #: searchandreplace.php:171
66
- msgid "close"
67
- msgstr "close"
68
-
69
- #: searchandreplace.php:172
70
- msgid "click-down and drag to move this box"
71
- msgstr "click-down and drag to move this box"
72
-
73
- #: searchandreplace.php:173
74
- msgid "click to %toggle% this box"
75
- msgstr "click to %toggle% this box"
76
-
77
- #: searchandreplace.php:174
78
- msgid "use the arrow keys to move this box"
79
- msgstr "use the arrow keys to move this box"
80
-
81
- #: searchandreplace.php:175
82
- msgid ", or press the enter key to %toggle% it"
83
- msgstr ", or press the enter key to %toggle% it"
84
-
85
- #: searchandreplace.php:201
86
- msgid "&raquo; Du musst Text spezifizieren, um Text zu ersetzen!"
87
- msgstr "&raquo; You must specify some text to replace!"
88
-
89
- #: searchandreplace.php:204
90
- msgid "&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ..."
91
- msgstr "&raquo; Attempting to perform search and replace ..."
92
-
93
- #: searchandreplace.php:205
94
- msgid "Suche nach"
95
- msgstr "Search"
96
-
97
- #: searchandreplace.php:205
98
- msgid "und ersetze mit"
99
- msgstr "and replace with"
100
-
101
- #: searchandreplace.php:222
102
- msgid "Es gab eine St&ouml;rung!"
103
- msgstr "There was an error!"
104
-
105
- #: searchandreplace.php:225
106
- msgid "Erfolgreich durchgef&uuml;hrt!"
107
- msgstr "Completed successfully!"
108
-
109
- #: searchandreplace.php:232
110
- msgid "Hinweise Suchen &amp; Ersetzen"
111
- msgstr "Information Search &amp; Replace"
112
-
113
- #: searchandreplace.php:236
114
- msgid "Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br /><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. Wenn du dir nicht sicher bist, fertige eine Sicherung deiner Datenbank im Vorfeld an."
115
- msgstr "This plugin uses an standard SQL query so it modifies your database directly!<br /><strong>Attention: </strong>You <strong>cannot</strong> undo any changes made by this plugin. It is therefore advisable to backup your database before running this plugin."
116
-
117
- #: searchandreplace.php:237
118
- msgid "<strong>Aktiviere</strong> das Plugin <strong>nur</strong>, wenn es ben&ouml;tigt wird!"
119
- msgstr "<strong>Aktivate</strong> the plugin <strong>only</strong>, if you want to use it!"
120
-
121
- #: searchandreplace.php:238
122
- msgid "Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung.<br />Du kannst folgende Eintr&auml;ge bearbeiten: Beitrag (content), Titel (titles), Auszug (excerpt), Kommentarbeitr&auml;ge (comment_content), Kommentarautor (comment_author), Kommentar-URL (comment_author_url), Kategorie-Beschreibung (description) und Tags/ Kategorie-Namen (name und slug).<br />Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen."
123
- msgstr "Text search is case sensitive and has no pattern matching capabilites.<br />You can chose to modify post excerpts, comment authors and post and comment content, titles tags/categories and categrory-description.<br /> This replace function matchs raw text so it can be used to replace HTML tags too."
124
-
125
- #: searchandreplace.php:245
126
- msgid "Suche in"
127
- msgstr "search in"
128
-
129
- #: searchandreplace.php:253
130
- msgid "Beitr&auml;gen"
131
- msgstr "Content"
132
-
133
- #: searchandreplace.php:257
134
- msgid "Titeln"
135
- msgstr "Titles"
136
-
137
- #: searchandreplace.php:261
138
- msgid "Ausz&uuml;gen"
139
- msgstr "Excerpts"
140
-
141
- #: searchandreplace.php:265
142
- msgid "Kommentarbeitr&auml;gen"
143
- msgstr "Comments content"
144
-
145
- #: searchandreplace.php:269
146
- msgid "Kommentarautoren"
147
- msgstr "Comments author"
148
-
149
- #: searchandreplace.php:273
150
- msgid "Kommentarautoren-E-Mail"
151
- msgstr "Comments author e-mail"
152
-
153
- #: searchandreplace.php:277
154
- msgid "Kommentarautoren-URLs"
155
- msgstr "Comments author URLs"
156
-
157
- #: searchandreplace.php:281
158
- msgid "Kategorie-Beschreibung"
159
- msgstr "Category description"
160
-
161
- #: searchandreplace.php:285
162
- msgid "Tags &amp; Kategorien"
163
- msgstr "Tags &amp; Categories"
164
-
165
- #: searchandreplace.php:288
166
- msgid "Checkboxen markieren"
167
- msgstr "Checkboxes to assign"
168
-
169
- #: searchandreplace.php:288
170
- msgid "alle"
171
- msgstr "all"
172
-
173
- #: searchandreplace.php:288
174
- msgid "Checkboxen demarkieren"
175
- msgstr "Checkboxes to unmask"
176
-
177
- #: searchandreplace.php:288
178
- msgid "keine"
179
- msgstr "none"
180
-
181
- #: searchandreplace.php:295
182
- msgid "Ersetze"
183
- msgstr "Replace"
184
-
185
- #: searchandreplace.php:299
186
- msgid "mit"
187
- msgstr "with"
188
-
189
- #: searchandreplace.php:303
190
- msgid "Ausf&uuml;hren"
191
- msgstr "Go"
192
-
193
- #: searchandreplace.php:313
194
- msgid "Hinweise zum Plugin"
195
- msgstr "Information on the plugin"
196
-
197
- #: searchandreplace.php:317
198
- msgid "&quot;Search and Replace&quot; Originalplugin (en) ist von <a href='http://thedeadone.net/'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href='http://bueltge.de'>Frank Bueltge</a>."
199
- msgstr "&quot;Search and Replace&quot; originalplugin (en) created by <a href='http://thedeadone.net/'>Mark Cunningham</a> and provided (comments) by durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Search &amp; Replace&quot;, current version provided by <a href='http://bueltge.de'>Frank Bueltge</a>."
200
-
201
- #: searchandreplace.php:318
202
- msgid "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins."
203
- msgstr "Further information: Visit the <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> for further information or to grab the latest version of this plugin."
204
-
205
- #: searchandreplace.php:318
206
- msgid "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste'>Wunschliste</a>."
207
- msgstr "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste'>wishlist</a>."
208
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
searchandreplace/searchandreplace-fr_FR.mo DELETED
Binary file
searchandreplace/searchandreplace-fr_FR.po DELETED
@@ -1,136 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Search and Replace\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2007-11-05 09:45+0100\n"
6
- "Last-Translator: Frédéric Bourgeon <frenetikfred@gmail.com>\n"
7
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-KeywordsList: __;_e\n"
12
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\searchandreplace\\\n"
13
- "X-Poedit-SearchPath-0: .\n"
14
-
15
- #: searchandreplace.php:23
16
- #: searchandreplace.php:24
17
- #: searchandreplace.php:113
18
- msgid "Suchen &amp; Ersetzen"
19
- msgstr "Chercher et Remplacer"
20
-
21
- #: searchandreplace.php:48
22
- msgid "Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!"
23
- msgstr "Aucune s&eacute;lection (case &agrave; cocher) &agrave; modifier"
24
-
25
- #: searchandreplace.php:52
26
- msgid "Suche nach Beitr&auml;gen"
27
- msgstr "Chercher &agrave; modifier le contenu d'un billet"
28
-
29
- #: searchandreplace.php:60
30
- msgid "Suche nach Titeln"
31
- msgstr "Chercher dans les titres de billet"
32
-
33
- #: searchandreplace.php:68
34
- msgid "Suche nach Ausz&uuml;gen"
35
- msgstr "Chercher dans les extraits de billet"
36
-
37
- #: searchandreplace.php:76
38
- msgid "Suche nach Kommentarbetr&auml;gen"
39
- msgstr "Chercher &agrave; modifier le contenu des commentaires"
40
-
41
- #: searchandreplace.php:84
42
- msgid "Suche nach Kommentarautor"
43
- msgstr "Chercher &agrave; modifier l'auteur des commentaires"
44
-
45
- #: searchandreplace.php:92
46
- msgid "Suche nach Kommentarautoren-E-Mails"
47
- msgstr "Chercher &agrave; modifier l'e-mail de l'auteur des commentaires"
48
-
49
- #: searchandreplace.php:100
50
- msgid "Suche nach Kommentarautor-URLs"
51
- msgstr "Chercher &agrave; modifier l'URL de l'auteur des commentaires"
52
-
53
- #: searchandreplace.php:117
54
- msgid "&raquo; Du musst Text spezifizieren, um Text zu ersetzen!"
55
- msgstr "&raquo; Vous devez sp&eacute;cifier le texte &agrave; remplacer"
56
-
57
- #: searchandreplace.php:119
58
- msgid "&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ..."
59
- msgstr "&raquo; Tente d'ex&eacute;cuter la recherche et le remplacement..."
60
-
61
- #: searchandreplace.php:120
62
- msgid "Suche nach"
63
- msgstr "Recherche"
64
-
65
- #: searchandreplace.php:134
66
- msgid "Es gab eine St&ouml;rung!"
67
- msgstr "Il ya eu une erreur !"
68
-
69
- #: searchandreplace.php:137
70
- msgid "Erfolgreich durchgef&uuml;hrt!"
71
- msgstr "Accompli avec succ&egrave;s !"
72
-
73
- #: searchandreplace.php:142
74
- msgid "Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br \t/><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. Wenn du dir nicht sicher bist, fertige eine Sicherung deiner Datenbank im Vorfeld an."
75
- msgstr "Ce module utilise une requ&ecirc;te SQL standard afin qu'il modifie votre base de donn&eacute;es directement! <br /> <strong> Attention: </strong> Vous ne pouvez pas annuler les modifications apport&eacute;es par ce module. Il est donc conseill&eacute; de sauvegarder la base de donn&eacute;es avant de lancer ce module."
76
-
77
- #: searchandreplace.php:143
78
- msgid "Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung.<br />Du kannst folgende Eintr&auml;ge bearbeiten: Beitrag (content), Titel (titles), Auszug (excerpt), Kommentarbeitr&auml;ge (comment_content), Kommentarautor (comment_author) und Kommentar-URL (comment_author_url).<br />Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen."
79
- msgstr "Le texte de recherche est sensible &agrave; la casse et n'a pas de capacit&eacute; de motifs. <br /> Vous pouvez choisir de modifier le titre, le contenu ou les extraits de billets, le contenu des commentaires et leurs auteurs ainsi que leur URL.<br /> Cette fonction \"remplacer\" fait correspondre le texte brut de sorte qu'il peut &ecirc;tre aussi utilis&eacute; pour remplacer les balises HTML."
80
-
81
- #: searchandreplace.php:147
82
- msgid "Suche in"
83
- msgstr "Chercher dans"
84
-
85
- #: searchandreplace.php:150
86
- msgid "Beitr&auml;gen"
87
- msgstr "Contenu"
88
-
89
- #: searchandreplace.php:153
90
- msgid "Titeln"
91
- msgstr "Titres"
92
-
93
- #: searchandreplace.php:156
94
- msgid "Ausz&uuml;gen"
95
- msgstr "Extraits"
96
-
97
- #: searchandreplace.php:159
98
- msgid "Kommentarbeitr&auml;gen"
99
- msgstr "Contenu des commentaires"
100
-
101
- #: searchandreplace.php:162
102
- msgid "Kommentarautoren"
103
- msgstr "Auteur de commentaires"
104
-
105
- #: searchandreplace.php:165
106
- msgid "Kommentarautoren-E-Mail"
107
- msgstr "E-mail de l'auteur de commentaires"
108
-
109
- #: searchandreplace.php:168
110
- msgid "Kommentarautoren-URLs"
111
- msgstr "URLs de l'auteur de commentaires"
112
-
113
- #: searchandreplace.php:176
114
- msgid "Ersetze"
115
- msgstr "Remplacer"
116
-
117
- #: searchandreplace.php:180
118
- msgid "mit"
119
- msgstr "avec"
120
-
121
- #: searchandreplace.php:184
122
- msgid "Ausf&uuml;hren"
123
- msgstr "Go"
124
-
125
- #: searchandreplace.php:189
126
- msgid "&quot;Search and Replace&quot; Originalplugin (en) ist von <a href='http://thedeadone.net/'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href='http://bueltge.de'>Frank Bueltge</a>."
127
- msgstr "&quot;Search and Replace&quot; originalplugin (en) created by <a href='http://thedeadone.net/'>Mark Cunningham</a> and provided (comments) by durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Search &amp; Replace&quot;, current version provided by <a href='http://bueltge.de'>Frank Bueltge</a>."
128
-
129
- #: searchandreplace.php:190
130
- msgid "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins."
131
- msgstr "Further information: Visit the <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> for further information or to grab the latest version of this plugin."
132
-
133
- #: searchandreplace.php:190
134
- msgid "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste'>Wunschliste</a>."
135
- msgstr "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste'>wishlist</a>."
136
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
searchandreplace/searchandreplace-pl_PL.mo DELETED
Binary file
searchandreplace/searchandreplace-pl_PL.po DELETED
@@ -1,136 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Search and Replace\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2007-11-04 10:27+0100\n"
6
- "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
7
- "Language-Team: Bartosz Sobczyk <bartosz@sobczyk.info>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-KeywordsList: __;_e\n"
12
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\searchandreplace\\\n"
13
- "X-Poedit-SearchPath-0: .\n"
14
-
15
- #: searchandreplace.php:23
16
- #: searchandreplace.php:24
17
- #: searchandreplace.php:113
18
- msgid "Suchen &amp; Ersetzen"
19
- msgstr "Znajdź i Zamień"
20
-
21
- #: searchandreplace.php:48
22
- msgid "Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!"
23
- msgstr "Nic (Checkbox) nie zaznaczono do zmian!"
24
-
25
- #: searchandreplace.php:52
26
- msgid "Suche nach Beitr&auml;gen"
27
- msgstr "Przeszukiwanie i zamiana treści wpisów"
28
-
29
- #: searchandreplace.php:60
30
- msgid "Suche nach Titeln"
31
- msgstr "Przeszukiwanie i zamiana treści tytułów wpisów"
32
-
33
- #: searchandreplace.php:68
34
- msgid "Suche nach Ausz&uuml;gen"
35
- msgstr "Przeszukiwanie i zamiana treści fragmentów wpisów"
36
-
37
- #: searchandreplace.php:76
38
- msgid "Suche nach Kommentarbetr&auml;gen"
39
- msgstr "Przeszukiwanie i zamiana treści komentarzy"
40
-
41
- #: searchandreplace.php:84
42
- msgid "Suche nach Kommentarautor"
43
- msgstr "Przeszukiwanie i zamiana autorów komentarzy"
44
-
45
- #: searchandreplace.php:92
46
- msgid "Suche nach Kommentarautoren-E-Mails"
47
- msgstr "Przeszukiwanie i zamiana adresów e-mail autorów komentarzy"
48
-
49
- #: searchandreplace.php:100
50
- msgid "Suche nach Kommentarautor-URLs"
51
- msgstr "Przeszukiwanie i zamiana adresów stron autorów komentarzy"
52
-
53
- #: searchandreplace.php:117
54
- msgid "&raquo; Du musst Text spezifizieren, um Text zu ersetzen!"
55
- msgstr "&raquo; Musisz podać tekst do zamiany!"
56
-
57
- #: searchandreplace.php:119
58
- msgid "&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ..."
59
- msgstr "&raquo; Próba znajdowania i zamiany ..."
60
-
61
- #: searchandreplace.php:120
62
- msgid "Suche nach"
63
- msgstr "Szukaj"
64
-
65
- #: searchandreplace.php:134
66
- msgid "Es gab eine St&ouml;rung!"
67
- msgstr "Pojawił się błąd!"
68
-
69
- #: searchandreplace.php:137
70
- msgid "Erfolgreich durchgef&uuml;hrt!"
71
- msgstr "Zakończono sukcesem!"
72
-
73
- #: searchandreplace.php:142
74
- msgid "Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br \t/><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. Wenn du dir nicht sicher bist, fertige eine Sicherung deiner Datenbank im Vorfeld an."
75
- msgstr "Ten plugin korzysta ze standardowych zapytań SQL, przez co bezpośrednio zmienia bazę danych!<br \t/><strong>Uwaga: </strong><strong>Nie możesz</strong> anulować zmian, które dokonasz. Radzimy zatem aby dokonać kopii zapasowej przed użyciem programu."
76
-
77
- #: searchandreplace.php:143
78
- msgid "Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung.<br />Du kannst folgende Eintr&auml;ge bearbeiten: Beitrag (content), Titel (titles), Auszug (excerpt), Kommentarbeitr&auml;ge (comment_content), Kommentarautor (comment_author) und Kommentar-URL (comment_author_url).<br />Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen."
79
- msgstr "Wielkość liter tekstu ma znaczenie.<br />Możesz wybrać modyfikowanie fragmentów wpisow, autorów komentarzy i wpisów oraz treść komentarzy i tytuły.<br /> Ta funkcja zamiany może służyć również do edycji kodu HTML we wpisach."
80
-
81
- #: searchandreplace.php:147
82
- msgid "Suche in"
83
- msgstr "Szukaj w"
84
-
85
- #: searchandreplace.php:150
86
- msgid "Beitr&auml;gen"
87
- msgstr "Treść wpisów"
88
-
89
- #: searchandreplace.php:153
90
- msgid "Titeln"
91
- msgstr "Tytuły"
92
-
93
- #: searchandreplace.php:156
94
- msgid "Ausz&uuml;gen"
95
- msgstr "Fragmenty"
96
-
97
- #: searchandreplace.php:159
98
- msgid "Kommentarbeitr&auml;gen"
99
- msgstr "Treść komentarzy"
100
-
101
- #: searchandreplace.php:162
102
- msgid "Kommentarautoren"
103
- msgstr "Autorzy komentarzy"
104
-
105
- #: searchandreplace.php:165
106
- msgid "Kommentarautoren-E-Mail"
107
- msgstr "E-mail autorów komentarzy"
108
-
109
- #: searchandreplace.php:168
110
- msgid "Kommentarautoren-URLs"
111
- msgstr "Adresy stron autorów komentarzy"
112
-
113
- #: searchandreplace.php:176
114
- msgid "Ersetze"
115
- msgstr "Zamień"
116
-
117
- #: searchandreplace.php:180
118
- msgid "mit"
119
- msgstr "na"
120
-
121
- #: searchandreplace.php:184
122
- msgid "Ausf&uuml;hren"
123
- msgstr "Zastosuj"
124
-
125
- #: searchandreplace.php:189
126
- msgid "&quot;Search and Replace&quot; Originalplugin (en) ist von <a href='http://thedeadone.net/'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href='http://bueltge.de'>Frank Bueltge</a>."
127
- msgstr "&quot;Search and replace&quot; originalplugin (en) stworzony przez <a href='http://thedeadone.net/'>Marka Cunninghama</a> i wsparty (komentarze) przez <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />Obecna wersja &quot;Search &amp; Replace&quot; publikowana przez <a href='http://bueltge.de'>Franka Bueltge'a</a> oraz tłumaczona przez <a href=\"http://www.brt12.eu\">Bartosza Sobczyka</a>."
128
-
129
- #: searchandreplace.php:190
130
- msgid "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins."
131
- msgstr "Dalsze informacje: Zajrzyj na <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>stronę wtyczki</a> po więcej informacji albo w celu zdobycia najnowszej wersji."
132
-
133
- #: searchandreplace.php:190
134
- msgid "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste'>Wunschliste</a>."
135
- msgstr "Chcesz podziękować autorowi? Obejrzyj jego <a href='http://bueltge.de/wunschliste'>listę życzeń</a>."
136
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
searchandreplace/searchandreplace.php DELETED
@@ -1,359 +0,0 @@
1
- <?php
2
- /*
3
- Plugin Name: Search &amp; Replace
4
- Plugin URI: http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114
5
- Description: A simple search for find strings in your database and replace the string. Use in <a href="admin.php?page=searchandreplace/searchandreplace.php">Manage -> Search/Replace</a>.
6
- Author: <a href='http://thedeadone.net/'>Mark Cunningham</a> and <a href="http://bueltge.de" >Frank Bueltge</a>
7
- Version: 1.8.1
8
- */
9
-
10
- /*
11
- Um dieses Plugin zu nutzen, musst du das File in den
12
- Plugin-Ordner deines WP kopieren und aktivieren.
13
- Es fuegt einen neuen Tab im Bereich "Verwalten" hinzu.
14
- Dort koennen Strings dann gesucht und ersetzt werden.
15
- */
16
-
17
- if(function_exists('load_plugin_textdomain'))
18
- load_plugin_textdomain('searchandreplace', 'wp-content/plugins/searchandreplace');
19
-
20
- if ( !is_plugin_page() ) {
21
-
22
- function tdo_searchandreplace_hook(){
23
- if (function_exists('add_management_page')) {
24
- add_management_page(__('Suchen &amp; Ersetzen', 'searchandreplace'),
25
- __('Suchen &amp; Ersetzen', 'searchandreplace'),
26
- 10, /* only admins */
27
- __FILE__,
28
- 'tdo_searchandreplace_hook');
29
- }
30
- }
31
-
32
- add_action('admin_head', 'tdo_searchandreplace_hook');
33
-
34
- } else {
35
-
36
- // some basic security with nonce
37
- if ( !function_exists('wp_nonce_field') ) {
38
- function searchandreplace_nonce_field($action = -1) {
39
- return;
40
- }
41
- $searchandreplace_nonce = -1;
42
- } else {
43
- function searchandreplace_nonce_field($action = -1) {
44
- wp_nonce_field($action);
45
- }
46
- $searchandreplace_nonce = 'searchandreplace_nonce_field';
47
- }
48
-
49
-
50
- // random key to act an extra signature
51
- $searchandreplace_key = get_option('searchandreplace_key');
52
-
53
- if ($searchandreplace_key == '') {
54
- $searchandreplace_key = add_option('searchandreplace_key', rand(0, 9999));
55
- }
56
-
57
- /* this does the important stuff! */
58
- function tdo_do_searchandreplace($search_text,
59
- $replace_text,
60
- $content = TRUE,
61
- $title = TRUE,
62
- $excerpt = TRUE,
63
- $comment_content = TRUE,
64
- $comment_author = TRUE,
65
- $comment_author_email = TRUE,
66
- $comment_author_url = TRUE,
67
- $cat_description = TRUE,
68
- $tag = TRUE
69
- ) {
70
- global $wpdb;
71
-
72
- // slug string
73
- $search_slug = strtolower($search_text);
74
- $replace_slug = strtolower($replace_text);
75
-
76
- if (!$content && !$title && !$excerpt && !$comment_content && !$comment_author && !$comment_author_email && !$comment_author_url && !$cat_description && !$tag) {
77
- return __('<p><strong>Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!</strong></p>', 'searchandreplace');
78
- }
79
-
80
- echo '<div class="updated">' . "\n" . '<ul>';
81
-
82
- // post content
83
- if ($content) {
84
- echo '<li>' . __('Suche nach Beitr&auml;gen', 'searchandreplace') . ' ...</li>';
85
- $query = "UPDATE $wpdb->posts ";
86
- $query .= "SET post_content = ";
87
- $query .= "REPLACE(post_content, \"$search_text\", \"$replace_text\") ";
88
- $wpdb->get_results($query);
89
- }
90
-
91
- // post title
92
- if ($title) {
93
- echo '<li>' . __('Suche nach Titeln', 'searchandreplace') . ' ...</li>';
94
- $query = "UPDATE $wpdb->posts ";
95
- $query .= "SET post_title = ";
96
- $query .= "REPLACE(post_title, \"$search_text\", \"$replace_text\") ";
97
- $wpdb->get_results($query);
98
- }
99
-
100
- // post excerpt
101
- if ($excerpt) {
102
- echo '<li>' . __('Suche nach Ausz&uuml;gen', 'searchandreplace') . ' ...</li>';
103
- $query = "UPDATE $wpdb->posts ";
104
- $query .= "SET post_excerpt = ";
105
- $query .= "REPLACE(post_excerpt, \"$search_text\", \"$replace_text\") ";
106
- $wpdb->get_results($query);
107
- }
108
-
109
- // comment content
110
- if ($comment_content) {
111
- echo '<li>' . __('Suche nach Kommentarbetr&auml;gen', 'searchandreplace') . ' ...</li>';
112
- $query = "UPDATE $wpdb->comments ";
113
- $query .= "SET comment_content = ";
114
- $query .= "REPLACE(comment_content, \"$search_text\", \"$replace_text\") ";
115
- $wpdb->get_results($query);
116
- }
117
-
118
- // comment_author
119
- if ($comment_author) {
120
- echo '<li>' . __('Suche nach Kommentarautor', 'searchandreplace') . ' ...</li>';
121
- $query = "UPDATE $wpdb->comments ";
122
- $query .= "SET comment_author = ";
123
- $query .= "REPLACE(comment_author, \"$search_text\", \"$replace_text\") ";
124
- $wpdb->get_results($query);
125
- }
126
-
127
- // comment_author_email
128
- if ($comment_author_email) {
129
- echo '<li>' . __('Suche nach Kommentarautoren-E-Mails', 'searchandreplace') . ' ...</li>';
130
- $query = "UPDATE $wpdb->comments ";
131
- $query .= "SET comment_author_email = ";
132
- $query .= "REPLACE(comment_author_email, \"$search_text\", \"$replace_text\") ";
133
- $wpdb->get_results($query);
134
- }
135
-
136
- // comment_author_url
137
- if ($comment_author_url) {
138
- echo '<li>' . __('Suche nach Kommentarautor-URLs', 'searchandreplace') . ' ...</li>';
139
- $query = "UPDATE $wpdb->comments ";
140
- $query .= "SET comment_author_url = ";
141
- $query .= "REPLACE(comment_author_url, \"$search_text\", \"$replace_text\") ";
142
- $wpdb->get_results($query);
143
- }
144
-
145
- // category description
146
- if ($cat_description) {
147
- echo '<li>' . __('Suche nach Kategorie-Beschreibungen', 'searchandreplace') . ' ...</li>';
148
- $query = "UPDATE $wpdb->term_taxonomy ";
149
- $query .= "SET description = ";
150
- $query .= "REPLACE(description, \"$search_text\", \"$replace_text\") ";
151
- $wpdb->get_results($query);
152
- }
153
-
154
- // tags and category
155
- if ($tag) {
156
- echo '<li>' . __('Suche nach Tags', 'searchandreplace') . ' ...</li>';
157
- $query = "UPDATE $wpdb->terms ";
158
- $query .= "SET name = ";
159
- $query .= "REPLACE(name, \"$search_text\", \"$replace_text\") ";
160
- $wpdb->get_results($query);
161
-
162
- $query = "UPDATE $wpdb->terms ";
163
- $query .= "SET slug = ";
164
- $query .= "REPLACE(slug, \"$search_slug\", \"$replace_slug\") ";
165
- $wpdb->get_results($query);
166
- }
167
-
168
- echo "\n" . '</ul>';
169
- return '';
170
- }
171
- ?>
172
-
173
- <div class="wrap" id="top">
174
- <h2><?php _e('Suchen &amp; Ersetzen', 'searchandreplace'); ?></h2>
175
- <script type="text/javascript" src="../wp-includes/js/tw-sack.js"></script>
176
- <!--<script type="text/javascript" src="list-manipulation.js"></script>-->
177
- <script type="text/javascript" src="../wp-includes/js/dbx.js"></script>
178
- <script type="text/javascript">
179
- //<![CDATA[
180
- addLoadEvent( function() {
181
- var manager = new dbxManager('searchandreplace_meta');
182
-
183
- var advanced = new dbxGroup(
184
- 'advancedstuff', // container ID [/-_a-zA-Z0-9/]
185
- 'vertical', // orientation ['vertical'|'horizontal']
186
- '10', // drag threshold ['n' pixels]
187
- 'yes', // restrict drag movement to container axis ['yes'|'no']
188
- '10', // animate re-ordering [frames per transition, or '0' for no effect]
189
- 'yes', // include open/close toggle buttons ['yes'|'no']
190
- 'open', // default state ['open'|'closed']
191
- <?php echo "'" . js_escape(__('open')); ?>', // word for "open", as in "open this box"
192
- <?php echo "'" . js_escape(__('close')); ?>', // word for "close", as in "close this box"
193
- <?php echo "'" . js_escape(__('click-down and drag to move this box')); ?>', // sentence for "move this box" by mouse
194
- <?php echo "'" . js_escape(__('click to %toggle% this box')); ?>', // pattern-match sentence for "(open|close) this box" by mouse
195
- <?php echo "'" . js_escape(__('use the arrow keys to move this box')); ?>', // sentence for "move this box" by keyboard
196
- <?php echo "'" . js_escape(__(', or press the enter key to %toggle% it')); ?>', // pattern-match sentence-fragment for "(open|close) this box" by keyboard
197
- '%mytitle% [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
198
- );
199
- });
200
- //]]>
201
- </script>
202
- <script type="text/javascript" language="JavaScript">
203
- //<![CDATA[
204
- function selectcb(thisobj,var1){
205
- var o = document.forms[thisobj].elements;
206
- if(o){
207
- for (i=0; i<o.length; i++){
208
- if (o[i].type == 'checkbox'){
209
- o[i].checked = var1;
210
- }
211
- }
212
- }
213
- }
214
- //]]>
215
- </script>
216
-
217
- <div id="advancedstuff" class="dbx-group" >
218
- <div class="dbx-b-ox-wrapper">
219
-
220
- <?php if (isset($_POST['submitted'])) {
221
- if (function_exists('current_user_can') && current_user_can('edit_plugins') && $_POST['searchandreplace_key'] == $searchandreplace_key) {
222
- check_admin_referer('$searchandreplace_nonce', $searchandreplace_nonce);
223
-
224
- if (empty($_POST['search_text'])) { ?>
225
- <div class="error"><p><strong><?php _e('&raquo; Du musst Text spezifizieren, um Text zu ersetzen!', 'searchandreplace'); ?></strong></p></div>
226
- <?php } else { ?>
227
- <div class="updated">
228
- <p><strong><?php _e('&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ...', 'searchandreplace'); ?></strong></p>
229
- <p>&raquo; <?php _e('Suche nach', 'searchandreplace'); ?> <code><?php echo $_POST['search_text']; ?></code> ... <?php _e('und ersetze mit', 'searchandreplace'); ?> <code><?php echo $_POST['replace_text']; ?></code></p>
230
- </div>
231
-
232
- <?php $error = tdo_do_searchandreplace(
233
- $_POST['search_text'],
234
- $_POST['replace_text'],
235
- isset($_POST['content']),
236
- isset($_POST['title']),
237
- isset($_POST['excerpt']),
238
- isset($_POST['comment_content']),
239
- isset($_POST['comment_author']),
240
- isset($_POST['comment_author_email']),
241
- isset($_POST['comment_author_url']),
242
- isset($_POST['cat_description']),
243
- isset($_POST['tag'])
244
- );
245
-
246
- if ($error != '') { ?>
247
- <div class="error"><p><?php _e('Es gab eine St&ouml;rung!', 'searchandreplace'); ?></p>
248
- <p><code><?php echo $error; ?></code></p></div>
249
- <?php } else { ?>
250
- <p><?php _e('Erfolgreich durchgef&uuml;hrt!', 'searchandreplace'); ?></p></div>
251
- <?php }
252
- }
253
- }
254
- } ?>
255
-
256
- <fieldset id="hint_to_search" class="dbx-box">
257
- <div class="dbx-h-andle-wrapper">
258
- <h3 class="dbx-handle"><?php _e('Hinweise Suchen &amp; Ersetzen', 'searchandreplace') ?></h3>
259
- </div>
260
- <div class="dbx-c-ontent-wrapper">
261
- <div class="dbx-content">
262
- <p><?php _e('Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br /><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. Wenn du dir nicht sicher bist, fertige eine Sicherung deiner Datenbank im Vorfeld an.', 'searchandreplace'); ?></p>
263
- <p><?php _e('<strong>Aktiviere</strong> das Plugin <strong>nur</strong>, wenn es ben&ouml;tigt wird!', 'searchandreplace'); ?></p>
264
- <p><?php _e('Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung.<br />Du kannst folgende Eintr&auml;ge bearbeiten: Beitrag (content), Titel (titles), Auszug (excerpt), Kommentarbeitr&auml;ge (comment_content), Kommentarautor (comment_author), Kommentar-URL (comment_author_url), Kategorie-Beschreibung (description) und Tags/ Kategorie-Namen (name und slug).<br />Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen.', 'searchandreplace'); ?></p>
265
- </div>
266
- </div>
267
- </fieldset>
268
-
269
- <fieldset id="config" class="dbx-box">
270
- <div class="dbx-h-andle-wrapper">
271
- <h3 class="dbx-handle"><?php _e('Suche in', 'searchandreplace') ?></h3>
272
- </div>
273
- <div class="dbx-c-ontent-wrapper">
274
- <div class="dbx-content">
275
- <form name="replace" action="" method="post">
276
- <table summary="config">
277
- <tr>
278
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='content' id='content_label' /></td>
279
- <td><label for="content_label"><?php _e('Beitr&auml;gen', 'searchandreplace'); ?></label></td>
280
- </tr>
281
- <tr>
282
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='title' id='title_label' /></td>
283
- <td><label for="title_label"><?php _e('Titeln', 'searchandreplace'); ?></label></td>
284
- </tr>
285
- <tr>
286
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='excerpt' id='excerpt_label' /></td>
287
- <td><label for="excerpt_label"><?php _e('Ausz&uuml;gen', 'searchandreplace'); ?></label></td>
288
- </tr>
289
- <tr>
290
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_content' id='comment_content_label' /></td>
291
- <td><label for="comment_content_label"><?php _e('Kommentarbeitr&auml;gen', 'searchandreplace'); ?></label></td>
292
- </tr>
293
- <tr>
294
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_author' id='comment_author_label' /></td>
295
- <td><label for="comment_author_label"><?php _e('Kommentarautoren', 'searchandreplace'); ?></label></td>
296
- </tr>
297
- <tr>
298
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_author_email' id='comment_author_email_label' /></td>
299
- <td><label for="comment_author_email_label"><?php _e('Kommentarautoren-E-Mail', 'searchandreplace'); ?></label></td>
300
- </tr>
301
- <tr>
302
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='comment_author_url' id='comment_author_url_label' /></td>
303
- <td><label for="comment_author_url_label"><?php _e('Kommentarautoren-URLs', 'searchandreplace'); ?></label></td>
304
- </tr>
305
- <?php if(mysql_num_rows(mysql_query("SHOW TABLES LIKE '".$wpdb->prefix . 'terms'."'") ) == 1) { ?>
306
- <tr>
307
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='cat_description' id='cat_description_label' /></td>
308
- <td><label for="cat_description_label"><?php _e('Kategorie-Beschreibung', 'searchandreplace'); ?></label></td>
309
- </tr>
310
- <tr>
311
- <td colspan="2" style="text-align: center;"><input type='checkbox' name='tag' id='tag_label' /></td>
312
- <td><label for="tag_label"><?php _e('Tags &amp; Kategorien', 'searchandreplace'); ?></label></td>
313
- </tr>
314
- <?php } ?>
315
- <tr>
316
- <td colspan="2" style="text-align: center;">&nbsp;&nbsp; <a href="javascript:selectcb('replace', true);" title="<?php _e('Checkboxen markieren', 'searchandreplace'); ?>"><?php _e('alle', 'searchandreplace'); ?></a> | <a href="javascript:selectcb('replace', false);" title="<?php _e('Checkboxen demarkieren', 'searchandreplace'); ?>"><?php _e('keine', 'searchandreplace'); ?></a></td>
317
- <td>&nbsp;</td>
318
- </tr>
319
- </table>
320
- <br/>
321
- <table summary="submit">
322
- <tr>
323
- <td><?php _e('Ersetze', 'searchandreplace'); ?></td>
324
- <td><input class="code" type="text" name="search_text" value="" size="80" /></td>
325
- </tr>
326
- <tr>
327
- <td><?php _e('mit', 'searchandreplace'); ?></td>
328
- <td><input class="code" type="text" name="replace_text" value="" size="80" /></td>
329
- </tr>
330
- </table>
331
- <?php searchandreplace_nonce_field('$searchandreplace_nonce', $searchandreplace_nonce); ?>
332
- <input type="hidden" name="searchandreplace_key" value="<?php echo $searchandreplace_key ?>" />
333
- <div class="tablenav">
334
- <input class="button" type="submit" value="<?php _e('Ausf&uuml;hren', 'searchandreplace'); ?> &raquo;" />
335
- </div>
336
- <input type="hidden" name="submitted" />
337
- </form>
338
-
339
- </div>
340
- </div>
341
- </fieldset>
342
-
343
- <fieldset id="hint_to_plugin" class="dbx-box">
344
- <div class="dbx-h-andle-wrapper">
345
- <h3 class="dbx-handle"><?php _e('Hinweise zum Plugin', 'searchandreplace') ?></h3>
346
- </div>
347
- <div class="dbx-c-ontent-wrapper">
348
- <div class="dbx-content">
349
- <p><small><?php _e('&quot;Search and Replace&quot; Originalplugin (en) ist von <a href=\'http://thedeadone.net/\'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href=\'http://www.gonahkar.com\'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href=\'http://bueltge.de\'>Frank Bueltge</a>.', 'searchandreplace'); ?></small></p>
350
- <p><small><?php _e('Weitere Informationen: Besuche die <a href=\'http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114\'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins.', 'searchandreplace'); ?><br />&copy; Copyright 2008 <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php _e('Du willst Danke sagen? Besuche meine <a href=\'http://bueltge.de/wunschliste\'>Wunschliste</a>.', 'searchandreplace'); ?></small></p>
351
- </div>
352
- </div>
353
- </fieldset>
354
-
355
- </div>
356
- </div>
357
- </div>
358
-
359
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
searchandreplace/searchandreplace.pot DELETED
@@ -1,208 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Search and Replace\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-01-31 10:23+0100\n"
6
- "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
7
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-KeywordsList: __;_e\n"
12
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\searchandreplace\\\n"
13
- "X-Poedit-SearchPath-0: .\n"
14
-
15
- #: searchandreplace.php:24
16
- #: searchandreplace.php:25
17
- #: searchandreplace.php:153
18
- msgid "Suchen &amp; Ersetzen"
19
- msgstr "Search &amp; Replace"
20
-
21
- #: searchandreplace.php:56
22
- msgid "<p><strong>Keine Aktion (Checkbox) gew&auml;hlt um zu ersetzen!</strong></p>"
23
- msgstr "<p><strong>Nothing (Checkbox) selected to modify!</strong></p>"
24
-
25
- #: searchandreplace.php:63
26
- msgid "Suche nach Beitr&auml;gen"
27
- msgstr "Looking @ modifying post content"
28
-
29
- #: searchandreplace.php:72
30
- msgid "Suche nach Titeln"
31
- msgstr "Looking @ post titles"
32
-
33
- #: searchandreplace.php:81
34
- msgid "Suche nach Ausz&uuml;gen"
35
- msgstr "Looking @ post excerpts"
36
-
37
- #: searchandreplace.php:90
38
- msgid "Suche nach Kommentarbetr&auml;gen"
39
- msgstr "Looking @ modifying comments text"
40
-
41
- #: searchandreplace.php:99
42
- msgid "Suche nach Kommentarautor"
43
- msgstr "Looking @ modifying comments author"
44
-
45
- #: searchandreplace.php:108
46
- msgid "Suche nach Kommentarautoren-E-Mails"
47
- msgstr "Looking @ modifying comments author e-mail"
48
-
49
- #: searchandreplace.php:117
50
- msgid "Suche nach Kommentarautor-URLs"
51
- msgstr "Looking @ modifying comments author URLs"
52
-
53
- #: searchandreplace.php:126
54
- msgid "Suche nach Kategorie-Beschreibungen"
55
- msgstr "Looking @ category description"
56
-
57
- #: searchandreplace.php:135
58
- msgid "Suche nach Tags"
59
- msgstr "Search @ tags"
60
-
61
- #: searchandreplace.php:170
62
- msgid "open"
63
- msgstr "open"
64
-
65
- #: searchandreplace.php:171
66
- msgid "close"
67
- msgstr "close"
68
-
69
- #: searchandreplace.php:172
70
- msgid "click-down and drag to move this box"
71
- msgstr "click-down and drag to move this box"
72
-
73
- #: searchandreplace.php:173
74
- msgid "click to %toggle% this box"
75
- msgstr "click to %toggle% this box"
76
-
77
- #: searchandreplace.php:174
78
- msgid "use the arrow keys to move this box"
79
- msgstr "use the arrow keys to move this box"
80
-
81
- #: searchandreplace.php:175
82
- msgid ", or press the enter key to %toggle% it"
83
- msgstr ", or press the enter key to %toggle% it"
84
-
85
- #: searchandreplace.php:201
86
- msgid "&raquo; Du musst Text spezifizieren, um Text zu ersetzen!"
87
- msgstr "&raquo; You must specify some text to replace!"
88
-
89
- #: searchandreplace.php:204
90
- msgid "&raquo; Versuche die Suche duchzuf&uuml;hren und zu ersetzen ..."
91
- msgstr "&raquo; Attempting to perform search and replace ..."
92
-
93
- #: searchandreplace.php:205
94
- msgid "Suche nach"
95
- msgstr "Search"
96
-
97
- #: searchandreplace.php:205
98
- msgid "und ersetze mit"
99
- msgstr "and replace with"
100
-
101
- #: searchandreplace.php:222
102
- msgid "Es gab eine St&ouml;rung!"
103
- msgstr "There was an error!"
104
-
105
- #: searchandreplace.php:225
106
- msgid "Erfolgreich durchgef&uuml;hrt!"
107
- msgstr "Completed successfully!"
108
-
109
- #: searchandreplace.php:232
110
- msgid "Hinweise Suchen &amp; Ersetzen"
111
- msgstr "Information Search &amp; Replace"
112
-
113
- #: searchandreplace.php:236
114
- msgid "Dieses Plugin arbeitet mit einer Standard SQL Abfrage und ver&auml;ndert deine Datenbank direkt!<br /><strong>Achtung: </strong>Du <strong>kannst nichts</strong> r&uuml;ckg&auml;ngig machen mit diesem Plugin. Wenn du dir nicht sicher bist, fertige eine Sicherung deiner Datenbank im Vorfeld an."
115
- msgstr "This plugin uses an standard SQL query so it modifies your database directly!<br /><strong>Attention: </strong>You <strong>cannot</strong> undo any changes made by this plugin. It is therefore advisable to backup your database before running this plugin."
116
-
117
- #: searchandreplace.php:237
118
- msgid "<strong>Aktiviere</strong> das Plugin <strong>nur</strong>, wenn es ben&ouml;tigt wird!"
119
- msgstr "<strong>Aktivate</strong> the plugin <strong>only</strong>, if you want to use it!"
120
-
121
- #: searchandreplace.php:238
122
- msgid "Die Textsuche ist sensitiv und besitzt keine passende Abstimmungsbef&auml;higung.<br />Du kannst folgende Eintr&auml;ge bearbeiten: Beitrag (content), Titel (titles), Auszug (excerpt), Kommentarbeitr&auml;ge (comment_content), Kommentarautor (comment_author), Kommentar-URL (comment_author_url), Kategorie-Beschreibung (description) und Tags/ Kategorie-Namen (name und slug).<br />Die Funktion arbeitet stringbasierend und kann somit auch HTML-Tags ersetzen."
123
- msgstr "Text search is case sensitive and has no pattern matching capabilites.<br />You can chose to modify post excerpts, comment authors and post and comment content, titles tags/categories and categrory-description.<br /> This replace function matchs raw text so it can be used to replace HTML tags too."
124
-
125
- #: searchandreplace.php:245
126
- msgid "Suche in"
127
- msgstr "search in"
128
-
129
- #: searchandreplace.php:253
130
- msgid "Beitr&auml;gen"
131
- msgstr "Content"
132
-
133
- #: searchandreplace.php:257
134
- msgid "Titeln"
135
- msgstr "Titles"
136
-
137
- #: searchandreplace.php:261
138
- msgid "Ausz&uuml;gen"
139
- msgstr "Excerpts"
140
-
141
- #: searchandreplace.php:265
142
- msgid "Kommentarbeitr&auml;gen"
143
- msgstr "Comments content"
144
-
145
- #: searchandreplace.php:269
146
- msgid "Kommentarautoren"
147
- msgstr "Comments author"
148
-
149
- #: searchandreplace.php:273
150
- msgid "Kommentarautoren-E-Mail"
151
- msgstr "Comments author e-mail"
152
-
153
- #: searchandreplace.php:277
154
- msgid "Kommentarautoren-URLs"
155
- msgstr "Comments author URLs"
156
-
157
- #: searchandreplace.php:281
158
- msgid "Kategorie-Beschreibung"
159
- msgstr "Category description"
160
-
161
- #: searchandreplace.php:285
162
- msgid "Tags &amp; Kategorien"
163
- msgstr "Tags &amp; Categories"
164
-
165
- #: searchandreplace.php:288
166
- msgid "Checkboxen markieren"
167
- msgstr "Checkboxes to assign"
168
-
169
- #: searchandreplace.php:288
170
- msgid "alle"
171
- msgstr "all"
172
-
173
- #: searchandreplace.php:288
174
- msgid "Checkboxen demarkieren"
175
- msgstr "Checkboxes to unmask"
176
-
177
- #: searchandreplace.php:288
178
- msgid "keine"
179
- msgstr "none"
180
-
181
- #: searchandreplace.php:295
182
- msgid "Ersetze"
183
- msgstr "Replace"
184
-
185
- #: searchandreplace.php:299
186
- msgid "mit"
187
- msgstr "with"
188
-
189
- #: searchandreplace.php:303
190
- msgid "Ausf&uuml;hren"
191
- msgstr "Go"
192
-
193
- #: searchandreplace.php:313
194
- msgid "Hinweise zum Plugin"
195
- msgstr "Information on the plugin"
196
-
197
- #: searchandreplace.php:317
198
- msgid "&quot;Search and Replace&quot; Originalplugin (en) ist von <a href='http://thedeadone.net/'>Mark Cunningham</a> und wurde erweitert (Kommentarbeitr&auml;ge, Kommentarautor) durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Suchen &amp; Ersetzen&quot; wurde erweitert und gepflegt in der aktuellen Version durch <a href='http://bueltge.de'>Frank Bueltge</a>."
199
- msgstr "&quot;Search and Replace&quot; originalplugin (en) created by <a href='http://thedeadone.net/'>Mark Cunningham</a> and provided (comments) by durch <a href='http://www.gonahkar.com'>Gonahkar</a>.<br />&quot;Search &amp; Replace&quot;, current version provided by <a href='http://bueltge.de'>Frank Bueltge</a>."
200
-
201
- #: searchandreplace.php:318
202
- msgid "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> f&uuml;r weitere Informationen oder nutze die letzte Version des Plugins."
203
- msgstr "Further information: Visit the <a href='http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114'>plugin homepage</a> for further information or to grab the latest version of this plugin."
204
-
205
- #: searchandreplace.php:318
206
- msgid "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste'>Wunschliste</a>."
207
- msgstr "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste'>wishlist</a>."
208
-