AddQuicktag - Version 1.5.8

Version Description

Download this release

Release Info

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

Code changes from version 1.5.7 to 1.5.8

addquicktag.php CHANGED
@@ -2,18 +2,18 @@
2
  /**
3
  * @package AddQuicktag
4
  * @author Roel Meurders, Frank Bültge
5
- * @version 1.5.7
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ültge
13
  Author URI: http://bueltge.de/
14
- Version: 1.5.7
15
  License: GNU General Public License
16
- Last Change: 17.12.2008 01:05: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,23 +35,41 @@ Last Change: 17.12.2008 01:05: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 and Wordpress 2.3;
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
  */
43
 
 
 
 
 
 
 
 
44
  // Pre-2.6 compatibility
45
  if ( !defined('WP_CONTENT_URL') )
46
  define( 'WP_CONTENT_URL', get_option('url') . '/wp-content');
47
  if ( !defined('WP_CONTENT_DIR') )
48
  define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
 
 
49
 
50
- define( 'WP_CONTENT_FOLDER', str_replace(ABSPATH, '/', WP_CONTENT_DIR) );
 
 
 
 
51
 
 
 
 
 
 
52
  function wpaq_textdomain() {
53
 
54
- if (function_exists('load_plugin_textdomain')) {
55
  if ( !defined('WP_PLUGIN_DIR') ) {
56
  load_plugin_textdomain('addquicktag', str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
57
  } else {
@@ -61,40 +79,135 @@ function wpaq_textdomain() {
61
  }
62
 
63
 
64
- // install options in table _options
 
 
 
 
65
  function wpaq_install() {
66
- global $wpdb;
 
 
 
 
 
 
 
 
 
 
 
67
 
68
- if (get_option('rmnlQuicktagSettings') == '') {
69
- $name = 'rmnlQuicktagSettings';
70
- $value = 'a:1:{s:7:"buttons";a:1:{i:0;a:3:{s:4:"text";s:7:"Example";s:5:"start";s:9:"<example>";s:3:"end";s:10:"</example>";}}}';
71
- $autoload = 'yes';
72
- $wpdb->query("INSERT INTO $wpdb->options (option_name, option_value, autoload) VALUES ('$name', '$value', '$autoload')");
73
- }
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
 
76
 
77
- // unsinstall options in table options
 
 
 
 
78
  function wpaq_uninstall() {
79
 
80
  delete_option('rmnlQuicktagSettings');
81
  }
82
 
83
 
84
- // options-page in wp-backend
85
- function wpaq_options_page() {
86
- global $wpdb, $wp_version;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
88
- $wpaq_document_root = $_SERVER['DOCUMENT_ROOT'] . $_SERVER['REQUEST_URI'];
89
- $wpaq_document_root = str_replace("/wp-admin/options-general.php?page=addquicktag.php", WP_CONTENT_FOLDER, $wpaq_document_root);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
- $wpaq_link = $_SERVER['REQUEST_URI'];
92
- $wpaq_link = str_replace("\\", "/", $wpaq_link);
 
 
 
 
 
 
 
 
 
93
 
94
  if ($_POST['wpaq']) {
95
- if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
96
-
97
  check_admin_referer('rmnl_nonce');
 
98
  $buttons = array();
99
  for ($i = 0; $i < count($_POST['wpaq']['buttons']); $i++){
100
  $b = $_POST['wpaq']['buttons'][$i];
@@ -110,83 +223,13 @@ function wpaq_options_page() {
110
  $message = '<br class="clear" /><div class="updated fade"><p><strong>' . __('Options saved.', 'addquicktag') . '</strong></p></div>';
111
 
112
  } else {
113
- wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.').'</p>');
114
- }
115
- }
116
-
117
- // Export sql-option
118
- if (($_POST['action'] == 'export')) {
119
- if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
120
-
121
- check_admin_referer('rmnl_nonce');
122
- $wpaq_data = mysql_query("SELECT option_value FROM $wpdb->options WHERE option_name = 'rmnlQuicktagSettings'");
123
- $wpaq_data = mysql_result($wpaq_data, 0);
124
- $file_name = $wpaq_document_root . '/wpaq_export-' . date('Y-m-d_G-i-s') . '.wpaq';
125
- $file_name = str_replace("//", "/", $file_name);
126
- $fh = @ fopen($file_name, 'w');
127
-
128
- if ($fh == false) {
129
- $message_export = '<br class="clear" /><div class="error"><p><strong>' . __('Can not open for write!', 'addquicktag') . ' - ' . get_bloginfo('url') . WP_CONTENT_FOLDER . '</strong></p></div>';
130
- } else {
131
- @flock($fh, LOCK_EXCLUSIVE);
132
- $err = @fputs($fh, $wpaq_data);
133
- @fclose($fh);
134
-
135
- if ($err === false) {
136
- $message_export = '<br class="clear" /><div class="error"><p><strong>' . __('Can not write!', 'addquicktag') . '</strong></p></div>';
137
- }
138
-
139
- $message_export = '<br class="clear" /><div class="updated fade"><p><strong>' . __('AddQuicktag options saved!', 'addquicktag') . '</strong><br />';
140
- $message_export.= __('Saved in: ', 'addquicktag') . $file_name;
141
- $message_export.= '</p></div>';
142
- }
143
-
144
- } else {
145
- wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.').'</p>');
146
- }
147
- }
148
-
149
- // Import the sql-file
150
- if (($_POST['action'] == 'import')) {
151
- if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
152
-
153
- check_admin_referer('rmnl_nonce');
154
- $message_export = '<br class="clear" /><div class="updated fade"><p>';
155
-
156
- // check file extension sql
157
- $str_file_name = $_FILES['datei']['name'];
158
- $str_file_ext = explode(".", $str_file_name);
159
-
160
- if ($str_file_ext[1] != 'wpaq') {
161
- $message_export.= __('Invalid file extension!', 'addquicktag');
162
- } elseif (file_exists($_FILES['datei']['name'])) {
163
- $message_export.= __('File is exist!', 'addquicktag');
164
- } else {
165
- // path for file
166
- $wpaq_document_root = str_replace("/wp-admin/options-general.php?page=addquicktag.php", WP_CONTENT_FOLDER, $wpaq_document_root);
167
- $str_ziel = $wpaq_document_root . '/' . $_FILES['datei']['name'];
168
- $str_ziel = str_replace("//", "/", $str_ziel);
169
- // transfer
170
- move_uploaded_file($_FILES['datei']['tmp_name'], $str_ziel);
171
- // access authorisation
172
- chmod($str_ziel, 0644);
173
- // SQL import
174
- ini_set('default_socket_timeout', 120);
175
- $import_file = file_get_contents($str_ziel);
176
- $wpdb->query("UPDATE $wpdb->options SET `option_value` = '$import_file' WHERE `option_name` = 'rmnlQuicktagSettings'");
177
- unlink($str_ziel);
178
- $message_export.= __('AddQuicktag options imported!', 'addquicktag');
179
- }
180
- $message_export.= '</p></div>';
181
-
182
- } else {
183
- wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.').'</p>');
184
  }
185
  }
186
 
187
  // Uninstall options
188
- if (($_POST['action'] == 'uninstall')) {
189
- if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
190
 
191
  check_admin_referer('rmnl_nonce');
192
  wpaq_uninstall();
@@ -195,7 +238,7 @@ function wpaq_options_page() {
195
  $message_export.= '</p></div>';
196
 
197
  } else {
198
- wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.').'</p>');
199
  }
200
  }
201
 
@@ -208,12 +251,13 @@ function wpaq_options_page() {
208
 
209
  // Export strings
210
  $button2 = __('Export &raquo;', 'addquicktag');
211
- $export1 = __('Export Quicktag buttons options', 'addquicktag');
212
- $export2 = __('You can save a .wpaq file with your options in <em>', 'addquicktag') . WP_CONTENT_FOLDER . __('/wpaq_export.wpaq</em>', 'addquicktag');
 
213
 
214
  // Import strings
215
  $button3 = __('Upload file and import &raquo;', 'addquicktag');
216
- $import1 = __('Import Quicktag buttons options', 'addquicktag');
217
  $import2 = __('Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>.', 'addquicktag');
218
  $import3 = __('Choose a file from your computer: ', 'addquicktag');
219
 
@@ -226,8 +270,22 @@ function wpaq_options_page() {
226
  $info0 = __('About the plugin', 'addquicktag');
227
  $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');
228
  $info2 = __('You want to thank me? Visit my <a href=\'http://bueltge.de/wunschliste/\'>wishlist</a>.', 'addquicktag');
229
-
230
- $o = get_option('rmnlQuicktagSettings');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  ?>
232
  <div class="wrap">
233
  <h2><?php _e('WP-Quicktag Management', 'addquicktag'); ?></h2>
@@ -286,26 +344,18 @@ function wpaq_options_page() {
286
  <div class="postbox closed">
287
  <h3><?php echo $export1; ?></h3>
288
  <div class="inside">
289
-
290
- <form name="form2" method="post" action="options-general.php?page=addquicktag.php">
291
- <?php wp_nonce_field('rmnl_nonce'); ?>
292
  <p><?php echo $export2; ?></p>
293
  <p id="submitbutton">
294
- <input class="button" type="submit" name="Submit_export" value="<?php echo $button2; ?>" />
295
- <input type="hidden" name="action" value="export" />
296
  </p>
297
  </form>
298
-
299
- </div>
300
- </div>
301
- </div>
302
-
303
- <div id="poststuff" class="ui-sortable">
304
- <div class="postbox closed">
305
- <h3><?php echo $import1; ?></h3>
306
- <div class="inside">
307
-
308
- <form name="form3" enctype="multipart/form-data" method="post" action="">
309
  <?php wp_nonce_field('rmnl_nonce'); ?>
310
  <p><?php echo $import2; ?></p>
311
  <p>
@@ -314,7 +364,7 @@ function wpaq_options_page() {
314
  </p>
315
  <p id="submitbutton">
316
  <input class="button" type="submit" name="Submit_import" value="<?php echo $button3; ?>" />
317
- <input type="hidden" name="action" value="import" />
318
  </p>
319
  </form>
320
 
@@ -353,7 +403,7 @@ function wpaq_options_page() {
353
 
354
  <script type="text/javascript">
355
  <!--
356
- <?php if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) ) { ?>
357
  jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
358
  <?php } ?>
359
  jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
@@ -427,12 +477,15 @@ if ( is_admin() ) {
427
  add_action('init', 'wpaq_textdomain');
428
  add_action('admin_menu', 'wpaq_add_settings_page');
429
  add_action('in_admin_footer', 'wpaq_admin_footer');
 
430
  }
431
 
432
 
433
  /**
434
  * Add action link(s) to plugins page
435
  * Thanks Dion Hulse -- http://dd32.id.au/wordpress-plugins/?configure-link
 
 
436
  */
437
  function wpaq_filter_plugin_actions($links, $file){
438
  static $this_plugin;
@@ -450,6 +503,8 @@ function wpaq_filter_plugin_actions($links, $file){
450
  /**
451
  * @version WP 2.7
452
  * Add action link(s) to plugins page
 
 
453
  */
454
  function wpaq_filter_plugin_actions_new($links) {
455
 
@@ -463,6 +518,8 @@ function wpaq_filter_plugin_actions_new($links) {
463
  /**
464
  * Images/ Icons in base64-encoding
465
  * @use function wpag_get_resource_url() for display
 
 
466
  */
467
  if( isset($_GET['resource']) && !empty($_GET['resource'])) {
468
  # base64 encoding performed by base64img.php from http://php.holtsmark.no
@@ -500,6 +557,8 @@ if( isset($_GET['resource']) && !empty($_GET['resource'])) {
500
  /**
501
  * Display Images/ Icons in base64-encoding
502
  * @return $resourceID
 
 
503
  */
504
  function wpag_get_resource_url($resourceID) {
505
 
@@ -509,6 +568,8 @@ function wpag_get_resource_url($resourceID) {
509
 
510
  /**
511
  * settings in plugin-admin-page
 
 
512
  */
513
  function wpaq_add_settings_page() {
514
  global $wp_version;
@@ -519,9 +580,9 @@ function wpaq_add_settings_page() {
519
  if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
520
  $menutitle = '<img src="' . wpag_get_resource_url('addquicktag.gif') . '" alt="" />' . ' ';
521
  }
522
- $menutitle .= __('Add Quicktag', 'addquicktag');
523
 
524
- add_options_page( __('WP-Quicktag &ndash; Add Quicktag', 'addquicktag'), $menutitle, 9, $plugin, 'wpaq_options_page');
525
 
526
  if ( version_compare( $wp_version, '2.6.999', '<' ) ) {
527
  add_filter('plugin_action_links', 'wpaq_filter_plugin_actions', 10, 2);
@@ -534,6 +595,8 @@ function wpaq_add_settings_page() {
534
 
535
  /**
536
  * credit in wp-footer
 
 
537
  */
538
  function wpaq_admin_footer() {
539
  if( basename($_SERVER['REQUEST_URI']) == 'addquicktag.php') {
2
  /**
3
  * @package AddQuicktag
4
  * @author Roel Meurders, Frank B&uuml;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&uuml;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
  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
  */
43
 
44
+
45
+ if ( !function_exists ('add_action') ) {
46
+ header('Status: 403 Forbidden');
47
+ header('HTTP/1.1 403 Forbidden');
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'] ) ) {
61
+ wpaq_export();
62
+ die();
63
+ }
64
 
65
+ /**
66
+ * active for multilanguage
67
+ *
68
+ * @package AddQuicktag
69
+ */
70
  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 {
79
  }
80
 
81
 
82
+ /**
83
+ * install options in table _options
84
+ *
85
+ * @package AddQuicktag
86
+ */
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
 
101
+
102
+ /**
103
+ * install options in table _options
104
+ *
105
+ * @package AddQuicktag
106
+ */
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
 
121
 
122
+ /**
123
+ * uninstall options in table _options
124
+ *
125
+ * @package AddQuicktag
126
+ */
127
  function wpaq_uninstall() {
128
 
129
  delete_option('rmnlQuicktagSettings');
130
  }
131
 
132
 
133
+ /**
134
+ * export options in file
135
+ *
136
+ * @package AddQuicktag
137
+ */
138
+ function wpaq_export() {
139
+ global $wpdb;
140
+
141
+ $filename = 'wpaq_export-' . date('Y-m-d_G-i-s') . '.wpaq';
142
+
143
+ header("Content-Description: File Transfer");
144
+ header("Content-Disposition: attachment; filename=" . urlencode($filename));
145
+ header("Content-Type: application/force-download");
146
+ header("Content-Type: application/octet-stream");
147
+ header("Content-Type: application/download");
148
+ header('Content-Type: text/wpaq; charset=' . get_option('blog_charset'), true);
149
+ flush();
150
+
151
+ $wpaq_data = mysql_query("SELECT option_value FROM $wpdb->options WHERE option_name = 'rmnlQuicktagSettings'");
152
+ $wpaq_data = mysql_result($wpaq_data, 0);
153
+ echo $wpaq_data;
154
+ flush();
155
+ }
156
+
157
+ /**
158
+ * import options in table _options
159
+ *
160
+ * @package AddQuicktag
161
+ */
162
+ function wpaq_import() {
163
 
164
+ if ( !current_user_can('manage_options') )
165
+ wp_die( __('Options not update - you don&lsquo;t have the privilidges to do this!', 'secure_wp') );
166
+
167
+ //cross check the given referer
168
+ check_admin_referer('rmnl_nonce');
169
+
170
+ // check file extension
171
+ $str_file_name = $_FILES['datei']['name'];
172
+ $str_file_ext = explode(".", $str_file_name);
173
+
174
+ if ($str_file_ext[1] != 'wpaq') {
175
+ $addreferer = 'notexist';
176
+ } elseif (file_exists($_FILES['datei']['name'])) {
177
+ $addreferer = 'exist';
178
+ } else {
179
+ // path for file
180
+ $str_ziel = WP_CONTENT_DIR . '/' . $_FILES['datei']['name'];
181
+ // transfer
182
+ move_uploaded_file($_FILES['datei']['tmp_name'], $str_ziel);
183
+ // access authorisation
184
+ chmod($str_ziel, 0644);
185
+ // SQL import
186
+ ini_set('default_socket_timeout', 120);
187
+ $import_file = file_get_contents($str_ziel);
188
+ wpaq_reset();
189
+ $import_file = unserialize($import_file);
190
+ update_option('rmnlQuicktagSettings', $import_file);
191
+ unlink($str_ziel);
192
+ $addreferer = 'true';
193
+ }
194
 
195
+ $referer = str_replace('&update=true&update=true', '', $_POST['_wp_http_referer'] );
196
+ wp_redirect($referer . '&update=' . $addreferer );
197
+ }
198
+
199
+ /**
200
+ * options page in backend of WP
201
+ *
202
+ * @package AddQuicktag
203
+ */
204
+ function wpaq_options_page() {
205
+ global $wp_version;
206
 
207
  if ($_POST['wpaq']) {
208
+ if ( current_user_can('edit_plugins') ) {
 
209
  check_admin_referer('rmnl_nonce');
210
+
211
  $buttons = array();
212
  for ($i = 0; $i < count($_POST['wpaq']['buttons']); $i++){
213
  $b = $_POST['wpaq']['buttons'][$i];
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
 
230
  // Uninstall options
231
+ if ( ($_POST['action'] == 'uninstall') ) {
232
+ if ( current_user_can('edit_plugins') ) {
233
 
234
  check_admin_referer('rmnl_nonce');
235
  wpaq_uninstall();
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
 
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
 
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
+ }
286
+
287
+ $o = get_option('rmnlQuicktagSettings');
288
+
289
  ?>
290
  <div class="wrap">
291
  <h2><?php _e('WP-Quicktag Management', 'addquicktag'); ?></h2>
344
  <div class="postbox closed">
345
  <h3><?php echo $export1; ?></h3>
346
  <div class="inside">
347
+
348
+ <h4><?php echo $export3; ?></h4>
349
+ <form name="form2" method="get" action="">
350
  <p><?php echo $export2; ?></p>
351
  <p id="submitbutton">
352
+ <input class="button" type="submit" name="submit" value="<?php echo $button2; ?>" />
353
+ <input type="hidden" name="export" value="true" />
354
  </p>
355
  </form>
356
+
357
+ <h4><?php echo $import1; ?></h4>
358
+ <form name="form3" enctype="multipart/form-data" method="post" action="admin-post.php">
 
 
 
 
 
 
 
 
359
  <?php wp_nonce_field('rmnl_nonce'); ?>
360
  <p><?php echo $import2; ?></p>
361
  <p>
364
  </p>
365
  <p id="submitbutton">
366
  <input class="button" type="submit" name="Submit_import" value="<?php echo $button3; ?>" />
367
+ <input type="hidden" name="action" value="wpaq_import" />
368
  </p>
369
  </form>
370
 
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'); } );
477
  add_action('init', 'wpaq_textdomain');
478
  add_action('admin_menu', 'wpaq_add_settings_page');
479
  add_action('in_admin_footer', 'wpaq_admin_footer');
480
+ add_action('admin_post_wpaq_import', 'wpaq_import' );
481
  }
482
 
483
 
484
  /**
485
  * Add action link(s) to plugins page
486
  * Thanks Dion Hulse -- http://dd32.id.au/wordpress-plugins/?configure-link
487
+ *
488
+ * @package AddQuicktag
489
  */
490
  function wpaq_filter_plugin_actions($links, $file){
491
  static $this_plugin;
503
  /**
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
 
518
  /**
519
  * Images/ Icons in base64-encoding
520
  * @use function wpag_get_resource_url() for display
521
+ *
522
+ * @package AddQuicktag
523
  */
524
  if( isset($_GET['resource']) && !empty($_GET['resource'])) {
525
  # base64 encoding performed by base64img.php from http://php.holtsmark.no
557
  /**
558
  * Display Images/ Icons in base64-encoding
559
  * @return $resourceID
560
+ *
561
+ * @package AddQuicktag
562
  */
563
  function wpag_get_resource_url($resourceID) {
564
 
568
 
569
  /**
570
  * settings in plugin-admin-page
571
+ *
572
+ * @package AddQuicktag
573
  */
574
  function wpaq_add_settings_page() {
575
  global $wp_version;
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);
595
 
596
  /**
597
  * credit in wp-footer
598
+ *
599
+ * @package AddQuicktag
600
  */
601
  function wpaq_admin_footer() {
602
  if( basename($_SERVER['REQUEST_URI']) == 'addquicktag.php') {
languages/addquicktag-cs_CZ.mo DELETED
Binary file
languages/addquicktag-cs_CZ.po DELETED
@@ -1,167 +0,0 @@
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,163 +2,162 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AddQuicktag\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-17 12:04+0100\n"
6
- "PO-Revision-Date: 2008-12-17 12:04+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:\\WP-Plugins\\addquicktag\\trunk\\\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: addquicktag.php:95
 
 
 
 
17
  msgid "Options saved."
18
  msgstr "Einstellungen gespeichert."
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 "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
26
 
27
- #: addquicktag.php:114
28
- msgid "Can not open for write!"
29
- msgstr "Öffnen zum Schreiben nicht möglich!"
30
-
31
- #: addquicktag.php:121
32
- msgid "Can not write!"
33
- msgstr "Schreiben nicht möglich!"
34
-
35
- #: addquicktag.php:124
36
- msgid "AddQuicktag options saved!"
37
- msgstr "AddQuicktag Einstellungen gespeichert!"
38
-
39
- #: addquicktag.php:125
40
- msgid "Saved in: "
41
- msgstr "Gespeichert in: "
42
-
43
- #: addquicktag.php:146
44
- msgid "Invalid file extension!"
45
- msgstr "Nicht zulässige Dateierweiterung!"
46
-
47
- #: addquicktag.php:148
48
- msgid "File is exist!"
49
- msgstr "Datei nicht vorhanden!"
50
-
51
- #: addquicktag.php:163
52
- msgid "AddQuicktag options imported!"
53
- msgstr "AddQuicktag Einstellungen importiert!"
54
-
55
- #: addquicktag.php:179
56
  msgid "AddQuicktag options have been deleted!"
57
  msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
58
 
59
- #: addquicktag.php:187
60
  msgid "Add or delete Quicktag buttons"
61
  msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
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 "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."
66
 
67
- #: addquicktag.php:189
68
  msgid "Button Label*"
69
  msgstr "Button Name*"
70
 
71
- #: addquicktag.php:190
72
  msgid "Start Tag(s)*"
73
  msgstr "Start Tag(s)*"
74
 
75
- #: addquicktag.php:191
76
  msgid "End Tag(s)"
77
  msgstr "Ende Tag(s)"
78
 
79
- #: addquicktag.php:192
80
  msgid "Update Options &raquo;"
81
  msgstr "Einstellungen aktualisieren &raquo;"
82
 
83
- #: addquicktag.php:195
84
  msgid "Export &raquo;"
85
  msgstr "Exportieren &raquo;"
86
 
87
- #: addquicktag.php:196
88
- msgid "Export Quicktag buttons options"
89
- msgstr "Exportiere deine Quicktag-buttons"
90
 
91
- #: addquicktag.php:197
92
- msgid "You can save a .wpaq file with your options in <em>"
93
- msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen auf <em>"
94
 
95
- #: addquicktag.php:197
96
- msgid "/wpaq_export.wpaq</em>"
97
- msgstr "/wpaq_export.wpaq</em>"
98
 
99
- #: addquicktag.php:200
100
  msgid "Upload file and import &raquo;"
101
  msgstr "Datei hochladen und importieren &raquo;"
102
 
103
- #: addquicktag.php:201
104
- msgid "Import Quicktag buttons options"
105
- msgstr "Importiere deine Quicktag-buttons"
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 "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
110
 
111
- #: addquicktag.php:203
112
  msgid "Choose a file from your computer: "
113
  msgstr "Wähle eine Datei von deinem Rechner. "
114
 
115
- #: addquicktag.php:206
116
  msgid "Uninstall Options &raquo;"
117
  msgstr "Einstellungen löschen &raquo;"
118
 
119
- #: addquicktag.php:207
120
  msgid "Uninstall options"
121
  msgstr "Deinstalliere Einstellungen"
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 "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
126
 
127
- #: addquicktag.php:211
128
  msgid "About the plugin"
129
  msgstr "Über das Plugin"
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 "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."
134
 
135
- #: addquicktag.php:213
136
  msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
137
  msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
138
 
139
- #: addquicktag.php:218
 
 
 
 
 
 
 
 
 
 
 
 
140
  #, fuzzy
141
  msgid "WP-Quicktag Management"
142
  msgstr "WP-Quicktag Verwaltung"
143
 
144
- #: addquicktag.php:428
145
- #: addquicktag.php:441
146
  msgid "Settings"
147
  msgstr "Einstellungen"
148
 
149
- #: addquicktag.php:507
150
- msgid "Add Quicktag"
151
- msgstr "Add Quicktag"
152
 
153
- #: addquicktag.php:509
154
- msgid "WP-Quicktag &ndash; Add Quicktag"
155
- msgstr "WP-Quicktag &ndash; Add Quicktag"
156
 
157
- #: addquicktag.php:526
158
  msgid "Version"
159
  msgstr "Version"
160
 
161
- #: addquicktag.php:526
162
  msgid "Author"
163
  msgstr "Autor"
164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
 
151
+ #~ msgid "Can not open for write!"
152
+ #~ msgstr "Öffnen zum Schreiben nicht möglich!"
153
+ #~ msgid "Can not write!"
154
+ #~ msgstr "Schreiben nicht möglich!"
155
+ #~ msgid "AddQuicktag options saved!"
156
+ #~ msgstr "AddQuicktag Einstellungen gespeichert!"
157
+ #~ msgid "Saved in: "
158
+ #~ msgstr "Gespeichert in: "
159
+ #~ msgid "/wpaq_export.wpaq</em>"
160
+ #~ msgstr "/wpaq_export.wpaq</em>"
161
+ #~ msgid "Import Quicktag buttons options"
162
+ #~ msgstr "Importiere deine Quicktag-buttons"
163
+
languages/addquicktag-fr_FR.mo DELETED
Binary file
languages/addquicktag-fr_FR.po DELETED
@@ -1,164 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AddQuicktag v1.5.7\n"
4
- "PO-Revision-Date: 2009-01-19 13:22-0500\n"
5
- "Last-Translator: Li-An <lian00@gmail.com>\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n>1;\n"
10
- "X-Poedit-Language: French\n"
11
- "X-Poedit-Country: FRANCE\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-SearchPath-0: ."
16
-
17
- #: addquicktag.php:110
18
- msgid "Options saved."
19
- msgstr "Options sauvegardées."
20
-
21
- #: addquicktag.php:113
22
- #: addquicktag.php:145
23
- #: addquicktag.php:183
24
- #: addquicktag.php:198
25
- msgid "You do not have sufficient permissions to edit plugins for this blog."
26
- msgstr "Vous n'avez pas les droits suffisants pour éditer les plugins de ce blog."
27
-
28
- #: addquicktag.php:129
29
- msgid "Can not open for write!"
30
- msgstr "Impossible d'ouvrir le fichier pour écriture !"
31
-
32
- #: addquicktag.php:136
33
- msgid "Can not write!"
34
- msgstr "Impossible d'écrire !"
35
-
36
- #: addquicktag.php:139
37
- msgid "AddQuicktag options saved!"
38
- msgstr "Options d'AddQuicktag sauvegardées !"
39
-
40
- #: addquicktag.php:140
41
- msgid "Saved in: "
42
- msgstr "Sauvegarder dans:"
43
-
44
- #: addquicktag.php:161
45
- msgid "Invalid file extension!"
46
- msgstr "Extension du fichier non valide !"
47
-
48
- #: addquicktag.php:163
49
- msgid "File is exist!"
50
- msgstr "Le fichier existe déjà ! "
51
-
52
- #: addquicktag.php:178
53
- msgid "AddQuicktag options imported!"
54
- msgstr "Options d'AddQuicktag importées !"
55
-
56
- #: addquicktag.php:194
57
- msgid "AddQuicktag options have been deleted!"
58
- msgstr "Les options d'AddQuicktag ont été effacées !"
59
-
60
- #: addquicktag.php:202
61
- msgid "Add or delete Quicktag buttons"
62
- msgstr "Ajouter ou supprimer des boutons Quicktag"
63
-
64
- #: addquicktag.php:203
65
- msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
66
- 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."
67
-
68
- #: addquicktag.php:204
69
- msgid "Button Label*"
70
- msgstr "Label du bouton*"
71
-
72
- #: addquicktag.php:205
73
- msgid "Start Tag(s)*"
74
- msgstr "Début du/des tag(s)*"
75
-
76
- #: addquicktag.php:206
77
- msgid "End Tag(s)"
78
- msgstr "Fin du(des) tag(s)"
79
-
80
- #: addquicktag.php:207
81
- msgid "Update Options &raquo;"
82
- msgstr "Mise à jour des options &raquo;"
83
-
84
- #: addquicktag.php:210
85
- msgid "Export &raquo;"
86
- msgstr "Exporter &raquo;"
87
-
88
- #: addquicktag.php:211
89
- msgid "Export Quicktag buttons options"
90
- msgstr "Exporter les options des boutons Quicktag"
91
-
92
- #: addquicktag.php:212
93
- msgid "You can save a .wpaq file with your options in <em>"
94
- msgstr "Vous pouvez sauvegarder un fichier .wpaq avec vos options dans <em>"
95
-
96
- #: addquicktag.php:212
97
- msgid "/wpaq_export.wpaq</em>"
98
- msgstr "/wpaq_export.wpaq</em>"
99
-
100
- #: addquicktag.php:215
101
- msgid "Upload file and import &raquo;"
102
- msgstr "Uploader et importer fichier &raquo;"
103
-
104
- #: addquicktag.php:216
105
- msgid "Import Quicktag buttons options"
106
- msgstr "Importer les options des boutons Quicktag"
107
-
108
- #: addquicktag.php:217
109
- msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
110
- msgstr "Choisir un fichier (<em>.wpaq</em>) à uploader, puis cliquer sur <em>Uploader et importer fichier </em>."
111
-
112
- #: addquicktag.php:218
113
- msgid "Choose a file from your computer: "
114
- msgstr "Choisir un fichier sur votre ordinateur:"
115
-
116
- #: addquicktag.php:221
117
- msgid "Uninstall Options &raquo;"
118
- msgstr "Options de désinstallation &raquo;"
119
-
120
- #: addquicktag.php:222
121
- msgid "Uninstall options"
122
- msgstr "Options de désinstallation"
123
-
124
- #: addquicktag.php:223
125
- msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
126
- msgstr "Ce bouton efface toutes les options du plugin WP-AddQuicktag. <strong>Attention: </strong> vous ne pourrez pas annuler cette action !"
127
-
128
- #: addquicktag.php:226
129
- msgid "About the plugin"
130
- msgstr "À propos du plugin"
131
-
132
- #: addquicktag.php:227
133
- 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."
134
- 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."
135
-
136
- #: addquicktag.php:228
137
- msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
138
- msgstr "Vous désirez me remercier ? Visitez ma <a href='http://bueltge.de/wunschliste/'>liste de cadeaux</a>."
139
-
140
- #: addquicktag.php:233
141
- msgid "WP-Quicktag Management"
142
- msgstr "Gestion de WP-Quicktag"
143
-
144
- #: addquicktag.php:443
145
- #: addquicktag.php:456
146
- msgid "Settings"
147
- msgstr "Réglages"
148
-
149
- #: addquicktag.php:522
150
- msgid "Add Quicktag"
151
- msgstr "Ajouter un Quicktag"
152
-
153
- #: addquicktag.php:524
154
- msgid "WP-Quicktag &ndash; Add Quicktag"
155
- msgstr "WP-Quicktag &ndash; ajouter un Quicktag"
156
-
157
- #: addquicktag.php:541
158
- msgid "Version"
159
- msgstr "Version"
160
-
161
- #: addquicktag.php:541
162
- msgid "Author"
163
- msgstr "Auteur"
164
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/addquicktag-it_IT.mo DELETED
Binary file
languages/addquicktag-it_IT.po DELETED
@@ -1,165 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AddQuicktag in italiano\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-01 14:39+0100\n"
6
- "PO-Revision-Date: 2008-12-17 13:19+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:95
20
- msgid "Options saved."
21
- msgstr "Le opzioni sono state salvate."
22
-
23
- #: addquicktag.php:98
24
- #: addquicktag.php:130
25
- #: addquicktag.php:168
26
- #: addquicktag.php:183
27
- msgid "You do not have sufficient permissions to edit plugins for this blog."
28
- msgstr "Non hai i permessi necessari per poter modificare i plugin di questo blog"
29
-
30
- #: addquicktag.php:114
31
- msgid "Can not open for write!"
32
- msgstr "Non é possibile la scrittura!"
33
-
34
- #: addquicktag.php:121
35
- msgid "Can not write!"
36
- msgstr "Non é possibile la scrittura!"
37
-
38
- #: addquicktag.php:124
39
- msgid "AddQuicktag options saved!"
40
- msgstr "Le opzioni di AddQuicktag sono state salvate!"
41
-
42
- #: addquicktag.php:125
43
- msgid "Saved in: "
44
- msgstr "Salvate in:"
45
-
46
- #: addquicktag.php:146
47
- msgid "Invalid file extension!"
48
- msgstr "L'estensione del file non é valida!"
49
-
50
- #: addquicktag.php:148
51
- msgid "File is exist!"
52
- msgstr "Il file é presente!"
53
-
54
- #: addquicktag.php:163
55
- msgid "AddQuicktag options imported!"
56
- msgstr "Le opzioni di AddQuicktag sono state importate!"
57
-
58
- #: addquicktag.php:179
59
- msgid "AddQuicktag options have been deleted!"
60
- msgstr "Le opzioni di AddQuicktag sono state cancellate!"
61
-
62
- #: addquicktag.php:187
63
- msgid "Add or delete Quicktag buttons"
64
- msgstr "Aggiungi o cancella i pulsanti Quicktag"
65
-
66
- #: 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 "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."
69
-
70
- #: addquicktag.php:189
71
- msgid "Button Label*"
72
- msgstr "Etichetta del pulsante*"
73
-
74
- #: addquicktag.php:190
75
- msgid "Start Tag(s)*"
76
- msgstr "Davanti al/ai tag*"
77
-
78
- #: addquicktag.php:191
79
- msgid "End Tag(s)"
80
- msgstr "In coda al/ai tag"
81
-
82
- #: addquicktag.php:192
83
- msgid "Update Options &raquo;"
84
- msgstr "Aggiorna le opzioni &raquo;"
85
-
86
- #: addquicktag.php:195
87
- msgid "Export &raquo;"
88
- msgstr "Esporta &raquo;"
89
-
90
- #: addquicktag.php:196
91
- msgid "Export Quicktag buttons options"
92
- msgstr "Esporta le opzioni dei pulsanti Quicktag"
93
-
94
- #: addquicktag.php:197
95
- msgid "You can save a .wpaq file with your options in <em>"
96
- msgstr "Puoi salvare un file .wpaq personalizzato in <em>"
97
-
98
- #: addquicktag.php:197
99
- msgid "/wpaq_export.wpaq</em>"
100
- msgstr "/wpaq_export.wpaq</em>"
101
-
102
- #: addquicktag.php:200
103
- msgid "Upload file and import &raquo;"
104
- msgstr "Carica il file e importa &raquo;"
105
-
106
- #: addquicktag.php:201
107
- msgid "Import Quicktag buttons options"
108
- msgstr "Importa le opzioni dei pulsanti Quicktag"
109
-
110
- #: addquicktag.php:202
111
- msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
112
- msgstr "Scegli un file Quicktag (<em>.wpaq</em>) da caricare poi, clicca su <em>Carica il file e importa</em>."
113
-
114
- #: addquicktag.php:203
115
- msgid "Choose a file from your computer: "
116
- msgstr "Scegli un file dal tuo computer:"
117
-
118
- #: addquicktag.php:206
119
- msgid "Uninstall Options &raquo;"
120
- msgstr "Disinstalla &raquo;"
121
-
122
- #: addquicktag.php:207
123
- msgid "Uninstall options"
124
- msgstr "Disinstalla le opzioni"
125
-
126
- #: addquicktag.php:208
127
- msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
128
- msgstr "Il pulsante qui sotto cancellerà tutte le modifiche apportate alle opzioni del plugin WP-AddQuicktag. <strong>Attenzione: </strong>l'azione non é reversibile!"
129
-
130
- #: addquicktag.php:211
131
- msgid "About the plugin"
132
- msgstr "Info Plugin"
133
-
134
- #: 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 "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."
137
-
138
- #: addquicktag.php:213
139
- msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
140
- msgstr "Desideri ringraziarmi? Visita la mia <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
141
-
142
- #: addquicktag.php:218
143
- msgid "WP-Quicktag Management"
144
- msgstr "Gestione WP-Quicktag"
145
-
146
- #: addquicktag.php:428
147
- msgid "Settings"
148
- msgstr "Impostazioni"
149
-
150
- #: addquicktag.php:493
151
- msgid "Add Quicktag"
152
- msgstr "Aggiungi Quicktag"
153
-
154
- #: addquicktag.php:495
155
- msgid "WP-Quicktag &ndash; Add Quicktag"
156
- msgstr "WP-Quicktag &ndash; Aggiungi Quicktag"
157
-
158
- #: addquicktag.php:507
159
- msgid "Version"
160
- msgstr "Versione"
161
-
162
- #: addquicktag.php:507
163
- msgid "Author"
164
- msgstr "Autore"
165
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/addquicktag-ja.mo DELETED
Binary file
languages/addquicktag-ja.po DELETED
@@ -1,138 +0,0 @@
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-ro_RO.mo DELETED
Binary file
languages/addquicktag-ro_RO.po DELETED
@@ -1,162 +0,0 @@
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-zh_TW.mo DELETED
Binary file
languages/addquicktag-zh_TW.po DELETED
@@ -1,138 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AddQuicktag\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-04-09 13:00+0800\n"
6
- "PO-Revision-Date: 2008-07-03 13:23+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
- "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:81
21
- msgid "Options saved."
22
- msgstr "設定已儲存。"
23
-
24
- #: addquicktag.php:84
25
- #: addquicktag.php:116
26
- #: addquicktag.php:154
27
- #: addquicktag.php:169
28
- msgid "You do not have sufficient permissions to edit plugins for this blog."
29
- msgstr "您沒有足夠權限可以編輯此部落格的外掛。"
30
-
31
- #: addquicktag.php:100
32
- msgid "Can not open for write!"
33
- msgstr "無法開啟檔案以寫入!"
34
-
35
- #: addquicktag.php:107
36
- msgid "Can not write!"
37
- msgstr "無法寫入!"
38
-
39
- #: addquicktag.php:110
40
- msgid "AddQuicktag options saved!"
41
- msgstr "AddQuicktag 設定已儲存!"
42
-
43
- #: addquicktag.php:111
44
- msgid "Saved in: "
45
- msgstr "儲存於:"
46
-
47
- #: addquicktag.php:132
48
- msgid "Invalid file extension!"
49
- msgstr "無效的檔案格式!"
50
-
51
- #: addquicktag.php:134
52
- msgid "File is exist!"
53
- msgstr "檔案已存在!"
54
-
55
- #: addquicktag.php:149
56
- msgid "AddQuicktag options imported!"
57
- msgstr "AddQuicktag 設定已匯入!"
58
-
59
- #: addquicktag.php:165
60
- msgid "AddQuicktag options have been deleted!"
61
- msgstr "AddQuicktag 設定已刪除!"
62
-
63
- #: addquicktag.php:173
64
- msgid "Add or delete Quicktag buttons"
65
- msgstr "增加或刪除 Quicktag 按鈕"
66
-
67
- #: addquicktag.php:174
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 "在以下空格中加入或編輯 quicktags,附加星號的空格是必填項目,清除空格內容就可以刪除按鈕。"
70
-
71
- #: addquicktag.php:175
72
- msgid "Button Label*"
73
- msgstr "按鈕名稱*"
74
-
75
- #: addquicktag.php:176
76
- msgid "Start Tag(s)*"
77
- msgstr "開始標籤*"
78
-
79
- #: addquicktag.php:177
80
- msgid "End Tag(s)"
81
- msgstr "結束標籤"
82
-
83
- #: addquicktag.php:178
84
- msgid "Update Options &raquo;"
85
- msgstr "更新設定 &raquo;"
86
-
87
- #: addquicktag.php:181
88
- msgid "Export &raquo;"
89
- msgstr "匯出 &raquo;"
90
-
91
- #: addquicktag.php:182
92
- msgid "Export Quicktag buttons options"
93
- msgstr "匯出 Quicktag 按鈕設定"
94
-
95
- #: addquicktag.php:183
96
- msgid "You can save a .wpaq file with your options in <em>/wp-content/wpaq_export.wpaq</em>"
97
- msgstr "您可以將您的設定值以 .wpaq 檔案儲存在 <em>/wp-content/wpaq_export.wpaq</em> 。"
98
-
99
- #: addquicktag.php:186
100
- msgid "Upload file and import &raquo;"
101
- msgstr "上傳並匯入檔案 &raquo;"
102
-
103
- #: addquicktag.php:187
104
- msgid "Import Quicktag buttons options"
105
- msgstr "匯入 Quicktag 按鈕設定"
106
-
107
- #: addquicktag.php:188
108
- msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
109
- msgstr "請選擇一個 Quicktag (<em>.wpaq</em>) 檔案上傳,然後再按 <em>上傳並匯入檔案</em> 。"
110
-
111
- #: addquicktag.php:189
112
- msgid "Choose a file from your computer: "
113
- msgstr "從您的電腦中選擇一個檔案:"
114
-
115
- #: addquicktag.php:192
116
- msgid "Uninstall Options &raquo;"
117
- msgstr "移除設定 &raquo;"
118
-
119
- #: addquicktag.php:193
120
- msgid "Uninstall options"
121
- msgstr "移除設定"
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 "此按鈕將會刪除所有 WP-AddQuicktag 外掛的設定值,請在停用外掛 <strong>之前</strong> 使用它。<br /><strong>注意:</strong>您將不能回復此動作!"
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.pot DELETED
@@ -1,162 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AddQuicktag\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-01 14:39+0100\n"
6
- "PO-Revision-Date: 2008-11-01 14:40+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:\\WP-Plugins\\addquicktag\\trunk\\\n"
14
- "X-Poedit-SearchPath-0: .\n"
15
-
16
- #: addquicktag.php:95
17
- msgid "Options saved."
18
- msgstr "Einstellungen gespeichert."
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 "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
26
-
27
- #: addquicktag.php:114
28
- msgid "Can not open for write!"
29
- msgstr "Öffnen zum Schreiben nicht möglich!"
30
-
31
- #: addquicktag.php:121
32
- msgid "Can not write!"
33
- msgstr "Schreiben nicht möglich!"
34
-
35
- #: addquicktag.php:124
36
- msgid "AddQuicktag options saved!"
37
- msgstr "AddQuicktag Einstellungen gespeichert!"
38
-
39
- #: addquicktag.php:125
40
- msgid "Saved in: "
41
- msgstr "Gespeichert in: "
42
-
43
- #: addquicktag.php:146
44
- msgid "Invalid file extension!"
45
- msgstr "Nicht zulässige Dateierweiterung!"
46
-
47
- #: addquicktag.php:148
48
- msgid "File is exist!"
49
- msgstr "Datei nicht vorhanden!"
50
-
51
- #: addquicktag.php:163
52
- msgid "AddQuicktag options imported!"
53
- msgstr "AddQuicktag Einstellungen importiert!"
54
-
55
- #: addquicktag.php:179
56
- msgid "AddQuicktag options have been deleted!"
57
- msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
58
-
59
- #: addquicktag.php:187
60
- msgid "Add or delete Quicktag buttons"
61
- msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
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 "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."
66
-
67
- #: addquicktag.php:189
68
- msgid "Button Label*"
69
- msgstr "Button Name*"
70
-
71
- #: addquicktag.php:190
72
- msgid "Start Tag(s)*"
73
- msgstr "Start Tag(s)*"
74
-
75
- #: addquicktag.php:191
76
- msgid "End Tag(s)"
77
- msgstr "Ende Tag(s)"
78
-
79
- #: addquicktag.php:192
80
- msgid "Update Options &raquo;"
81
- msgstr "Einstellungen aktualisieren &raquo;"
82
-
83
- #: addquicktag.php:195
84
- msgid "Export &raquo;"
85
- msgstr "Exportieren &raquo;"
86
-
87
- #: addquicktag.php:196
88
- msgid "Export Quicktag buttons options"
89
- msgstr "Exportiere deine Quicktag-buttons"
90
-
91
- #: addquicktag.php:197
92
- msgid "You can save a .wpaq file with your options in <em>"
93
- msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen auf <em>"
94
-
95
- #: addquicktag.php:197
96
- msgid "/wpaq_export.wpaq</em>"
97
- msgstr "/wpaq_export.wpaq</em>"
98
-
99
- #: addquicktag.php:200
100
- msgid "Upload file and import &raquo;"
101
- msgstr "Datei hochladen und importieren &raquo;"
102
-
103
- #: addquicktag.php:201
104
- msgid "Import Quicktag buttons options"
105
- msgstr "Importiere deine Quicktag-buttons"
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 "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
110
-
111
- #: addquicktag.php:203
112
- msgid "Choose a file from your computer: "
113
- msgstr "Wähle eine Datei von deinem Rechner. "
114
-
115
- #: addquicktag.php:206
116
- msgid "Uninstall Options &raquo;"
117
- msgstr "Einstellungen löschen &raquo;"
118
-
119
- #: addquicktag.php:207
120
- msgid "Uninstall options"
121
- msgstr "Deinstalliere Einstellungen"
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 "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
126
-
127
- #: addquicktag.php:211
128
- msgid "About the plugin"
129
- msgstr "Über das Plugin"
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 "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."
134
-
135
- #: addquicktag.php:213
136
- msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
137
- msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
138
-
139
- #: addquicktag.php:218
140
- msgid "WP-Quicktag Management"
141
- msgstr "WP-Quicktag Verwaltung"
142
-
143
- #: addquicktag.php:428
144
- msgid "Settings"
145
- msgstr "Einstellungen"
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 "Version"
158
-
159
- #: addquicktag.php:507
160
- msgid "Author"
161
- msgstr "Autor"
162
-