AddQuicktag - Version 1.6.3

Version Description

Download this release

Release Info

Developer Bueltge
Plugin Icon wp plugin AddQuicktag
Version 1.6.3
Comparing to
See all releases

Code changes from version 1.5.8 to 1.6.3

addquicktag.php CHANGED
@@ -2,18 +2,18 @@
2
  /**
3
  * @package AddQuicktag
4
  * @author Roel Meurders, Frank Bültge
5
- * @version 1.5.8
6
  */
7
 
8
  /**
9
  Plugin Name: AddQuicktag
10
  Plugin URI: http://bueltge.de/wp-addquicktags-de-plugin/120/
11
  Description: Allows you to easily add custom Quicktags to the editor. You can also export and import your Quicktags.
12
- Author: Frank Bültge
13
  Author URI: http://bueltge.de/
14
- Version: 1.5.8
15
  License: GNU General Public License
16
- Last Change: 20.02.2009 10:35:46
17
 
18
  This program is free software; you can redistribute it and/or modify
19
  it under the terms of the GNU General Public License as published by
@@ -35,8 +35,6 @@ Last Change: 20.02.2009 10:35:46
35
  This Wordpress plugin is released under a GNU General Public License. A complete version of this license
36
  can be found here: http://www.gnu.org/licenses/gpl.txt
37
 
38
- This Wordpress plugin has been tested with Wordpress 2.0, 2.1 - 2.8 bleeding edge;
39
-
40
  This Wordpress plugin is released "as is". Without any warranty. The authors cannot
41
  be held responsible for any damage that this script might cause.
42
  */
@@ -48,13 +46,20 @@ if ( !function_exists ('add_action') ) {
48
  exit();
49
  }
50
 
51
- // Pre-2.6 compatibility
52
- if ( !defined('WP_CONTENT_URL') )
53
- define( 'WP_CONTENT_URL', get_option('url') . '/wp-content');
54
- if ( !defined('WP_CONTENT_DIR') )
55
- define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
56
- if ( !defined('WP_CONTENT_FOLDER') )
57
- define( 'WP_CONTENT_FOLDER', str_replace(ABSPATH, '/', WP_CONTENT_DIR) );
 
 
 
 
 
 
 
58
 
59
  // send file for save
60
  if ( isset( $_GET['export'] ) ) {
@@ -71,9 +76,9 @@ function wpaq_textdomain() {
71
 
72
  if ( function_exists('load_plugin_textdomain') ) {
73
  if ( !defined('WP_PLUGIN_DIR') ) {
74
- load_plugin_textdomain('addquicktag', str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
75
  } else {
76
- load_plugin_textdomain('addquicktag', false, dirname( plugin_basename(__FILE__) ) . '/languages');
77
  }
78
  }
79
  }
@@ -87,14 +92,15 @@ function wpaq_textdomain() {
87
  function wpaq_install() {
88
 
89
  $rmnlQuicktagSettings = array(
90
- 'buttons' => array(
91
- array(
92
- 'text' => 'Example',
93
- 'start' => '<example>',
94
- 'end' => '</example>'
95
- )
96
- )
97
- );
 
98
  add_option('rmnlQuicktagSettings', $rmnlQuicktagSettings);
99
  }
100
 
@@ -107,14 +113,15 @@ function wpaq_install() {
107
  function wpaq_reset() {
108
 
109
  $rmnlQuicktagSettings = array(
110
- 'buttons' => array(
111
- array(
112
- 'text' => 'Reset',
113
- 'start' => '<reset>',
114
- 'end' => '</reset>'
115
- )
116
- )
117
- );
 
118
  update_option('rmnlQuicktagSettings', $rmnlQuicktagSettings);
119
  }
120
 
@@ -212,18 +219,19 @@ function wpaq_options_page() {
212
  for ($i = 0; $i < count($_POST['wpaq']['buttons']); $i++){
213
  $b = $_POST['wpaq']['buttons'][$i];
214
  if ($b['text'] != '' && $b['start'] != '') {
215
- $b['text'] = ($b['text']);
216
- $b['start'] = stripslashes($b['start']);
217
- $b['end'] = stripslashes($b['end']);
218
- $buttons[] = $b;
 
219
  }
220
  }
221
  $_POST['wpaq']['buttons'] = $buttons;
222
  update_option('rmnlQuicktagSettings', $_POST['wpaq']);
223
- $message = '<br class="clear" /><div class="updated fade"><p><strong>' . __('Options saved.', 'addquicktag') . '</strong></p></div>';
224
 
225
  } else {
226
- wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.', 'addquicktag').'</p>');
227
  }
228
  }
229
 
@@ -234,52 +242,53 @@ function wpaq_options_page() {
234
  check_admin_referer('rmnl_nonce');
235
  wpaq_uninstall();
236
  $message_export = '<br class="clear" /><div class="updated fade"><p>';
237
- $message_export.= __('AddQuicktag options have been deleted!', 'addquicktag');
238
  $message_export.= '</p></div>';
239
 
240
  } else {
241
- wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.', 'addquicktag').'</p>');
242
  }
243
  }
244
 
245
- $string1 = __('Add or delete Quicktag buttons', 'addquicktag');
246
- $string2 = __('Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields.', 'addquicktag');
247
- $field1 = __('Button Label*', 'addquicktag');
248
- $field2 = __('Start Tag(s)*', 'addquicktag');
249
- $field3 = __('End Tag(s)', 'addquicktag');
250
- $button1 = __('Update Options &raquo;', 'addquicktag');
 
251
 
252
  // Export strings
253
- $button2 = __('Export &raquo;', 'addquicktag');
254
- $export1 = __('Export/Import AddQuicktag buttons options', 'addquicktag');
255
- $export2 = __('You can save a .wpaq file with your options.', 'addquicktag');
256
- $export3 = __('Export', 'addquicktag');
257
 
258
  // Import strings
259
- $button3 = __('Upload file and import &raquo;', 'addquicktag');
260
- $import1 = __('Import', 'addquicktag');
261
- $import2 = __('Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>.', 'addquicktag');
262
- $import3 = __('Choose a file from your computer: ', 'addquicktag');
263
 
264
  // Uninstall strings
265
- $button4 = __('Uninstall Options &raquo;', 'addquicktag');
266
- $uninstall1 = __('Uninstall options', 'addquicktag');
267
- $uninstall2 = __('This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!', 'addquicktag');
268
 
269
  // Info
270
- $info0 = __('About the plugin', 'addquicktag');
271
- $info1 = __('Further information: Visit the <a href=\'http://bueltge.de/wp-addquicktags-de-plugin/120\'>plugin homepage</a> for further information or to grab the latest version of this plugin.', 'addquicktag');
272
- $info2 = __('You want to thank me? Visit my <a href=\'http://bueltge.de/wunschliste/\'>wishlist</a>.', 'addquicktag');
273
 
274
  // message for import, after redirect
275
  if ( strpos($_SERVER['REQUEST_URI'], 'addquicktag.php') && $_GET['update'] && !$_POST['uninstall'] ) {
276
  $message_export = '<br class="clear" /><div class="updated fade"><p>';
277
  if ( $_GET['update'] == 'true' ) {
278
- $message_export .= __('AddQuicktag options imported!', 'addquicktag');
279
  } elseif( $_GET['update'] == 'exist' ) {
280
- $message_export .= __('File is exist!', 'addquicktag');
281
  } elseif( $_GET['update'] == 'notexist' ) {
282
- $message_export .= __('Invalid file extension!', 'addquicktag');
283
  }
284
  $message_export .= '</p></div>';
285
  }
@@ -288,11 +297,12 @@ function wpaq_options_page() {
288
 
289
  ?>
290
  <div class="wrap">
291
- <h2><?php _e('WP-Quicktag Management', 'addquicktag'); ?></h2>
292
  <?php echo $message . $message_export; ?>
293
  <br class="clear" />
294
- <div id="poststuff" class="ui-sortable">
295
  <div class="postbox">
 
296
  <h3><?php echo $string1; ?></h3>
297
  <div class="inside">
298
  <br class="clear" />
@@ -304,29 +314,34 @@ function wpaq_options_page() {
304
  <th scope="col"><?php echo $field1; ?></th>
305
  <th scope="col"><?php echo $field2; ?></th>
306
  <th scope="col"><?php echo $field3; ?></th>
 
307
  </tr>
308
  </thead>
309
  <tbody>
310
  <?php
311
  for ($i = 0; $i < count($o['buttons']); $i++) {
 
312
  $b = $o['buttons'][$i];
313
  $b['text'] = htmlentities(stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset'));
 
314
  $b['start'] = htmlentities($b['start'], ENT_COMPAT, get_option('blog_charset'));
315
  $b['end'] = htmlentities($b['end'], ENT_COMPAT, get_option('blog_charset'));
316
  $nr = $i + 1;
317
  echo '
318
- <tr valign="top">
319
  <td><input type="text" name="wpaq[buttons][' . $i . '][text]" value="' . $b['text'] . '" style="width: 95%;" /></td>
 
320
  <td><textarea class="code" name="wpaq[buttons][' . $i . '][start]" rows="2" cols="25" style="width: 95%;">' . $b['start'] . '</textarea></td>
321
  <td><textarea class="code" name="wpaq[buttons][' . $i . '][end]" rows="2" cols="25" style="width: 95%;">' . $b['end'] . '</textarea></td>
322
  </tr>
323
  ';
324
  }
325
  ?>
326
- <tr valign="top">
327
- <td><input type="text" name="wpaq[buttons][<?php _e( $i ); ?>][text]" value="" tyle="width: 95%;" /></td>
328
- <td><textarea class="code" name="wpaq[buttons][<?php _e( $i ); ?>][start]" rows="2" cols="25" style="width: 95%;"></textarea></td>
329
- <td><textarea class="code" name="wpaq[buttons][<?php _e( $i ); ?>][end]" rows="2" cols="25" style="width: 95%;"></textarea></td>
 
330
  </tr>
331
  </tbody>
332
  </table>
@@ -340,8 +355,9 @@ function wpaq_options_page() {
340
  </div>
341
  </div>
342
 
343
- <div id="poststuff" class="ui-sortable">
344
  <div class="postbox closed">
 
345
  <h3><?php echo $export1; ?></h3>
346
  <div class="inside">
347
 
@@ -372,8 +388,9 @@ function wpaq_options_page() {
372
  </div>
373
  </div>
374
 
375
- <div id="poststuff" class="ui-sortable">
376
  <div class="postbox closed">
 
377
  <h3><?php echo $uninstall1; ?></h3>
378
  <div class="inside">
379
 
@@ -390,24 +407,33 @@ function wpaq_options_page() {
390
  </div>
391
  </div>
392
 
393
- <div id="poststuff" class="ui-sortable">
394
- <div class="postbox closed">
 
395
  <h3><?php echo $info0; ?></h3>
396
  <div class="inside">
397
-
398
- <p><?php echo $info1; ?><br />&copy; Copyright 2007 - <?php _e( date("Y") ); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php echo $info2; ?></p>
399
-
 
 
 
 
 
 
 
400
  </div>
401
  </div>
402
  </div>
403
 
404
  <script type="text/javascript">
405
  <!--
406
- <?php if ( version_compare( $wp_version, '2.6.999', '<' ) ) { ?>
407
  jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
408
  <?php } ?>
409
  jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
410
- jQuery('.postbox.close-me').each(function(){
 
411
  jQuery(this).addClass("closed");
412
  });
413
  //-->
@@ -421,54 +447,359 @@ function wpaq_options_page() {
421
  // only for post.php, page.php, post-new.php, page-new.php, comment.php
422
  if (strpos($_SERVER['REQUEST_URI'], 'post.php') || strpos($_SERVER['REQUEST_URI'], 'post-new.php') || strpos($_SERVER['REQUEST_URI'], 'page-new.php') || strpos($_SERVER['REQUEST_URI'], 'page.php') || strpos($_SERVER['REQUEST_URI'], 'comment.php')) {
423
  add_action('admin_footer', 'wpaq_addsome');
424
-
 
 
 
 
 
425
  function wpaq_addsome() {
426
  $o = get_option('rmnlQuicktagSettings');
427
  if (count($o['buttons']) > 0) {
428
- echo '
429
  <script type="text/javascript">
430
- <!--
431
- if (wpaqToolbar = document.getElementById("ed_toolbar")) {
432
- var wpaqNr, wpaqBut, wpaqStart, wpaqEnd;
433
- ';
434
- for ($i = 0; $i < count($o['buttons']); $i++) {
435
- $b = $o['buttons'][$i];
436
- $txt = html_entity_decode(stripslashes($b['txt']), ENT_COMPAT, get_option('blog_charset'));
437
- $text = stripslashes($b['text']);
438
- $b['text'] = stripslashes($b['text']);
 
 
 
 
 
 
 
 
439
  $start = preg_replace('![\n\r]+!', "\\n", $b['start']);
440
  $start = str_replace("'", "\'", $start);
441
- $end = preg_replace('![\n\r]+!', "\\n", $b['end']);
442
- $end = str_replace("'", "\'", $end);
443
- echo '
444
- wpaqStart = \'' . $start . '\';
445
- wpaqEnd = \'' . $end . '\';
446
- wpaqNr = edButtons.length;
447
- edButtons[wpaqNr] = new edButton(\'ed_wpaq' . $i . '\', \'' . $b['txt'] . '\', wpaqStart, wpaqEnd,\'\');
448
- var wpaqBut = wpaqToolbar.lastChild;
449
- while (wpaqBut.nodeType != 1) {
450
- wpaqBut = wpaqBut.previousSibling;
451
- }
452
- wpaqBut = wpaqBut.cloneNode(true);
453
- wpaqToolbar.appendChild(wpaqBut);
454
- wpaqBut.value = \'' . $b['text'] . '\';
455
- wpaqBut.title = wpaqNr;
456
- wpaqBut.onclick = function () {edInsertTag(edCanvas, parseInt(this.title));}
457
- wpaqBut.id = "ed_wpaq' . $i .'";
458
- ';
459
  }
460
- echo '
 
 
 
 
 
 
 
461
  }
462
-
463
- //-->
464
  </script>
465
- ';
466
  }
467
  } //End wpaq_addsome
468
  } // End if
469
 
470
 
471
- // add to wp
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  if ( function_exists('register_activation_hook') )
473
  register_activation_hook(__FILE__, 'wpaq_install');
474
  if ( function_exists('register_uninstall_hook') )
@@ -504,13 +835,21 @@ function wpaq_filter_plugin_actions($links, $file){
504
  * @version WP 2.7
505
  * Add action link(s) to plugins page
506
  *
507
- * @package AddQuicktag
 
 
 
508
  */
509
- function wpaq_filter_plugin_actions_new($links) {
510
-
511
- $settings_link = '<a href="options-general.php?page=addquicktag/addquicktag.php">' . __('Settings') . '</a>';
512
- array_unshift( $links, $settings_link );
513
-
 
 
 
 
 
514
  return $links;
515
  }
516
 
@@ -580,14 +919,16 @@ function wpaq_add_settings_page() {
580
  if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
581
  $menutitle = '<img src="' . wpag_get_resource_url('addquicktag.gif') . '" alt="" />' . ' ';
582
  }
583
- $menutitle .= __('AddQuicktag', 'addquicktag');
584
 
585
- add_options_page( __('WP-Quicktag &ndash; AddQuicktag', 'addquicktag'), $menutitle, 9, $plugin, 'wpaq_options_page');
586
 
587
- if ( version_compare( $wp_version, '2.6.999', '<' ) ) {
588
  add_filter('plugin_action_links', 'wpaq_filter_plugin_actions', 10, 2);
589
  } else {
590
- add_filter( 'plugin_action_links_' . $plugin, 'wpaq_filter_plugin_actions_new' );
 
 
591
  }
592
  }
593
  }
2
  /**
3
  * @package AddQuicktag
4
  * @author Roel Meurders, Frank B&uuml;ltge
5
+ * @version 1.6.4
6
  */
7
 
8
  /**
9
  Plugin Name: AddQuicktag
10
  Plugin URI: http://bueltge.de/wp-addquicktags-de-plugin/120/
11
  Description: Allows you to easily add custom Quicktags to the editor. You can also export and import your Quicktags.
12
+ Author: Roel Meurders, Frank B&uuml;ltge
13
  Author URI: http://bueltge.de/
14
+ Version: 1.6.4
15
  License: GNU General Public License
16
+ Last Change: 01.12.2010 13:00:47
17
 
18
  This program is free software; you can redistribute it and/or modify
19
  it under the terms of the GNU General Public License as published by
35
  This Wordpress plugin is released under a GNU General Public License. A complete version of this license
36
  can be found here: http://www.gnu.org/licenses/gpl.txt
37
 
 
 
38
  This Wordpress plugin is released "as is". Without any warranty. The authors cannot
39
  be held responsible for any damage that this script might cause.
40
  */
46
  exit();
47
  }
48
 
49
+ if ( function_exists('add_action') ) {
50
+ // Pre-2.6 compatibility
51
+ if ( !defined('WP_CONTENT_URL') )
52
+ define( 'WP_CONTENT_URL', get_option('url') . '/wp-content');
53
+ if ( !defined('WP_CONTENT_DIR') )
54
+ define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
55
+ if ( !defined('WP_CONTENT_FOLDER') )
56
+ define( 'WP_CONTENT_FOLDER', str_replace(ABSPATH, '/', WP_CONTENT_DIR) );
57
+
58
+ // plugin definitions
59
+ define( 'FB_WPAQ_BASENAME', plugin_basename( __FILE__ ) );
60
+ define( 'FB_WPAQ_BASEFOLDER', plugin_basename( dirname( __FILE__ ) ) );
61
+ define( 'FB_WPAQ_TEXTDOMAIN', 'addquicktag' );
62
+ }
63
 
64
  // send file for save
65
  if ( isset( $_GET['export'] ) ) {
76
 
77
  if ( function_exists('load_plugin_textdomain') ) {
78
  if ( !defined('WP_PLUGIN_DIR') ) {
79
+ load_plugin_textdomain( FB_WPAQ_TEXTDOMAIN, str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages' );
80
  } else {
81
+ load_plugin_textdomain( FB_WPAQ_TEXTDOMAIN, false, dirname( plugin_basename(__FILE__) ) . '/languages' );
82
  }
83
  }
84
  }
92
  function wpaq_install() {
93
 
94
  $rmnlQuicktagSettings = array(
95
+ 'buttons' => array(
96
+ array(
97
+ 'text' => 'Example',
98
+ 'title' => 'Example Title',
99
+ 'start' => '<example>',
100
+ 'end' => '</example>'
101
+ )
102
+ )
103
+ );
104
  add_option('rmnlQuicktagSettings', $rmnlQuicktagSettings);
105
  }
106
 
113
  function wpaq_reset() {
114
 
115
  $rmnlQuicktagSettings = array(
116
+ 'buttons' => array(
117
+ array(
118
+ 'text' => 'Reset',
119
+ 'title' => 'Reset Title',
120
+ 'start' => '<reset>',
121
+ 'end' => '</reset>'
122
+ )
123
+ )
124
+ );
125
  update_option('rmnlQuicktagSettings', $rmnlQuicktagSettings);
126
  }
127
 
219
  for ($i = 0; $i < count($_POST['wpaq']['buttons']); $i++){
220
  $b = $_POST['wpaq']['buttons'][$i];
221
  if ($b['text'] != '' && $b['start'] != '') {
222
+ $b['text'] = $b['text'];
223
+ $b['title'] = $b['title'];
224
+ $b['start'] = stripslashes($b['start']);
225
+ $b['end'] = stripslashes($b['end']);
226
+ $buttons[] = $b;
227
  }
228
  }
229
  $_POST['wpaq']['buttons'] = $buttons;
230
  update_option('rmnlQuicktagSettings', $_POST['wpaq']);
231
+ $message = '<br class="clear" /><div class="updated fade"><p><strong>' . __('Options saved.', FB_WPAQ_TEXTDOMAIN ) . '</strong></p></div>';
232
 
233
  } else {
234
+ wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.', FB_WPAQ_TEXTDOMAIN ).'</p>');
235
  }
236
  }
237
 
242
  check_admin_referer('rmnl_nonce');
243
  wpaq_uninstall();
244
  $message_export = '<br class="clear" /><div class="updated fade"><p>';
245
+ $message_export.= __('AddQuicktag options have been deleted!', FB_WPAQ_TEXTDOMAIN );
246
  $message_export.= '</p></div>';
247
 
248
  } else {
249
+ wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.', FB_WPAQ_TEXTDOMAIN ).'</p>');
250
  }
251
  }
252
 
253
+ $string1 = __('Add or delete Quicktag buttons', FB_WPAQ_TEXTDOMAIN );
254
+ $string2 = __('Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields.', FB_WPAQ_TEXTDOMAIN );
255
+ $field1 = __('Button Label*', FB_WPAQ_TEXTDOMAIN );
256
+ $field2 = __('Title Attribute', FB_WPAQ_TEXTDOMAIN );
257
+ $field3 = __('Start Tag(s)*', FB_WPAQ_TEXTDOMAIN );
258
+ $field4 = __('End Tag(s)', FB_WPAQ_TEXTDOMAIN );
259
+ $button1 = __('Update Options &raquo;', FB_WPAQ_TEXTDOMAIN );
260
 
261
  // Export strings
262
+ $button2 = __('Export &raquo;', FB_WPAQ_TEXTDOMAIN );
263
+ $export1 = __('Export/Import AddQuicktag buttons options', FB_WPAQ_TEXTDOMAIN );
264
+ $export2 = __('You can save a .wpaq file with your options.', FB_WPAQ_TEXTDOMAIN );
265
+ $export3 = __('Export', FB_WPAQ_TEXTDOMAIN );
266
 
267
  // Import strings
268
+ $button3 = __('Upload file and import &raquo;', FB_WPAQ_TEXTDOMAIN );
269
+ $import1 = __('Import', FB_WPAQ_TEXTDOMAIN );
270
+ $import2 = __('Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>.', FB_WPAQ_TEXTDOMAIN );
271
+ $import3 = __('Choose a file from your computer: ', FB_WPAQ_TEXTDOMAIN );
272
 
273
  // Uninstall strings
274
+ $button4 = __('Uninstall Options &raquo;', FB_WPAQ_TEXTDOMAIN );
275
+ $uninstall1 = __('Uninstall options', FB_WPAQ_TEXTDOMAIN );
276
+ $uninstall2 = __('This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!', FB_WPAQ_TEXTDOMAIN );
277
 
278
  // Info
279
+ $info0 = __('About the plugin', FB_WPAQ_TEXTDOMAIN );
280
+ $info1 = __('Further information: Visit the <a href=\'http://bueltge.de/wp-addquicktags-de-plugin/120\'>plugin homepage</a> for further information or to grab the latest version of this plugin.', FB_WPAQ_TEXTDOMAIN );
281
+ $info2 = __('You want to thank me? Visit my <a href=\'http://bueltge.de/wunschliste/\'>wishlist</a> or donate.', FB_WPAQ_TEXTDOMAIN );
282
 
283
  // message for import, after redirect
284
  if ( strpos($_SERVER['REQUEST_URI'], 'addquicktag.php') && $_GET['update'] && !$_POST['uninstall'] ) {
285
  $message_export = '<br class="clear" /><div class="updated fade"><p>';
286
  if ( $_GET['update'] == 'true' ) {
287
+ $message_export .= __('AddQuicktag options imported!', FB_WPAQ_TEXTDOMAIN );
288
  } elseif( $_GET['update'] == 'exist' ) {
289
+ $message_export .= __('File is exist!', FB_WPAQ_TEXTDOMAIN );
290
  } elseif( $_GET['update'] == 'notexist' ) {
291
+ $message_export .= __('Invalid file extension!', FB_WPAQ_TEXTDOMAIN );
292
  }
293
  $message_export .= '</p></div>';
294
  }
297
 
298
  ?>
299
  <div class="wrap">
300
+ <h2><?php _e('WP-Quicktag Management', FB_WPAQ_TEXTDOMAIN ); ?></h2>
301
  <?php echo $message . $message_export; ?>
302
  <br class="clear" />
303
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
304
  <div class="postbox">
305
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
306
  <h3><?php echo $string1; ?></h3>
307
  <div class="inside">
308
  <br class="clear" />
314
  <th scope="col"><?php echo $field1; ?></th>
315
  <th scope="col"><?php echo $field2; ?></th>
316
  <th scope="col"><?php echo $field3; ?></th>
317
+ <th scope="col"><?php echo $field4; ?></th>
318
  </tr>
319
  </thead>
320
  <tbody>
321
  <?php
322
  for ($i = 0; $i < count($o['buttons']); $i++) {
323
+ $class = ( ' class="alternate"' == $class ) ? '' : ' class="alternate"';
324
  $b = $o['buttons'][$i];
325
  $b['text'] = htmlentities(stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset'));
326
+ $b['title'] = htmlentities(stripslashes($b['title']), ENT_COMPAT, get_option('blog_charset'));
327
  $b['start'] = htmlentities($b['start'], ENT_COMPAT, get_option('blog_charset'));
328
  $b['end'] = htmlentities($b['end'], ENT_COMPAT, get_option('blog_charset'));
329
  $nr = $i + 1;
330
  echo '
331
+ <tr valign="top"' . $class . '>
332
  <td><input type="text" name="wpaq[buttons][' . $i . '][text]" value="' . $b['text'] . '" style="width: 95%;" /></td>
333
+ <td><input type="text" name="wpaq[buttons][' . $i . '][title]" value="' . $b['title'] . '" style="width: 95%;" /></td>
334
  <td><textarea class="code" name="wpaq[buttons][' . $i . '][start]" rows="2" cols="25" style="width: 95%;">' . $b['start'] . '</textarea></td>
335
  <td><textarea class="code" name="wpaq[buttons][' . $i . '][end]" rows="2" cols="25" style="width: 95%;">' . $b['end'] . '</textarea></td>
336
  </tr>
337
  ';
338
  }
339
  ?>
340
+ <tr valign="top" class="alternate">
341
+ <td><input type="text" name="wpaq[buttons][<?php echo $i; ?>][text]" value="" style="width: 95%;" /></td>
342
+ <td><input type="text" name="wpaq[buttons][<?php echo $i; ?>][title]" value="" style="width: 95%;" /></td>
343
+ <td><textarea class="code" name="wpaq[buttons][<?php echo $i; ?>][start]" rows="2" cols="25" style="width: 95%;"></textarea></td>
344
+ <td><textarea class="code" name="wpaq[buttons][<?php echo $i; ?>][end]" rows="2" cols="25" style="width: 95%;"></textarea></td>
345
  </tr>
346
  </tbody>
347
  </table>
355
  </div>
356
  </div>
357
 
358
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
359
  <div class="postbox closed">
360
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
361
  <h3><?php echo $export1; ?></h3>
362
  <div class="inside">
363
 
388
  </div>
389
  </div>
390
 
391
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
392
  <div class="postbox closed">
393
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
394
  <h3><?php echo $uninstall1; ?></h3>
395
  <div class="inside">
396
 
407
  </div>
408
  </div>
409
 
410
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
411
+ <div class="postbox" >
412
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
413
  <h3><?php echo $info0; ?></h3>
414
  <div class="inside">
415
+ <p>
416
+ <span style="float: left;">
417
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
418
+ <input type="hidden" name="cmd" value="_s-xclick">
419
+ <input type="hidden" name="hosted_button_id" value="6069955">
420
+ <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
421
+ <img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
422
+ </form>
423
+ </span>
424
+ <?php echo $info1; ?><br />&copy; Copyright 2007 - <?php _e( date("Y") ); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php echo $info2; ?></p>
425
  </div>
426
  </div>
427
  </div>
428
 
429
  <script type="text/javascript">
430
  <!--
431
+ <?php if ( version_compare( $wp_version, '2.7alpha', '<' ) ) { ?>
432
  jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
433
  <?php } ?>
434
  jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
435
+ jQuery('.postbox .handlediv').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
436
+ jQuery('.postbox.close-me').each(function() {
437
  jQuery(this).addClass("closed");
438
  });
439
  //-->
447
  // only for post.php, page.php, post-new.php, page-new.php, comment.php
448
  if (strpos($_SERVER['REQUEST_URI'], 'post.php') || strpos($_SERVER['REQUEST_URI'], 'post-new.php') || strpos($_SERVER['REQUEST_URI'], 'page-new.php') || strpos($_SERVER['REQUEST_URI'], 'page.php') || strpos($_SERVER['REQUEST_URI'], 'comment.php')) {
449
  add_action('admin_footer', 'wpaq_addsome');
450
+
451
+ /**
452
+ * add quicktags to editor
453
+ *
454
+ * @package AddQuicktag
455
+ */
456
  function wpaq_addsome() {
457
  $o = get_option('rmnlQuicktagSettings');
458
  if (count($o['buttons']) > 0) {
459
+ ?>
460
  <script type="text/javascript">
461
+ //<![CDATA[
462
+ if ( wpaqToolbar = document.getElementById("ed_toolbar") ) {
463
+ <?php
464
+ for ($i = 0; $i < count($o['buttons']); $i++) :
465
+ $b = $o['buttons'][$i];
466
+ if ( version_compare(phpversion(), '5.0.0', '>=') )
467
+ $text = html_entity_decode( stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset') );
468
+ else
469
+ $text = wpaq_html_entity_decode_php4( stripslashes($b['text']) );
470
+ $text = str_replace('"', '\"', $text);
471
+ $id = strtolower($text);
472
+ $title = stripslashes($b['title']);
473
+ if ($title == '')
474
+ $title = strlen($text);
475
+ $title = preg_replace('![\n\r]+!', "\n", $title);
476
+ $title = str_replace("'", "\'", $title);
477
+ $title = str_replace('"', '\"', $title);
478
  $start = preg_replace('![\n\r]+!', "\\n", $b['start']);
479
  $start = str_replace("'", "\'", $start);
480
+ $start = str_replace('"', '\"', $start);
481
+ $end = preg_replace('![\n\r]+!', "\\n", $b['end']);
482
+ $end = str_replace("'", "\'", $end);
483
+ $end = str_replace('"', '\"', $end);
484
+ ?>
485
+ var wpaqNr, wpaqBut;
486
+ wpaqNr = edButtons.length;
487
+ edButtons[wpaqNr] = new edButton("ed_"+wpaqNr, "<?php echo $text; ?>", "<?php echo $start; ?>", "<?php echo $end; ?>", "");
488
+ var wpaqBut = wpaqToolbar.lastChild;
489
+ while (wpaqBut.nodeType != 1) {
490
+ wpaqBut = wpaqBut.previousSibling;
 
 
 
 
 
 
 
491
  }
492
+ wpaqBut = wpaqBut.cloneNode(true);
493
+ wpaqBut.id = "ed_"+wpaqNr;
494
+ wpaqBut._idx = wpaqNr; //store our current index at element itself
495
+ wpaqBut.value = "<?php echo $text; ?>";
496
+ wpaqBut.title = "<?php echo $title; ?>";
497
+ wpaqBut.onclick = function() {edInsertTag(edCanvas, this._idx); return false; }
498
+ wpaqToolbar.appendChild(wpaqBut);
499
+ <?php endfor; ?>
500
  }
501
+ //]]>
 
502
  </script>
503
+ <?php
504
  }
505
  } //End wpaq_addsome
506
  } // End if
507
 
508
 
509
+ /**
510
+ * code to utf-8 in PHP 4
511
+ *
512
+ * @package AddQuicktag
513
+ */
514
+ function wpaq_code_to_utf8($num) {
515
+
516
+ if ($num <= 0x7F) {
517
+ return chr($num);
518
+ } elseif ($num <= 0x7FF) {
519
+ return chr(($num >> 0x06) + 0xC0) . chr(($num & 0x3F) + 128);
520
+ } elseif ($num <= 0xFFFF) {
521
+ return chr(($num >> 0x0C) + 0xE0) . chr((($num >> 0x06) & 0x3F) + 0x80) . chr(($num & 0x3F) + 0x80);
522
+ } elseif ($num <= 0x1FFFFF) {
523
+ return chr(($num >> 0x12) + 0xF0) . chr((($num >> 0x0C) & 0x3F) + 0x80) . chr((($num >> 0x06) & 0x3F) + 0x80) . chr(($num & 0x3F) + 0x80);
524
+ }
525
+
526
+ return '';
527
+ }
528
+
529
+
530
+ /**
531
+ * html_entity_decode for PHP 4
532
+ *
533
+ * @package AddQuicktag
534
+ */
535
+ function wpaq_html_entity_decode_php4($str) {
536
+ $htmlentities = array (
537
+ "&Aacute;" => chr(195).chr(129),
538
+ "&aacute;" => chr(195).chr(161),
539
+ "&Acirc;" => chr(195).chr(130),
540
+ "&acirc;" => chr(195).chr(162),
541
+ "&acute;" => chr(194).chr(180),
542
+ "&AElig;" => chr(195).chr(134),
543
+ "&aelig;" => chr(195).chr(166),
544
+ "&Agrave;" => chr(195).chr(128),
545
+ "&agrave;" => chr(195).chr(160),
546
+ "&alefsym;" => chr(226).chr(132).chr(181),
547
+ "&Alpha;" => chr(206).chr(145),
548
+ "&alpha;" => chr(206).chr(177),
549
+ "&amp;" => chr(38),
550
+ "&and;" => chr(226).chr(136).chr(167),
551
+ "&ang;" => chr(226).chr(136).chr(160),
552
+ "&Aring;" => chr(195).chr(133),
553
+ "&aring;" => chr(195).chr(165),
554
+ "&asymp;" => chr(226).chr(137).chr(136),
555
+ "&Atilde;" => chr(195).chr(131),
556
+ "&atilde;" => chr(195).chr(163),
557
+ "&Auml;" => chr(195).chr(132),
558
+ "&auml;" => chr(195).chr(164),
559
+ "&bdquo;" => chr(226).chr(128).chr(158),
560
+ "&Beta;" => chr(206).chr(146),
561
+ "&beta;" => chr(206).chr(178),
562
+ "&brvbar;" => chr(194).chr(166),
563
+ "&bull;" => chr(226).chr(128).chr(162),
564
+ "&cap;" => chr(226).chr(136).chr(169),
565
+ "&Ccedil;" => chr(195).chr(135),
566
+ "&ccedil;" => chr(195).chr(167),
567
+ "&cedil;" => chr(194).chr(184),
568
+ "&cent;" => chr(194).chr(162),
569
+ "&Chi;" => chr(206).chr(167),
570
+ "&chi;" => chr(207).chr(135),
571
+ "&circ;" => chr(203).chr(134),
572
+ "&clubs;" => chr(226).chr(153).chr(163),
573
+ "&cong;" => chr(226).chr(137).chr(133),
574
+ "&copy;" => chr(194).chr(169),
575
+ "&crarr;" => chr(226).chr(134).chr(181),
576
+ "&cup;" => chr(226).chr(136).chr(170),
577
+ "&curren;" => chr(194).chr(164),
578
+ "&dagger;" => chr(226).chr(128).chr(160),
579
+ "&Dagger;" => chr(226).chr(128).chr(161),
580
+ "&darr;" => chr(226).chr(134).chr(147),
581
+ "&dArr;" => chr(226).chr(135).chr(147),
582
+ "&deg;" => chr(194).chr(176),
583
+ "&Delta;" => chr(206).chr(148),
584
+ "&delta;" => chr(206).chr(180),
585
+ "&diams;" => chr(226).chr(153).chr(166),
586
+ "&divide;" => chr(195).chr(183),
587
+ "&Eacute;" => chr(195).chr(137),
588
+ "&eacute;" => chr(195).chr(169),
589
+ "&Ecirc;" => chr(195).chr(138),
590
+ "&ecirc;" => chr(195).chr(170),
591
+ "&Egrave;" => chr(195).chr(136),
592
+ "&egrave;" => chr(195).chr(168),
593
+ "&empty;" => chr(226).chr(136).chr(133),
594
+ "&emsp;" => chr(226).chr(128).chr(131),
595
+ "&ensp;" => chr(226).chr(128).chr(130),
596
+ "&Epsilon;" => chr(206).chr(149),
597
+ "&epsilon;" => chr(206).chr(181),
598
+ "&equiv;" => chr(226).chr(137).chr(161),
599
+ "&Eta;" => chr(206).chr(151),
600
+ "&eta;" => chr(206).chr(183),
601
+ "&ETH;" => chr(195).chr(144),
602
+ "&eth;" => chr(195).chr(176),
603
+ "&Euml;" => chr(195).chr(139),
604
+ "&euml;" => chr(195).chr(171),
605
+ "&euro;" => chr(226).chr(130).chr(172),
606
+ "&exist;" => chr(226).chr(136).chr(131),
607
+ "&fnof;" => chr(198).chr(146),
608
+ "&forall;" => chr(226).chr(136).chr(128),
609
+ "&frac12;" => chr(194).chr(189),
610
+ "&frac14;" => chr(194).chr(188),
611
+ "&frac34;" => chr(194).chr(190),
612
+ "&frasl;" => chr(226).chr(129).chr(132),
613
+ "&Gamma;" => chr(206).chr(147),
614
+ "&gamma;" => chr(206).chr(179),
615
+ "&ge;" => chr(226).chr(137).chr(165),
616
+ "&harr;" => chr(226).chr(134).chr(148),
617
+ "&hArr;" => chr(226).chr(135).chr(148),
618
+ "&hearts;" => chr(226).chr(153).chr(165),
619
+ "&hellip;" => chr(226).chr(128).chr(166),
620
+ "&Iacute;" => chr(195).chr(141),
621
+ "&iacute;" => chr(195).chr(173),
622
+ "&Icirc;" => chr(195).chr(142),
623
+ "&icirc;" => chr(195).chr(174),
624
+ "&iexcl;" => chr(194).chr(161),
625
+ "&Igrave;" => chr(195).chr(140),
626
+ "&igrave;" => chr(195).chr(172),
627
+ "&image;" => chr(226).chr(132).chr(145),
628
+ "&infin;" => chr(226).chr(136).chr(158),
629
+ "&int;" => chr(226).chr(136).chr(171),
630
+ "&Iota;" => chr(206).chr(153),
631
+ "&iota;" => chr(206).chr(185),
632
+ "&iquest;" => chr(194).chr(191),
633
+ "&isin;" => chr(226).chr(136).chr(136),
634
+ "&Iuml;" => chr(195).chr(143),
635
+ "&iuml;" => chr(195).chr(175),
636
+ "&Kappa;" => chr(206).chr(154),
637
+ "&kappa;" => chr(206).chr(186),
638
+ "&Lambda;" => chr(206).chr(155),
639
+ "&lambda;" => chr(206).chr(187),
640
+ "&lang;" => chr(226).chr(140).chr(169),
641
+ "&laquo;" => chr(194).chr(171),
642
+ "&larr;" => chr(226).chr(134).chr(144),
643
+ "&lArr;" => chr(226).chr(135).chr(144),
644
+ "&lceil;" => chr(226).chr(140).chr(136),
645
+ "&ldquo;" => chr(226).chr(128).chr(156),
646
+ "&le;" => chr(226).chr(137).chr(164),
647
+ "&lfloor;" => chr(226).chr(140).chr(138),
648
+ "&lowast;" => chr(226).chr(136).chr(151),
649
+ "&loz;" => chr(226).chr(151).chr(138),
650
+ "&lrm;" => chr(226).chr(128).chr(142),
651
+ "&lsaquo;" => chr(226).chr(128).chr(185),
652
+ "&lsquo;" => chr(226).chr(128).chr(152),
653
+ "&macr;" => chr(194).chr(175),
654
+ "&mdash;" => chr(226).chr(128).chr(148),
655
+ "&micro;" => chr(194).chr(181),
656
+ "&middot;" => chr(194).chr(183),
657
+ "&minus;" => chr(226).chr(136).chr(146),
658
+ "&Mu;" => chr(206).chr(156),
659
+ "&mu;" => chr(206).chr(188),
660
+ "&nabla;" => chr(226).chr(136).chr(135),
661
+ "&nbsp;" => chr(194).chr(160),
662
+ "&ndash;" => chr(226).chr(128).chr(147),
663
+ "&ne;" => chr(226).chr(137).chr(160),
664
+ "&ni;" => chr(226).chr(136).chr(139),
665
+ "&not;" => chr(194).chr(172),
666
+ "&notin;" => chr(226).chr(136).chr(137),
667
+ "&nsub;" => chr(226).chr(138).chr(132),
668
+ "&Ntilde;" => chr(195).chr(145),
669
+ "&ntilde;" => chr(195).chr(177),
670
+ "&Nu;" => chr(206).chr(157),
671
+ "&nu;" => chr(206).chr(189),
672
+ "&Oacute;" => chr(195).chr(147),
673
+ "&oacute;" => chr(195).chr(179),
674
+ "&Ocirc;" => chr(195).chr(148),
675
+ "&ocirc;" => chr(195).chr(180),
676
+ "&OElig;" => chr(197).chr(146),
677
+ "&oelig;" => chr(197).chr(147),
678
+ "&Ograve;" => chr(195).chr(146),
679
+ "&ograve;" => chr(195).chr(178),
680
+ "&oline;" => chr(226).chr(128).chr(190),
681
+ "&Omega;" => chr(206).chr(169),
682
+ "&omega;" => chr(207).chr(137),
683
+ "&Omicron;" => chr(206).chr(159),
684
+ "&omicron;" => chr(206).chr(191),
685
+ "&oplus;" => chr(226).chr(138).chr(149),
686
+ "&or;" => chr(226).chr(136).chr(168),
687
+ "&ordf;" => chr(194).chr(170),
688
+ "&ordm;" => chr(194).chr(186),
689
+ "&Oslash;" => chr(195).chr(152),
690
+ "&oslash;" => chr(195).chr(184),
691
+ "&Otilde;" => chr(195).chr(149),
692
+ "&otilde;" => chr(195).chr(181),
693
+ "&otimes;" => chr(226).chr(138).chr(151),
694
+ "&Ouml;" => chr(195).chr(150),
695
+ "&ouml;" => chr(195).chr(182),
696
+ "&para;" => chr(194).chr(182),
697
+ "&part;" => chr(226).chr(136).chr(130),
698
+ "&permil;" => chr(226).chr(128).chr(176),
699
+ "&perp;" => chr(226).chr(138).chr(165),
700
+ "&Phi;" => chr(206).chr(166),
701
+ "&phi;" => chr(207).chr(134),
702
+ "&Pi;" => chr(206).chr(160),
703
+ "&pi;" => chr(207).chr(128),
704
+ "&piv;" => chr(207).chr(150),
705
+ "&plusmn;" => chr(194).chr(177),
706
+ "&pound;" => chr(194).chr(163),
707
+ "&prime;" => chr(226).chr(128).chr(178),
708
+ "&Prime;" => chr(226).chr(128).chr(179),
709
+ "&prod;" => chr(226).chr(136).chr(143),
710
+ "&prop;" => chr(226).chr(136).chr(157),
711
+ "&Psi;" => chr(206).chr(168),
712
+ "&psi;" => chr(207).chr(136),
713
+ "&radic;" => chr(226).chr(136).chr(154),
714
+ "&rang;" => chr(226).chr(140).chr(170),
715
+ "&raquo;" => chr(194).chr(187),
716
+ "&rarr;" => chr(226).chr(134).chr(146),
717
+ "&rArr;" => chr(226).chr(135).chr(146),
718
+ "&rceil;" => chr(226).chr(140).chr(137),
719
+ "&rdquo;" => chr(226).chr(128).chr(157),
720
+ "&real;" => chr(226).chr(132).chr(156),
721
+ "&reg;" => chr(194).chr(174),
722
+ "&rfloor;" => chr(226).chr(140).chr(139),
723
+ "&Rho;" => chr(206).chr(161),
724
+ "&rho;" => chr(207).chr(129),
725
+ "&rlm;" => chr(226).chr(128).chr(143),
726
+ "&rsaquo;" => chr(226).chr(128).chr(186),
727
+ "&rsquo;" => chr(226).chr(128).chr(153),
728
+ "&sbquo;" => chr(226).chr(128).chr(154),
729
+ "&Scaron;" => chr(197).chr(160),
730
+ "&scaron;" => chr(197).chr(161),
731
+ "&sdot;" => chr(226).chr(139).chr(133),
732
+ "&sect;" => chr(194).chr(167),
733
+ "&shy;" => chr(194).chr(173),
734
+ "&Sigma;" => chr(206).chr(163),
735
+ "&sigma;" => chr(207).chr(131),
736
+ "&sigmaf;" => chr(207).chr(130),
737
+ "&sim;" => chr(226).chr(136).chr(188),
738
+ "&spades;" => chr(226).chr(153).chr(160),
739
+ "&sub;" => chr(226).chr(138).chr(130),
740
+ "&sube;" => chr(226).chr(138).chr(134),
741
+ "&sum;" => chr(226).chr(136).chr(145),
742
+ "&sup1;" => chr(194).chr(185),
743
+ "&sup2;" => chr(194).chr(178),
744
+ "&sup3;" => chr(194).chr(179),
745
+ "&sup;" => chr(226).chr(138).chr(131),
746
+ "&supe;" => chr(226).chr(138).chr(135),
747
+ "&szlig;" => chr(195).chr(159),
748
+ "&Tau;" => chr(206).chr(164),
749
+ "&tau;" => chr(207).chr(132),
750
+ "&there4;" => chr(226).chr(136).chr(180),
751
+ "&Theta;" => chr(206).chr(152),
752
+ "&theta;" => chr(206).chr(184),
753
+ "&thetasym;" => chr(207).chr(145),
754
+ "&thinsp;" => chr(226).chr(128).chr(137),
755
+ "&THORN;" => chr(195).chr(158),
756
+ "&thorn;" => chr(195).chr(190),
757
+ "&tilde;" => chr(203).chr(156),
758
+ "&times;" => chr(195).chr(151),
759
+ "&trade;" => chr(226).chr(132).chr(162),
760
+ "&Uacute;" => chr(195).chr(154),
761
+ "&uacute;" => chr(195).chr(186),
762
+ "&uarr;" => chr(226).chr(134).chr(145),
763
+ "&uArr;" => chr(226).chr(135).chr(145),
764
+ "&Ucirc;" => chr(195).chr(155),
765
+ "&ucirc;" => chr(195).chr(187),
766
+ "&Ugrave;" => chr(195).chr(153),
767
+ "&ugrave;" => chr(195).chr(185),
768
+ "&uml;" => chr(194).chr(168),
769
+ "&upsih;" => chr(207).chr(146),
770
+ "&Upsilon;" => chr(206).chr(165),
771
+ "&upsilon;" => chr(207).chr(133),
772
+ "&Uuml;" => chr(195).chr(156),
773
+ "&uuml;" => chr(195).chr(188),
774
+ "&weierp;" => chr(226).chr(132).chr(152),
775
+ "&Xi;" => chr(206).chr(158),
776
+ "&xi;" => chr(206).chr(190),
777
+ "&Yacute;" => chr(195).chr(157),
778
+ "&yacute;" => chr(195).chr(189),
779
+ "&yen;" => chr(194).chr(165),
780
+ "&yuml;" => chr(195).chr(191),
781
+ "&Yuml;" => chr(197).chr(184),
782
+ "&Zeta;" => chr(206).chr(150),
783
+ "&zeta;" => chr(206).chr(182),
784
+ "&zwj;" => chr(226).chr(128).chr(141),
785
+ "&zwnj;" => chr(226).chr(128).chr(140),
786
+ "&gt;" => ">",
787
+ "&lt;" => "<"
788
+ );
789
+
790
+ $return = strtr($str, $htmlentities);
791
+ $return = preg_replace("~&#x([0-9a-f]+);~ei", "wpaq_code_to_utf8(hexdec(\\1))", $return);
792
+ $return = preg_replace("~&#([0-9]+);~e", "wpaq_code_to_utf8(\\1)", $return);
793
+
794
+ return $return;
795
+ }
796
+
797
+
798
+ /**
799
+ * hook in WP
800
+ *
801
+ * @package AddQuicktag
802
+ */
803
  if ( function_exists('register_activation_hook') )
804
  register_activation_hook(__FILE__, 'wpaq_install');
805
  if ( function_exists('register_uninstall_hook') )
835
  * @version WP 2.7
836
  * Add action link(s) to plugins page
837
  *
838
+ * @package Secure WordPress
839
+ *
840
+ * @param $links, $file
841
+ * @return $links
842
  */
843
+ function wpaq_filter_plugin_actions_new($links, $file) {
844
+
845
+ /* create link */
846
+ if ( $file == FB_WPAQ_BASENAME ) {
847
+ array_unshift(
848
+ $links,
849
+ sprintf( '<a href="options-general.php?page=%s">%s</a>', FB_WPAQ_BASENAME, __('Settings') )
850
+ );
851
+ }
852
+
853
  return $links;
854
  }
855
 
919
  if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
920
  $menutitle = '<img src="' . wpag_get_resource_url('addquicktag.gif') . '" alt="" />' . ' ';
921
  }
922
+ $menutitle .= __('AddQuicktag', FB_WPAQ_TEXTDOMAIN );
923
 
924
+ add_options_page( __('WP-Quicktag &ndash; AddQuicktag', FB_WPAQ_TEXTDOMAIN ), $menutitle, 'manage_options', $plugin, 'wpaq_options_page');
925
 
926
+ if ( version_compare( $wp_version, '2.7alpha', '<' ) ) {
927
  add_filter('plugin_action_links', 'wpaq_filter_plugin_actions', 10, 2);
928
  } else {
929
+ add_filter( 'plugin_action_links_' . $plugin, 'wpaq_filter_plugin_actions_new', 10, 2 );
930
+ if ( version_compare( $wp_version, '2.8alpha', '>' ) )
931
+ add_filter( 'plugin_row_meta', 'wpaq_filter_plugin_actions_new', 10, 2 );
932
  }
933
  }
934
  }
languages/addquicktag-cs_CZ.mo ADDED
Binary file
languages/addquicktag-cs_CZ.po ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: addquicktags CZ\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-01 14:39+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Pepawo <jklimosz@gmail.com>\n"
8
+ "Language-Team: Pepawo <jklimosz@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Czech\n"
13
+ "X-Poedit-Country: CZECH REPUBLIC\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ ": "
19
+
20
+ #: addquicktag.php:110
21
+ msgid "Options saved."
22
+ msgstr "Nastavení uložena."
23
+
24
+ #: addquicktag.php:113
25
+ #: addquicktag.php:145
26
+ #: addquicktag.php:183
27
+ #: addquicktag.php:198
28
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
29
+ msgstr "nemáte dostatečné oprávnění k editaci pluginů na tomto webu."
30
+
31
+ #: addquicktag.php:129
32
+ msgid "Can not open for write!"
33
+ msgstr "Nelze otevřít pro zápis!"
34
+
35
+ #: addquicktag.php:136
36
+ msgid "Can not write!"
37
+ msgstr "Nelze zapisovat!"
38
+
39
+ #: addquicktag.php:139
40
+ msgid "AddQuicktag options saved!"
41
+ msgstr "Nastavení AddQuicktag uložena!"
42
+
43
+ #: addquicktag.php:140
44
+ msgid "Saved in: "
45
+ msgstr "Uloženo do: "
46
+
47
+ #: addquicktag.php:161
48
+ msgid "Invalid file extension!"
49
+ msgstr "Nesprávná přípona souboru!"
50
+
51
+ #: addquicktag.php:163
52
+ msgid "File is exist!"
53
+ msgstr "Soubor existuje!"
54
+
55
+ #: addquicktag.php:178
56
+ msgid "AddQuicktag options imported!"
57
+ msgstr "Nastavení AddQuicktag importována!"
58
+
59
+ #: addquicktag.php:194
60
+ msgid "AddQuicktag options have been deleted!"
61
+ msgstr "Nastavení AddQuicktag byla vymazána!"
62
+
63
+ #: addquicktag.php:202
64
+ msgid "Add or delete Quicktag buttons"
65
+ msgstr "Přidat nebo zrušit tlačítka Quicktag"
66
+
67
+ #: addquicktag.php:203
68
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
69
+ msgstr "Vyplňte pole níže a editujte nebo přidejte Quicktag. Pole označená * jsou vyžadována. Quicktag vymažete jednoduše tak, že necháte všechna pole prázdná."
70
+
71
+ #: addquicktag.php:204
72
+ msgid "Button Label*"
73
+ msgstr "Název tlačítka *"
74
+
75
+ #: addquicktag.php:205
76
+ msgid "Start Tag(s)*"
77
+ msgstr "Počáteční značka *"
78
+
79
+ #: addquicktag.php:206
80
+ msgid "End Tag(s)"
81
+ msgstr "Koncová značka"
82
+
83
+ #: addquicktag.php:207
84
+ msgid "Update Options &raquo;"
85
+ msgstr "Aktualizovat nastavení &raquo;"
86
+
87
+ #: addquicktag.php:210
88
+ msgid "Export &raquo;"
89
+ msgstr "Export &raquo;"
90
+
91
+ #: addquicktag.php:211
92
+ msgid "Export Quicktag buttons options"
93
+ msgstr "Export nastavení tlačítek Quicktag"
94
+
95
+ #: addquicktag.php:212
96
+ msgid "You can save a .wpaq file with your options in <em>"
97
+ msgstr "Můžete uložit soubor .wpaq se všemi nastaveními do <em>"
98
+
99
+ #: addquicktag.php:212
100
+ msgid "/wpaq_export.wpaq</em>"
101
+ msgstr "/wpaq_export.wpaq</em>"
102
+
103
+ #: addquicktag.php:215
104
+ msgid "Upload file and import &raquo;"
105
+ msgstr "Nahrání souboru a import &raquo;"
106
+
107
+ #: addquicktag.php:216
108
+ msgid "Import Quicktag buttons options"
109
+ msgstr "Import nastavení tlačítek Quicktag"
110
+
111
+ #: addquicktag.php:217
112
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
113
+ msgstr "Zvolte soubor (.wpaq) k nahrávání a klikněte na <em>Nahrání souboru a import</em>."
114
+
115
+ #: addquicktag.php:218
116
+ msgid "Choose a file from your computer: "
117
+ msgstr "Vyberte soubor z počítače: "
118
+
119
+ #: addquicktag.php:221
120
+ msgid "Uninstall Options &raquo;"
121
+ msgstr "Odinstalování nastavení &raquo;"
122
+
123
+ #: addquicktag.php:222
124
+ msgid "Uninstall options"
125
+ msgstr "Odinstalování nastavení"
126
+
127
+ #: addquicktag.php:223
128
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
129
+ msgstr "Toto tlačítko vymaže všechna nastavení pluginu WP-AddQuicktag. <strong>Pozor: </strong>Akci nelze vrátit!"
130
+
131
+ #: addquicktag.php:226
132
+ msgid "About the plugin"
133
+ msgstr "O pluginu"
134
+
135
+ #: addquicktag.php:227
136
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
137
+ msgstr "Další informace: navštivte <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>stránky pluginu</a> pro získání dalších informací nebo poslední verze pluginu."
138
+
139
+ #: addquicktag.php:228
140
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
141
+ msgstr "Chcete mi poděkovat? Navštivte moji <a href='http://bueltge.de/wunschliste/'>Knihu hostů</a>."
142
+
143
+ #: addquicktag.php:233
144
+ msgid "WP-Quicktag Management"
145
+ msgstr "Správa WP-Quicktag"
146
+
147
+ #: addquicktag.php:443
148
+ #: addquicktag.php:456
149
+ msgid "Settings"
150
+ msgstr "Nastavení"
151
+
152
+ #: addquicktag.php:522
153
+ msgid "Add Quicktag"
154
+ msgstr "Přidat Quicktag"
155
+
156
+ #: addquicktag.php:524
157
+ msgid "WP-Quicktag &ndash; Add Quicktag"
158
+ msgstr "WP-Quicktag &ndash; Přidat Quicktag"
159
+
160
+ #: addquicktag.php:541
161
+ msgid "Version"
162
+ msgstr "Verze"
163
+
164
+ #: addquicktag.php:541
165
+ msgid "Author"
166
+ msgstr "Autor"
167
+
languages/addquicktag-de_DE.mo CHANGED
Binary file
languages/addquicktag-de_DE.po CHANGED
@@ -2,149 +2,160 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AddQuicktag\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-20 10:37+0100\n"
6
- "PO-Revision-Date: 2009-02-20 10:39+0100\n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _e;__\n"
13
- "X-Poedit-Basepath: D:\\Eigene\\WP-Plugins\\AddQuicktag\\trunk\\\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: addquicktag.php:165
17
  msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
18
  msgstr "Einstellungen wurden nicht aktuallisiert - du hast nicht ausreichend Rechte!"
19
 
20
- #: addquicktag.php:223
21
  msgid "Options saved."
22
  msgstr "Einstellungen gespeichert."
23
 
24
- #: addquicktag.php:226
25
- #: addquicktag.php:241
26
  msgid "You do not have sufficient permissions to edit plugins for this blog."
27
  msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
28
 
29
- #: addquicktag.php:237
30
  msgid "AddQuicktag options have been deleted!"
31
  msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
32
 
33
- #: addquicktag.php:245
34
  msgid "Add or delete Quicktag buttons"
35
  msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
36
 
37
- #: addquicktag.php:246
38
  msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
39
  msgstr "Fülle das Feld unterhalb der bestehenden Buttons oder ändere einen Quicktag. Felder mit * sind Pflichtfelder. Um Quicktags zu löschen, einfach den Inhalt der zugehörigen Felder löschen."
40
 
41
- #: addquicktag.php:247
42
  msgid "Button Label*"
43
  msgstr "Button Name*"
44
 
45
- #: addquicktag.php:248
 
 
 
 
46
  msgid "Start Tag(s)*"
47
  msgstr "Start Tag(s)*"
48
 
49
- #: addquicktag.php:249
50
  msgid "End Tag(s)"
51
  msgstr "Ende Tag(s)"
52
 
53
- #: addquicktag.php:250
54
  msgid "Update Options &raquo;"
55
  msgstr "Einstellungen aktualisieren &raquo;"
56
 
57
- #: addquicktag.php:253
58
  msgid "Export &raquo;"
59
  msgstr "Exportieren &raquo;"
60
 
61
- #: addquicktag.php:254
62
  msgid "Export/Import AddQuicktag buttons options"
63
  msgstr "Exportiere/Importiere deine Quicktag-buttons"
64
 
65
- #: addquicktag.php:255
66
  msgid "You can save a .wpaq file with your options."
67
  msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen speichern."
68
 
69
- #: addquicktag.php:256
70
  msgid "Export"
71
  msgstr "Export"
72
 
73
- #: addquicktag.php:259
74
  msgid "Upload file and import &raquo;"
75
  msgstr "Datei hochladen und importieren &raquo;"
76
 
77
- #: addquicktag.php:260
78
  msgid "Import"
79
  msgstr "Import"
80
 
81
- #: addquicktag.php:261
82
  msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
83
  msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
84
 
85
- #: addquicktag.php:262
86
  msgid "Choose a file from your computer: "
87
  msgstr "Wähle eine Datei von deinem Rechner. "
88
 
89
- #: addquicktag.php:265
90
  msgid "Uninstall Options &raquo;"
91
  msgstr "Einstellungen löschen &raquo;"
92
 
93
- #: addquicktag.php:266
94
  msgid "Uninstall options"
95
  msgstr "Deinstalliere Einstellungen"
96
 
97
- #: addquicktag.php:267
98
  msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
99
  msgstr "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
100
 
101
- #: addquicktag.php:270
102
  msgid "About the plugin"
103
  msgstr "Über das Plugin"
104
 
105
- #: addquicktag.php:271
106
  msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
107
  msgstr "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>Plugin Homepage</a> für weitere Informationen oder hole die letzte Version des Plugins."
108
 
109
- #: addquicktag.php:272
110
- msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
111
- msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
112
 
113
- #: addquicktag.php:278
114
  msgid "AddQuicktag options imported!"
115
  msgstr "AddQuicktag Einstellungen importiert!"
116
 
117
- #: addquicktag.php:280
118
  msgid "File is exist!"
119
  msgstr "Datei nicht vorhanden!"
120
 
121
- #: addquicktag.php:282
122
  msgid "Invalid file extension!"
123
  msgstr "Nicht zulässige Dateierweiterung!"
124
 
125
- #: addquicktag.php:291
126
  #, fuzzy
127
  msgid "WP-Quicktag Management"
128
  msgstr "WP-Quicktag Verwaltung"
129
 
130
- #: addquicktag.php:496
131
- #: addquicktag.php:511
 
 
 
 
 
 
 
132
  msgid "Settings"
133
  msgstr "Einstellungen"
134
 
135
- #: addquicktag.php:583
136
  msgid "AddQuicktag"
137
  msgstr "AddQuicktag"
138
 
139
- #: addquicktag.php:585
140
  msgid "WP-Quicktag &ndash; AddQuicktag"
141
  msgstr "WP-Quicktag &ndash; AddQuicktag"
142
 
143
- #: addquicktag.php:604
144
  msgid "Version"
145
  msgstr "Version"
146
 
147
- #: addquicktag.php:604
148
  msgid "Author"
149
  msgstr "Autor"
150
 
2
  msgstr ""
3
  "Project-Id-Version: AddQuicktag\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-16 08:13+0100\n"
6
+ "PO-Revision-Date: 2009-06-16 08:13+0100\n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: ..\\\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: addquicktag.php:172
17
  msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
18
  msgstr "Einstellungen wurden nicht aktuallisiert - du hast nicht ausreichend Rechte!"
19
 
20
+ #: addquicktag.php:231
21
  msgid "Options saved."
22
  msgstr "Einstellungen gespeichert."
23
 
24
+ #: addquicktag.php:234
25
+ #: addquicktag.php:249
26
  msgid "You do not have sufficient permissions to edit plugins for this blog."
27
  msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
28
 
29
+ #: addquicktag.php:245
30
  msgid "AddQuicktag options have been deleted!"
31
  msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
32
 
33
+ #: addquicktag.php:253
34
  msgid "Add or delete Quicktag buttons"
35
  msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
36
 
37
+ #: addquicktag.php:254
38
  msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
39
  msgstr "Fülle das Feld unterhalb der bestehenden Buttons oder ändere einen Quicktag. Felder mit * sind Pflichtfelder. Um Quicktags zu löschen, einfach den Inhalt der zugehörigen Felder löschen."
40
 
41
+ #: addquicktag.php:255
42
  msgid "Button Label*"
43
  msgstr "Button Name*"
44
 
45
+ #: addquicktag.php:256
46
+ msgid "Title Attribute"
47
+ msgstr "Title Attribut"
48
+
49
+ #: addquicktag.php:257
50
  msgid "Start Tag(s)*"
51
  msgstr "Start Tag(s)*"
52
 
53
+ #: addquicktag.php:258
54
  msgid "End Tag(s)"
55
  msgstr "Ende Tag(s)"
56
 
57
+ #: addquicktag.php:259
58
  msgid "Update Options &raquo;"
59
  msgstr "Einstellungen aktualisieren &raquo;"
60
 
61
+ #: addquicktag.php:262
62
  msgid "Export &raquo;"
63
  msgstr "Exportieren &raquo;"
64
 
65
+ #: addquicktag.php:263
66
  msgid "Export/Import AddQuicktag buttons options"
67
  msgstr "Exportiere/Importiere deine Quicktag-buttons"
68
 
69
+ #: addquicktag.php:264
70
  msgid "You can save a .wpaq file with your options."
71
  msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen speichern."
72
 
73
+ #: addquicktag.php:265
74
  msgid "Export"
75
  msgstr "Export"
76
 
77
+ #: addquicktag.php:268
78
  msgid "Upload file and import &raquo;"
79
  msgstr "Datei hochladen und importieren &raquo;"
80
 
81
+ #: addquicktag.php:269
82
  msgid "Import"
83
  msgstr "Import"
84
 
85
+ #: addquicktag.php:270
86
  msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
87
  msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
88
 
89
+ #: addquicktag.php:271
90
  msgid "Choose a file from your computer: "
91
  msgstr "Wähle eine Datei von deinem Rechner. "
92
 
93
+ #: addquicktag.php:274
94
  msgid "Uninstall Options &raquo;"
95
  msgstr "Einstellungen löschen &raquo;"
96
 
97
+ #: addquicktag.php:275
98
  msgid "Uninstall options"
99
  msgstr "Deinstalliere Einstellungen"
100
 
101
+ #: addquicktag.php:276
102
  msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
103
  msgstr "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
104
 
105
+ #: addquicktag.php:279
106
  msgid "About the plugin"
107
  msgstr "Über das Plugin"
108
 
109
+ #: addquicktag.php:280
110
  msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
111
  msgstr "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>Plugin Homepage</a> für weitere Informationen oder hole die letzte Version des Plugins."
112
 
113
+ #: addquicktag.php:281
114
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a> or donate."
115
+ msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a> oder spende."
116
 
117
+ #: addquicktag.php:287
118
  msgid "AddQuicktag options imported!"
119
  msgstr "AddQuicktag Einstellungen importiert!"
120
 
121
+ #: addquicktag.php:289
122
  msgid "File is exist!"
123
  msgstr "Datei nicht vorhanden!"
124
 
125
+ #: addquicktag.php:291
126
  msgid "Invalid file extension!"
127
  msgstr "Nicht zulässige Dateierweiterung!"
128
 
129
+ #: addquicktag.php:300
130
  #, fuzzy
131
  msgid "WP-Quicktag Management"
132
  msgstr "WP-Quicktag Verwaltung"
133
 
134
+ #: addquicktag.php:305
135
+ #: addquicktag.php:360
136
+ #: addquicktag.php:393
137
+ #: addquicktag.php:412
138
+ msgid "Click to toggle"
139
+ msgstr "Zum umschalten klicken"
140
+
141
+ #: addquicktag.php:823
142
+ #: addquicktag.php:845
143
  msgid "Settings"
144
  msgstr "Einstellungen"
145
 
146
+ #: addquicktag.php:918
147
  msgid "AddQuicktag"
148
  msgstr "AddQuicktag"
149
 
150
+ #: addquicktag.php:920
151
  msgid "WP-Quicktag &ndash; AddQuicktag"
152
  msgstr "WP-Quicktag &ndash; AddQuicktag"
153
 
154
+ #: addquicktag.php:941
155
  msgid "Version"
156
  msgstr "Version"
157
 
158
+ #: addquicktag.php:941
159
  msgid "Author"
160
  msgstr "Autor"
161
 
languages/addquicktag-es_ES.mo ADDED
Binary file
languages/addquicktag-es_ES.po ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag v1.6.3\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-16 20:31-0300\n"
6
+ "PO-Revision-Date: 2009-06-18 21:24-0300\n"
7
+ "Last-Translator: Adrián Pastor <adrianpastor@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
13
+ "X-Poedit-Language: Spanish\n"
14
+ "X-Poedit-Country: ARGENTINA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: addquicktag.php:172
21
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
22
+ msgstr "Las opciones no han sido actualizadas - no tienes los privilegios suficientes para hacerlo!"
23
+
24
+ #: addquicktag.php:231
25
+ msgid "Options saved."
26
+ msgstr "Opciones guardadas."
27
+
28
+ #: addquicktag.php:234
29
+ #: addquicktag.php:249
30
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
31
+ msgstr "No tienes autorización para editar los plugins de este blog."
32
+
33
+ #: addquicktag.php:245
34
+ msgid "AddQuicktag options have been deleted!"
35
+ msgstr "Se han borrado las opciones AddQuicktag"
36
+
37
+ #: addquicktag.php:253
38
+ msgid "Add or delete Quicktag buttons"
39
+ msgstr "Agregar o quitar botones AddQuicktag"
40
+
41
+ #: addquicktag.php:254
42
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
43
+ msgstr "Rellena los campos de arriba para agregar o editar quicktags. Los campos marcados con * son obligatorios. Para borrar un tag vacía todos los campos."
44
+
45
+ #: addquicktag.php:255
46
+ msgid "Button Label*"
47
+ msgstr "Nombre del botón*"
48
+
49
+ #: addquicktag.php:256
50
+ msgid "Title Attribute"
51
+ msgstr "Atributo título"
52
+
53
+ #: addquicktag.php:257
54
+ msgid "Start Tag(s)*"
55
+ msgstr "Apertura del tag*"
56
+
57
+ #: addquicktag.php:258
58
+ msgid "End Tag(s)"
59
+ msgstr "Cierre del tag"
60
+
61
+ #: addquicktag.php:259
62
+ msgid "Update Options &raquo;"
63
+ msgstr "Actualizar opciones &raquo;"
64
+
65
+ #: addquicktag.php:262
66
+ msgid "Export &raquo;"
67
+ msgstr "Exportar &raquo;"
68
+
69
+ #: addquicktag.php:263
70
+ msgid "Export/Import AddQuicktag buttons options"
71
+ msgstr "Exportar/Importar opciones de botones Quicktag"
72
+
73
+ #: addquicktag.php:264
74
+ msgid "You can save a .wpaq file with your options."
75
+ msgstr "Puedes guardar un archivo .wpaq con tus opciones."
76
+
77
+ #: addquicktag.php:265
78
+ msgid "Export"
79
+ msgstr "Exportar"
80
+
81
+ #: addquicktag.php:268
82
+ msgid "Upload file and import &raquo;"
83
+ msgstr "Subir archivo e importar &raquo;"
84
+
85
+ #: addquicktag.php:269
86
+ msgid "Import"
87
+ msgstr "Importar"
88
+
89
+ #: addquicktag.php:270
90
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
91
+ msgstr "Selecciona un archivo Quicktag (<em>.wpaq</em>) para subir, luego haz clic en <em>Subir archivo e importar</em>."
92
+
93
+ #: addquicktag.php:271
94
+ msgid "Choose a file from your computer: "
95
+ msgstr "Elige un archivo de tu ordenador: "
96
+
97
+ #: addquicktag.php:274
98
+ msgid "Uninstall Options &raquo;"
99
+ msgstr "Desinstalar opciones &raquo;"
100
+
101
+ #: addquicktag.php:275
102
+ msgid "Uninstall options"
103
+ msgstr "Desinstalar opciones"
104
+
105
+ #: addquicktag.php:276
106
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
107
+ msgstr "Este botón borra todas las opciones del plugin WP-AddQuicktag. <strong>Atención:</strong> No podrás deshacer esto!"
108
+
109
+ #: addquicktag.php:279
110
+ msgid "About the plugin"
111
+ msgstr "Información del plugin"
112
+
113
+ #: addquicktag.php:280
114
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
115
+ msgstr "Información adicional: Visita la <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>página del plugin</a> para más información o para obtener la última versión."
116
+
117
+ #: addquicktag.php:281
118
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a> or donate."
119
+ msgstr "¿Quieres agradecerme? Visita mi <a href='http://bueltge.de/wunschliste/'>lista de deseos</a> o realiza una donación."
120
+
121
+ #: addquicktag.php:287
122
+ msgid "AddQuicktag options imported!"
123
+ msgstr "Opciones AddQuicktag importadas!"
124
+
125
+ #: addquicktag.php:289
126
+ msgid "File is exist!"
127
+ msgstr "El archivo ya existe!"
128
+
129
+ #: addquicktag.php:291
130
+ msgid "Invalid file extension!"
131
+ msgstr "La extensión del archivo no es válida!"
132
+
133
+ #: addquicktag.php:300
134
+ msgid "WP-Quicktag Management"
135
+ msgstr "Gestión de WP-Quicktag"
136
+
137
+ #: addquicktag.php:305
138
+ #: addquicktag.php:360
139
+ #: addquicktag.php:393
140
+ #: addquicktag.php:412
141
+ msgid "Click to toggle"
142
+ msgstr "Haz clic para abrir/cerrar"
143
+
144
+ #: addquicktag.php:827
145
+ #: addquicktag.php:849
146
+ msgid "Settings"
147
+ msgstr "Configuración"
148
+
149
+ #: addquicktag.php:922
150
+ msgid "AddQuicktag"
151
+ msgstr "AddQuicktag"
152
+
153
+ #: addquicktag.php:924
154
+ msgid "WP-Quicktag &ndash; AddQuicktag"
155
+ msgstr "WP-Quicktag &ndash; AddQuicktag"
156
+
157
+ #: addquicktag.php:945
158
+ msgid "Version"
159
+ msgstr "Versión"
160
+
161
+ #: addquicktag.php:945
162
+ msgid "Author"
163
+ msgstr "Autor"
164
+
languages/addquicktag-fr_FR.mo ADDED
Binary file
languages/addquicktag-fr_FR.po ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag v1.5.7\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2009-01-19 13:22-0500\n"
7
+ "Last-Translator: Li-An <lian00@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: French\n"
14
+ "X-Poedit-Country: FRANCE\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: addquicktag.php:231
23
+ #@ addquicktag
24
+ msgid "Options saved."
25
+ msgstr "Options sauvegardées."
26
+
27
+ #: addquicktag.php:234
28
+ #: addquicktag.php:249
29
+ #@ addquicktag
30
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
31
+ msgstr "Vous n'avez pas les droits suffisants pour éditer les plugins de ce blog."
32
+
33
+ #: addquicktag.php:291
34
+ #@ addquicktag
35
+ msgid "Invalid file extension!"
36
+ msgstr "Extension du fichier non valide !"
37
+
38
+ #: addquicktag.php:289
39
+ #@ addquicktag
40
+ msgid "File is exist!"
41
+ msgstr "Le fichier existe déjà ! "
42
+
43
+ #: addquicktag.php:287
44
+ #@ addquicktag
45
+ msgid "AddQuicktag options imported!"
46
+ msgstr "Options d'AddQuicktag importées !"
47
+
48
+ #: addquicktag.php:245
49
+ #@ addquicktag
50
+ msgid "AddQuicktag options have been deleted!"
51
+ msgstr "Les options d'AddQuicktag ont été effacées !"
52
+
53
+ #: addquicktag.php:253
54
+ #@ addquicktag
55
+ msgid "Add or delete Quicktag buttons"
56
+ msgstr "Ajouter ou supprimer des boutons Quicktag"
57
+
58
+ #: addquicktag.php:254
59
+ #@ addquicktag
60
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
61
+ msgstr "Remplissez les champs ci-dessous ou éditez les quicktags. Les champs marqués d'un * sont obligatoires. Pour effacer un tag, videz simplement tous les champs."
62
+
63
+ #: addquicktag.php:255
64
+ #@ addquicktag
65
+ msgid "Button Label*"
66
+ msgstr "Label du bouton*"
67
+
68
+ #: addquicktag.php:257
69
+ #@ addquicktag
70
+ msgid "Start Tag(s)*"
71
+ msgstr "Début du/des tag(s)*"
72
+
73
+ #: addquicktag.php:258
74
+ #@ addquicktag
75
+ msgid "End Tag(s)"
76
+ msgstr "Fin du(des) tag(s)"
77
+
78
+ #: addquicktag.php:259
79
+ #@ addquicktag
80
+ msgid "Update Options &raquo;"
81
+ msgstr "Mise à jour des options &raquo;"
82
+
83
+ #: addquicktag.php:262
84
+ #@ addquicktag
85
+ msgid "Export &raquo;"
86
+ msgstr "Exporter &raquo;"
87
+
88
+ #: addquicktag.php:268
89
+ #@ addquicktag
90
+ msgid "Upload file and import &raquo;"
91
+ msgstr "Uploader et importer fichier &raquo;"
92
+
93
+ #: addquicktag.php:270
94
+ #@ addquicktag
95
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
96
+ msgstr "Choisir un fichier (<em>.wpaq</em>) à uploader, puis cliquer sur <em>Uploader et importer fichier </em>."
97
+
98
+ #: addquicktag.php:271
99
+ #@ addquicktag
100
+ msgid "Choose a file from your computer: "
101
+ msgstr "Choisir un fichier sur votre ordinateur:"
102
+
103
+ #: addquicktag.php:274
104
+ #@ addquicktag
105
+ msgid "Uninstall Options &raquo;"
106
+ msgstr "Options de désinstallation &raquo;"
107
+
108
+ #: addquicktag.php:275
109
+ #@ addquicktag
110
+ msgid "Uninstall options"
111
+ msgstr "Options de désinstallation"
112
+
113
+ #: addquicktag.php:276
114
+ #@ addquicktag
115
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
116
+ msgstr "Ce bouton efface toutes les options du plugin WP-AddQuicktag. <strong>Attention: </strong> vous ne pourrez pas annuler cette action !"
117
+
118
+ #: addquicktag.php:279
119
+ #@ addquicktag
120
+ msgid "About the plugin"
121
+ msgstr "À propos du plugin"
122
+
123
+ #: addquicktag.php:280
124
+ #@ addquicktag
125
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
126
+ msgstr "Informations complémentaires: visitez la <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>homepage du plugin</a> pour d'autres informations ou pour récupérer la dernière version de ce plugin."
127
+
128
+ #: addquicktag.php:300
129
+ #@ addquicktag
130
+ msgid "WP-Quicktag Management"
131
+ msgstr "Gestion de WP-Quicktag"
132
+
133
+ #: addquicktag.php:827
134
+ #: addquicktag.php:849
135
+ msgid "Settings"
136
+ msgstr "Réglages"
137
+
138
+ #: addquicktag.php:945
139
+ msgid "Version"
140
+ msgstr "Version"
141
+
142
+ #: addquicktag.php:945
143
+ msgid "Author"
144
+ msgstr "Auteur"
145
+
146
+ #: addquicktag.php:172
147
+ #@ secure_wp
148
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
149
+ msgstr "Options pas mises à jour - vous n'avez pas les droits pour réaliser cette action !"
150
+
151
+ #: addquicktag.php:263
152
+ #@ addquicktag
153
+ msgid "Export/Import AddQuicktag buttons options"
154
+ msgstr "Options des boutons d' export/import d'AddQuicktag"
155
+
156
+ #: addquicktag.php:264
157
+ #@ addquicktag
158
+ msgid "You can save a .wpaq file with your options."
159
+ msgstr "Vous pouvez sauvegarder un fichier .wpaq contenant vos options."
160
+
161
+ #: addquicktag.php:265
162
+ #@ addquicktag
163
+ msgid "Export"
164
+ msgstr "Exporter"
165
+
166
+ #: addquicktag.php:269
167
+ #@ addquicktag
168
+ msgid "Import"
169
+ msgstr "Importer"
170
+
171
+ #: addquicktag.php:922
172
+ #@ addquicktag
173
+ msgid "AddQuicktag"
174
+ msgstr ""
175
+
176
+ #: addquicktag.php:924
177
+ #@ addquicktag
178
+ msgid "WP-Quicktag &ndash; AddQuicktag"
179
+ msgstr ""
180
+
181
+ #: addquicktag.php:256
182
+ #@ addquicktag
183
+ msgid "Title Attribute"
184
+ msgstr "Attribut de titre"
185
+
186
+ #: addquicktag.php:281
187
+ #@ addquicktag
188
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a> or donate."
189
+ msgstr "Vous désirez me remercier ? Visitez ma <a href='http://bueltge.de/wunschliste/'>liste de voeux</a> ou faites un don."
190
+
191
+ #: addquicktag.php:305
192
+ #: addquicktag.php:360
193
+ #: addquicktag.php:393
194
+ #: addquicktag.php:412
195
+ msgid "Click to toggle"
196
+ msgstr ""
197
+
languages/addquicktag-it_IT.mo ADDED
Binary file
languages/addquicktag-it_IT.po ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag in italiano\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-12 20:34+0100\n"
6
+ "PO-Revision-Date: 2009-06-16 14:13+0100\n"
7
+ "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
+ "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: D:\\WP-Plugins\\addquicktag\\trunk\\\n"
14
+ "X-Poedit-Language: Italian\n"
15
+ "X-Poedit-Country: ITALY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: addquicktag.php:172
20
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
21
+ msgstr "Einstellungen wurden nicht aktuallisiert - du hast nicht ausreichend Rechte!"
22
+
23
+ #: addquicktag.php:231
24
+ msgid "Options saved."
25
+ msgstr "Le opzioni sono state salvate."
26
+
27
+ #: addquicktag.php:234
28
+ #: addquicktag.php:249
29
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
30
+ msgstr "Non hai i permessi necessari per poter modificare i plugin di questo blog"
31
+
32
+ #: addquicktag.php:245
33
+ msgid "AddQuicktag options have been deleted!"
34
+ msgstr "Le opzioni di AddQuicktag sono state cancellate!"
35
+
36
+ #: addquicktag.php:253
37
+ msgid "Add or delete Quicktag buttons"
38
+ msgstr "Aggiungi o cancella i pulsanti Quicktag"
39
+
40
+ #: addquicktag.php:254
41
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
42
+ msgstr "Compila i campi qui sotto per aggiungere o modificare i quicktag. I campi contrassegnati con * sono obbligatori. Per poter cancellare un tag dovrai lasciare in bianco tutti i campi."
43
+
44
+ #: addquicktag.php:255
45
+ msgid "Button Label*"
46
+ msgstr "Etichetta del pulsante*"
47
+
48
+ #: addquicktag.php:256
49
+ msgid "Title Attribute"
50
+ msgstr "Title Attribut"
51
+
52
+ #: addquicktag.php:257
53
+ msgid "Start Tag(s)*"
54
+ msgstr "Davanti al/ai tag*"
55
+
56
+ #: addquicktag.php:258
57
+ msgid "End Tag(s)"
58
+ msgstr "In coda al/ai tag"
59
+
60
+ #: addquicktag.php:259
61
+ msgid "Update Options &raquo;"
62
+ msgstr "Aggiorna le opzioni &raquo;"
63
+
64
+ #: addquicktag.php:262
65
+ msgid "Export &raquo;"
66
+ msgstr "Esporta &raquo;"
67
+
68
+ #: addquicktag.php:263
69
+ msgid "Export/Import AddQuicktag buttons options"
70
+ msgstr "Esporta/Importa le opzioni pulsanti AddQuicktag"
71
+
72
+ #: addquicktag.php:264
73
+ msgid "You can save a .wpaq file with your options."
74
+ msgstr "Puoi salvare un file .wpaq personalizzato."
75
+
76
+ #: addquicktag.php:265
77
+ msgid "Export"
78
+ msgstr "Esporta"
79
+
80
+ #: addquicktag.php:268
81
+ msgid "Upload file and import &raquo;"
82
+ msgstr "Carica il file e importa &raquo;"
83
+
84
+ #: addquicktag.php:269
85
+ msgid "Import"
86
+ msgstr "Import"
87
+
88
+ #: addquicktag.php:270
89
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
90
+ msgstr "Scegli un file Quicktag (<em>.wpaq</em>) da caricare poi, clicca su <em>Carica il file e importa</em>."
91
+
92
+ #: addquicktag.php:271
93
+ msgid "Choose a file from your computer: "
94
+ msgstr "Scegli un file dal tuo computer:"
95
+
96
+ #: addquicktag.php:274
97
+ msgid "Uninstall Options &raquo;"
98
+ msgstr "Disinstalla &raquo;"
99
+
100
+ #: addquicktag.php:275
101
+ msgid "Uninstall options"
102
+ msgstr "Disinstalla le opzioni"
103
+
104
+ #: addquicktag.php:276
105
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
106
+ msgstr "Il pulsante qui sotto cancellerà tutte le modifiche apportate alle opzioni del plugin WP-AddQuicktag. <strong>Attenzione: </strong>l'azione non é reversibile!"
107
+
108
+ #: addquicktag.php:279
109
+ msgid "About the plugin"
110
+ msgstr "Info Plugin"
111
+
112
+ #: addquicktag.php:280
113
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
114
+ msgstr "Ulteriori informazioni: Visita la <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>homepage del plugin</a> per ulteriori e dettagliate informazioni oppure per scaricare l'ultima versione del plugin."
115
+
116
+ #: addquicktag.php:281
117
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a> or donate."
118
+ msgstr "Desideri ringraziarmi? Visita la mia <a href='http://bueltge.de/wunschliste/'>wishlist</a> oppure effettua una donazione."
119
+
120
+ #: addquicktag.php:287
121
+ msgid "AddQuicktag options imported!"
122
+ msgstr "Le opzioni di AddQuicktag sono state importate!"
123
+
124
+ #: addquicktag.php:289
125
+ msgid "File is exist!"
126
+ msgstr "Il file é presente!"
127
+
128
+ #: addquicktag.php:291
129
+ msgid "Invalid file extension!"
130
+ msgstr "L'estensione del file non é valida!"
131
+
132
+ #: addquicktag.php:300
133
+ msgid "WP-Quicktag Management"
134
+ msgstr "Gestione WP-Quicktag"
135
+
136
+ #: addquicktag.php:305
137
+ #: addquicktag.php:360
138
+ #: addquicktag.php:393
139
+ #: addquicktag.php:412
140
+ msgid "Click to toggle"
141
+ msgstr "Zum umschalten klicken"
142
+
143
+ #: addquicktag.php:525
144
+ #: addquicktag.php:547
145
+ msgid "Settings"
146
+ msgstr "Impostazioni"
147
+
148
+ #: addquicktag.php:620
149
+ msgid "AddQuicktag"
150
+ msgstr "AddQuicktag"
151
+
152
+ #: addquicktag.php:622
153
+ msgid "WP-Quicktag &ndash; AddQuicktag"
154
+ msgstr "WP-Quicktag &ndash; AddQuicktag"
155
+
156
+ #: addquicktag.php:643
157
+ msgid "Version"
158
+ msgstr "Versione"
159
+
160
+ #: addquicktag.php:643
161
+ msgid "Author"
162
+ msgstr "Autore"
163
+
164
+ #~ msgid "Can not open for write!"
165
+ #~ msgstr "Non é possibile la scrittura!"
166
+ #~ msgid "Can not write!"
167
+ #~ msgstr "Non é possibile la scrittura!"
168
+ #~ msgid "AddQuicktag options saved!"
169
+ #~ msgstr "Le opzioni di AddQuicktag sono state salvate!"
170
+ #~ msgid "Saved in: "
171
+ #~ msgstr "Salvate in:"
172
+ #~ msgid "/wpaq_export.wpaq</em>"
173
+ #~ msgstr "/wpaq_export.wpaq</em>"
174
+ #~ msgid "Import Quicktag buttons options"
175
+ #~ msgstr "Importa le opzioni dei pulsanti Quicktag"
176
+
languages/addquicktag-ja.mo ADDED
Binary file
languages/addquicktag-ja.po ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuickTag 1.31\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-01-09 19:05+0900\n"
6
+ "PO-Revision-Date: 2008-07-03 13:25+0100\n"
7
+ "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Japanese\n"
13
+ "X-Poedit-Country: JAPAN\n"
14
+ "X-Poedit-KeywordsList: _e;__\n"
15
+ "X-Poedit-Basepath: D:\\WP-Plugins\\addquicktag\\trunk\\\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: addquicktag.php:81
19
+ msgid "Options saved."
20
+ msgstr "設定の保存"
21
+
22
+ #: addquicktag.php:84
23
+ #: addquicktag.php:116
24
+ #: addquicktag.php:154
25
+ #: addquicktag.php:169
26
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
27
+ msgstr "You do not have sufficient permissions to edit plugins for this blog."
28
+
29
+ #: addquicktag.php:100
30
+ msgid "Can not open for write!"
31
+ msgstr "ファイルが開けません!"
32
+
33
+ #: addquicktag.php:107
34
+ msgid "Can not write!"
35
+ msgstr "ファイルに書き込めません!"
36
+
37
+ #: addquicktag.php:110
38
+ msgid "AddQuicktag options saved!"
39
+ msgstr "クイックタグの設定を保存しました!"
40
+
41
+ #: addquicktag.php:111
42
+ msgid "Saved in: "
43
+ msgstr "保存場所 : "
44
+
45
+ #: addquicktag.php:132
46
+ msgid "Invalid file extension!"
47
+ msgstr "ファイルの拡張子が不正です!"
48
+
49
+ #: addquicktag.php:134
50
+ msgid "File is exist!"
51
+ msgstr "ファイルが存在します!"
52
+
53
+ #: addquicktag.php:149
54
+ msgid "AddQuicktag options imported!"
55
+ msgstr "クイックタグの設定を読み込みました!"
56
+
57
+ #: addquicktag.php:165
58
+ #, fuzzy
59
+ msgid "AddQuicktag options have been deleted!"
60
+ msgstr "クイックタグの設定を保存しました!"
61
+
62
+ #: addquicktag.php:173
63
+ msgid "Add or delete Quicktag buttons"
64
+ msgstr "クイックタグの追加と削除"
65
+
66
+ #: addquicktag.php:174
67
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
68
+ msgstr "クイックタグを追加・編集するには以下の項目を埋めるか変更してください.* が付いた項目は必須です.削除するには全ての項目を空にしてください."
69
+
70
+ #: addquicktag.php:175
71
+ msgid "Button Label*"
72
+ msgstr "ラベル名"
73
+
74
+ #: addquicktag.php:176
75
+ msgid "Start Tag(s)*"
76
+ msgstr "開始タグ"
77
+
78
+ #: addquicktag.php:177
79
+ msgid "End Tag(s)"
80
+ msgstr "終了タグ"
81
+
82
+ #: addquicktag.php:178
83
+ msgid "Update Options &raquo;"
84
+ msgstr "更新 &raquo;"
85
+
86
+ #: addquicktag.php:181
87
+ msgid "Export &raquo;"
88
+ msgstr "出力 &raquo;"
89
+
90
+ #: addquicktag.php:182
91
+ msgid "Export Quicktag buttons options"
92
+ msgstr "クイックタグの設定の出力"
93
+
94
+ #: addquicktag.php:183
95
+ msgid "You can save a .wpaq file with your options in <em>/wp-content/wpaq_export.wpaq</em>"
96
+ msgstr "<em>/wp-content/wpaq_export.wpaq</em> というファイル名で保存されます."
97
+
98
+ #: addquicktag.php:186
99
+ msgid "Upload file and import &raquo;"
100
+ msgstr "設定の読み込み"
101
+
102
+ #: addquicktag.php:187
103
+ msgid "Import Quicktag buttons options"
104
+ msgstr "クイックタグの設定の読み込み"
105
+
106
+ #: addquicktag.php:188
107
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
108
+ msgstr "アップロードして読み込みクイックタグの設定ファイル (<em>.wpaq</em>) を選択してください. 設定を読み込むには <em>設定の読み込み</em> をクリックします."
109
+
110
+ #: addquicktag.php:189
111
+ msgid "Choose a file from your computer: "
112
+ msgstr "コンピュータに保存されているファイルの選択 : "
113
+
114
+ #: addquicktag.php:192
115
+ #, fuzzy
116
+ msgid "Uninstall Options &raquo;"
117
+ msgstr "更新 &raquo;"
118
+
119
+ #: addquicktag.php:193
120
+ msgid "Uninstall options"
121
+ msgstr "Uninstall options"
122
+
123
+ #: addquicktag.php:194
124
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. Please use it <strong>before</strong> deactivating the plugin.<br /><strong>Attention: </strong>You cannot undo this!"
125
+ msgstr "This button deletes all options of the WP-AddQuicktag plugin. Please use it <strong>before</strong> deactivating the plugin.<br /><strong>Attention: </strong>You cannot undo this!"
126
+
127
+ #: addquicktag.php:197
128
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
129
+ msgstr "問い合わせ先 : 質問や最新バージョンの取得のためには <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>プラグインのホームページ</a> を訪れてください."
130
+
131
+ #: addquicktag.php:198
132
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
133
+ msgstr "よろしければ私の<a href='http://bueltge.de/wunschliste/'>ウィッシュリスト</a> も訪れてください."
134
+
135
+ #: addquicktag.php:356
136
+ msgid "Settings"
137
+ msgstr "Settings"
138
+
languages/addquicktag-pl_PL.mo ADDED
Binary file
languages/addquicktag-pl_PL.po ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag 1.5.8 po polsku\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-01 14:39+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Michał Maciejewski <admin@inwit.pl>\n"
8
+ "Language-Team: Galareta 1 Man Band <admin@inwit.pl>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=utf-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Polish\n"
13
+ "X-Poedit-Country: POLAND\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+
16
+ #: addquicktag.php:95
17
+ msgid "Options saved."
18
+ msgstr "Zapisano zmiany."
19
+
20
+ #: addquicktag.php:98
21
+ #: addquicktag.php:130
22
+ #: addquicktag.php:168
23
+ #: addquicktag.php:183
24
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
25
+ msgstr "Nie masz wystarczających uprawnień do edycji wtyczek na tym blogu."
26
+
27
+ #: addquicktag.php:114
28
+ msgid "Can not open for write!"
29
+ msgstr "Otwarcie do edycji niemożliwe!"
30
+
31
+ #: addquicktag.php:121
32
+ msgid "Can not write!"
33
+ msgstr "Zapis niemożliwy!"
34
+
35
+ #: addquicktag.php:124
36
+ msgid "AddQuicktag options saved!"
37
+ msgstr "Opcje AddQuicktag zostały zapisane."
38
+
39
+ #: addquicktag.php:125
40
+ msgid "Saved in: "
41
+ msgstr "Zapisano w pliku: "
42
+
43
+ #: addquicktag.php:146
44
+ msgid "Invalid file extension!"
45
+ msgstr "Złe rozszerzenie pliku!"
46
+
47
+ #: addquicktag.php:148
48
+ msgid "File is exist!"
49
+ msgstr "Plik o podanej nazwie już istnieje!"
50
+
51
+ #: addquicktag.php:163
52
+ msgid "AddQuicktag options imported!"
53
+ msgstr "Ustawienia AddQuicktag zostały zaimportowane! Odśwież stronę lub wyłącz i włącz wtyczkę"
54
+
55
+ #: addquicktag.php:179
56
+ msgid "AddQuicktag options have been deleted!"
57
+ msgstr "Ustawienia AddQuicktag zostały skasowane!"
58
+
59
+ #: addquicktag.php:187
60
+ msgid "Add or delete Quicktag buttons"
61
+ msgstr "Dodaj/usuń klawisze Quicktag"
62
+
63
+ #: addquicktag.php:188
64
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
65
+ msgstr "Aby dodać nowe i edytować istniejące klawisze Quicktag - wypełnij powyższe pola. Pola z gwiazdką * są obowiązkowe. Aby usunąć klawisz - wyczyść zawartość pól. Na koniec kliknij <em>Zapisz zmiany</em>."
66
+
67
+ #: addquicktag.php:189
68
+ msgid "Button Label*"
69
+ msgstr "Etykieta klawisza *"
70
+
71
+ #: addquicktag.php:190
72
+ msgid "Start Tag(s)*"
73
+ msgstr "Tag otwierający *"
74
+
75
+ #: addquicktag.php:191
76
+ msgid "End Tag(s)"
77
+ msgstr "Tag zamykający"
78
+
79
+ #: addquicktag.php:192
80
+ msgid "Update Options &raquo;"
81
+ msgstr "Zapisz zmiany &raquo;"
82
+
83
+ #: addquicktag.php:195
84
+ msgid "Export &raquo;"
85
+ msgstr "Eksportuj &raquo;"
86
+
87
+ #: addquicktag.php:196
88
+ msgid "Export/Import AddQuicktag buttons options"
89
+ msgstr "Eksport/Import danych klawiszy AddQuicktag (kopia bezpieczeństwa)"
90
+
91
+ #: addquicktag.php:197
92
+ msgid "Export"
93
+ msgstr "Eksport do pliku na komputerze lokalnym"
94
+
95
+ #: addquicktag.php:197
96
+ msgid "You can save a .wpaq file with your options."
97
+ msgstr "Możesz utworzyć kopię bezpieczeństwa swoich klawiszy Quicktag. Będzie ona zapisana na Twoim komputerze w pliku <em>wpaq_export-data-utworzenia.wpaq</em>. Aby to zrobić, kliknij <em>Eksportuj</em>."
98
+
99
+ #: addquicktag.php:200
100
+ msgid "Upload file and import &raquo;"
101
+ msgstr "Wyślij na serwer i zaimportuj do WP &raquo;"
102
+
103
+ #: addquicktag.php:201
104
+ msgid "Import"
105
+ msgstr "Import z pliku do WP"
106
+
107
+ #: addquicktag.php:202
108
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
109
+ msgstr "Wybierz plik (<em>.wpaq</em>) z ustawieniami klawiszy Quicktag i kliknij <em>Wyślij na serwer i zaimportuj do WP</em>."
110
+
111
+ #: addquicktag.php:203
112
+ msgid "Choose a file from your computer: "
113
+ msgstr "Wybierz plik ze swojego komputera:"
114
+
115
+ #: addquicktag.php:206
116
+ msgid "Uninstall Options &raquo;"
117
+ msgstr "Wyczyść wszystko &raquo;"
118
+
119
+ #: addquicktag.php:207
120
+ msgid "Uninstall options"
121
+ msgstr "Opcje deinstalacji"
122
+
123
+ #: addquicktag.php:208
124
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
125
+ msgstr "Poniższy klawisz kasuje wszystkie ustawione opcje wtyczki WP-AddQuicktag.<br /><strong>Uwaga:</strong> ta operacja jest nieodwracalna i następuje natychmiast po naciśnięciu klawisza! Jeśli nie chcesz utracić swoich klawiszy Quicktag, użyj wcześniej opcji eksportu!"
126
+
127
+ #: addquicktag.php:211
128
+ msgid "About the plugin"
129
+ msgstr "O wtyczce"
130
+
131
+ #: addquicktag.php:212
132
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
133
+ msgstr "Informacje dodatkowe: odwiedź <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>stronę domową wtyczki</a> żeby zdobyć dodatkowe informacje lub ściągnąć najnowszą wersję wtyczki."
134
+
135
+ #: addquicktag.php:213
136
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
137
+ msgstr "Chcesz mi podziękować? Odwiedź moją <a href='http://bueltge.de/wunschliste/'>listę życzeń</a>."
138
+
139
+ #: addquicktag.php:218
140
+ msgid "WP-Quicktag Management"
141
+ msgstr "Ustawienia WP-AddQuicktag"
142
+
143
+ #: addquicktag.php:428
144
+ msgid "Settings"
145
+ msgstr "Ustawienia"
146
+
147
+ #: addquicktag.php:493
148
+ msgid "Add Quicktag"
149
+ msgstr "Add Quicktag"
150
+
151
+ #: addquicktag.php:495
152
+ msgid "WP-Quicktag &ndash; Add Quicktag"
153
+ msgstr "WP-Quicktag &ndash; Add Quicktag"
154
+
155
+ #: addquicktag.php:507
156
+ msgid "Version"
157
+ msgstr "Wersja"
158
+
159
+ #: addquicktag.php:507
160
+ msgid "Author"
161
+ msgstr "Autor"
162
+
languages/addquicktag-ro_RO.mo ADDED
Binary file
languages/addquicktag-ro_RO.po ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-13 22:24+0200\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Dragos Nicholas <freesoftwareworkshop@gmail.com>\n"
8
+ "Language-Team: Dragos Nicolae <freesoftwareworkshop@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Romanian\n"
13
+ "X-Poedit-Country: ROMANIA\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-Basepath: C:\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\addquicktag\n"
17
+ "X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\addquicktag\n"
18
+
19
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:95
20
+ msgid "Options saved."
21
+ msgstr "Opţiuni salvate."
22
+
23
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:98
24
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:130
25
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:168
26
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:183
27
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
28
+ msgstr "Nu aveţi suficiente privilegii pentru a modifica pluginurile de pe acest blog."
29
+
30
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:114
31
+ msgid "Can not open for write!"
32
+ msgstr "Nu pot deschide pentru a scrie!"
33
+
34
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:121
35
+ msgid "Can not write!"
36
+ msgstr "Nu pot scrie!"
37
+
38
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:124
39
+ msgid "AddQuicktag options saved!"
40
+ msgstr "Opţiunile AddQuicktag au fost salvate!"
41
+
42
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:125
43
+ msgid "Saved in: "
44
+ msgstr "Salvate în:"
45
+
46
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:146
47
+ msgid "Invalid file extension!"
48
+ msgstr "Extensia fişierului este invalidă!"
49
+
50
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:148
51
+ msgid "File is exist!"
52
+ msgstr "Fişierul există."
53
+
54
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:163
55
+ msgid "AddQuicktag options imported!"
56
+ msgstr "Opţiunile AddQuicktag au fost importate!"
57
+
58
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:179
59
+ msgid "AddQuicktag options have been deleted!"
60
+ msgstr "Opţiunile AddQuicktag au fost şterse!"
61
+
62
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:187
63
+ msgid "Add or delete Quicktag buttons"
64
+ msgstr "Adaugă sau şterge butoane Quicktag"
65
+
66
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:188
67
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
68
+ msgstr "Completaţi câmpurile de mai jos pentru a adăuga sau modifica quicktagurile (etichetele). Câmpurile cu * sunt obligatorii. Pentru a şterge o etichetă (tag) pur şi simplu goliţi toate câmpurile."
69
+
70
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:189
71
+ msgid "Button Label*"
72
+ msgstr "Eticheta butonului"
73
+
74
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:190
75
+ msgid "Start Tag(s)*"
76
+ msgstr "Eticheta (tag) de deschidere"
77
+
78
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:191
79
+ msgid "End Tag(s)"
80
+ msgstr "Eticheta (tag) de închidere"
81
+
82
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:192
83
+ msgid "Update Options &raquo;"
84
+ msgstr "Actualizează Opţiunile &raquo;"
85
+
86
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:195
87
+ msgid "Export &raquo;"
88
+ msgstr "Exportă &raquo;"
89
+
90
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:196
91
+ msgid "Export Quicktag buttons options"
92
+ msgstr "Exportă Opţiunile butoanelor Quicktag"
93
+
94
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:197
95
+ msgid "You can save a .wpaq file with your options in <em>"
96
+ msgstr "Puteţi salva opţiunile într-un fişier .wpaq în <em>"
97
+
98
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:197
99
+ msgid "/wpaq_export.wpaq</em>"
100
+ msgstr "/wpaq_export.wpaq</em>"
101
+
102
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:200
103
+ msgid "Upload file and import &raquo;"
104
+ msgstr "Uplodează fişierul şi importă &raquo;"
105
+
106
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:201
107
+ msgid "Import Quicktag buttons options"
108
+ msgstr "Importă opţiunile butoanelor Quicktag"
109
+
110
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:202
111
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
112
+ msgstr "Alege un fişier Quicktag (<em>.wpaq</em>) pentru a-l uploda, apoi daţi click pe <em>Uplodează fişierul şi importă</em>."
113
+
114
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:203
115
+ msgid "Choose a file from your computer: "
116
+ msgstr "Alege un fişier din computerul dumneavoastră:"
117
+
118
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:206
119
+ msgid "Uninstall Options &raquo;"
120
+ msgstr "Dezinstalează Opţiunile &raquo;"
121
+
122
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:207
123
+ msgid "Uninstall options"
124
+ msgstr "Dezinstalează opţiunile"
125
+
126
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:208
127
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
128
+ msgstr "Acest buton şterge toate opţiunile pluginului WP-AddQuicktag. <strong>Atenţie: </strong>Nu puteţi anula procesul!"
129
+
130
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:211
131
+ msgid "About the plugin"
132
+ msgstr "Despre plugin"
133
+
134
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:212
135
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
136
+ msgstr "Pentru mai multe informaţii: Vizitaţi <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>pagina pluginului</a> pentru mai multe informaţii sau pentru a downloadaultima versiune a pluginului."
137
+
138
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:213
139
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
140
+ msgstr "Vrei să-mi mulţumeşti? Vizitează-mi <a href='http://bueltge.de/wunschliste/'>lista de dorinţe</a>."
141
+
142
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:428
143
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:441
144
+ msgid "Settings"
145
+ msgstr "Setări"
146
+
147
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:506
148
+ msgid "Add Quicktag"
149
+ msgstr "Adaugă un Quicktag"
150
+
151
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:508
152
+ msgid "WP-Quicktag &ndash; Add Quicktag"
153
+ msgstr "WP-Quicktag &ndash; Adaugă Quicktag"
154
+
155
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:526
156
+ msgid "Version"
157
+ msgstr "Versiune"
158
+
159
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:526
160
+ msgid "Author"
161
+ msgstr "Autor"
162
+
languages/addquicktag-ru_RU.mo ADDED
Binary file
languages/addquicktag-ru_RU.po ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-12 20:34+0100\n"
6
+ "PO-Revision-Date: 2009-07-17 12:59+0300\n"
7
+ "Last-Translator: Fat Cow <zhr@tut.by>\n"
8
+ "Language-Team: FatCow <zhr@tut.by>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: ..\\\n"
14
+ "X-Poedit-Language: Russian\n"
15
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: addquicktag.php:172
20
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
21
+ msgstr "Настройки не обновлены - вы не имеете прав для этого!"
22
+
23
+ #: addquicktag.php:231
24
+ msgid "Options saved."
25
+ msgstr "Настройки сохранены."
26
+
27
+ #: addquicktag.php:234
28
+ #: addquicktag.php:249
29
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
30
+ msgstr "У Вас нет достаточных полномочий для редактирования плагинов для этого блога."
31
+
32
+ #: addquicktag.php:245
33
+ msgid "AddQuicktag options have been deleted!"
34
+ msgstr "Настройки AddQuicktag были удалены!"
35
+
36
+ #: addquicktag.php:253
37
+ msgid "Add or delete Quicktag buttons"
38
+ msgstr "Добавить или удалить кнопки Quicktag "
39
+
40
+ #: addquicktag.php:254
41
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
42
+ msgstr "Заполните поля ниже, чтобы добавить или отредактировать quicktags. Поля с * обязательны для заполнения. Чтобы удалить метку,оставьте пустым. "
43
+
44
+ #: addquicktag.php:255
45
+ msgid "Button Label*"
46
+ msgstr "Название кнопки*"
47
+
48
+ #: addquicktag.php:256
49
+ msgid "Title Attribute"
50
+ msgstr "Атрибут заголовка"
51
+
52
+ #: addquicktag.php:257
53
+ msgid "Start Tag(s)*"
54
+ msgstr "Начало тэга(ов)*"
55
+
56
+ #: addquicktag.php:258
57
+ msgid "End Tag(s)"
58
+ msgstr "Конец тэга(ов)"
59
+
60
+ #: addquicktag.php:259
61
+ msgid "Update Options &raquo;"
62
+ msgstr "Обновить настройки &raquo;"
63
+
64
+ #: addquicktag.php:262
65
+ msgid "Export &raquo;"
66
+ msgstr "Экспорт &raquo;"
67
+
68
+ #: addquicktag.php:263
69
+ msgid "Export/Import AddQuicktag buttons options"
70
+ msgstr "Импорт / Экспорт настроек AddQuicktag "
71
+
72
+ #: addquicktag.php:264
73
+ msgid "You can save a .wpaq file with your options."
74
+ msgstr "Вы можете сохранить .wpaq файл с вашими настройками."
75
+
76
+ #: addquicktag.php:265
77
+ msgid "Export"
78
+ msgstr "Экспорт"
79
+
80
+ #: addquicktag.php:268
81
+ msgid "Upload file and import &raquo;"
82
+ msgstr "Закачать файл и импортировать &raquo;"
83
+
84
+ #: addquicktag.php:269
85
+ msgid "Import"
86
+ msgstr "Импорт"
87
+
88
+ #: addquicktag.php:270
89
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
90
+ msgstr "Выберите Quicktag (<em>.wpaq</em>) файл для загрузки, затем нажмите <em>Загрузить файл и импортировать</em>."
91
+
92
+ #: addquicktag.php:271
93
+ msgid "Choose a file from your computer: "
94
+ msgstr "Выберите файл на вашем компьютере. "
95
+
96
+ #: addquicktag.php:274
97
+ msgid "Uninstall Options &raquo;"
98
+ msgstr "Удалить настройки &raquo;"
99
+
100
+ #: addquicktag.php:275
101
+ msgid "Uninstall options"
102
+ msgstr "Удалить настройки"
103
+
104
+ #: addquicktag.php:276
105
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
106
+ msgstr "Эта кнопка удаляет все настройки плагина WP-AddQuicktag. <strong>Внимание: </strong>Вы не можете отменить это!"
107
+
108
+ #: addquicktag.php:279
109
+ msgid "About the plugin"
110
+ msgstr "О плагине"
111
+
112
+ #: addquicktag.php:280
113
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
114
+ msgstr "Дополнительная информация: Посетите <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>домашнюю страницу плагина</a> за дополнительной информацией или для загрузки последней версии этого плагина."
115
+
116
+ #: addquicktag.php:281
117
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a> or donate."
118
+ msgstr "Вы хотите отблагодарить меня? Посетите мой <a href='http://bueltge.de/wunschliste/'>сайт</a> или пожертвуйте."
119
+
120
+ #: addquicktag.php:287
121
+ msgid "AddQuicktag options imported!"
122
+ msgstr "Настройки AddQuicktag импортированы!"
123
+
124
+ #: addquicktag.php:289
125
+ msgid "File is exist!"
126
+ msgstr "Файл существует!"
127
+
128
+ #: addquicktag.php:291
129
+ msgid "Invalid file extension!"
130
+ msgstr "Неправильное расширение файла!"
131
+
132
+ #: addquicktag.php:300
133
+ msgid "WP-Quicktag Management"
134
+ msgstr "WP-Quicktag Управление"
135
+
136
+ #: addquicktag.php:305
137
+ #: addquicktag.php:360
138
+ #: addquicktag.php:393
139
+ #: addquicktag.php:412
140
+ msgid "Click to toggle"
141
+ msgstr "Нажмите, чтобы переключить"
142
+
143
+ #: addquicktag.php:525
144
+ #: addquicktag.php:547
145
+ msgid "Settings"
146
+ msgstr "Настройки"
147
+
148
+ #: addquicktag.php:620
149
+ msgid "AddQuicktag"
150
+ msgstr "AddQuicktag"
151
+
152
+ #: addquicktag.php:622
153
+ msgid "WP-Quicktag &ndash; AddQuicktag"
154
+ msgstr "WP-Quicktag &ndash; AddQuicktag"
155
+
156
+ #: addquicktag.php:643
157
+ msgid "Version"
158
+ msgstr "Версия"
159
+
160
+ #: addquicktag.php:643
161
+ msgid "Author"
162
+ msgstr "Автор"
163
+
164
+ #~ msgid "Can not open for write!"
165
+ #~ msgstr "Öffnen zum Schreiben nicht möglich!"
166
+ #~ msgid "Can not write!"
167
+ #~ msgstr "Schreiben nicht möglich!"
168
+ #~ msgid "AddQuicktag options saved!"
169
+ #~ msgstr "AddQuicktag Einstellungen gespeichert!"
170
+ #~ msgid "Saved in: "
171
+ #~ msgstr "Gespeichert in: "
172
+ #~ msgid "/wpaq_export.wpaq</em>"
173
+ #~ msgstr "/wpaq_export.wpaq</em>"
174
+ #~ msgid "Import Quicktag buttons options"
175
+ #~ msgstr "Importiere deine Quicktag-buttons"
176
+
languages/addquicktag-zh_TW.mo ADDED
Binary file
languages/addquicktag-zh_TW.po ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-05-01 22:59+0800\n"
6
+ "PO-Revision-Date: 2009-05-01 23:07+0800\n"
7
+ "Last-Translator: Neil Lin <neil.lch@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n==1?0:1;\n"
13
+ "X-Poedit-Language: Chinese\n"
14
+ "X-Poedit-Country: TAIWAN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
17
+ "X-Poedit-Basepath: ./\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: addquicktag.php:165
21
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
22
+ msgstr "設定尚未更新 - 您沒有權限執行此動作!"
23
+
24
+ #: addquicktag.php:223
25
+ msgid "Options saved."
26
+ msgstr "設定已儲存。"
27
+
28
+ #: addquicktag.php:226
29
+ #: addquicktag.php:241
30
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
31
+ msgstr "您沒有足夠權限可以編輯此部落格的外掛。"
32
+
33
+ #: addquicktag.php:237
34
+ msgid "AddQuicktag options have been deleted!"
35
+ msgstr "AddQuicktag 設定已刪除!"
36
+
37
+ #: addquicktag.php:245
38
+ msgid "Add or delete Quicktag buttons"
39
+ msgstr "增加或刪除 Quicktag 按鈕"
40
+
41
+ #: addquicktag.php:246
42
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
43
+ msgstr "在以下空格中加入或編輯 quicktags,附加星號的空格是必填項目,清除空格內容就可以刪除按鈕。"
44
+
45
+ #: addquicktag.php:247
46
+ msgid "Button Label*"
47
+ msgstr "按鈕名稱*"
48
+
49
+ #: addquicktag.php:248
50
+ msgid "Start Tag(s)*"
51
+ msgstr "開始標籤*"
52
+
53
+ #: addquicktag.php:249
54
+ msgid "End Tag(s)"
55
+ msgstr "結束標籤"
56
+
57
+ #: addquicktag.php:250
58
+ msgid "Update Options &raquo;"
59
+ msgstr "更新設定 &raquo;"
60
+
61
+ #: addquicktag.php:253
62
+ msgid "Export &raquo;"
63
+ msgstr "匯出 &raquo;"
64
+
65
+ #: addquicktag.php:254
66
+ msgid "Export/Import AddQuicktag buttons options"
67
+ msgstr "匯出/匯入 AddQuicktag 按鈕設定"
68
+
69
+ #: addquicktag.php:255
70
+ msgid "You can save a .wpaq file with your options."
71
+ msgstr "您可以將設定值儲存為 .wpaq 檔案。"
72
+
73
+ #: addquicktag.php:256
74
+ msgid "Export"
75
+ msgstr "匯出"
76
+
77
+ #: addquicktag.php:259
78
+ msgid "Upload file and import &raquo;"
79
+ msgstr "上傳並匯入檔案 &raquo;"
80
+
81
+ #: addquicktag.php:260
82
+ msgid "Import"
83
+ msgstr "匯入"
84
+
85
+ #: addquicktag.php:261
86
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
87
+ msgstr "請選擇一個 Quicktag (<em>.wpaq</em>) 檔案上傳,然後再按 <em>上傳並匯入檔案</em> 。"
88
+
89
+ #: addquicktag.php:262
90
+ msgid "Choose a file from your computer: "
91
+ msgstr "從您的電腦中選擇一個檔案:"
92
+
93
+ #: addquicktag.php:265
94
+ msgid "Uninstall Options &raquo;"
95
+ msgstr "移除設定 &raquo;"
96
+
97
+ #: addquicktag.php:266
98
+ msgid "Uninstall options"
99
+ msgstr "移除設定"
100
+
101
+ #: addquicktag.php:267
102
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
103
+ msgstr "此按鈕將會刪除所有 WP-AddQuicktag 外掛的設定值。<strong>注意:</strong>您將不能復原此動作!"
104
+
105
+ #: addquicktag.php:270
106
+ msgid "About the plugin"
107
+ msgstr "關於外掛"
108
+
109
+ #: addquicktag.php:271
110
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
111
+ msgstr "更多訊息:請參觀 <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>外掛首頁</a> 以獲得更多訊息或是下載此外掛的最新版本。"
112
+
113
+ #: addquicktag.php:272
114
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
115
+ msgstr "您想要感謝我嗎?請參觀我的 <a href='http://bueltge.de/wunschliste/'>願望清單</a> 。"
116
+
117
+ #: addquicktag.php:278
118
+ msgid "AddQuicktag options imported!"
119
+ msgstr "AddQuicktag 設定已匯入!"
120
+
121
+ #: addquicktag.php:280
122
+ msgid "File is exist!"
123
+ msgstr "檔案已存在!"
124
+
125
+ #: addquicktag.php:282
126
+ msgid "Invalid file extension!"
127
+ msgstr "無效的檔案格式!"
128
+
129
+ #: addquicktag.php:291
130
+ msgid "WP-Quicktag Management"
131
+ msgstr "WP-Quicktag 管理"
132
+
133
+ #: addquicktag.php:496
134
+ #: addquicktag.php:511
135
+ msgid "Settings"
136
+ msgstr "設定"
137
+
138
+ #: addquicktag.php:583
139
+ msgid "AddQuicktag"
140
+ msgstr "AddQuicktag"
141
+
142
+ #: addquicktag.php:585
143
+ msgid "WP-Quicktag &ndash; AddQuicktag"
144
+ msgstr "WP-Quicktag &ndash; AddQuicktag"
145
+
146
+ #: addquicktag.php:604
147
+ msgid "Version"
148
+ msgstr "版本"
149
+
150
+ #: addquicktag.php:604
151
+ msgid "Author"
152
+ msgstr "作者"
153
+
154
+ #~ msgid "Can not open for write!"
155
+ #~ msgstr "無法開啟檔案以寫入!"
156
+ #~ msgid "Can not write!"
157
+ #~ msgstr "無法寫入!"
158
+ #~ msgid "AddQuicktag options saved!"
159
+ #~ msgstr "AddQuicktag 設定已儲存!"
160
+ #~ msgid "Saved in: "
161
+ #~ msgstr "儲存於:"
162
+ #~ msgid "/wpaq_export.wpaq</em>"
163
+ #~ msgstr "/wpaq_export.wpaq</em>"
164
+ #~ msgid "Import Quicktag buttons options"
165
+ #~ msgstr "匯入 Quicktag 按鈕設定"
166
+
languages/addquicktag.pot ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AddQuicktag\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-12 20:34+0100\n"
6
+ "PO-Revision-Date: 2009-06-12 20:34+0100\n"
7
+ "Last-Translator: Frank Bulteg <frank@bueltge.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: ..\\\n"
14
+ "X-Poedit-SearchPath-0: .\n"
15
+
16
+ #: addquicktag.php:172
17
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
18
+ msgstr "Einstellungen wurden nicht aktuallisiert - du hast nicht ausreichend Rechte!"
19
+
20
+ #: addquicktag.php:231
21
+ msgid "Options saved."
22
+ msgstr "Einstellungen gespeichert."
23
+
24
+ #: addquicktag.php:234
25
+ #: addquicktag.php:249
26
+ msgid "You do not have sufficient permissions to edit plugins for this blog."
27
+ msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
28
+
29
+ #: addquicktag.php:245
30
+ msgid "AddQuicktag options have been deleted!"
31
+ msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
32
+
33
+ #: addquicktag.php:253
34
+ msgid "Add or delete Quicktag buttons"
35
+ msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
36
+
37
+ #: addquicktag.php:254
38
+ msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
39
+ msgstr "Fülle das Feld unterhalb der bestehenden Buttons oder ändere einen Quicktag. Felder mit * sind Pflichtfelder. Um Quicktags zu löschen, einfach den Inhalt der zugehörigen Felder löschen."
40
+
41
+ #: addquicktag.php:255
42
+ msgid "Button Label*"
43
+ msgstr "Button Name*"
44
+
45
+ #: addquicktag.php:256
46
+ msgid "Title Attribute"
47
+ msgstr "Title Attribut"
48
+
49
+ #: addquicktag.php:257
50
+ msgid "Start Tag(s)*"
51
+ msgstr "Start Tag(s)*"
52
+
53
+ #: addquicktag.php:258
54
+ msgid "End Tag(s)"
55
+ msgstr "Ende Tag(s)"
56
+
57
+ #: addquicktag.php:259
58
+ msgid "Update Options &raquo;"
59
+ msgstr "Einstellungen aktualisieren &raquo;"
60
+
61
+ #: addquicktag.php:262
62
+ msgid "Export &raquo;"
63
+ msgstr "Exportieren &raquo;"
64
+
65
+ #: addquicktag.php:263
66
+ msgid "Export/Import AddQuicktag buttons options"
67
+ msgstr "Exportiere/Importiere deine Quicktag-buttons"
68
+
69
+ #: addquicktag.php:264
70
+ msgid "You can save a .wpaq file with your options."
71
+ msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen speichern."
72
+
73
+ #: addquicktag.php:265
74
+ msgid "Export"
75
+ msgstr "Export"
76
+
77
+ #: addquicktag.php:268
78
+ msgid "Upload file and import &raquo;"
79
+ msgstr "Datei hochladen und importieren &raquo;"
80
+
81
+ #: addquicktag.php:269
82
+ msgid "Import"
83
+ msgstr "Import"
84
+
85
+ #: addquicktag.php:270
86
+ msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
87
+ msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
88
+
89
+ #: addquicktag.php:271
90
+ msgid "Choose a file from your computer: "
91
+ msgstr "Wähle eine Datei von deinem Rechner. "
92
+
93
+ #: addquicktag.php:274
94
+ msgid "Uninstall Options &raquo;"
95
+ msgstr "Einstellungen löschen &raquo;"
96
+
97
+ #: addquicktag.php:275
98
+ msgid "Uninstall options"
99
+ msgstr "Deinstalliere Einstellungen"
100
+
101
+ #: addquicktag.php:276
102
+ msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
103
+ msgstr "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
104
+
105
+ #: addquicktag.php:279
106
+ msgid "About the plugin"
107
+ msgstr "Über das Plugin"
108
+
109
+ #: addquicktag.php:280
110
+ msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
111
+ msgstr "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>Plugin Homepage</a> für weitere Informationen oder hole die letzte Version des Plugins."
112
+
113
+ #: addquicktag.php:281
114
+ msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a> or donate."
115
+ msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a> oder spende."
116
+
117
+ #: addquicktag.php:287
118
+ msgid "AddQuicktag options imported!"
119
+ msgstr "AddQuicktag Einstellungen importiert!"
120
+
121
+ #: addquicktag.php:289
122
+ msgid "File is exist!"
123
+ msgstr "Datei nicht vorhanden!"
124
+
125
+ #: addquicktag.php:291
126
+ msgid "Invalid file extension!"
127
+ msgstr "Nicht zulässige Dateierweiterung!"
128
+
129
+ #: addquicktag.php:300
130
+ #, fuzzy
131
+ msgid "WP-Quicktag Management"
132
+ msgstr "WP-Quicktag Verwaltung"
133
+
134
+ #: addquicktag.php:305
135
+ #: addquicktag.php:360
136
+ #: addquicktag.php:393
137
+ #: addquicktag.php:412
138
+ msgid "Click to toggle"
139
+ msgstr "Zum umschalten klicken"
140
+
141
+ #: addquicktag.php:525
142
+ #: addquicktag.php:547
143
+ msgid "Settings"
144
+ msgstr "Einstellungen"
145
+
146
+ #: addquicktag.php:620
147
+ msgid "AddQuicktag"
148
+ msgstr "AddQuicktag"
149
+
150
+ #: addquicktag.php:622
151
+ msgid "WP-Quicktag &ndash; AddQuicktag"
152
+ msgstr "WP-Quicktag &ndash; AddQuicktag"
153
+
154
+ #: addquicktag.php:643
155
+ msgid "Version"
156
+ msgstr "Version"
157
+
158
+ #: addquicktag.php:643
159
+ msgid "Author"
160
+ msgstr "Autor"
161
+
162
+ #~ msgid "Can not open for write!"
163
+ #~ msgstr "Öffnen zum Schreiben nicht möglich!"
164
+ #~ msgid "Can not write!"
165
+ #~ msgstr "Schreiben nicht möglich!"
166
+ #~ msgid "AddQuicktag options saved!"
167
+ #~ msgstr "AddQuicktag Einstellungen gespeichert!"
168
+ #~ msgid "Saved in: "
169
+ #~ msgstr "Gespeichert in: "
170
+ #~ msgid "/wpaq_export.wpaq</em>"
171
+ #~ msgstr "/wpaq_export.wpaq</em>"
172
+ #~ msgid "Import Quicktag buttons options"
173
+ #~ msgstr "Importiere deine Quicktag-buttons"
174
+
license.txt ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <http://www.gnu.org/philosophy/why-not-lgpl.html>.
readme.txt ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === AddQuicktag ===
2
+ Contributors: Bueltge
3
+ Donate link: http://bueltge.de/wunschliste/
4
+ Tags: quicktag, editor
5
+ Requires at least: 1.5
6
+ Tested up to: 3.1
7
+ Stable tag: 1.6.3
8
+
9
+ This plugin make it easy, Quicktags add to the editor. It is possible to ex- and import your Quicktags.
10
+
11
+ == Description ==
12
+ This plugin make it easy, Quicktags add to the editor. It is possible to ex- and import your Quicktags.
13
+
14
+ WP-AddQuicktag for WordPress is in originally by [Roel Meurders](http://roel.meurders.nl/ "Roel Meurders"). AddQuicktag is an newer version with more functions and worked in WP 2.1 and higher.
15
+
16
+ = More Plugins =
17
+ Please see also my [Premium Plugins](http://wpplugins.com/author/malo.conny/). Maybe you find an solution for your requirement.
18
+
19
+ = Interested in WordPress tips and tricks =
20
+ You may also be interested in WordPress tips and tricks at [WP Engineer](http://wpengineer.com/) or for german people [bueltge.de](http://bueltge.de/)
21
+
22
+
23
+ == Installation ==
24
+ 1. Unpack the download-package
25
+ 1. Upload the files to the `/wp-content/plugins/` directory
26
+ 1. Activate the plugin through the 'Plugins' menu in WordPress
27
+ 1. Got to 'Options' menu and configure the plugin
28
+
29
+ See on [the official website](http://bueltge.de/wp-addquicktags-de-plugin/120 "AddQuicktag").
30
+
31
+
32
+ == Screenshots ==
33
+ 1. options-area in WordPress 2.7
34
+ 2. editor with new Quicktags
35
+ 3. Comment-Editor with new Quicktags
36
+
37
+
38
+ == Other Notes ==
39
+ = Acknowledgements =
40
+ * Thanks to Yuuich on [www.u-1.net](http://www.u-1.net/ "Yuuich") for translate the plugin in japanese, Neil on [www.wmfield.idv.tw](http://www.wmfield.idv.tw/ "Yuuich") for translate the plugin in chinese, [Jean-Michel MEYER](http://www.li-an.fr/blog "Jean-Michel MEYER") for translate in french, italien translation by [Gianni Diurno](http://gidibao.net/ "Gianni Diurno"), Josef Klimosz on [http://blog.rudice.cz/](http://blog.rudice.cz/ "Josef Klimosz") for the czech language file, [Lagg3r](lagg3r.com.ar "Lagg3r") for spanish translation and Michal Maciejewski for polish translation.
41
+ * Thanks to [Fat Cow](http://www.fatcow.com/ "Fat Cow") for the belarussian language files.
42
+
43
+ = Licence =
44
+ Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a [small donation](http://bueltge.de/wunschliste/ "Wishliste and Donate") for the time I've spent writing and supporting this plugin. And I really don't want to know how many hours of my life this plugin has already eaten ;)
45
+
46
+ = Translations =
47
+ The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) (Windows).
48
+
49
+
50
+ == Frequently Asked Questions ==
51
+ = Where can I get more information? =
52
+ Please visit [the official website](http://bueltge.de/wp-addquicktags-de-plugin/120 "AddQuicktag") for the latest information on this plugin.
53
+
54
+ = I love this plugin! How can I show the developer how much I appreciate his work? =
55
+ Please visit [the official website](http://bueltge.de/wp-addquicktags-de-plugin/120 "AddQuicktag") and let him know your care or see the [wishlist](http://bueltge.de/wunschliste/ "Wishlist") of the author.
56
+
57
+
58
+ == Changelog ==
59
+ = v1.6.4 (12/22/2010) =
60
+ * small changes for depreaced WP functions
61
+
62
+ = v1.6.3 (16/06/2009) =
63
+ * Add belarussian language file, thanks to [Fat Cow](http://www.fatcow.com/ "Fat Cow")
64
+
65
+ Please see the older changes on version on the [the official website](http://bueltge.de/wp-addquicktags-de-plugin/120/#historie "AddQuicktag")!
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file