Version Description
- complete redesign, new code from the first line
- add function for add quicktags on html and visual editor
- works also on Multisite Network
- new settings page
- add fallback in JS to use this new version also in WordPress smaller 3.3
- add serbian language files
Download this release
Release Info
Developer | Bueltge |
Plugin | AddQuicktag |
Version | 2.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.6.5 to 2.0.0
- addquicktag.php +193 -914
- inc/class-imexport.php +207 -0
- inc/class-settings.php +475 -0
- inc/class-tinymce.php +69 -0
- inc/tinymce/editor_plugin.dev.js +77 -0
- inc/tinymce/editor_plugin.js +7 -0
- inc/tinymce/langs/de.js +5 -0
- inc/tinymce/langs/en.js +5 -0
- js/add-quicktags.dev.js +29 -0
- js/add-quicktags.js +7 -0
- js/add-quicktags_32.dev.js +43 -0
- js/add-quicktags_32.js +7 -0
- languages/addquicktag-cs_CZ.mo +0 -0
- languages/addquicktag-cs_CZ.po +0 -167
- languages/addquicktag-de_DE.mo +0 -0
- languages/addquicktag-de_DE.po +183 -136
- languages/addquicktag-es_ES.mo +0 -0
- languages/addquicktag-fr_FR.mo +0 -0
- languages/addquicktag-fr_FR.po +0 -197
- languages/addquicktag-it_IT.mo +0 -0
- languages/addquicktag-it_IT.po +0 -180
- languages/addquicktag-ja.mo +0 -0
- languages/addquicktag-ja.po +0 -138
- languages/addquicktag-pl_PL.mo +0 -0
- languages/addquicktag-pl_PL.po +0 -162
- languages/addquicktag-ro_RO.mo +0 -0
- languages/addquicktag-ro_RO.po +0 -162
- languages/addquicktag-ru_RU.mo +0 -0
- languages/addquicktag-ru_RU.po +0 -176
- languages/addquicktag-sr_RS.mo +0 -0
- languages/{addquicktag-es_ES.po → addquicktag-sr_RS.po} +164 -164
- languages/addquicktag-xx_XX.pot +221 -0
- languages/addquicktag-zh_TW.mo +0 -0
- languages/addquicktag-zh_TW.po +0 -166
- languages/addquicktag.pot +0 -174
- readme.txt +35 -28
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
addquicktag.php
CHANGED
@@ -1,952 +1,231 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
-
*
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
This Wordpress plugin is released "as is". Without any warranty. The authors cannot
|
38 |
-
be held responsible for any damage that this script might cause.
|
39 |
*/
|
40 |
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
exit();
|
46 |
-
}
|
47 |
-
|
48 |
-
if ( function_exists('add_action') ) {
|
49 |
-
// Pre-2.6 compatibility
|
50 |
-
if ( !defined('WP_CONTENT_URL') )
|
51 |
-
define( 'WP_CONTENT_URL', get_option('url') . '/wp-content');
|
52 |
-
if ( !defined('WP_CONTENT_DIR') )
|
53 |
-
define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
|
54 |
-
if ( !defined('WP_CONTENT_FOLDER') )
|
55 |
-
define( 'WP_CONTENT_FOLDER', str_replace(ABSPATH, '/', WP_CONTENT_DIR) );
|
56 |
-
|
57 |
-
// plugin definitions
|
58 |
-
define( 'FB_WPAQ_BASENAME', plugin_basename( __FILE__ ) );
|
59 |
-
define( 'FB_WPAQ_BASEFOLDER', plugin_basename( dirname( __FILE__ ) ) );
|
60 |
-
define( 'FB_WPAQ_TEXTDOMAIN', 'addquicktag' );
|
61 |
-
}
|
62 |
-
|
63 |
-
// send file for save
|
64 |
-
if ( isset( $_GET['export'] ) ) {
|
65 |
-
wpaq_export();
|
66 |
-
die();
|
67 |
-
}
|
68 |
-
|
69 |
-
/**
|
70 |
-
* active for multilanguage
|
71 |
-
*
|
72 |
-
* @package AddQuicktag
|
73 |
-
*/
|
74 |
-
function wpaq_textdomain() {
|
75 |
-
|
76 |
-
if ( function_exists('load_plugin_textdomain') ) {
|
77 |
-
if ( !defined('WP_PLUGIN_DIR') ) {
|
78 |
-
load_plugin_textdomain( FB_WPAQ_TEXTDOMAIN, str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages' );
|
79 |
-
} else {
|
80 |
-
load_plugin_textdomain( FB_WPAQ_TEXTDOMAIN, false, dirname( plugin_basename(__FILE__) ) . '/languages' );
|
81 |
-
}
|
82 |
-
}
|
83 |
-
}
|
84 |
-
|
85 |
-
|
86 |
-
/**
|
87 |
-
* install options in table _options
|
88 |
-
*
|
89 |
-
* @package AddQuicktag
|
90 |
-
*/
|
91 |
-
function wpaq_install() {
|
92 |
|
93 |
-
|
94 |
-
'buttons' => array(
|
95 |
-
array(
|
96 |
-
'text' => 'Example',
|
97 |
-
'title' => 'Example Title',
|
98 |
-
'start' => '<example>',
|
99 |
-
'end' => '</example>'
|
100 |
-
)
|
101 |
-
)
|
102 |
-
);
|
103 |
-
add_option('rmnlQuicktagSettings', $rmnlQuicktagSettings);
|
104 |
-
}
|
105 |
-
|
106 |
-
|
107 |
-
/**
|
108 |
-
* install options in table _options
|
109 |
-
*
|
110 |
-
* @package AddQuicktag
|
111 |
-
*/
|
112 |
-
function wpaq_reset() {
|
113 |
|
114 |
-
$
|
115 |
-
'buttons' => array(
|
116 |
-
array(
|
117 |
-
'text' => 'Reset',
|
118 |
-
'title' => 'Reset Title',
|
119 |
-
'start' => '<reset>',
|
120 |
-
'end' => '</reset>'
|
121 |
-
)
|
122 |
-
)
|
123 |
-
);
|
124 |
-
update_option('rmnlQuicktagSettings', $rmnlQuicktagSettings);
|
125 |
-
}
|
126 |
-
|
127 |
-
|
128 |
-
/**
|
129 |
-
* uninstall options in table _options
|
130 |
-
*
|
131 |
-
* @package AddQuicktag
|
132 |
-
*/
|
133 |
-
function wpaq_uninstall() {
|
134 |
|
135 |
-
|
136 |
-
}
|
137 |
-
|
138 |
-
|
139 |
-
/**
|
140 |
-
* export options in file
|
141 |
-
*
|
142 |
-
* @package AddQuicktag
|
143 |
-
*/
|
144 |
-
function wpaq_export() {
|
145 |
-
global $wpdb;
|
146 |
-
|
147 |
-
$filename = 'wpaq_export-' . date('Y-m-d_G-i-s') . '.wpaq';
|
148 |
-
|
149 |
-
header("Content-Description: File Transfer");
|
150 |
-
header("Content-Disposition: attachment; filename=" . urlencode($filename));
|
151 |
-
header("Content-Type: application/force-download");
|
152 |
-
header("Content-Type: application/octet-stream");
|
153 |
-
header("Content-Type: application/download");
|
154 |
-
header('Content-Type: text/wpaq; charset=' . get_option('blog_charset'), true);
|
155 |
-
flush();
|
156 |
-
|
157 |
-
$wpaq_data = mysql_query("SELECT option_value FROM $wpdb->options WHERE option_name = 'rmnlQuicktagSettings'");
|
158 |
-
$wpaq_data = mysql_result($wpaq_data, 0);
|
159 |
-
echo $wpaq_data;
|
160 |
-
flush();
|
161 |
-
}
|
162 |
-
|
163 |
-
/**
|
164 |
-
* import options in table _options
|
165 |
-
*
|
166 |
-
* @package AddQuicktag
|
167 |
-
*/
|
168 |
-
function wpaq_import() {
|
169 |
|
170 |
-
|
171 |
-
wp_die( __('Options not update - you don‘t have the privilidges to do this!', 'secure_wp') );
|
172 |
-
|
173 |
-
//cross check the given referer
|
174 |
-
check_admin_referer('rmnl_nonce');
|
175 |
-
|
176 |
-
// check file extension
|
177 |
-
$str_file_name = $_FILES['datei']['name'];
|
178 |
-
$str_file_ext = explode(".", $str_file_name);
|
179 |
-
|
180 |
-
if ($str_file_ext[1] != 'wpaq') {
|
181 |
-
$addreferer = 'notexist';
|
182 |
-
} elseif (file_exists($_FILES['datei']['name'])) {
|
183 |
-
$addreferer = 'exist';
|
184 |
-
} else {
|
185 |
-
// path for file
|
186 |
-
$str_ziel = WP_CONTENT_DIR . '/' . $_FILES['datei']['name'];
|
187 |
-
// ToDO
|
188 |
-
// check for rights 0777
|
189 |
-
// transfer
|
190 |
-
move_uploaded_file($_FILES['datei']['tmp_name'], $str_ziel);
|
191 |
-
// access authorisation
|
192 |
-
chmod($str_ziel, 0644);
|
193 |
-
// SQL import
|
194 |
-
ini_set('default_socket_timeout', 120);
|
195 |
-
$import_file = file_get_contents($str_ziel);
|
196 |
-
wpaq_reset();
|
197 |
-
$import_file = unserialize($import_file);
|
198 |
-
update_option('rmnlQuicktagSettings', $import_file);
|
199 |
-
unlink($str_ziel);
|
200 |
-
$addreferer = 'true';
|
201 |
-
}
|
202 |
-
|
203 |
-
$referer = str_replace('&update=true&update=true', '', $_POST['_wp_http_referer'] );
|
204 |
-
wp_redirect($referer . '&update=' . $addreferer );
|
205 |
-
}
|
206 |
-
|
207 |
-
/**
|
208 |
-
* options page in backend of WP
|
209 |
-
*
|
210 |
-
* @package AddQuicktag
|
211 |
-
*/
|
212 |
-
function wpaq_options_page() {
|
213 |
-
global $wp_version;
|
214 |
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
check_admin_referer('rmnl_nonce');
|
244 |
-
wpaq_uninstall();
|
245 |
-
$message_export = '<br class="clear" /><div class="updated fade"><p>';
|
246 |
-
$message_export.= __('AddQuicktag options have been deleted!', FB_WPAQ_TEXTDOMAIN );
|
247 |
-
$message_export.= '</p></div>';
|
248 |
-
|
249 |
-
} else {
|
250 |
-
wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.', FB_WPAQ_TEXTDOMAIN ).'</p>');
|
251 |
-
}
|
252 |
}
|
253 |
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
$field3 = __('Start Tag(s)*', FB_WPAQ_TEXTDOMAIN );
|
259 |
-
$field4 = __('End Tag(s)', FB_WPAQ_TEXTDOMAIN );
|
260 |
-
$button1 = __('Update Options »', FB_WPAQ_TEXTDOMAIN );
|
261 |
-
|
262 |
-
// Export strings
|
263 |
-
$button2 = __('Export »', FB_WPAQ_TEXTDOMAIN );
|
264 |
-
$export1 = __('Export/Import AddQuicktag buttons options', FB_WPAQ_TEXTDOMAIN );
|
265 |
-
$export2 = __('You can save a .wpaq file with your options.', FB_WPAQ_TEXTDOMAIN );
|
266 |
-
$export3 = __('Export', FB_WPAQ_TEXTDOMAIN );
|
267 |
-
|
268 |
-
// Import strings
|
269 |
-
$button3 = __('Upload file and import »', FB_WPAQ_TEXTDOMAIN );
|
270 |
-
$import1 = __('Import', FB_WPAQ_TEXTDOMAIN );
|
271 |
-
$import2 = __('Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>.', FB_WPAQ_TEXTDOMAIN );
|
272 |
-
$import3 = __('Choose a file from your computer: ', FB_WPAQ_TEXTDOMAIN );
|
273 |
-
|
274 |
-
// Uninstall strings
|
275 |
-
$button4 = __('Uninstall Options »', FB_WPAQ_TEXTDOMAIN );
|
276 |
-
$uninstall1 = __('Uninstall options', FB_WPAQ_TEXTDOMAIN );
|
277 |
-
$uninstall2 = __('This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!', FB_WPAQ_TEXTDOMAIN );
|
278 |
-
|
279 |
-
// Info
|
280 |
-
$info0 = __('About the plugin', FB_WPAQ_TEXTDOMAIN );
|
281 |
-
$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 );
|
282 |
-
$info2 = __('You want to thank me? Visit my <a href=\'http://bueltge.de/wunschliste/\'>wishlist</a> or donate.', FB_WPAQ_TEXTDOMAIN );
|
283 |
-
|
284 |
-
// message for import, after redirect
|
285 |
-
if ( strpos($_SERVER['REQUEST_URI'], 'addquicktag.php') && isset($_GET['update']) && $_GET['update'] && isset($_POST['uninstall']) && !$_POST['uninstall'] ) {
|
286 |
-
$message_export = '<br class="clear" /><div class="updated fade"><p>';
|
287 |
-
if ( $_GET['update'] == 'true' ) {
|
288 |
-
$message_export .= __('AddQuicktag options imported!', FB_WPAQ_TEXTDOMAIN );
|
289 |
-
} elseif( $_GET['update'] == 'exist' ) {
|
290 |
-
$message_export .= __('File is exist!', FB_WPAQ_TEXTDOMAIN );
|
291 |
-
} elseif( $_GET['update'] == 'notexist' ) {
|
292 |
-
$message_export .= __('Invalid file extension!', FB_WPAQ_TEXTDOMAIN );
|
293 |
-
}
|
294 |
-
$message_export .= '</p></div>';
|
295 |
}
|
296 |
|
297 |
-
|
298 |
-
|
299 |
-
?>
|
300 |
-
<div class="wrap">
|
301 |
-
<h2><?php _e('WP-Quicktag Management', FB_WPAQ_TEXTDOMAIN ); ?></h2>
|
302 |
-
<?php if ( isset($message) ) echo $message; if ( isset($message_export) ) echo $message_export; ?>
|
303 |
-
<br class="clear" />
|
304 |
-
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
305 |
-
<div class="postbox">
|
306 |
-
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
307 |
-
<h3><?php echo $string1; ?></h3>
|
308 |
-
<div class="inside">
|
309 |
-
<br class="clear" />
|
310 |
-
<form name="form1" method="post" action="">
|
311 |
-
<?php wp_nonce_field('rmnl_nonce'); ?>
|
312 |
-
<table summary="rmnl" class="widefat">
|
313 |
-
<thead>
|
314 |
-
<tr>
|
315 |
-
<th scope="col"><?php echo $field1; ?></th>
|
316 |
-
<th scope="col"><?php echo $field2; ?></th>
|
317 |
-
<th scope="col"><?php echo $field3; ?></th>
|
318 |
-
<th scope="col"><?php echo $field4; ?></th>
|
319 |
-
</tr>
|
320 |
-
</thead>
|
321 |
-
<tbody>
|
322 |
-
<?php
|
323 |
-
if ( isset($o['buttons']) ) {
|
324 |
-
$class = '';
|
325 |
-
for ($i = 0; $i < count($o['buttons']); $i++) {
|
326 |
-
$class = ( ' class="alternate"' == $class ) ? '' : ' class="alternate"';
|
327 |
-
$b = $o['buttons'][$i];
|
328 |
-
$b['text'] = htmlentities(stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset'));
|
329 |
-
$b['title'] = htmlentities(stripslashes($b['title']), ENT_COMPAT, get_option('blog_charset'));
|
330 |
-
$b['start'] = htmlentities($b['start'], ENT_COMPAT, get_option('blog_charset'));
|
331 |
-
$b['end'] = htmlentities($b['end'], ENT_COMPAT, get_option('blog_charset'));
|
332 |
-
$nr = $i + 1;
|
333 |
-
echo '
|
334 |
-
<tr valign="top"' . $class . '>
|
335 |
-
<td><input type="text" name="wpaq[buttons][' . $i . '][text]" value="' . $b['text'] . '" style="width: 95%;" /></td>
|
336 |
-
<td><input type="text" name="wpaq[buttons][' . $i . '][title]" value="' . $b['title'] . '" style="width: 95%;" /></td>
|
337 |
-
<td><textarea class="code" name="wpaq[buttons][' . $i . '][start]" rows="2" cols="25" style="width: 95%;">' . $b['start'] . '</textarea></td>
|
338 |
-
<td><textarea class="code" name="wpaq[buttons][' . $i . '][end]" rows="2" cols="25" style="width: 95%;">' . $b['end'] . '</textarea></td>
|
339 |
-
</tr>
|
340 |
-
';
|
341 |
-
}
|
342 |
-
}
|
343 |
-
?>
|
344 |
-
<tr valign="top" class="alternate">
|
345 |
-
<td><input type="text" name="wpaq[buttons][<?php echo $i; ?>][text]" value="" style="width: 95%;" /></td>
|
346 |
-
<td><input type="text" name="wpaq[buttons][<?php echo $i; ?>][title]" value="" style="width: 95%;" /></td>
|
347 |
-
<td><textarea class="code" name="wpaq[buttons][<?php echo $i; ?>][start]" rows="2" cols="25" style="width: 95%;"></textarea></td>
|
348 |
-
<td><textarea class="code" name="wpaq[buttons][<?php echo $i; ?>][end]" rows="2" cols="25" style="width: 95%;"></textarea></td>
|
349 |
-
</tr>
|
350 |
-
</tbody>
|
351 |
-
</table>
|
352 |
-
<p><?php echo $string2; ?></p>
|
353 |
-
<p class="submit">
|
354 |
-
<input class="button button-primary" type="submit" name="Submit" value="<?php _e( $button1 ); ?>" />
|
355 |
-
</p>
|
356 |
-
</form>
|
357 |
|
358 |
-
|
359 |
-
|
360 |
-
</div>
|
361 |
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
<div class="inside">
|
367 |
-
|
368 |
-
<h4><?php echo $export3; ?></h4>
|
369 |
-
<form name="form2" method="get" action="">
|
370 |
-
<p><?php echo $export2; ?></p>
|
371 |
-
<p id="submitbutton">
|
372 |
-
<input class="button" type="submit" name="submit" value="<?php echo $button2; ?>" />
|
373 |
-
<input type="hidden" name="export" value="true" />
|
374 |
-
</p>
|
375 |
-
</form>
|
376 |
-
|
377 |
-
<h4><?php echo $import1; ?></h4>
|
378 |
-
<form name="form3" enctype="multipart/form-data" method="post" action="admin-post.php">
|
379 |
-
<?php wp_nonce_field('rmnl_nonce'); ?>
|
380 |
-
<p><?php echo $import2; ?></p>
|
381 |
-
<p>
|
382 |
-
<label for="datei_id"><?php echo $import3; ?></label>
|
383 |
-
<input name="datei" id="datei_id" type="file" />
|
384 |
-
</p>
|
385 |
-
<p id="submitbutton">
|
386 |
-
<input class="button" type="submit" name="Submit_import" value="<?php echo $button3; ?>" />
|
387 |
-
<input type="hidden" name="action" value="wpaq_import" />
|
388 |
-
</p>
|
389 |
-
</form>
|
390 |
-
|
391 |
-
</div>
|
392 |
-
</div>
|
393 |
-
</div>
|
394 |
|
395 |
-
|
396 |
-
|
397 |
-
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
398 |
-
<h3><?php echo $uninstall1; ?></h3>
|
399 |
-
<div class="inside">
|
400 |
-
|
401 |
-
<form name="form4" method="post" action="">
|
402 |
-
<?php wp_nonce_field('rmnl_nonce'); ?>
|
403 |
-
<p><?php echo $uninstall2; ?></p>
|
404 |
-
<p id="submitbutton">
|
405 |
-
<input class="button" type="submit" name="Submit_uninstall" value="<?php _e($button4); ?>" />
|
406 |
-
<input type="hidden" name="action" value="uninstall" />
|
407 |
-
</p>
|
408 |
-
</form>
|
409 |
-
|
410 |
-
</div>
|
411 |
-
</div>
|
412 |
-
</div>
|
413 |
-
|
414 |
-
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
415 |
-
<div class="postbox" >
|
416 |
-
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
417 |
-
<h3><?php echo $info0; ?></h3>
|
418 |
-
<div class="inside">
|
419 |
-
<p>
|
420 |
-
<span style="float: left;">
|
421 |
-
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
422 |
-
<input type="hidden" name="cmd" value="_s-xclick">
|
423 |
-
<input type="hidden" name="hosted_button_id" value="6069955">
|
424 |
-
<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!">
|
425 |
-
<img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
|
426 |
-
</form>
|
427 |
-
</span>
|
428 |
-
<?php echo $info1; ?><br />© Copyright 2007 - <?php _e( date("Y") ); ?> <a href="http://bueltge.de">Frank Bültge</a> | <?php echo $info2; ?></p>
|
429 |
-
</div>
|
430 |
-
</div>
|
431 |
-
</div>
|
432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
<script type="text/javascript">
|
434 |
-
|
435 |
-
<?php if ( version_compare( $wp_version, '2.7alpha', '<' ) ) { ?>
|
436 |
-
jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
|
437 |
-
<?php } ?>
|
438 |
-
jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
|
439 |
-
jQuery('.postbox .handlediv').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
|
440 |
-
jQuery('.postbox.close-me').each(function() {
|
441 |
-
jQuery(this).addClass("closed");
|
442 |
-
});
|
443 |
-
//-->
|
444 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
454 |
|
455 |
/**
|
456 |
-
*
|
457 |
*
|
458 |
-
* @
|
|
|
|
|
459 |
*/
|
460 |
-
function
|
461 |
-
|
462 |
-
if (
|
463 |
-
|
464 |
-
<script type="text/javascript">
|
465 |
-
//<![CDATA[
|
466 |
-
if ( wpaqToolbar = document.getElementById("ed_toolbar") ) {
|
467 |
-
<?php
|
468 |
-
for ($i = 0; $i < count($o['buttons']); $i++) :
|
469 |
-
$b = $o['buttons'][$i];
|
470 |
-
if ( version_compare(phpversion(), '5.0.0', '>=') )
|
471 |
-
$text = html_entity_decode( stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset') );
|
472 |
-
else
|
473 |
-
$text = wpaq_html_entity_decode_php4( stripslashes($b['text']) );
|
474 |
-
$text = str_replace('"', '\"', $text);
|
475 |
-
$id = strtolower($text);
|
476 |
-
$title = stripslashes($b['title']);
|
477 |
-
if ($title == '')
|
478 |
-
$title = strlen($text);
|
479 |
-
$title = preg_replace('![\n\r]+!', "\n", $title);
|
480 |
-
$title = str_replace("'", "\'", $title);
|
481 |
-
$title = str_replace('"', '\"', $title);
|
482 |
-
$start = preg_replace('![\n\r]+!', "\\n", $b['start']);
|
483 |
-
$start = str_replace("'", "\'", $start);
|
484 |
-
$start = str_replace('"', '\"', $start);
|
485 |
-
$end = preg_replace('![\n\r]+!', "\\n", $b['end']);
|
486 |
-
$end = str_replace("'", "\'", $end);
|
487 |
-
$end = str_replace('"', '\"', $end);
|
488 |
-
?>
|
489 |
-
var wpaqNr, wpaqBut;
|
490 |
-
wpaqNr = edButtons.length;
|
491 |
-
edButtons[wpaqNr] = new edButton("ed_"+wpaqNr, "<?php echo $text; ?>", "<?php echo $start; ?>", "<?php echo $end; ?>", "");
|
492 |
-
var wpaqBut = wpaqToolbar.lastChild;
|
493 |
-
while (wpaqBut.nodeType != 1) {
|
494 |
-
wpaqBut = wpaqBut.previousSibling;
|
495 |
-
}
|
496 |
-
wpaqBut = wpaqBut.cloneNode(true);
|
497 |
-
wpaqBut.id = "ed_"+wpaqNr;
|
498 |
-
wpaqBut._idx = wpaqNr; //store our current index at element itself
|
499 |
-
wpaqBut.value = "<?php echo $text; ?>";
|
500 |
-
wpaqBut.title = "<?php echo $title; ?>";
|
501 |
-
wpaqBut.onclick = function() {edInsertTag(edCanvas, this._idx); return false; }
|
502 |
-
wpaqToolbar.appendChild(wpaqBut);
|
503 |
-
<?php endfor; ?>
|
504 |
-
}
|
505 |
-
//]]>
|
506 |
-
</script>
|
507 |
-
<?php
|
508 |
}
|
509 |
-
} //End wpaq_addsome
|
510 |
-
} // End if
|
511 |
-
|
512 |
-
|
513 |
-
/**
|
514 |
-
* code to utf-8 in PHP 4
|
515 |
-
*
|
516 |
-
* @package AddQuicktag
|
517 |
-
*/
|
518 |
-
function wpaq_code_to_utf8($num) {
|
519 |
|
520 |
-
|
521 |
-
return chr($num);
|
522 |
-
} elseif ($num <= 0x7FF) {
|
523 |
-
return chr(($num >> 0x06) + 0xC0) . chr(($num & 0x3F) + 128);
|
524 |
-
} elseif ($num <= 0xFFFF) {
|
525 |
-
return chr(($num >> 0x0C) + 0xE0) . chr((($num >> 0x06) & 0x3F) + 0x80) . chr(($num & 0x3F) + 0x80);
|
526 |
-
} elseif ($num <= 0x1FFFFF) {
|
527 |
-
return chr(($num >> 0x12) + 0xF0) . chr((($num >> 0x0C) & 0x3F) + 0x80) . chr((($num >> 0x06) & 0x3F) + 0x80) . chr(($num & 0x3F) + 0x80);
|
528 |
}
|
529 |
-
|
530 |
-
return '';
|
531 |
-
}
|
532 |
-
|
533 |
-
|
534 |
-
/**
|
535 |
-
* html_entity_decode for PHP 4
|
536 |
-
*
|
537 |
-
* @package AddQuicktag
|
538 |
-
*/
|
539 |
-
function wpaq_html_entity_decode_php4($str) {
|
540 |
-
$htmlentities = array (
|
541 |
-
"Á" => chr(195).chr(129),
|
542 |
-
"á" => chr(195).chr(161),
|
543 |
-
"Â" => chr(195).chr(130),
|
544 |
-
"â" => chr(195).chr(162),
|
545 |
-
"´" => chr(194).chr(180),
|
546 |
-
"Æ" => chr(195).chr(134),
|
547 |
-
"æ" => chr(195).chr(166),
|
548 |
-
"À" => chr(195).chr(128),
|
549 |
-
"à" => chr(195).chr(160),
|
550 |
-
"ℵ" => chr(226).chr(132).chr(181),
|
551 |
-
"Α" => chr(206).chr(145),
|
552 |
-
"α" => chr(206).chr(177),
|
553 |
-
"&" => chr(38),
|
554 |
-
"∧" => chr(226).chr(136).chr(167),
|
555 |
-
"∠" => chr(226).chr(136).chr(160),
|
556 |
-
"Å" => chr(195).chr(133),
|
557 |
-
"å" => chr(195).chr(165),
|
558 |
-
"≈" => chr(226).chr(137).chr(136),
|
559 |
-
"Ã" => chr(195).chr(131),
|
560 |
-
"ã" => chr(195).chr(163),
|
561 |
-
"Ä" => chr(195).chr(132),
|
562 |
-
"ä" => chr(195).chr(164),
|
563 |
-
"„" => chr(226).chr(128).chr(158),
|
564 |
-
"Β" => chr(206).chr(146),
|
565 |
-
"β" => chr(206).chr(178),
|
566 |
-
"¦" => chr(194).chr(166),
|
567 |
-
"•" => chr(226).chr(128).chr(162),
|
568 |
-
"∩" => chr(226).chr(136).chr(169),
|
569 |
-
"Ç" => chr(195).chr(135),
|
570 |
-
"ç" => chr(195).chr(167),
|
571 |
-
"¸" => chr(194).chr(184),
|
572 |
-
"¢" => chr(194).chr(162),
|
573 |
-
"Χ" => chr(206).chr(167),
|
574 |
-
"χ" => chr(207).chr(135),
|
575 |
-
"ˆ" => chr(203).chr(134),
|
576 |
-
"♣" => chr(226).chr(153).chr(163),
|
577 |
-
"≅" => chr(226).chr(137).chr(133),
|
578 |
-
"©" => chr(194).chr(169),
|
579 |
-
"↵" => chr(226).chr(134).chr(181),
|
580 |
-
"∪" => chr(226).chr(136).chr(170),
|
581 |
-
"¤" => chr(194).chr(164),
|
582 |
-
"†" => chr(226).chr(128).chr(160),
|
583 |
-
"‡" => chr(226).chr(128).chr(161),
|
584 |
-
"↓" => chr(226).chr(134).chr(147),
|
585 |
-
"⇓" => chr(226).chr(135).chr(147),
|
586 |
-
"°" => chr(194).chr(176),
|
587 |
-
"Δ" => chr(206).chr(148),
|
588 |
-
"δ" => chr(206).chr(180),
|
589 |
-
"♦" => chr(226).chr(153).chr(166),
|
590 |
-
"÷" => chr(195).chr(183),
|
591 |
-
"É" => chr(195).chr(137),
|
592 |
-
"é" => chr(195).chr(169),
|
593 |
-
"Ê" => chr(195).chr(138),
|
594 |
-
"ê" => chr(195).chr(170),
|
595 |
-
"È" => chr(195).chr(136),
|
596 |
-
"è" => chr(195).chr(168),
|
597 |
-
"∅" => chr(226).chr(136).chr(133),
|
598 |
-
" " => chr(226).chr(128).chr(131),
|
599 |
-
" " => chr(226).chr(128).chr(130),
|
600 |
-
"Ε" => chr(206).chr(149),
|
601 |
-
"ε" => chr(206).chr(181),
|
602 |
-
"≡" => chr(226).chr(137).chr(161),
|
603 |
-
"Η" => chr(206).chr(151),
|
604 |
-
"η" => chr(206).chr(183),
|
605 |
-
"Ð" => chr(195).chr(144),
|
606 |
-
"ð" => chr(195).chr(176),
|
607 |
-
"Ë" => chr(195).chr(139),
|
608 |
-
"ë" => chr(195).chr(171),
|
609 |
-
"€" => chr(226).chr(130).chr(172),
|
610 |
-
"∃" => chr(226).chr(136).chr(131),
|
611 |
-
"ƒ" => chr(198).chr(146),
|
612 |
-
"∀" => chr(226).chr(136).chr(128),
|
613 |
-
"½" => chr(194).chr(189),
|
614 |
-
"¼" => chr(194).chr(188),
|
615 |
-
"¾" => chr(194).chr(190),
|
616 |
-
"⁄" => chr(226).chr(129).chr(132),
|
617 |
-
"Γ" => chr(206).chr(147),
|
618 |
-
"γ" => chr(206).chr(179),
|
619 |
-
"≥" => chr(226).chr(137).chr(165),
|
620 |
-
"↔" => chr(226).chr(134).chr(148),
|
621 |
-
"⇔" => chr(226).chr(135).chr(148),
|
622 |
-
"♥" => chr(226).chr(153).chr(165),
|
623 |
-
"…" => chr(226).chr(128).chr(166),
|
624 |
-
"Í" => chr(195).chr(141),
|
625 |
-
"í" => chr(195).chr(173),
|
626 |
-
"Î" => chr(195).chr(142),
|
627 |
-
"î" => chr(195).chr(174),
|
628 |
-
"¡" => chr(194).chr(161),
|
629 |
-
"Ì" => chr(195).chr(140),
|
630 |
-
"ì" => chr(195).chr(172),
|
631 |
-
"ℑ" => chr(226).chr(132).chr(145),
|
632 |
-
"∞" => chr(226).chr(136).chr(158),
|
633 |
-
"∫" => chr(226).chr(136).chr(171),
|
634 |
-
"Ι" => chr(206).chr(153),
|
635 |
-
"ι" => chr(206).chr(185),
|
636 |
-
"¿" => chr(194).chr(191),
|
637 |
-
"∈" => chr(226).chr(136).chr(136),
|
638 |
-
"Ï" => chr(195).chr(143),
|
639 |
-
"ï" => chr(195).chr(175),
|
640 |
-
"Κ" => chr(206).chr(154),
|
641 |
-
"κ" => chr(206).chr(186),
|
642 |
-
"Λ" => chr(206).chr(155),
|
643 |
-
"λ" => chr(206).chr(187),
|
644 |
-
"⟨" => chr(226).chr(140).chr(169),
|
645 |
-
"«" => chr(194).chr(171),
|
646 |
-
"←" => chr(226).chr(134).chr(144),
|
647 |
-
"⇐" => chr(226).chr(135).chr(144),
|
648 |
-
"⌈" => chr(226).chr(140).chr(136),
|
649 |
-
"“" => chr(226).chr(128).chr(156),
|
650 |
-
"≤" => chr(226).chr(137).chr(164),
|
651 |
-
"⌊" => chr(226).chr(140).chr(138),
|
652 |
-
"∗" => chr(226).chr(136).chr(151),
|
653 |
-
"◊" => chr(226).chr(151).chr(138),
|
654 |
-
"‎" => chr(226).chr(128).chr(142),
|
655 |
-
"‹" => chr(226).chr(128).chr(185),
|
656 |
-
"‘" => chr(226).chr(128).chr(152),
|
657 |
-
"¯" => chr(194).chr(175),
|
658 |
-
"—" => chr(226).chr(128).chr(148),
|
659 |
-
"µ" => chr(194).chr(181),
|
660 |
-
"·" => chr(194).chr(183),
|
661 |
-
"−" => chr(226).chr(136).chr(146),
|
662 |
-
"Μ" => chr(206).chr(156),
|
663 |
-
"μ" => chr(206).chr(188),
|
664 |
-
"∇" => chr(226).chr(136).chr(135),
|
665 |
-
" " => chr(194).chr(160),
|
666 |
-
"–" => chr(226).chr(128).chr(147),
|
667 |
-
"≠" => chr(226).chr(137).chr(160),
|
668 |
-
"∋" => chr(226).chr(136).chr(139),
|
669 |
-
"¬" => chr(194).chr(172),
|
670 |
-
"∉" => chr(226).chr(136).chr(137),
|
671 |
-
"⊄" => chr(226).chr(138).chr(132),
|
672 |
-
"Ñ" => chr(195).chr(145),
|
673 |
-
"ñ" => chr(195).chr(177),
|
674 |
-
"Ν" => chr(206).chr(157),
|
675 |
-
"ν" => chr(206).chr(189),
|
676 |
-
"Ó" => chr(195).chr(147),
|
677 |
-
"ó" => chr(195).chr(179),
|
678 |
-
"Ô" => chr(195).chr(148),
|
679 |
-
"ô" => chr(195).chr(180),
|
680 |
-
"Œ" => chr(197).chr(146),
|
681 |
-
"œ" => chr(197).chr(147),
|
682 |
-
"Ò" => chr(195).chr(146),
|
683 |
-
"ò" => chr(195).chr(178),
|
684 |
-
"‾" => chr(226).chr(128).chr(190),
|
685 |
-
"Ω" => chr(206).chr(169),
|
686 |
-
"ω" => chr(207).chr(137),
|
687 |
-
"Ο" => chr(206).chr(159),
|
688 |
-
"ο" => chr(206).chr(191),
|
689 |
-
"⊕" => chr(226).chr(138).chr(149),
|
690 |
-
"∨" => chr(226).chr(136).chr(168),
|
691 |
-
"ª" => chr(194).chr(170),
|
692 |
-
"º" => chr(194).chr(186),
|
693 |
-
"Ø" => chr(195).chr(152),
|
694 |
-
"ø" => chr(195).chr(184),
|
695 |
-
"Õ" => chr(195).chr(149),
|
696 |
-
"õ" => chr(195).chr(181),
|
697 |
-
"⊗" => chr(226).chr(138).chr(151),
|
698 |
-
"Ö" => chr(195).chr(150),
|
699 |
-
"ö" => chr(195).chr(182),
|
700 |
-
"¶" => chr(194).chr(182),
|
701 |
-
"∂" => chr(226).chr(136).chr(130),
|
702 |
-
"‰" => chr(226).chr(128).chr(176),
|
703 |
-
"⊥" => chr(226).chr(138).chr(165),
|
704 |
-
"Φ" => chr(206).chr(166),
|
705 |
-
"φ" => chr(207).chr(134),
|
706 |
-
"Π" => chr(206).chr(160),
|
707 |
-
"π" => chr(207).chr(128),
|
708 |
-
"ϖ" => chr(207).chr(150),
|
709 |
-
"±" => chr(194).chr(177),
|
710 |
-
"£" => chr(194).chr(163),
|
711 |
-
"′" => chr(226).chr(128).chr(178),
|
712 |
-
"″" => chr(226).chr(128).chr(179),
|
713 |
-
"∏" => chr(226).chr(136).chr(143),
|
714 |
-
"∝" => chr(226).chr(136).chr(157),
|
715 |
-
"Ψ" => chr(206).chr(168),
|
716 |
-
"ψ" => chr(207).chr(136),
|
717 |
-
"√" => chr(226).chr(136).chr(154),
|
718 |
-
"⟩" => chr(226).chr(140).chr(170),
|
719 |
-
"»" => chr(194).chr(187),
|
720 |
-
"→" => chr(226).chr(134).chr(146),
|
721 |
-
"⇒" => chr(226).chr(135).chr(146),
|
722 |
-
"⌉" => chr(226).chr(140).chr(137),
|
723 |
-
"”" => chr(226).chr(128).chr(157),
|
724 |
-
"ℜ" => chr(226).chr(132).chr(156),
|
725 |
-
"®" => chr(194).chr(174),
|
726 |
-
"⌋" => chr(226).chr(140).chr(139),
|
727 |
-
"Ρ" => chr(206).chr(161),
|
728 |
-
"ρ" => chr(207).chr(129),
|
729 |
-
"‏" => chr(226).chr(128).chr(143),
|
730 |
-
"›" => chr(226).chr(128).chr(186),
|
731 |
-
"’" => chr(226).chr(128).chr(153),
|
732 |
-
"‚" => chr(226).chr(128).chr(154),
|
733 |
-
"Š" => chr(197).chr(160),
|
734 |
-
"š" => chr(197).chr(161),
|
735 |
-
"⋅" => chr(226).chr(139).chr(133),
|
736 |
-
"§" => chr(194).chr(167),
|
737 |
-
"­" => chr(194).chr(173),
|
738 |
-
"Σ" => chr(206).chr(163),
|
739 |
-
"σ" => chr(207).chr(131),
|
740 |
-
"ς" => chr(207).chr(130),
|
741 |
-
"∼" => chr(226).chr(136).chr(188),
|
742 |
-
"♠" => chr(226).chr(153).chr(160),
|
743 |
-
"⊂" => chr(226).chr(138).chr(130),
|
744 |
-
"⊆" => chr(226).chr(138).chr(134),
|
745 |
-
"∑" => chr(226).chr(136).chr(145),
|
746 |
-
"¹" => chr(194).chr(185),
|
747 |
-
"²" => chr(194).chr(178),
|
748 |
-
"³" => chr(194).chr(179),
|
749 |
-
"⊃" => chr(226).chr(138).chr(131),
|
750 |
-
"⊇" => chr(226).chr(138).chr(135),
|
751 |
-
"ß" => chr(195).chr(159),
|
752 |
-
"Τ" => chr(206).chr(164),
|
753 |
-
"τ" => chr(207).chr(132),
|
754 |
-
"∴" => chr(226).chr(136).chr(180),
|
755 |
-
"Θ" => chr(206).chr(152),
|
756 |
-
"θ" => chr(206).chr(184),
|
757 |
-
"ϑ" => chr(207).chr(145),
|
758 |
-
" " => chr(226).chr(128).chr(137),
|
759 |
-
"Þ" => chr(195).chr(158),
|
760 |
-
"þ" => chr(195).chr(190),
|
761 |
-
"˜" => chr(203).chr(156),
|
762 |
-
"×" => chr(195).chr(151),
|
763 |
-
"™" => chr(226).chr(132).chr(162),
|
764 |
-
"Ú" => chr(195).chr(154),
|
765 |
-
"ú" => chr(195).chr(186),
|
766 |
-
"↑" => chr(226).chr(134).chr(145),
|
767 |
-
"⇑" => chr(226).chr(135).chr(145),
|
768 |
-
"Û" => chr(195).chr(155),
|
769 |
-
"û" => chr(195).chr(187),
|
770 |
-
"Ù" => chr(195).chr(153),
|
771 |
-
"ù" => chr(195).chr(185),
|
772 |
-
"¨" => chr(194).chr(168),
|
773 |
-
"ϒ" => chr(207).chr(146),
|
774 |
-
"Υ" => chr(206).chr(165),
|
775 |
-
"υ" => chr(207).chr(133),
|
776 |
-
"Ü" => chr(195).chr(156),
|
777 |
-
"ü" => chr(195).chr(188),
|
778 |
-
"℘" => chr(226).chr(132).chr(152),
|
779 |
-
"Ξ" => chr(206).chr(158),
|
780 |
-
"ξ" => chr(206).chr(190),
|
781 |
-
"Ý" => chr(195).chr(157),
|
782 |
-
"ý" => chr(195).chr(189),
|
783 |
-
"¥" => chr(194).chr(165),
|
784 |
-
"ÿ" => chr(195).chr(191),
|
785 |
-
"Ÿ" => chr(197).chr(184),
|
786 |
-
"Ζ" => chr(206).chr(150),
|
787 |
-
"ζ" => chr(206).chr(182),
|
788 |
-
"‍" => chr(226).chr(128).chr(141),
|
789 |
-
"‌" => chr(226).chr(128).chr(140),
|
790 |
-
">" => ">",
|
791 |
-
"<" => "<"
|
792 |
-
);
|
793 |
-
|
794 |
-
$return = strtr($str, $htmlentities);
|
795 |
-
$return = preg_replace("~&#x([0-9a-f]+);~ei", "wpaq_code_to_utf8(hexdec(\\1))", $return);
|
796 |
-
$return = preg_replace("~&#([0-9]+);~e", "wpaq_code_to_utf8(\\1)", $return);
|
797 |
-
|
798 |
-
return $return;
|
799 |
-
}
|
800 |
-
|
801 |
-
|
802 |
-
/**
|
803 |
-
* hook in WP
|
804 |
-
*
|
805 |
-
* @package AddQuicktag
|
806 |
-
*/
|
807 |
-
if ( function_exists('register_activation_hook') )
|
808 |
-
register_activation_hook(__FILE__, 'wpaq_install');
|
809 |
-
if ( function_exists('register_uninstall_hook') )
|
810 |
-
register_uninstall_hook(__FILE__, 'wpaq_uninstall');
|
811 |
-
if ( is_admin() ) {
|
812 |
-
add_action('init', 'wpaq_textdomain');
|
813 |
-
add_action('admin_menu', 'wpaq_add_settings_page');
|
814 |
-
add_action('in_admin_footer', 'wpaq_admin_footer');
|
815 |
-
add_action('admin_post_wpaq_import', 'wpaq_import' );
|
816 |
-
}
|
817 |
-
|
818 |
-
|
819 |
-
/**
|
820 |
-
* Add action link(s) to plugins page
|
821 |
-
* Thanks Dion Hulse -- http://dd32.id.au/wordpress-plugins/?configure-link
|
822 |
-
*
|
823 |
-
* @package AddQuicktag
|
824 |
-
*/
|
825 |
-
function wpaq_filter_plugin_actions($links, $file){
|
826 |
-
static $this_plugin;
|
827 |
-
|
828 |
-
if( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
|
829 |
-
|
830 |
-
if( $file == $this_plugin ){
|
831 |
-
$settings_link = '<a href="options-general.php?page=addquicktag/addquicktag.php">' . __('Settings') . '</a>';
|
832 |
-
$links = array_merge( array($settings_link), $links); // before other links
|
833 |
-
}
|
834 |
-
return $links;
|
835 |
-
}
|
836 |
-
|
837 |
-
|
838 |
-
/**
|
839 |
-
* @version WP 2.7
|
840 |
-
* Add action link(s) to plugins page
|
841 |
-
*
|
842 |
-
* @package Secure WordPress
|
843 |
-
*
|
844 |
-
* @param $links, $file
|
845 |
-
* @return $links
|
846 |
-
*/
|
847 |
-
function wpaq_filter_plugin_actions_new($links, $file) {
|
848 |
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
|
|
|
|
|
|
|
|
|
|
855 |
}
|
856 |
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
$lastMod = filemtime(__FILE__);
|
882 |
-
$client = ( isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false );
|
883 |
-
// Checking if the client is validating his cache and if it is current.
|
884 |
-
if (isset($client) && (strtotime($client) == $lastMod)) {
|
885 |
-
// Client's cache IS current, so we just respond '304 Not Modified'.
|
886 |
-
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 304);
|
887 |
-
exit;
|
888 |
-
} else {
|
889 |
-
// Image not cached or cache outdated, we respond '200 OK' and output the image.
|
890 |
-
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 200);
|
891 |
-
header('Content-Length: '.strlen($content));
|
892 |
-
header('Content-Type: image/' . substr(strrchr($_GET['resource'], '.'), 1) );
|
893 |
-
echo $content;
|
894 |
-
exit;
|
895 |
-
}
|
896 |
}
|
897 |
-
}
|
898 |
-
|
899 |
-
|
900 |
-
/**
|
901 |
-
* Display Images/ Icons in base64-encoding
|
902 |
-
* @return $resourceID
|
903 |
-
*
|
904 |
-
* @package AddQuicktag
|
905 |
-
*/
|
906 |
-
function wpag_get_resource_url($resourceID) {
|
907 |
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
|
920 |
-
|
921 |
-
$plugin = plugin_basename(__FILE__);
|
922 |
-
$menutitle = '';
|
923 |
-
if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
|
924 |
-
$menutitle = '<img src="' . wpag_get_resource_url('addquicktag.gif') . '" alt="" />' . ' ';
|
925 |
-
}
|
926 |
-
$menutitle .= __('AddQuicktag', FB_WPAQ_TEXTDOMAIN );
|
927 |
-
|
928 |
-
add_options_page( __('WP-Quicktag – AddQuicktag', FB_WPAQ_TEXTDOMAIN ), $menutitle, 'manage_options', $plugin, 'wpaq_options_page');
|
929 |
|
930 |
-
|
931 |
-
add_filter('plugin_action_links', 'wpaq_filter_plugin_actions', 10, 2);
|
932 |
-
} else {
|
933 |
-
add_filter( 'plugin_action_links_' . $plugin, 'wpaq_filter_plugin_actions_new', 10, 2 );
|
934 |
-
if ( version_compare( $wp_version, '2.8alpha', '>' ) )
|
935 |
-
add_filter( 'plugin_row_meta', 'wpaq_filter_plugin_actions_new', 10, 2 );
|
936 |
-
}
|
937 |
}
|
938 |
-
|
939 |
-
|
|
|
940 |
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
if( basename($_SERVER['REQUEST_URI']) == 'addquicktag.php') {
|
948 |
-
$plugin_data = get_plugin_data( __FILE__ );
|
949 |
-
printf('%1$s plugin | ' . __('Version') . ' %2$s | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
|
950 |
-
}
|
951 |
}
|
952 |
-
?>
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Plugin Name: AddQuicktag
|
4 |
+
* Plugin URI: http://bueltge.de/wp-addquicktags-de-plugin/120/
|
5 |
+
* Text Domain: addquicktag
|
6 |
+
* Domain Path: /languages
|
7 |
+
* Description: Allows you to easily add custom Quicktags to the html- and visual-editor.
|
8 |
+
* Version: 2.0.0
|
9 |
+
* Author: Frank Bültge
|
10 |
+
* Author URI: http://bueltge.de
|
11 |
+
* License: GPLv3
|
12 |
+
*/
|
13 |
+
|
14 |
+
/**
|
15 |
+
License:
|
16 |
+
==============================================================================
|
17 |
+
Copyright 2011 Frank Bültge (email : frank@bueltge.de)
|
18 |
+
|
19 |
+
This program is free software; you can redistribute it and/or modify
|
20 |
+
it under the terms of the GNU General Public License as published by
|
21 |
+
the Free Software Foundation; either version 2 of the License, or
|
22 |
+
(at your option) any later version.
|
23 |
+
|
24 |
+
This program is distributed in the hope that it will be useful,
|
25 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
26 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
27 |
+
GNU General Public License for more details.
|
28 |
+
|
29 |
+
You should have received a copy of the GNU General Public License
|
30 |
+
along with this program; if not, write to the Free Software
|
31 |
+
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
32 |
+
|
33 |
+
Requirements:
|
34 |
+
==============================================================================
|
35 |
+
This plugin requires WordPress >= 3.3 and tested with PHP Interpreter >= 5.3
|
|
|
|
|
|
|
36 |
*/
|
37 |
|
38 |
+
/**
|
39 |
+
*
|
40 |
+
*/
|
41 |
+
class Add_Quicktag {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
+
static private $classobj;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
+
static private $option_string = 'rmnlQuicktagSettings';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
static private $admin_pages_for_js = array( 'post.php', 'post-new.php', );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
+
static private $admin_ids_for_js = array( 'post', 'page' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
+
static private $plugin;
|
52 |
+
|
53 |
+
function __construct() {
|
54 |
+
|
55 |
+
if ( ! is_admin() )
|
56 |
+
return;
|
57 |
+
|
58 |
+
// get string of plugin
|
59 |
+
self :: $plugin = plugin_basename( __FILE__ );
|
60 |
+
|
61 |
+
// on uninstall remove capability from roles
|
62 |
+
register_uninstall_hook( __FILE__, array('Add_Quicktag', 'uninstall' ) );
|
63 |
+
// in deactivate delete all settings in database
|
64 |
+
// register_deactivation_hook( __FILE__, array('Add_Quicktag', 'uninstall' ) );
|
65 |
+
|
66 |
+
// load translation files
|
67 |
+
add_action( 'admin_init', array( $this, 'localize_plugin' ) );
|
68 |
+
// Include settings
|
69 |
+
require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'inc/class-settings.php';
|
70 |
+
|
71 |
+
// Include solution for TinyMCe
|
72 |
+
require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'inc/class-tinymce.php';
|
73 |
+
|
74 |
+
add_action( 'wp_print_scripts', array( $this, 'print_scripts' ) );
|
75 |
+
|
76 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts') );
|
77 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
|
80 |
+
public function uninstall() {
|
81 |
+
|
82 |
+
delete_option( self :: $option_string );
|
83 |
+
delete_site_option( self :: $option_string );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
}
|
85 |
|
86 |
+
public function print_scripts() {
|
87 |
+
global $current_screen;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
+
if ( isset( $current_screen -> id ) && ! in_array( $current_screen -> id, self :: $admin_ids_for_js ) )
|
90 |
+
return;
|
|
|
91 |
|
92 |
+
if ( is_multisite() && is_plugin_active_for_network( $this -> get_plugin_string() ) )
|
93 |
+
$options = get_site_option( self :: $option_string );
|
94 |
+
else
|
95 |
+
$options = get_option( self :: $option_string );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
if ( ! $options )
|
98 |
+
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
|
100 |
+
if ( 1 < count($options['buttons']) ) {
|
101 |
+
// sort array by order value
|
102 |
+
$tmp = array();
|
103 |
+
foreach( $options['buttons'] as $order ) {
|
104 |
+
$tmp[] = $order['order'];
|
105 |
+
}
|
106 |
+
array_multisort( $tmp, SORT_ASC, $options['buttons'] );
|
107 |
+
}
|
108 |
+
?>
|
109 |
<script type="text/javascript">
|
110 |
+
var addquicktag_tags = <?php echo json_encode( $options ); ?>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
</script>
|
112 |
+
<?php
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* Enqueue Scripts for plugin
|
117 |
+
*
|
118 |
+
* @param $where string
|
119 |
+
* @since 2.0.0
|
120 |
+
* @access public
|
121 |
+
* @return void
|
122 |
+
*/
|
123 |
+
public function admin_enqueue_scripts( $where ) {
|
124 |
|
125 |
+
if ( ! in_array( $where, self :: $admin_pages_for_js ) )
|
126 |
+
return;
|
127 |
+
|
128 |
+
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
|
129 |
+
|
130 |
+
if ( version_compare( $GLOBALS['wp_version'], '3.3alpha', '>=' ) ) {
|
131 |
+
wp_enqueue_script(
|
132 |
+
self :: get_textdomain() . '_script',
|
133 |
+
plugins_url( '/js/add-quicktags' . $suffix. '.js', __FILE__ ),
|
134 |
+
array( 'jquery', 'quicktags' ),
|
135 |
+
'',
|
136 |
+
TRUE
|
137 |
+
);
|
138 |
+
} else {
|
139 |
+
wp_enqueue_script(
|
140 |
+
self :: get_textdomain() . '_script',
|
141 |
+
plugins_url( '/js/add-quicktags_32' . $suffix. '.js', __FILE__ ),
|
142 |
+
array( 'jquery', 'quicktags' ),
|
143 |
+
'',
|
144 |
+
TRUE
|
145 |
+
);
|
146 |
+
}
|
147 |
+
// Alternative to JSON function
|
148 |
+
// wp_localize_script( self :: get_textdomain() . '_script', 'addquicktag_tags', get_option( self :: $option_string ) );
|
149 |
+
}
|
150 |
|
151 |
/**
|
152 |
+
* Handler for the action 'init'. Instantiates this class.
|
153 |
*
|
154 |
+
* @since 2.0.0
|
155 |
+
* @access public
|
156 |
+
* @return $classobj
|
157 |
*/
|
158 |
+
public function get_object() {
|
159 |
+
|
160 |
+
if ( NULL === self :: $classobj ) {
|
161 |
+
self :: $classobj = new self;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
|
164 |
+
return self :: $classobj;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
+
/**
|
168 |
+
* Localize_plugin function.
|
169 |
+
*
|
170 |
+
* @uses load_plugin_textdomain, plugin_basename
|
171 |
+
* @access public
|
172 |
+
* @since 2.0.0
|
173 |
+
* @return void
|
174 |
+
*/
|
175 |
+
public function localize_plugin() {
|
176 |
+
|
177 |
+
load_plugin_textdomain( $this -> get_textdomain(), FALSE, dirname( plugin_basename(__FILE__) ) . '/languages' );
|
178 |
}
|
179 |
|
180 |
+
/**
|
181 |
+
* return plugin comment data
|
182 |
+
*
|
183 |
+
* @since 2.0.0
|
184 |
+
* @access public
|
185 |
+
* @param $value string, default = 'TextDomain'
|
186 |
+
* Name, PluginURI, Version, Description, Author, AuthorURI, TextDomain, DomainPath, Network, Title
|
187 |
+
* @return string
|
188 |
+
*/
|
189 |
+
public function get_plugin_data( $value = 'TextDomain' ) {
|
190 |
+
|
191 |
+
if ( ! function_exists( 'get_plugin_data' ) )
|
192 |
+
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
|
193 |
+
|
194 |
+
$plugin_data = get_plugin_data( __FILE__ );
|
195 |
+
$plugin_value = $plugin_data[$value];
|
196 |
+
|
197 |
+
return $plugin_value;
|
198 |
+
}
|
199 |
|
200 |
+
public function get_plugin_string() {
|
201 |
+
|
202 |
+
return self :: $plugin;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
|
205 |
+
/**
|
206 |
+
* Retrun textdomain string
|
207 |
+
*
|
208 |
+
* @since 2.0.0
|
209 |
+
* @access public
|
210 |
+
* @return string
|
211 |
+
*/
|
212 |
+
public function get_textdomain() {
|
213 |
+
|
214 |
+
return self :: get_plugin_data( 'TextDomain' );
|
215 |
+
}
|
216 |
|
217 |
+
public function get_option_string() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
|
219 |
+
return self :: $option_string;
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
}
|
221 |
+
|
222 |
+
|
223 |
+
} // end class
|
224 |
|
225 |
+
if ( function_exists( 'add_action' ) && class_exists( 'Add_Quicktag' ) ) {
|
226 |
+
add_action( 'plugins_loaded', array( 'Add_Quicktag', 'get_object' ) );
|
227 |
+
} else {
|
228 |
+
header( 'Status: 403 Forbidden' );
|
229 |
+
header( 'HTTP/1.1 403 Forbidden' );
|
230 |
+
exit();
|
|
|
|
|
|
|
|
|
231 |
}
|
|
inc/class-imexport.php
ADDED
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* AddQuicktag - Settings
|
4 |
+
* @license GPLv3
|
5 |
+
* @package AddQuicktag
|
6 |
+
* @subpackage AddQuicktag Settings
|
7 |
+
*/
|
8 |
+
|
9 |
+
if ( ! function_exists( 'add_action' ) ) {
|
10 |
+
echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
|
11 |
+
exit;
|
12 |
+
}
|
13 |
+
|
14 |
+
class Add_Quicktag_Im_Export extends Add_Quicktag_Settings {
|
15 |
+
|
16 |
+
static private $classobj = NULL;
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Handler for the action 'init'. Instantiates this class.
|
20 |
+
*
|
21 |
+
* @access public
|
22 |
+
* @since 2.0.0
|
23 |
+
* @return $classobj
|
24 |
+
*/
|
25 |
+
public function get_object() {
|
26 |
+
|
27 |
+
if ( NULL === self :: $classobj ) {
|
28 |
+
self :: $classobj = new self;
|
29 |
+
}
|
30 |
+
|
31 |
+
return self :: $classobj;
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Constructor, init on defined hooks of WP and include second class
|
36 |
+
*
|
37 |
+
* @access public
|
38 |
+
* @since 0.0.2
|
39 |
+
* @uses register_activation_hook, register_uninstall_hook, add_action
|
40 |
+
* @return void
|
41 |
+
*/
|
42 |
+
public function __construct() {
|
43 |
+
|
44 |
+
if ( isset( $_GET['addquicktag_download'] ) && check_admin_referer( parent :: $nonce_string ) )
|
45 |
+
add_action( 'init', array( $this, 'get_export_file' ) );
|
46 |
+
|
47 |
+
if ( isset( $_POST['addquicktag_import'] ) && check_admin_referer( parent :: $nonce_string ) )
|
48 |
+
add_action( 'init', array( $this, 'import_file' ) );
|
49 |
+
|
50 |
+
add_action( 'addquicktag_settings_page', array( $this, 'get_im_export_part' ) );
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* get markup for ex- and import on settings page
|
55 |
+
*
|
56 |
+
* @access public
|
57 |
+
* @since 2.0.0
|
58 |
+
* @uses wp_nonce_field
|
59 |
+
* @return string
|
60 |
+
*/
|
61 |
+
public function get_im_export_part() {
|
62 |
+
?>
|
63 |
+
<div class="postbox">
|
64 |
+
<h3><span><?php _e( 'Export', parent :: get_textdomain() ); ?></span></h3>
|
65 |
+
<div class="inside">
|
66 |
+
<p><?php _e( 'When you click the button below the plugin will create an XML file for you to save to your computer.', parent :: get_textdomain() ); ?></p>
|
67 |
+
<p><?php _e( 'This format, a custom XML, will contain your options from quicktags.', parent :: get_textdomain() ); ?></p>
|
68 |
+
<p><?php _e( 'Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site.', parent :: get_textdomain() ); ?></p>
|
69 |
+
<form method="get" action="">
|
70 |
+
<?php wp_nonce_field( parent :: $nonce_string ); ?>
|
71 |
+
<p class="submit">
|
72 |
+
<input type="submit" name="submit" value="<?php _e( 'Download Export File', parent :: get_textdomain() ); ?> »" />
|
73 |
+
<input type="hidden" name="addquicktag_download" value="true" />
|
74 |
+
</p>
|
75 |
+
</form>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
|
79 |
+
<div class="postbox">
|
80 |
+
<h3><span><?php _e( 'Import', parent :: get_textdomain() ); ?></span></h3>
|
81 |
+
<div class="inside">
|
82 |
+
<p><?php _e( 'If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import.', parent :: get_textdomain() ); ?></p>
|
83 |
+
<form method="post" action="" enctype="multipart/form-data">
|
84 |
+
<?php wp_nonce_field( parent :: $nonce_string ); ?>
|
85 |
+
<p class="submit">
|
86 |
+
<input type="file" name="xml" />
|
87 |
+
<input type="submit" name="submit" value="<?php _e( 'Upload file and import', parent :: get_textdomain() ); ?> »" />
|
88 |
+
<input type="hidden" name="addquicktag_import" value="true" />
|
89 |
+
</p>
|
90 |
+
</form>
|
91 |
+
</div>
|
92 |
+
</div>
|
93 |
+
<?php
|
94 |
+
}
|
95 |
+
|
96 |
+
/*
|
97 |
+
* Build export file, xml
|
98 |
+
*
|
99 |
+
* @access public
|
100 |
+
* @since 2.0.0
|
101 |
+
* @uses is_plugin_active_for_network, get_site_option, get_option
|
102 |
+
* @return string $xml
|
103 |
+
*/
|
104 |
+
public function get_export_file() {
|
105 |
+
|
106 |
+
if ( is_multisite() && is_plugin_active_for_network( parent :: get_plugin_string() ) )
|
107 |
+
$options = get_site_option( parent :: get_option_string() );
|
108 |
+
else
|
109 |
+
$options = get_option( parent :: get_option_string() );
|
110 |
+
|
111 |
+
if ( $options['buttons'] ) {
|
112 |
+
|
113 |
+
$xml = '<?xml version="1.0" encoding="UTF-8"?>';
|
114 |
+
$xml .= "\n" . '<buttons>' . "\n";
|
115 |
+
|
116 |
+
for ( $i = 0; $i < count( $options['buttons'] ); $i++ ) {
|
117 |
+
$xml .= "\t" . '<quicktag>' . "\n";
|
118 |
+
foreach( $options['buttons'][$i] as $name => $value ) {
|
119 |
+
|
120 |
+
$value = stripslashes( $value );
|
121 |
+
|
122 |
+
if ( empty( $value ) ) {
|
123 |
+
$xml .= "\t\t" . '<' . $name . '/>' . "\n";
|
124 |
+
} elseif ( preg_match( '/^[0-9]*$/', $value ) ) {
|
125 |
+
$xml .= "\t\t" . '<' . $name . '>' . $value . '</' . $name . '>' . "\n";
|
126 |
+
} else {
|
127 |
+
$xml .= "\t\t" . '<' . $name . '><![CDATA[' . $value . ']]></' . $name . '>' . "\n";
|
128 |
+
}
|
129 |
+
}
|
130 |
+
$xml .= "\t" . '</quicktag>' . "\n";
|
131 |
+
}
|
132 |
+
$xml .= '</buttons>';
|
133 |
+
|
134 |
+
} else {
|
135 |
+
$xml = 'We dont find settings in database';
|
136 |
+
}
|
137 |
+
|
138 |
+
$filename = urlencode( 'addquicktag.' . date('Y-m-d') . '.xml' );
|
139 |
+
$filesize = strlen( $xml );
|
140 |
+
|
141 |
+
$this -> export_xml( $filename, $filesize, $filetype = 'text/xml' );
|
142 |
+
echo $xml;
|
143 |
+
exit;
|
144 |
+
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* Create download file
|
148 |
+
*
|
149 |
+
* @access public
|
150 |
+
* @since 2.0.0
|
151 |
+
* @param string $filename
|
152 |
+
* @param string $filesize
|
153 |
+
* @param string $filetype
|
154 |
+
* @uses get_option
|
155 |
+
* @return void
|
156 |
+
*/
|
157 |
+
public function export_xml( $filename, $filesize, $filetype ) {
|
158 |
+
|
159 |
+
header( 'Content-Description: File Transfer' );
|
160 |
+
header( 'Content-Disposition: attachment; filename=' . $filename );
|
161 |
+
header( 'Content-Length: ' . $filesize );
|
162 |
+
header( 'Content-type: ' . $filetype . '; charset=' . get_option('blog_charset'), TRUE );
|
163 |
+
flush();
|
164 |
+
}
|
165 |
+
|
166 |
+
/**
|
167 |
+
* Import XML and update settings
|
168 |
+
*
|
169 |
+
* @access public
|
170 |
+
* @since 2.0.0
|
171 |
+
* @param string $filename
|
172 |
+
* @uses current_user_can, wp_die, is_plugin_active_for_network, update_site_option, update_option
|
173 |
+
* @return void
|
174 |
+
*/
|
175 |
+
public function import_file( $filename = FALSE ) {
|
176 |
+
|
177 |
+
if ( ! current_user_can( 'manage_options' ) )
|
178 |
+
wp_die( __('Options not update - you don‘t have the privilidges to do this!', parent :: get_textdomain() ) );
|
179 |
+
|
180 |
+
// use tmp file
|
181 |
+
if ( ! $filename )
|
182 |
+
$filename = $_FILES['xml']['tmp_name'];
|
183 |
+
|
184 |
+
$filename = preg_replace( "/\<\!\[CDATA\[(.*?)\]\]\>/ies", "'[CDATA]' . base64_encode('$1') . '[/CDATA]'", $filename );
|
185 |
+
$matches = simplexml_load_file( $filename );
|
186 |
+
|
187 |
+
// create array from xml
|
188 |
+
$button = array();
|
189 |
+
foreach ( $matches -> quicktag as $key ) {
|
190 |
+
foreach ($key as $value) {
|
191 |
+
$buttons[$value -> getName()] = $value;
|
192 |
+
}
|
193 |
+
$button[] = $buttons;
|
194 |
+
}
|
195 |
+
$options['buttons'] = $button;
|
196 |
+
// validate the values from xml
|
197 |
+
$options = parent :: validate_settings($options);
|
198 |
+
// update settings in database
|
199 |
+
if ( is_multisite() && is_plugin_active_for_network( parent :: get_plugin_string() ) )
|
200 |
+
update_site_option( parent :: get_option_string(), $options );
|
201 |
+
else
|
202 |
+
update_option( parent :: get_option_string(), $options );
|
203 |
+
}
|
204 |
+
|
205 |
+
} // end class
|
206 |
+
|
207 |
+
$add_quicktag_im_export = Add_Quicktag_Im_Export :: get_object();
|
inc/class-settings.php
ADDED
@@ -0,0 +1,475 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* AddQuicktag - Settings
|
4 |
+
* @license GPLv3
|
5 |
+
* @package AddQuicktag
|
6 |
+
* @subpackage AddQuicktag Settings
|
7 |
+
*/
|
8 |
+
|
9 |
+
if ( ! function_exists( 'add_action' ) ) {
|
10 |
+
echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
|
11 |
+
exit;
|
12 |
+
}
|
13 |
+
|
14 |
+
class Add_Quicktag_Settings extends Add_Quicktag {
|
15 |
+
|
16 |
+
static private $classobj = NULL;
|
17 |
+
// string for translation
|
18 |
+
static public $textdomain;
|
19 |
+
// string for options in table options
|
20 |
+
static private $option_string;
|
21 |
+
// string for plugin file
|
22 |
+
static private $plugin;
|
23 |
+
// string for nonce fields
|
24 |
+
static public $nonce_string;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Handler for the action 'init'. Instantiates this class.
|
28 |
+
*
|
29 |
+
* @access public
|
30 |
+
* @since 2.0.0
|
31 |
+
* @return $classobj
|
32 |
+
*/
|
33 |
+
public function get_object() {
|
34 |
+
|
35 |
+
if ( NULL === self :: $classobj ) {
|
36 |
+
self :: $classobj = new self;
|
37 |
+
}
|
38 |
+
|
39 |
+
return self :: $classobj;
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Constructor, init on defined hooks of WP and include second class
|
44 |
+
*
|
45 |
+
* @access public
|
46 |
+
* @since 0.0.2
|
47 |
+
* @uses register_activation_hook, register_uninstall_hook, add_action
|
48 |
+
* @return void
|
49 |
+
*/
|
50 |
+
public function __construct() {
|
51 |
+
|
52 |
+
if ( ! is_admin() )
|
53 |
+
return NULL;
|
54 |
+
|
55 |
+
// textdomain from parent class
|
56 |
+
self :: $textdomain = parent :: get_textdomain();
|
57 |
+
$this -> option_string = parent :: get_option_string();
|
58 |
+
$this -> plugin = parent :: get_plugin_string();
|
59 |
+
$this -> nonce_string = 'addquicktag_nonce';
|
60 |
+
|
61 |
+
register_uninstall_hook( __FILE__, array( 'Add_Quicktag_Settings', 'unregister_settings' ) );
|
62 |
+
// settings for an active multisite
|
63 |
+
if ( is_multisite() && is_plugin_active_for_network( $this -> plugin ) ) {
|
64 |
+
add_action( 'network_admin_menu', array( $this, 'add_settings_page' ) );
|
65 |
+
// add settings link
|
66 |
+
add_filter( 'network_admin_plugin_action_links', array( $this, 'network_admin_plugin_action_links' ), 10, 2 );
|
67 |
+
// save settings on network
|
68 |
+
add_action( 'network_admin_edit_' . $this -> option_string, array( $this, 'save_network_settings_page' ) );
|
69 |
+
// return message for update settings
|
70 |
+
add_action( 'network_admin_notices', array( $this, 'get_network_admin_notices' ) );
|
71 |
+
} else {
|
72 |
+
add_action( 'admin_menu', array( $this, 'add_settings_page' ) );
|
73 |
+
// add settings link
|
74 |
+
add_filter( 'plugin_action_links', array( $this, 'plugin_action_links' ), 10, 2 );
|
75 |
+
// use settings API
|
76 |
+
add_action( 'admin_init', array( $this, 'register_settings' ) );
|
77 |
+
}
|
78 |
+
// add meta boxes on settings pages
|
79 |
+
add_action( 'addquicktag_settings_page_sidebar', array( $this, 'get_plugin_infos' ) );
|
80 |
+
add_action( 'addquicktag_settings_page_sidebar', array( $this, 'get_about_plugin' ) );
|
81 |
+
// include class for im/export
|
82 |
+
require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-imexport.php';
|
83 |
+
}
|
84 |
+
|
85 |
+
|
86 |
+
/**
|
87 |
+
* Return Textdomain string
|
88 |
+
*
|
89 |
+
* @access public
|
90 |
+
* @since 2.0.0
|
91 |
+
* @return string
|
92 |
+
*/
|
93 |
+
public function get_textdomain() {
|
94 |
+
|
95 |
+
return self :: $textdomain;
|
96 |
+
}
|
97 |
+
|
98 |
+
/**
|
99 |
+
* Add settings link on plugins.php in backend
|
100 |
+
*
|
101 |
+
* @uses
|
102 |
+
* @access public
|
103 |
+
* @param array $links, string $file
|
104 |
+
* @since 2.0.0
|
105 |
+
* @return string $links
|
106 |
+
*/
|
107 |
+
public function plugin_action_links( $links, $file ) {
|
108 |
+
|
109 |
+
if ( parent :: get_plugin_string() == $file )
|
110 |
+
$links[] = '<a href="options-general.php?page=addquicktag/inc/class-settings.php">' . __('Settings') . '</a>';
|
111 |
+
|
112 |
+
return $links;
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* Add settings link on plugins.php on network admin in backend
|
117 |
+
*
|
118 |
+
* @uses
|
119 |
+
* @access public
|
120 |
+
* @param array $links, string $file
|
121 |
+
* @since 2.0.0
|
122 |
+
* @return string $links
|
123 |
+
*/
|
124 |
+
public function network_admin_plugin_action_links( $links, $file ) {
|
125 |
+
|
126 |
+
if ( parent :: get_plugin_string() == $file )
|
127 |
+
$links[] = '<a href="settings.php?page=addquicktag/inc/class-settings.php">' . __('Settings') . '</a>';
|
128 |
+
|
129 |
+
return $links;
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* Add settings page in WP backend
|
134 |
+
*
|
135 |
+
* @uses add_options_page
|
136 |
+
* @access public
|
137 |
+
* @since 2.0.0
|
138 |
+
* @return void
|
139 |
+
*/
|
140 |
+
public function add_settings_page () {
|
141 |
+
|
142 |
+
if ( is_multisite() && is_plugin_active_for_network( $this -> plugin ) ) {
|
143 |
+
add_submenu_page(
|
144 |
+
'settings.php',
|
145 |
+
parent :: get_plugin_data( 'Name' ) . ' ' . __( 'Settings', $this -> get_textdomain() ),
|
146 |
+
parent :: get_plugin_data( 'Name' ),
|
147 |
+
'manage_options',
|
148 |
+
plugin_basename(__FILE__),
|
149 |
+
array( $this, 'get_settings_page' )
|
150 |
+
);
|
151 |
+
} else {
|
152 |
+
add_options_page(
|
153 |
+
parent :: get_plugin_data( 'Name' ) . ' ' . __( 'Settings', $this -> get_textdomain() ),
|
154 |
+
parent :: get_plugin_data( 'Name' ),
|
155 |
+
'manage_options',
|
156 |
+
plugin_basename(__FILE__),
|
157 |
+
array( $this, 'get_settings_page' )
|
158 |
+
);
|
159 |
+
add_action( 'contextual_help', array( $this, 'contextual_help' ), 10, 3 );
|
160 |
+
}
|
161 |
+
}
|
162 |
+
|
163 |
+
/**
|
164 |
+
* Return form and markup on settings page
|
165 |
+
*
|
166 |
+
* @uses settings_fields, normalize_whitespace, is_plugin_active_for_network, get_site_option, get_option
|
167 |
+
* @access public
|
168 |
+
* @since 0.0.2
|
169 |
+
* @return void
|
170 |
+
*/
|
171 |
+
public function get_settings_page() {
|
172 |
+
|
173 |
+
?>
|
174 |
+
<div class="wrap">
|
175 |
+
<?php screen_icon('options-general'); ?>
|
176 |
+
<h2><?php echo parent :: get_plugin_data( 'Name' ); ?></h2>
|
177 |
+
|
178 |
+
<h3><?php _e('Add or delete Quicktag buttons', $this -> get_textdomain() ); ?></h3>
|
179 |
+
<?php
|
180 |
+
if ( is_multisite() && is_plugin_active_for_network( $this -> plugin ) )
|
181 |
+
$action = 'edit.php?action=' . $this -> option_string;
|
182 |
+
else
|
183 |
+
$action = 'options.php';
|
184 |
+
?>
|
185 |
+
<form method="post" action="<?php echo $action; ?>">
|
186 |
+
<?php
|
187 |
+
settings_fields( $this -> option_string . '_group' );
|
188 |
+
|
189 |
+
if ( is_multisite() && is_plugin_active_for_network( $this -> plugin ) )
|
190 |
+
$options = get_site_option( $this -> option_string );
|
191 |
+
else
|
192 |
+
$options = get_option( $this -> option_string );
|
193 |
+
|
194 |
+
if ( ! $options )
|
195 |
+
$options['buttons'] = array();
|
196 |
+
|
197 |
+
if ( 1 < count($options['buttons']) ) {
|
198 |
+
// sort array by order value
|
199 |
+
$tmp = array();
|
200 |
+
foreach( $options['buttons'] as $order ) {
|
201 |
+
$tmp[] = $order['order'];
|
202 |
+
}
|
203 |
+
array_multisort( $tmp, SORT_ASC, $options['buttons'] );
|
204 |
+
}
|
205 |
+
?>
|
206 |
+
|
207 |
+
<table class="widefat">
|
208 |
+
<tr>
|
209 |
+
<th class="row-title"><?php _e('Button Label*', $this -> get_textdomain() ); ?></th>
|
210 |
+
<th class="row-title"><?php _e('Title Attribute', $this -> get_textdomain() ); ?></th>
|
211 |
+
<th class="row-title"><?php _e('Start Tag(s)*', $this -> get_textdomain() ); ?></th>
|
212 |
+
<th class="row-title"><?php _e('End Tag(s)', $this -> get_textdomain() ); ?></th>
|
213 |
+
<th class="row-title" style="width:5%;"><?php _e('Access Key', $this -> get_textdomain() ); ?></th>
|
214 |
+
<th class="row-title" style="width:5%;"><?php _e('Order', $this -> get_textdomain() ); ?></th>
|
215 |
+
<th class="row-title" style="width:5%;"><?php _e('Visual', $this -> get_textdomain() ); ?></th>
|
216 |
+
</tr>
|
217 |
+
<?php
|
218 |
+
if ( empty($options['buttons']) )
|
219 |
+
$options['buttons'] = array();
|
220 |
+
$class = '';
|
221 |
+
for ( $i = 0; $i < count( $options['buttons'] ); $i++ ) {
|
222 |
+
$class = ( ' class="alternate"' == $class ) ? '' : ' class="alternate"';
|
223 |
+
$b = $options['buttons'][$i];
|
224 |
+
$b['text'] = htmlentities( stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset') );
|
225 |
+
$b['title'] = htmlentities( stripslashes($b['title']), ENT_COMPAT, get_option('blog_charset') );
|
226 |
+
$b['start'] = htmlentities( $b['start'], ENT_COMPAT, get_option('blog_charset') );
|
227 |
+
$b['end'] = htmlentities( $b['end'], ENT_COMPAT, get_option('blog_charset') );
|
228 |
+
if ( ! isset( $b['access'] ) )
|
229 |
+
$b['access'] = '';
|
230 |
+
$b['access'] = htmlentities( $b['access'], ENT_COMPAT, get_option('blog_charset') );
|
231 |
+
if ( ! isset( $b['order'] ) )
|
232 |
+
$b['order'] = 0;
|
233 |
+
$b['order'] = intval( $b['order'] );
|
234 |
+
if ( ! isset( $b['visual'] ) )
|
235 |
+
$b['visual'] = 0;
|
236 |
+
$b['visual'] = intval( $b['visual'] );
|
237 |
+
if ( 1 == $b['visual'] )
|
238 |
+
$checked = ' checked="checked"';
|
239 |
+
else
|
240 |
+
$checked = '';
|
241 |
+
$nr = $i + 1;
|
242 |
+
echo '
|
243 |
+
<tr>
|
244 |
+
<td><input type="text" name="' . $this -> option_string . '[buttons][' . $i
|
245 |
+
. '][text]" value="' . $b['text'] . '" style="width: 95%;" /></td>
|
246 |
+
<td><input type="text" name="' . $this -> option_string . '[buttons][' . $i . '][title]" value="'
|
247 |
+
. $b['title'] . '" style="width: 95%;" /></td>
|
248 |
+
<td><textarea class="code" name="' . $this -> option_string . '[buttons][' . $i
|
249 |
+
. '][start]" rows="2" cols="25" style="width: 95%;">' . $b['start'] . '</textarea></td>
|
250 |
+
<td><textarea class="code" name="' . $this -> option_string . '[buttons][' . $i
|
251 |
+
. '][end]" rows="2" cols="25" style="width: 95%;">' . $b['end'] . '</textarea></td>
|
252 |
+
<td><input type="text" name="' . $this -> option_string . '[buttons][' . $i
|
253 |
+
. '][access]" value="' . $b['access'] . '" style="width: 95%;" /></td>
|
254 |
+
<td><input type="text" name="' . $this -> option_string . '[buttons][' . $i
|
255 |
+
. '][order]" value="' . $b['order'] . '" style="width: 95%;" /></td>
|
256 |
+
<td><input type="checkbox" name="' . $this -> option_string . '[buttons][' . $i
|
257 |
+
. '][visual]" value="1"' . $checked . ' style="width: 95%;" /></td>
|
258 |
+
</tr>
|
259 |
+
';
|
260 |
+
}
|
261 |
+
?>
|
262 |
+
<tr>
|
263 |
+
<td><input type="text" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][text]" value="" style="width: 95%;" /></td>
|
264 |
+
<td><input type="text" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][title]" value="" style="width: 95%;" /></td>
|
265 |
+
<td><textarea class="code" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][start]" rows="2" cols="25" style="width: 95%;"></textarea></td>
|
266 |
+
<td><textarea class="code" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][end]" rows="2" cols="25" style="width: 95%;"></textarea></td>
|
267 |
+
<td><input type="text" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][access]" value="" class="code" style="width: 95%;" /></td>
|
268 |
+
<td><input type="text" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][order]" value="" style="width: 95%;" /></td>
|
269 |
+
<td><input type="checkbox" name="<?php echo $this -> option_string; ?>[buttons][<?php echo $i; ?>][visual]" value="1" style="width: 95%;" /></td>
|
270 |
+
</tr>
|
271 |
+
</table>
|
272 |
+
|
273 |
+
<p><?php _e( 'Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields.', $this -> get_textdomain() ); ?></p>
|
274 |
+
<p class="submit">
|
275 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
276 |
+
</p>
|
277 |
+
|
278 |
+
</form>
|
279 |
+
|
280 |
+
<div class="metabox-holder has-right-sidebar">
|
281 |
+
|
282 |
+
<div class="inner-sidebar">
|
283 |
+
<?php do_action( 'addquicktag_settings_page_sidebar' ); ?>
|
284 |
+
</div> <!-- .inner-sidebar -->
|
285 |
+
|
286 |
+
<div id="post-body">
|
287 |
+
<div id="post-body-content">
|
288 |
+
<?php do_action( 'addquicktag_settings_page' ); ?>
|
289 |
+
</div> <!-- #post-body-content -->
|
290 |
+
</div> <!-- #post-body -->
|
291 |
+
|
292 |
+
</div> <!-- .metabox-holder -->
|
293 |
+
|
294 |
+
</div>
|
295 |
+
<?php
|
296 |
+
}
|
297 |
+
|
298 |
+
/*
|
299 |
+
* Return informations to donate
|
300 |
+
*
|
301 |
+
* @uses _e,esc_attr_e
|
302 |
+
* @access public
|
303 |
+
* @since 2.0.0
|
304 |
+
* @return void
|
305 |
+
*/
|
306 |
+
public function get_plugin_infos() {
|
307 |
+
?>
|
308 |
+
<div class="postbox">
|
309 |
+
|
310 |
+
<h3><span><?php _e( 'Like this plugin?', $this -> get_textdomain() ); ?></span></h3>
|
311 |
+
<div class="inside">
|
312 |
+
<p><?php _e( 'Here\'s how you can give back:', $this -> get_textdomain() ); ?></p>
|
313 |
+
<ul>
|
314 |
+
<li><a href="http://wordpress.org/extend/plugins/addquicktag/" title="<?php esc_attr_e( 'The Plugin on the WordPress plugin repository', $this -> get_textdomain() ); ?>"><?php _e( 'Give the plugin a good rating.', $this -> get_textdomain() ); ?></a></li>
|
315 |
+
<li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6069955" title="<?php esc_attr_e( 'Donate via PayPal', $this -> get_textdomain() ); ?>"><?php _e( 'Donate a few euros.', $this -> get_textdomain() ); ?></a></li>
|
316 |
+
<li><a href="http://www.amazon.de/gp/registry/3NTOGEK181L23/ref=wl_s_3" title="<?php esc_attr_e( 'Frank Bültge\'s Amazon Wish List', $this -> get_textdomain() ); ?>"><?php _e( 'Get me something from my wish list.', $this -> get_textdomain() ); ?></a></li>
|
317 |
+
</ul>
|
318 |
+
</div>
|
319 |
+
</div>
|
320 |
+
<?php
|
321 |
+
}
|
322 |
+
|
323 |
+
/*
|
324 |
+
* Return informations about the plugin
|
325 |
+
*
|
326 |
+
* @uses _e,esc_attr_e
|
327 |
+
* @access public
|
328 |
+
* @since 2.0.0
|
329 |
+
* @return void
|
330 |
+
*/
|
331 |
+
public function get_about_plugin() {
|
332 |
+
?>
|
333 |
+
<div class="postbox">
|
334 |
+
|
335 |
+
<h3><span><?php _e( 'About this plugin', $this -> get_textdomain() ); ?></span></h3>
|
336 |
+
<div class="inside">
|
337 |
+
<p>
|
338 |
+
<strong><?php _e( 'Version:', $this -> get_textdomain() ); ?></strong>
|
339 |
+
<?php echo parent :: get_plugin_data( 'Version' ); ?>
|
340 |
+
</p>
|
341 |
+
<p>
|
342 |
+
<strong><?php _e( 'Description:', $this -> get_textdomain() ); ?></strong>
|
343 |
+
<?php echo parent :: get_plugin_data( 'Description' ); ?>
|
344 |
+
</p>
|
345 |
+
</div>
|
346 |
+
</div>
|
347 |
+
<?php
|
348 |
+
}
|
349 |
+
|
350 |
+
/*
|
351 |
+
* Save network settings
|
352 |
+
*
|
353 |
+
* @uses update_site_option, wp_redirect, add_query_arg, network_admin_url
|
354 |
+
* @access public
|
355 |
+
* @since 2.0.0
|
356 |
+
* @return void
|
357 |
+
*/
|
358 |
+
public function save_network_settings_page() {
|
359 |
+
// validate options
|
360 |
+
$value = $this -> validate_settings( $_POST[$this -> option_string] );
|
361 |
+
// update options
|
362 |
+
update_site_option( $this -> option_string, $value );
|
363 |
+
// redirect to settings page in network
|
364 |
+
wp_redirect(
|
365 |
+
add_query_arg(
|
366 |
+
array('page' => 'addquicktag/inc/class-settings.php', 'updated' => 'true'),
|
367 |
+
network_admin_url( 'settings.php' )
|
368 |
+
)
|
369 |
+
);
|
370 |
+
exit();
|
371 |
+
}
|
372 |
+
|
373 |
+
/*
|
374 |
+
* Retrun string vor update message
|
375 |
+
*
|
376 |
+
* @uses
|
377 |
+
* @access public
|
378 |
+
* @since 2.0.0
|
379 |
+
* @return string $notice
|
380 |
+
*/
|
381 |
+
public function get_network_admin_notices() {
|
382 |
+
|
383 |
+
// if updated and the right page
|
384 |
+
if ( isset( $_GET['updated'] ) &&
|
385 |
+
'settings_page_addquicktag/inc/class-settings-network' === $GLOBALS['current_screen'] -> id
|
386 |
+
) {
|
387 |
+
$message = __( 'Options saved.', $this -> get_textdomain() );
|
388 |
+
$notice = '<div id="message" class="updated"><p>' .$message . '</p></div>';
|
389 |
+
echo $notice;
|
390 |
+
}
|
391 |
+
}
|
392 |
+
|
393 |
+
/**
|
394 |
+
* Validate settings for options
|
395 |
+
*
|
396 |
+
* @uses normalize_whitespace
|
397 |
+
* @access public
|
398 |
+
* @param array $value
|
399 |
+
* @since 2.0.0
|
400 |
+
* @return string $value
|
401 |
+
*/
|
402 |
+
public function validate_settings( $value ) {
|
403 |
+
|
404 |
+
$buttons = array();
|
405 |
+
for ( $i = 0; $i < count( $value['buttons']); $i++ ) {
|
406 |
+
$b = $value['buttons'][$i];
|
407 |
+
if ($b['text'] != '' && $b['start'] != '') {
|
408 |
+
$b['text'] = esc_html( $b['text'] );
|
409 |
+
$b['title'] = esc_html( $b['title'] );
|
410 |
+
$b['start'] = stripslashes( $b['start'] );
|
411 |
+
$b['end'] = stripslashes( $b['end'] );
|
412 |
+
$b['access'] = esc_html( $b['access'] );
|
413 |
+
$b['order'] = intval( $b['order'] );
|
414 |
+
if ( isset( $b['visual'] ) )
|
415 |
+
$b['visual'] = intval( $b['visual'] );
|
416 |
+
else
|
417 |
+
$b['visual'] = 0;
|
418 |
+
$buttons[] = $b;
|
419 |
+
}
|
420 |
+
}
|
421 |
+
$value['buttons'] = $buttons;
|
422 |
+
|
423 |
+
return $value;
|
424 |
+
}
|
425 |
+
|
426 |
+
/**
|
427 |
+
* Register settings for options
|
428 |
+
*
|
429 |
+
* @uses register_setting
|
430 |
+
* @access public
|
431 |
+
* @since 2.0.0
|
432 |
+
* @return void
|
433 |
+
*/
|
434 |
+
public function register_settings() {
|
435 |
+
|
436 |
+
register_setting( $this -> option_string . '_group', $this -> option_string, array( $this, 'validate_settings' ) );
|
437 |
+
}
|
438 |
+
|
439 |
+
/**
|
440 |
+
* Unregister and delete settings; clean database
|
441 |
+
*
|
442 |
+
* @uses unregister_setting, delete_option
|
443 |
+
* @access public
|
444 |
+
* @since 0.0.2
|
445 |
+
* @return void
|
446 |
+
*/
|
447 |
+
public function unregister_settings() {
|
448 |
+
|
449 |
+
unregister_setting( $this -> option_string . '_group', $this -> option_string );
|
450 |
+
delete_option( $this -> option_string );
|
451 |
+
}
|
452 |
+
|
453 |
+
/**
|
454 |
+
* Add help text
|
455 |
+
*
|
456 |
+
* @uses normalize_whitespace
|
457 |
+
* @param string $contextual_help
|
458 |
+
* @param string $screen_id
|
459 |
+
* @param string $screen
|
460 |
+
* @since 2.0.0
|
461 |
+
* @return string $contextual_help
|
462 |
+
*/
|
463 |
+
public function contextual_help( $contextual_help, $screen_id, $screen ) {
|
464 |
+
|
465 |
+
if ( 'settings_page_' . $this -> option_string . '_group' !== $screen_id )
|
466 |
+
return $contextual_help;
|
467 |
+
|
468 |
+
$contextual_help =
|
469 |
+
'<p>' . __( '' ) . '</p>';
|
470 |
+
|
471 |
+
return normalize_whitespace( $contextual_help );
|
472 |
+
}
|
473 |
+
|
474 |
+
}
|
475 |
+
$add_quicktag_settings = Add_Quicktag_Settings :: get_object();
|
inc/class-tinymce.php
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* AddQuicktag - to TinyMCE Editor
|
4 |
+
* @license GPLv3
|
5 |
+
* @package AddQuicktag
|
6 |
+
* @subpackage AddQuicktag 2 TinyMce
|
7 |
+
*/
|
8 |
+
|
9 |
+
if ( ! function_exists( 'add_action' ) ) {
|
10 |
+
echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
|
11 |
+
exit;
|
12 |
+
}
|
13 |
+
|
14 |
+
class Add_Quicktag_2_TinyMce extends Add_Quicktag {
|
15 |
+
|
16 |
+
static private $classobj = NULL;
|
17 |
+
|
18 |
+
static private $option_string = 'rmnlQuicktagSettings_tmce';
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Handler for the action 'init'. Instantiates this class.
|
22 |
+
*
|
23 |
+
* @access public
|
24 |
+
* @since 2.0.0
|
25 |
+
* @return $classobj
|
26 |
+
*/
|
27 |
+
public function get_object() {
|
28 |
+
|
29 |
+
if ( NULL === self :: $classobj ) {
|
30 |
+
self :: $classobj = new self;
|
31 |
+
}
|
32 |
+
|
33 |
+
return self :: $classobj;
|
34 |
+
}
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Constructor, init on defined hooks of WP and include second class
|
38 |
+
*
|
39 |
+
* @access public
|
40 |
+
* @since 0.0.2
|
41 |
+
* @uses add_action
|
42 |
+
* @return void
|
43 |
+
*/
|
44 |
+
public function __construct() {
|
45 |
+
|
46 |
+
add_filter( 'mce_external_plugins', array( $this, 'add_externel_buttons' ) );
|
47 |
+
add_filter( 'mce_buttons_2', array( $this, 'extend_editor_buttons' ), 10, 2 );
|
48 |
+
}
|
49 |
+
|
50 |
+
public function add_externel_buttons( $plugins ) {
|
51 |
+
|
52 |
+
if ( FALSE == is_array($plugins) )
|
53 |
+
$plugins = array();
|
54 |
+
|
55 |
+
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
|
56 |
+
|
57 |
+
$url = plugins_url('/tinymce/editor_plugin' . $suffix . '.js', __FILE__);
|
58 |
+
$plugins = array_merge( $plugins, array( self :: $option_string => $url ) );
|
59 |
+
|
60 |
+
return $plugins;
|
61 |
+
}
|
62 |
+
|
63 |
+
public function extend_editor_buttons( $buttons, $editor_id = FALSE ) {
|
64 |
+
|
65 |
+
return array_merge( array( self :: $option_string ), $buttons );
|
66 |
+
}
|
67 |
+
|
68 |
+
} // end class
|
69 |
+
$add_quicktag_2_tinymce = Add_Quicktag_2_TinyMce :: get_object();
|
inc/tinymce/editor_plugin.dev.js
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* AddQuicktag Script to add listbox to visual-editor
|
3 |
+
* @since 2.0.0
|
4 |
+
* @package AddQuicktag Plugin
|
5 |
+
*/
|
6 |
+
|
7 |
+
(function() {
|
8 |
+
|
9 |
+
if ( typeof addquicktag_tags == 'undefined' )
|
10 |
+
return;
|
11 |
+
// Load plugin specific language pack
|
12 |
+
tinymce.PluginManager.requireLangPack('rmnlQuicktagSettings_tmce' );
|
13 |
+
|
14 |
+
/*
|
15 |
+
* @see http://www.tinymce.com/wiki.php/API3:class.tinymce.ui.ListBox
|
16 |
+
*/
|
17 |
+
tinymce.create('tinymce.plugins.AddQuicktag', {
|
18 |
+
createControl: function(n, cm) {
|
19 |
+
switch (n) {
|
20 |
+
case 'rmnlQuicktagSettings_tmce':
|
21 |
+
var tiny_tags = addquicktag_tags['buttons'];
|
22 |
+
var i = 0;
|
23 |
+
var rmnlQuicktagSettings_tmce_options = '';
|
24 |
+
var mlb = cm.createListBox('rmnlQuicktagSettings_tmce', {
|
25 |
+
title : 'Quicktags',
|
26 |
+
onselect : function(v) {
|
27 |
+
var selection = tinyMCE.activeEditor.selection.getContent();
|
28 |
+
var marked = true;
|
29 |
+
|
30 |
+
switch (v) {
|
31 |
+
case 'null' :
|
32 |
+
var marked = false;
|
33 |
+
break;
|
34 |
+
default :
|
35 |
+
break;
|
36 |
+
}
|
37 |
+
|
38 |
+
if ( marked == true ) {
|
39 |
+
if ( typeof tiny_tags[v].end == 'undefined' ) tiny_tags[v].end = '';
|
40 |
+
tinyMCE.activeEditor.selection.setContent(
|
41 |
+
tiny_tags[v].start + selection + tiny_tags[v].end
|
42 |
+
);
|
43 |
+
}
|
44 |
+
}
|
45 |
+
});
|
46 |
+
|
47 |
+
// add values to the listbox
|
48 |
+
if ( typeof tiny_tags !== 'undefined' ) {
|
49 |
+
for ( i = 0; i < tiny_tags.length; i++ ) {
|
50 |
+
if ( 1 == tiny_tags[i].visual )
|
51 |
+
mlb.add( tiny_tags[i].text, String(i) );
|
52 |
+
}
|
53 |
+
} else {
|
54 |
+
mlb.add('rmnlQuicktagSettings_tmce.addquicktag_select_error', 'null');
|
55 |
+
}
|
56 |
+
|
57 |
+
// Return the new listbox instance
|
58 |
+
return mlb;
|
59 |
+
break;
|
60 |
+
}
|
61 |
+
return null;
|
62 |
+
},
|
63 |
+
|
64 |
+
getInfo : function() {
|
65 |
+
return {
|
66 |
+
longname : 'AddQuicktag Plugin for TinyMCE in WordPress',
|
67 |
+
author : 'Frank Bueltge',
|
68 |
+
authorurl : 'http://bueltge.de/',
|
69 |
+
infourl : 'http://wordpress.org/extend/plugins/addquicktag/',
|
70 |
+
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
71 |
+
};
|
72 |
+
}
|
73 |
+
});
|
74 |
+
|
75 |
+
// Register plugin
|
76 |
+
tinymce.PluginManager.add( 'rmnlQuicktagSettings_tmce', tinymce.plugins.AddQuicktag );
|
77 |
+
})();
|
inc/tinymce/editor_plugin.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* AddQuicktag Script to add listbox to visual-editor
|
3 |
+
* @since 2.0.0
|
4 |
+
* @package AddQuicktag Plugin
|
5 |
+
*/
|
6 |
+
|
7 |
+
(function(){if(typeof addquicktag_tags=="undefined")return;tinymce.PluginManager.requireLangPack("rmnlQuicktagSettings_tmce");tinymce.create("tinymce.plugins.AddQuicktag",{createControl:function(a,b){switch(a){case"rmnlQuicktagSettings_tmce":var c=addquicktag_tags["buttons"];var d=0;var e="";var f=b.createListBox("rmnlQuicktagSettings_tmce",{title:"Quicktags",onselect:function(a){var b=tinyMCE.activeEditor.selection.getContent();var d=true;switch(a){case"null":var d=false;break;default:break}if(d==true){if(typeof c[a].end=="undefined")c[a].end="";tinyMCE.activeEditor.selection.setContent(c[a].start+b+c[a].end)}}});if(typeof c!=="undefined"){for(d=0;d<c.length;d++){if(1==c[d].visual)f.add(c[d].text,String(d))}}else{f.add("rmnlQuicktagSettings_tmce.addquicktag_select_error","null")}return f;break}return null},getInfo:function(){return{longname:"AddQuicktag Plugin for TinyMCE in WordPress",author:"Frank Bueltge",authorurl:"http://bueltge.de/",infourl:"http://wordpress.org/extend/plugins/addquicktag/",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("rmnlQuicktagSettings_tmce",tinymce.plugins.AddQuicktag)})()
|
inc/tinymce/langs/de.js
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
tinyMCE.addI18n('de.aqtwe',{
|
2 |
+
aqtwe_select_header : 'weitere Formate',
|
3 |
+
aqtwe_select_error : 'keine Qicktags erkannt'
|
4 |
+
});
|
5 |
+
|
inc/tinymce/langs/en.js
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
tinyMCE.addI18n('en.aqtwe',{
|
2 |
+
aqtwe_select_header : 'further styles',
|
3 |
+
aqtwe_select_error : 'no Qicktags found'
|
4 |
+
});
|
5 |
+
|
js/add-quicktags.dev.js
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* AddQuicktag Script to add buttons to html-editor
|
3 |
+
* @since 2.0.0
|
4 |
+
* @package AddQuicktag Plugin
|
5 |
+
*/
|
6 |
+
|
7 |
+
jQuery( document ).ready( function( $ ) {
|
8 |
+
|
9 |
+
if ( typeof addquicktag_tags == 'undefined' )
|
10 |
+
return;
|
11 |
+
|
12 |
+
var tags = addquicktag_tags['buttons'];
|
13 |
+
|
14 |
+
if ( typeof tags !== 'undefined' ) {
|
15 |
+
|
16 |
+
for ( var i = 0; i < tags.length; i++ ) {
|
17 |
+
if ( typeof tags[i].title == 'undefined' ) tags[i].title = ' ';
|
18 |
+
if ( typeof tags[i].end == 'undefined' ) tags[i].end = '';
|
19 |
+
if ( typeof tags[i].access == 'undefined' ) tags[i].access = '';
|
20 |
+
|
21 |
+
edButtons[edButtons.length] = new edButton(
|
22 |
+
// id, display, tagStart, tagEnd, access_key, title
|
23 |
+
tags[i].text.toLowerCase(), tags[i].text, tags[i].start, tags[i].end, tags[i].access, tags[i].title
|
24 |
+
);
|
25 |
+
}
|
26 |
+
|
27 |
+
} // end if tags
|
28 |
+
|
29 |
+
});
|
js/add-quicktags.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* AddQuicktag Script to add buttons to html-editor
|
3 |
+
* @since 2.0.0
|
4 |
+
* @package AddQuicktag Plugin
|
5 |
+
*/
|
6 |
+
|
7 |
+
jQuery(document).ready(function(a){if(typeof addquicktag_tags=="undefined")return;var b=addquicktag_tags["buttons"];if(typeof b!=="undefined"){for(var c=0;c<b.length;c++){if(typeof b[c].title=="undefined")b[c].title=" ";if(typeof b[c].end=="undefined")b[c].end="";if(typeof b[c].access=="undefined")b[c].access="";edButtons[edButtons.length]=new edButton(b[c].text.toLowerCase(),b[c].text,b[c].start,b[c].end,b[c].access,b[c].title)}}})
|
js/add-quicktags_32.dev.js
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* AddQuicktag Script to add buttons to html-editor for WordPress version smaller 3.3
|
3 |
+
* @since 2.0.0
|
4 |
+
* @package AddQuicktag Plugin
|
5 |
+
*/
|
6 |
+
|
7 |
+
jQuery( document ).ready( function( $ ) {
|
8 |
+
|
9 |
+
if ( typeof addquicktag_tags == 'undefined' )
|
10 |
+
return;
|
11 |
+
|
12 |
+
var tags = addquicktag_tags['buttons'];
|
13 |
+
var wpaqToolbar = document.getElementById("ed_toolbar");
|
14 |
+
|
15 |
+
if ( typeof tags !== 'undefined' && wpaqToolbar ) {
|
16 |
+
|
17 |
+
var wpaqBut;
|
18 |
+
|
19 |
+
for ( var i = 0; i < tags.length; i++ ) {
|
20 |
+
if ( typeof tags[i].title == 'undefined' ) tags[i].title = ' ';
|
21 |
+
if ( typeof tags[i].end == 'undefined' ) tags[i].end = '';
|
22 |
+
if ( typeof tags[i].access == 'undefined' ) tags[i].access = '';
|
23 |
+
|
24 |
+
edButtons[i] = new edButton(
|
25 |
+
// id, display, tagStart, tagEnd, access_key, title
|
26 |
+
tags[i].text.toLowerCase(), tags[i].text, tags[i].start, tags[i].end, tags[i].access, tags[i].title
|
27 |
+
);
|
28 |
+
wpaqBut = wpaqToolbar.lastChild;
|
29 |
+
while ( wpaqBut.nodeType != 1 ) {
|
30 |
+
wpaqBut = wpaqBut.previousSibling;
|
31 |
+
}
|
32 |
+
wpaqBut = wpaqBut.cloneNode( true );
|
33 |
+
wpaqBut.id = 'ed_' + i;
|
34 |
+
wpaqBut._idx = i; //store our current index at element itself
|
35 |
+
wpaqBut.value = tags[i].text;
|
36 |
+
wpaqBut.title = tags[i].title;
|
37 |
+
wpaqBut.onclick = function() { edInsertTag( edCanvas, this._idx ); return false; }
|
38 |
+
wpaqToolbar.appendChild( wpaqBut );
|
39 |
+
}
|
40 |
+
|
41 |
+
} // end if tags
|
42 |
+
|
43 |
+
});
|
js/add-quicktags_32.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* AddQuicktag Script to add buttons to html-editor for WordPress version smaller 3.3
|
3 |
+
* @since 2.0.0
|
4 |
+
* @package AddQuicktag Plugin
|
5 |
+
*/
|
6 |
+
|
7 |
+
jQuery(document).ready(function(a){if(typeof addquicktag_tags=="undefined")return;var b=addquicktag_tags["buttons"];var c=document.getElementById("ed_toolbar");if(typeof b!=="undefined"&&c){var d;for(var e=0;e<b.length;e++){if(typeof b[e].title=="undefined")b[e].title=" ";if(typeof b[e].end=="undefined")b[e].end="";if(typeof b[e].access=="undefined")b[e].access="";edButtons[e]=new edButton(b[e].text.toLowerCase(),b[e].text,b[e].start,b[e].end,b[e].access,b[e].title);d=c.lastChild;while(d.nodeType!=1){d=d.previousSibling}d=d.cloneNode(true);d.id="ed_"+e;d._idx=e;d.value=b[e].text;d.title=b[e].title;d.onclick=function(){edInsertTag(edCanvas,this._idx);return false};c.appendChild(d)}}})
|
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 »"
|
85 |
-
msgstr "Aktualizovat nastavení »"
|
86 |
-
|
87 |
-
#: addquicktag.php:210
|
88 |
-
msgid "Export »"
|
89 |
-
msgstr "Export »"
|
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 »"
|
105 |
-
msgstr "Nahrání souboru a import »"
|
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 »"
|
121 |
-
msgstr "Odinstalování nastavení »"
|
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 – Add Quicktag"
|
158 |
-
msgstr "WP-Quicktag – 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
@@ -1,174 +1,221 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
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 |
-
"
|
13 |
-
"X-Poedit-
|
|
|
|
|
|
|
|
|
|
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
23 |
|
24 |
-
|
25 |
-
#: addquicktag.php:
|
26 |
-
|
27 |
-
|
|
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
32 |
|
33 |
-
#:
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
-
#:
|
38 |
-
|
39 |
-
|
|
|
40 |
|
41 |
-
#:
|
|
|
42 |
msgid "Button Label*"
|
43 |
msgstr "Button Name*"
|
44 |
|
45 |
-
#:
|
|
|
46 |
msgid "Title Attribute"
|
47 |
msgstr "Title Attribut"
|
48 |
|
49 |
-
#:
|
|
|
50 |
msgid "Start Tag(s)*"
|
51 |
msgstr "Start Tag(s)*"
|
52 |
|
53 |
-
#:
|
|
|
54 |
msgid "End Tag(s)"
|
55 |
msgstr "Ende Tag(s)"
|
56 |
|
57 |
-
#:
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
#: addquicktag.php:262
|
62 |
-
msgid "Export »"
|
63 |
-
msgstr "Exportieren »"
|
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 »"
|
79 |
-
msgstr "Datei hochladen und importieren »"
|
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 |
-
#:
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
#: addquicktag.php:275
|
98 |
-
msgid "Uninstall options"
|
99 |
-
msgstr "Deinstalliere Einstellungen"
|
100 |
|
101 |
-
#:
|
102 |
-
|
103 |
-
|
|
|
104 |
|
105 |
-
#:
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
msgstr "Über das Plugin"
|
108 |
|
109 |
-
#:
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
-
#:
|
130 |
-
|
131 |
-
msgid "
|
132 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#:
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
msgid "Click to toggle"
|
139 |
-
msgstr "Zum umschalten klicken"
|
140 |
|
141 |
-
#:
|
142 |
-
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
|
146 |
-
#:
|
147 |
-
|
148 |
-
|
|
|
149 |
|
150 |
-
#:
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
#: addquicktag.php:941
|
155 |
-
msgid "Version"
|
156 |
-
msgstr "Version"
|
157 |
-
|
158 |
-
#: addquicktag.php:941
|
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 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: \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: \n"
|
14 |
+
"X-Poedit-Country: \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;_ex: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 |
+
#. translators: plugin header field 'Name'
|
23 |
+
#: addquicktag.php:0
|
24 |
+
#@ addquicktag
|
25 |
+
msgid "AddQuicktag"
|
26 |
+
msgstr "AddQuicktag"
|
27 |
|
28 |
+
#. translators: plugin header field 'PluginURI'
|
29 |
+
#: addquicktag.php:0
|
30 |
+
#@ addquicktag
|
31 |
+
msgid "http://bueltge.de/wp-addquicktags-de-plugin/120/"
|
32 |
+
msgstr ""
|
33 |
|
34 |
+
#. translators: plugin header field 'Author'
|
35 |
+
#: addquicktag.php:0
|
36 |
+
#@ addquicktag
|
37 |
+
msgid "Frank Bültge"
|
38 |
+
msgstr ""
|
39 |
|
40 |
+
#. translators: plugin header field 'AuthorURI'
|
41 |
+
#: addquicktag.php:0
|
42 |
+
#@ addquicktag
|
43 |
+
msgid "http://bueltge.de"
|
44 |
+
msgstr ""
|
45 |
|
46 |
+
#: inc/class-settings.php:110
|
47 |
+
#: inc/class-settings.php:127
|
48 |
+
#: inc/class-settings.php:145
|
49 |
+
#: inc/class-settings.php:153
|
50 |
+
#@ default
|
51 |
+
#@ addquicktag
|
52 |
+
msgid "Settings"
|
53 |
+
msgstr "Einstellungen"
|
54 |
|
55 |
+
#: inc/class-settings.php:178
|
56 |
+
#@ addquicktag
|
57 |
+
msgid "Add or delete Quicktag buttons"
|
58 |
+
msgstr "Ergänze oder lösche Quicktag Buttons"
|
59 |
|
60 |
+
#: inc/class-settings.php:209
|
61 |
+
#@ addquicktag
|
62 |
msgid "Button Label*"
|
63 |
msgstr "Button Name*"
|
64 |
|
65 |
+
#: inc/class-settings.php:210
|
66 |
+
#@ addquicktag
|
67 |
msgid "Title Attribute"
|
68 |
msgstr "Title Attribut"
|
69 |
|
70 |
+
#: inc/class-settings.php:211
|
71 |
+
#@ addquicktag
|
72 |
msgid "Start Tag(s)*"
|
73 |
msgstr "Start Tag(s)*"
|
74 |
|
75 |
+
#: inc/class-settings.php:212
|
76 |
+
#@ addquicktag
|
77 |
msgid "End Tag(s)"
|
78 |
msgstr "Ende Tag(s)"
|
79 |
|
80 |
+
#: inc/class-settings.php:213
|
81 |
+
#@ addquicktag
|
82 |
+
msgid "Access Key"
|
83 |
+
msgstr "Zugriffstaste"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
+
#: inc/class-settings.php:273
|
86 |
+
#@ addquicktag
|
87 |
+
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
88 |
+
msgstr "Ergänze neue Buttons, in dem die unteren Felder ausgefüllt werden. Felder mit * sind Pflichtfelder, müssen ausgefüllt werden. Um einen Button zu löschen, einfach die Felder des Buttons leeren und speichern."
|
|
|
|
|
|
|
89 |
|
90 |
+
#: inc/class-settings.php:275
|
91 |
+
#@ default
|
92 |
+
msgid "Save Changes"
|
93 |
+
msgstr ""
|
94 |
|
95 |
+
#: inc/class-settings.php:310
|
96 |
+
#@ addquicktag
|
97 |
+
msgid "Like this plugin?"
|
98 |
+
msgstr "Du magst das Plugin?"
|
99 |
+
|
100 |
+
#: inc/class-settings.php:312
|
101 |
+
#@ addquicktag
|
102 |
+
msgid "Here's how you can give back:"
|
103 |
+
msgstr "Über folgende Möglichkeiten kannst du etwas zurück geben:"
|
104 |
+
|
105 |
+
#: inc/class-settings.php:314
|
106 |
+
#@ addquicktag
|
107 |
+
msgid "The Plugin on the WordPress plugin repository"
|
108 |
+
msgstr "Das Plugin im offiziellen WordPress Repository"
|
109 |
+
|
110 |
+
#: inc/class-settings.php:314
|
111 |
+
#@ addquicktag
|
112 |
+
msgid "Give the plugin a good rating."
|
113 |
+
msgstr "Gib dem Plugin eine gute Wertung"
|
114 |
+
|
115 |
+
#: inc/class-settings.php:315
|
116 |
+
#@ addquicktag
|
117 |
+
msgid "Donate via PayPal"
|
118 |
+
msgstr "Spende via Paypal"
|
119 |
+
|
120 |
+
#: inc/class-settings.php:315
|
121 |
+
#@ addquicktag
|
122 |
+
msgid "Donate a few euros."
|
123 |
+
msgstr "Spende einige Euros"
|
124 |
+
|
125 |
+
#: inc/class-settings.php:316
|
126 |
+
#@ addquicktag
|
127 |
+
msgid "Frank Bültge's Amazon Wish List"
|
128 |
+
msgstr "Frank Bültge's Amazon Wunschliste"
|
129 |
+
|
130 |
+
#: inc/class-settings.php:316
|
131 |
+
#@ addquicktag
|
132 |
+
msgid "Get me something from my wish list."
|
133 |
+
msgstr "Suche dir was aus und lass mir ein Objekt meiner Wunschliste zukommen."
|
134 |
+
|
135 |
+
#: inc/class-settings.php:335
|
136 |
+
#@ addquicktag
|
137 |
+
msgid "About this plugin"
|
138 |
msgstr "Über das Plugin"
|
139 |
|
140 |
+
#: inc/class-settings.php:338
|
141 |
+
#@ addquicktag
|
142 |
+
msgid "Version:"
|
143 |
+
msgstr "Version:"
|
144 |
+
|
145 |
+
#: inc/class-settings.php:342
|
146 |
+
#@ addquicktag
|
147 |
+
msgid "Description:"
|
148 |
+
msgstr "Beschreibung:"
|
149 |
+
|
150 |
+
#: inc/class-settings.php:214
|
151 |
+
#@ addquicktag
|
152 |
+
msgid "Order"
|
153 |
+
msgstr "Reihenfolge"
|
154 |
+
|
155 |
+
#: inc/class-settings.php:215
|
156 |
+
#@ addquicktag
|
157 |
+
msgid "Visual"
|
158 |
+
msgstr "Visuell"
|
159 |
+
|
160 |
+
#. translators: plugin header field 'Description'
|
161 |
+
#: addquicktag.php:0
|
162 |
+
#@ addquicktag
|
163 |
+
msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
|
164 |
+
msgstr "Erlaubt das einfache Hinzufügen von Quicktags zum html- und visuellen Editor."
|
165 |
+
|
166 |
+
#. translators: plugin header field 'Version'
|
167 |
+
#: addquicktag.php:0
|
168 |
+
#@ addquicktag
|
169 |
+
msgid "2.0.0"
|
170 |
+
msgstr ""
|
171 |
|
172 |
+
#: inc/class-imexport.php:64
|
173 |
+
#@ addquicktag
|
174 |
+
msgid "Export"
|
175 |
+
msgstr "Exportieren"
|
176 |
+
|
177 |
+
#: inc/class-imexport.php:66
|
178 |
+
#@ addquicktag
|
179 |
+
msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
|
180 |
+
msgstr "Wenn du unten auf Export-Datei herunterladen klickst, wird das Plugin eine XML-Datei für dich erstellen, die du auf deinem Computer speichern kannst."
|
181 |
+
|
182 |
+
#: inc/class-imexport.php:67
|
183 |
+
#@ addquicktag
|
184 |
+
msgid "This format, a custom XML, will contain your options from quicktags."
|
185 |
+
msgstr "Dieses Format, ein benutzerdefniertes XML, beinhaltet Einstellungen der Quicktags."
|
186 |
+
|
187 |
+
#: inc/class-imexport.php:68
|
188 |
+
#@ addquicktag
|
189 |
+
msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
|
190 |
+
msgstr "Nachdem die heruntergeladene Datei gespeichert wurde, kannst du die Import-Funktion in einer anderen WordPress Installation nutzen."
|
191 |
+
|
192 |
+
#: inc/class-imexport.php:72
|
193 |
+
#@ addquicktag
|
194 |
+
msgid "Download Export File"
|
195 |
+
msgstr "Export-Datei herunterladen"
|
196 |
+
|
197 |
+
#: inc/class-imexport.php:80
|
198 |
+
#@ addquicktag
|
199 |
+
msgid "Import"
|
200 |
+
msgstr "Importieren"
|
201 |
|
202 |
+
#: inc/class-imexport.php:82
|
203 |
+
#@ addquicktag
|
204 |
+
msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
|
205 |
+
msgstr "Wenn du Quicktags von einer anderen WordPress Installation hast, dann kann das Plugin diese Einstellungen importieren. Zum Starten des Imports wähle eine Datei und klicke auf Datei aktualisieren und importieren."
|
|
|
|
|
206 |
|
207 |
+
#: inc/class-imexport.php:87
|
208 |
+
#@ addquicktag
|
209 |
+
msgid "Upload file and import"
|
210 |
+
msgstr "Datei aktualisieren und importieren"
|
211 |
|
212 |
+
#: inc/class-imexport.php:178
|
213 |
+
#@ addquicktag
|
214 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
215 |
+
msgstr "Einstellungen wurden nicht aktualisiert - du hast keine ausreichenden Rechte um dies zu tun!"
|
216 |
|
217 |
+
#: inc/class-settings.php:387
|
218 |
+
#@ addquicktag
|
219 |
+
msgid "Options saved."
|
220 |
+
msgstr "Einstellungen gespeichert."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
|
languages/addquicktag-es_ES.mo
DELETED
Binary file
|
languages/addquicktag-fr_FR.mo
DELETED
Binary file
|
languages/addquicktag-fr_FR.po
DELETED
@@ -1,197 +0,0 @@
|
|
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 »"
|
81 |
-
msgstr "Mise à jour des options »"
|
82 |
-
|
83 |
-
#: addquicktag.php:262
|
84 |
-
#@ addquicktag
|
85 |
-
msgid "Export »"
|
86 |
-
msgstr "Exporter »"
|
87 |
-
|
88 |
-
#: addquicktag.php:268
|
89 |
-
#@ addquicktag
|
90 |
-
msgid "Upload file and import »"
|
91 |
-
msgstr "Uploader et importer fichier »"
|
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 »"
|
106 |
-
msgstr "Options de désinstallation »"
|
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‘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 – 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
DELETED
Binary file
|
languages/addquicktag-it_IT.po
DELETED
@@ -1,180 +0,0 @@
|
|
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: 2011-02-02 20:47+0100\n"
|
7 |
-
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]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‘t have the privilidges to do this!"
|
21 |
-
msgstr "Opzioni non aggiornate - non hai il permesso per potere compiere questa operazione!"
|
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 "Atttributo titolo"
|
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 »"
|
62 |
-
msgstr "Aggiorna le opzioni »"
|
63 |
-
|
64 |
-
#: addquicktag.php:262
|
65 |
-
msgid "Export »"
|
66 |
-
msgstr "Esporta »"
|
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 »"
|
82 |
-
msgstr "Carica il file e importa »"
|
83 |
-
|
84 |
-
#: addquicktag.php:269
|
85 |
-
msgid "Import"
|
86 |
-
msgstr "Importa"
|
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 »"
|
98 |
-
msgstr "Disinstalla »"
|
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 "Clicca per commutare"
|
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 – AddQuicktag"
|
154 |
-
msgstr "WP-Quicktag – 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 |
-
|
167 |
-
#~ msgid "Can not write!"
|
168 |
-
#~ msgstr "Non é possibile la scrittura!"
|
169 |
-
|
170 |
-
#~ msgid "AddQuicktag options saved!"
|
171 |
-
#~ msgstr "Le opzioni di AddQuicktag sono state salvate!"
|
172 |
-
|
173 |
-
#~ msgid "Saved in: "
|
174 |
-
#~ msgstr "Salvate in:"
|
175 |
-
|
176 |
-
#~ msgid "/wpaq_export.wpaq</em>"
|
177 |
-
#~ msgstr "/wpaq_export.wpaq</em>"
|
178 |
-
|
179 |
-
#~ msgid "Import Quicktag buttons options"
|
180 |
-
#~ msgstr "Importa le opzioni dei pulsanti Quicktag"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 »"
|
84 |
-
msgstr "更新 »"
|
85 |
-
|
86 |
-
#: addquicktag.php:181
|
87 |
-
msgid "Export »"
|
88 |
-
msgstr "出力 »"
|
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 »"
|
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 »"
|
117 |
-
msgstr "更新 »"
|
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
DELETED
Binary file
|
languages/addquicktag-pl_PL.po
DELETED
@@ -1,162 +0,0 @@
|
|
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 »"
|
81 |
-
msgstr "Zapisz zmiany »"
|
82 |
-
|
83 |
-
#: addquicktag.php:195
|
84 |
-
msgid "Export »"
|
85 |
-
msgstr "Eksportuj »"
|
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 »"
|
101 |
-
msgstr "Wyślij na serwer i zaimportuj do WP »"
|
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 »"
|
117 |
-
msgstr "Wyczyść wszystko »"
|
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 – Add Quicktag"
|
153 |
-
msgstr "WP-Quicktag – 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
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 »"
|
84 |
-
msgstr "Actualizează Opţiunile »"
|
85 |
-
|
86 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:195
|
87 |
-
msgid "Export »"
|
88 |
-
msgstr "Exportă »"
|
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 »"
|
104 |
-
msgstr "Uplodează fişierul şi importă »"
|
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 »"
|
120 |
-
msgstr "Dezinstalează Opţiunile »"
|
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 – Add Quicktag"
|
153 |
-
msgstr "WP-Quicktag – 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
DELETED
Binary file
|
languages/addquicktag-ru_RU.po
DELETED
@@ -1,176 +0,0 @@
|
|
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‘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 »"
|
62 |
-
msgstr "Обновить настройки »"
|
63 |
-
|
64 |
-
#: addquicktag.php:262
|
65 |
-
msgid "Export »"
|
66 |
-
msgstr "Экспорт »"
|
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 »"
|
82 |
-
msgstr "Закачать файл и импортировать »"
|
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 »"
|
98 |
-
msgstr "Удалить настройки »"
|
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 – AddQuicktag"
|
154 |
-
msgstr "WP-Quicktag – 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-sr_RS.mo
ADDED
Binary file
|
languages/{addquicktag-es_ES.po → addquicktag-sr_RS.po}
RENAMED
@@ -1,164 +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:
|
7 |
-
"Last-Translator:
|
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:
|
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‘t have the privilidges to do this!"
|
22 |
-
msgstr "
|
23 |
-
|
24 |
-
#: addquicktag.php:231
|
25 |
-
msgid "Options saved."
|
26 |
-
msgstr "
|
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 "
|
32 |
-
|
33 |
-
#: addquicktag.php:245
|
34 |
-
msgid "AddQuicktag options have been deleted!"
|
35 |
-
msgstr "
|
36 |
-
|
37 |
-
#: addquicktag.php:253
|
38 |
-
msgid "Add or delete Quicktag buttons"
|
39 |
-
msgstr "
|
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 "
|
44 |
-
|
45 |
-
#: addquicktag.php:255
|
46 |
-
msgid "Button Label*"
|
47 |
-
msgstr "
|
48 |
-
|
49 |
-
#: addquicktag.php:256
|
50 |
-
msgid "Title Attribute"
|
51 |
-
msgstr "
|
52 |
-
|
53 |
-
#: addquicktag.php:257
|
54 |
-
msgid "Start Tag(s)*"
|
55 |
-
msgstr "
|
56 |
-
|
57 |
-
#: addquicktag.php:258
|
58 |
-
msgid "End Tag(s)"
|
59 |
-
msgstr "
|
60 |
-
|
61 |
-
#: addquicktag.php:259
|
62 |
-
msgid "Update Options »"
|
63 |
-
msgstr "
|
64 |
-
|
65 |
-
#: addquicktag.php:262
|
66 |
-
msgid "Export »"
|
67 |
-
msgstr "
|
68 |
-
|
69 |
-
#: addquicktag.php:263
|
70 |
-
msgid "Export/Import AddQuicktag buttons options"
|
71 |
-
msgstr "
|
72 |
-
|
73 |
-
#: addquicktag.php:264
|
74 |
-
msgid "You can save a .wpaq file with your options."
|
75 |
-
msgstr "
|
76 |
-
|
77 |
-
#: addquicktag.php:265
|
78 |
-
msgid "Export"
|
79 |
-
msgstr "
|
80 |
-
|
81 |
-
#: addquicktag.php:268
|
82 |
-
msgid "Upload file and import »"
|
83 |
-
msgstr "
|
84 |
-
|
85 |
-
#: addquicktag.php:269
|
86 |
-
msgid "Import"
|
87 |
-
msgstr "
|
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 "
|
92 |
-
|
93 |
-
#: addquicktag.php:271
|
94 |
-
msgid "Choose a file from your computer: "
|
95 |
-
msgstr "
|
96 |
-
|
97 |
-
#: addquicktag.php:274
|
98 |
-
msgid "Uninstall Options »"
|
99 |
-
msgstr "
|
100 |
-
|
101 |
-
#: addquicktag.php:275
|
102 |
-
msgid "Uninstall options"
|
103 |
-
msgstr "
|
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 "
|
108 |
-
|
109 |
-
#: addquicktag.php:279
|
110 |
-
msgid "About the plugin"
|
111 |
-
msgstr "
|
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 "
|
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 "
|
120 |
-
|
121 |
-
#: addquicktag.php:287
|
122 |
-
msgid "AddQuicktag options imported!"
|
123 |
-
msgstr "
|
124 |
-
|
125 |
-
#: addquicktag.php:289
|
126 |
-
msgid "File is exist!"
|
127 |
-
msgstr "
|
128 |
-
|
129 |
-
#: addquicktag.php:291
|
130 |
-
msgid "Invalid file extension!"
|
131 |
-
msgstr "
|
132 |
-
|
133 |
-
#: addquicktag.php:300
|
134 |
-
msgid "WP-Quicktag Management"
|
135 |
-
msgstr "
|
136 |
-
|
137 |
-
#: addquicktag.php:305
|
138 |
-
#: addquicktag.php:360
|
139 |
-
#: addquicktag.php:393
|
140 |
-
#: addquicktag.php:412
|
141 |
-
msgid "Click to toggle"
|
142 |
-
msgstr "
|
143 |
-
|
144 |
-
#: addquicktag.php:827
|
145 |
-
#: addquicktag.php:849
|
146 |
-
msgid "Settings"
|
147 |
-
msgstr "
|
148 |
-
|
149 |
-
#: addquicktag.php:922
|
150 |
-
msgid "AddQuicktag"
|
151 |
-
msgstr "AddQuicktag"
|
152 |
-
|
153 |
-
#: addquicktag.php:924
|
154 |
-
msgid "WP-Quicktag – AddQuicktag"
|
155 |
-
msgstr "
|
156 |
-
|
157 |
-
#: addquicktag.php:945
|
158 |
-
msgid "Version"
|
159 |
-
msgstr "
|
160 |
-
|
161 |
-
#: addquicktag.php:945
|
162 |
-
msgid "Author"
|
163 |
-
msgstr "
|
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: 2011-12-05 13:04-0800\n"
|
7 |
+
"Last-Translator: Brian Flores <baflores@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: Serbo-Croatian\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‘t have the privilidges to do this!"
|
22 |
+
msgstr "Опције не ажурирање - немате привилегије да то урадите! "
|
23 |
+
|
24 |
+
#: addquicktag.php:231
|
25 |
+
msgid "Options saved."
|
26 |
+
msgstr "Опције сачуване"
|
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 "Немате довољне дозволе да измените плагинс за овај блог,"
|
32 |
+
|
33 |
+
#: addquicktag.php:245
|
34 |
+
msgid "AddQuicktag options have been deleted!"
|
35 |
+
msgstr "AddQuicktag опција је избрисана!"
|
36 |
+
|
37 |
+
#: addquicktag.php:253
|
38 |
+
msgid "Add or delete Quicktag buttons"
|
39 |
+
msgstr "Додај или избриши Quicktag тастер"
|
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 "Попуни поља да би додао или изменио quicktag. Поља са * су обавезна. Да избришеш tag једноставно избриши сва поља"
|
44 |
+
|
45 |
+
#: addquicktag.php:255
|
46 |
+
msgid "Button Label*"
|
47 |
+
msgstr "Обележје тастатуре*"
|
48 |
+
|
49 |
+
#: addquicktag.php:256
|
50 |
+
msgid "Title Attribute"
|
51 |
+
msgstr "Назив додељене функције"
|
52 |
+
|
53 |
+
#: addquicktag.php:257
|
54 |
+
msgid "Start Tag(s)*"
|
55 |
+
msgstr "Почни сa tag(oвим)"
|
56 |
+
|
57 |
+
#: addquicktag.php:258
|
58 |
+
msgid "End Tag(s)"
|
59 |
+
msgstr "Заврши са tag(овима)"
|
60 |
+
|
61 |
+
#: addquicktag.php:259
|
62 |
+
msgid "Update Options »"
|
63 |
+
msgstr "Ажурирај опције"
|
64 |
+
|
65 |
+
#: addquicktag.php:262
|
66 |
+
msgid "Export »"
|
67 |
+
msgstr "Експортуј"
|
68 |
+
|
69 |
+
#: addquicktag.php:263
|
70 |
+
msgid "Export/Import AddQuicktag buttons options"
|
71 |
+
msgstr "Eкспортуј-Импортуј AddQuictag опције тастатуре"
|
72 |
+
|
73 |
+
#: addquicktag.php:264
|
74 |
+
msgid "You can save a .wpaq file with your options."
|
75 |
+
msgstr "Можете сачувати .wpaq фајл са вашим опцијама"
|
76 |
+
|
77 |
+
#: addquicktag.php:265
|
78 |
+
msgid "Export"
|
79 |
+
msgstr "Експортуј"
|
80 |
+
|
81 |
+
#: addquicktag.php:268
|
82 |
+
msgid "Upload file and import »"
|
83 |
+
msgstr "Учитај фајл и импортуј "
|
84 |
+
|
85 |
+
#: addquicktag.php:269
|
86 |
+
msgid "Import"
|
87 |
+
msgstr "Импортуј"
|
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 "Изабери Quicktag (<em>.wpaq</em>) фајл да учиташ, oнда притисни <em>. Учитај фајл и унеси </em>."
|
92 |
+
|
93 |
+
#: addquicktag.php:271
|
94 |
+
msgid "Choose a file from your computer: "
|
95 |
+
msgstr "Изабери фајл са свог компјутера"
|
96 |
+
|
97 |
+
#: addquicktag.php:274
|
98 |
+
msgid "Uninstall Options »"
|
99 |
+
msgstr "Деинсталирај Опције>>"
|
100 |
+
|
101 |
+
#: addquicktag.php:275
|
102 |
+
msgid "Uninstall options"
|
103 |
+
msgstr "Деинсталирај опције "
|
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 "Ово дугме брише све опције од WP-AddQuictag плагина. Пажња: Не можете ово да радите!"
|
108 |
+
|
109 |
+
#: addquicktag.php:279
|
110 |
+
msgid "About the plugin"
|
111 |
+
msgstr "О плагину"
|
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 "Даљна информација: Посети<a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>насловну старну пагина </a> за даље информације или да мнабавиш последњу верзију тог плагина"
|
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 "Желиш да ми се захвалиш? Посети моју <a href='http://bueltge.de/wunschliste/'>листу жеља</a> или дај прилог"
|
120 |
+
|
121 |
+
#: addquicktag.php:287
|
122 |
+
msgid "AddQuicktag options imported!"
|
123 |
+
msgstr "AddQuicktag oпција је импортована!"
|
124 |
+
|
125 |
+
#: addquicktag.php:289
|
126 |
+
msgid "File is exist!"
|
127 |
+
msgstr "Фајл постоји!"
|
128 |
+
|
129 |
+
#: addquicktag.php:291
|
130 |
+
msgid "Invalid file extension!"
|
131 |
+
msgstr "Погрешна екстензија фајла!"
|
132 |
+
|
133 |
+
#: addquicktag.php:300
|
134 |
+
msgid "WP-Quicktag Management"
|
135 |
+
msgstr "WP-Quictag менаџмент"
|
136 |
+
|
137 |
+
#: addquicktag.php:305
|
138 |
+
#: addquicktag.php:360
|
139 |
+
#: addquicktag.php:393
|
140 |
+
#: addquicktag.php:412
|
141 |
+
msgid "Click to toggle"
|
142 |
+
msgstr "Кликни да отлључаш"
|
143 |
+
|
144 |
+
#: addquicktag.php:827
|
145 |
+
#: addquicktag.php:849
|
146 |
+
msgid "Settings"
|
147 |
+
msgstr "Подешавања"
|
148 |
+
|
149 |
+
#: addquicktag.php:922
|
150 |
+
msgid "AddQuicktag"
|
151 |
+
msgstr "AddQuicktag"
|
152 |
+
|
153 |
+
#: addquicktag.php:924
|
154 |
+
msgid "WP-Quicktag – AddQuicktag"
|
155 |
+
msgstr "WP_Quicktag - AddQuicktag"
|
156 |
+
|
157 |
+
#: addquicktag.php:945
|
158 |
+
msgid "Version"
|
159 |
+
msgstr "Верзија"
|
160 |
+
|
161 |
+
#: addquicktag.php:945
|
162 |
+
msgid "Author"
|
163 |
+
msgstr "Аутор"
|
164 |
+
|
languages/addquicktag-xx_XX.pot
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: \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: \n"
|
14 |
+
"X-Poedit-Country: \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;_ex: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 |
+
#. translators: plugin header field 'Name'
|
23 |
+
#: addquicktag.php:0
|
24 |
+
#@ addquicktag
|
25 |
+
msgid "AddQuicktag"
|
26 |
+
msgstr "AddQuicktag"
|
27 |
+
|
28 |
+
#. translators: plugin header field 'PluginURI'
|
29 |
+
#: addquicktag.php:0
|
30 |
+
#@ addquicktag
|
31 |
+
msgid "http://bueltge.de/wp-addquicktags-de-plugin/120/"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#. translators: plugin header field 'Author'
|
35 |
+
#: addquicktag.php:0
|
36 |
+
#@ addquicktag
|
37 |
+
msgid "Frank Bültge"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#. translators: plugin header field 'AuthorURI'
|
41 |
+
#: addquicktag.php:0
|
42 |
+
#@ addquicktag
|
43 |
+
msgid "http://bueltge.de"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: inc/class-settings.php:110
|
47 |
+
#: inc/class-settings.php:127
|
48 |
+
#: inc/class-settings.php:145
|
49 |
+
#: inc/class-settings.php:153
|
50 |
+
#@ default
|
51 |
+
#@ addquicktag
|
52 |
+
msgid "Settings"
|
53 |
+
msgstr "Einstellungen"
|
54 |
+
|
55 |
+
#: inc/class-settings.php:178
|
56 |
+
#@ addquicktag
|
57 |
+
msgid "Add or delete Quicktag buttons"
|
58 |
+
msgstr "Ergänze oder lösche Quicktag Buttons"
|
59 |
+
|
60 |
+
#: inc/class-settings.php:209
|
61 |
+
#@ addquicktag
|
62 |
+
msgid "Button Label*"
|
63 |
+
msgstr "Button Name*"
|
64 |
+
|
65 |
+
#: inc/class-settings.php:210
|
66 |
+
#@ addquicktag
|
67 |
+
msgid "Title Attribute"
|
68 |
+
msgstr "Title Attribut"
|
69 |
+
|
70 |
+
#: inc/class-settings.php:211
|
71 |
+
#@ addquicktag
|
72 |
+
msgid "Start Tag(s)*"
|
73 |
+
msgstr "Start Tag(s)*"
|
74 |
+
|
75 |
+
#: inc/class-settings.php:212
|
76 |
+
#@ addquicktag
|
77 |
+
msgid "End Tag(s)"
|
78 |
+
msgstr "Ende Tag(s)"
|
79 |
+
|
80 |
+
#: inc/class-settings.php:213
|
81 |
+
#@ addquicktag
|
82 |
+
msgid "Access Key"
|
83 |
+
msgstr "Zugriffstaste"
|
84 |
+
|
85 |
+
#: inc/class-settings.php:273
|
86 |
+
#@ addquicktag
|
87 |
+
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
88 |
+
msgstr "Ergänze neue Buttons, in dem die unteren Felder ausgefüllt werden. Felder mit * sind Pflichtfelder, müssen ausgefüllt werden. Um einen Button zu löschen, einfach die Felder des Buttons leeren und speichern."
|
89 |
+
|
90 |
+
#: inc/class-settings.php:275
|
91 |
+
#@ default
|
92 |
+
msgid "Save Changes"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: inc/class-settings.php:310
|
96 |
+
#@ addquicktag
|
97 |
+
msgid "Like this plugin?"
|
98 |
+
msgstr "Du magst das Plugin?"
|
99 |
+
|
100 |
+
#: inc/class-settings.php:312
|
101 |
+
#@ addquicktag
|
102 |
+
msgid "Here's how you can give back:"
|
103 |
+
msgstr "Über folgende Möglichkeiten kannst du etwas zurück geben:"
|
104 |
+
|
105 |
+
#: inc/class-settings.php:314
|
106 |
+
#@ addquicktag
|
107 |
+
msgid "The Plugin on the WordPress plugin repository"
|
108 |
+
msgstr "Das Plugin im offiziellen WordPress Repository"
|
109 |
+
|
110 |
+
#: inc/class-settings.php:314
|
111 |
+
#@ addquicktag
|
112 |
+
msgid "Give the plugin a good rating."
|
113 |
+
msgstr "Gib dem Plugin eine gute Wertung"
|
114 |
+
|
115 |
+
#: inc/class-settings.php:315
|
116 |
+
#@ addquicktag
|
117 |
+
msgid "Donate via PayPal"
|
118 |
+
msgstr "Spende via Paypal"
|
119 |
+
|
120 |
+
#: inc/class-settings.php:315
|
121 |
+
#@ addquicktag
|
122 |
+
msgid "Donate a few euros."
|
123 |
+
msgstr "Spende einige Euros"
|
124 |
+
|
125 |
+
#: inc/class-settings.php:316
|
126 |
+
#@ addquicktag
|
127 |
+
msgid "Frank Bültge's Amazon Wish List"
|
128 |
+
msgstr "Frank Bültge's Amazon Wunschliste"
|
129 |
+
|
130 |
+
#: inc/class-settings.php:316
|
131 |
+
#@ addquicktag
|
132 |
+
msgid "Get me something from my wish list."
|
133 |
+
msgstr "Suche dir was aus und lass mir ein Objekt meiner Wunschliste zukommen."
|
134 |
+
|
135 |
+
#: inc/class-settings.php:335
|
136 |
+
#@ addquicktag
|
137 |
+
msgid "About this plugin"
|
138 |
+
msgstr "Über das Plugin"
|
139 |
+
|
140 |
+
#: inc/class-settings.php:338
|
141 |
+
#@ addquicktag
|
142 |
+
msgid "Version:"
|
143 |
+
msgstr "Version:"
|
144 |
+
|
145 |
+
#: inc/class-settings.php:342
|
146 |
+
#@ addquicktag
|
147 |
+
msgid "Description:"
|
148 |
+
msgstr "Beschreibung:"
|
149 |
+
|
150 |
+
#: inc/class-settings.php:214
|
151 |
+
#@ addquicktag
|
152 |
+
msgid "Order"
|
153 |
+
msgstr "Reihenfolge"
|
154 |
+
|
155 |
+
#: inc/class-settings.php:215
|
156 |
+
#@ addquicktag
|
157 |
+
msgid "Visual"
|
158 |
+
msgstr "Visuell"
|
159 |
+
|
160 |
+
#. translators: plugin header field 'Description'
|
161 |
+
#: addquicktag.php:0
|
162 |
+
#@ addquicktag
|
163 |
+
msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
|
164 |
+
msgstr "Erlaubt das einfache Hinzufügen von Quicktags zum html- und visuellen Editor."
|
165 |
+
|
166 |
+
#. translators: plugin header field 'Version'
|
167 |
+
#: addquicktag.php:0
|
168 |
+
#@ addquicktag
|
169 |
+
msgid "2.0.0"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/class-imexport.php:64
|
173 |
+
#@ addquicktag
|
174 |
+
msgid "Export"
|
175 |
+
msgstr "Exportieren"
|
176 |
+
|
177 |
+
#: inc/class-imexport.php:66
|
178 |
+
#@ addquicktag
|
179 |
+
msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
|
180 |
+
msgstr "Wenn du unten auf Export-Datei herunterladen klickst, wird das Plugin eine XML-Datei für dich erstellen, die du auf deinem Computer speichern kannst."
|
181 |
+
|
182 |
+
#: inc/class-imexport.php:67
|
183 |
+
#@ addquicktag
|
184 |
+
msgid "This format, a custom XML, will contain your options from quicktags."
|
185 |
+
msgstr "Dieses Format, ein benutzerdefniertes XML, beinhaltet Einstellungen der Quicktags."
|
186 |
+
|
187 |
+
#: inc/class-imexport.php:68
|
188 |
+
#@ addquicktag
|
189 |
+
msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
|
190 |
+
msgstr "Nachdem die heruntergeladene Datei gespeichert wurde, kannst du die Import-Funktion in einer anderen WordPress Installation nutzen."
|
191 |
+
|
192 |
+
#: inc/class-imexport.php:72
|
193 |
+
#@ addquicktag
|
194 |
+
msgid "Download Export File"
|
195 |
+
msgstr "Export-Datei herunterladen"
|
196 |
+
|
197 |
+
#: inc/class-imexport.php:80
|
198 |
+
#@ addquicktag
|
199 |
+
msgid "Import"
|
200 |
+
msgstr "Importieren"
|
201 |
+
|
202 |
+
#: inc/class-imexport.php:82
|
203 |
+
#@ addquicktag
|
204 |
+
msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
|
205 |
+
msgstr "Wenn du Quicktags von einer anderen WordPress Installation hast, dann kann das Plugin diese Einstellungen importieren. Zum Starten des Imports wähle eine Datei und klicke auf Datei aktualisieren und importieren."
|
206 |
+
|
207 |
+
#: inc/class-imexport.php:87
|
208 |
+
#@ addquicktag
|
209 |
+
msgid "Upload file and import"
|
210 |
+
msgstr "Datei aktualisieren und importieren"
|
211 |
+
|
212 |
+
#: inc/class-imexport.php:178
|
213 |
+
#@ addquicktag
|
214 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
215 |
+
msgstr "Einstellungen wurden nicht aktualisiert - du hast keine ausreichenden Rechte um dies zu tun!"
|
216 |
+
|
217 |
+
#: inc/class-settings.php:387
|
218 |
+
#@ addquicktag
|
219 |
+
msgid "Options saved."
|
220 |
+
msgstr "Einstellungen gespeichert."
|
221 |
+
|
languages/addquicktag-zh_TW.mo
DELETED
Binary file
|
languages/addquicktag-zh_TW.po
DELETED
@@ -1,166 +0,0 @@
|
|
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‘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 »"
|
59 |
-
msgstr "更新設定 »"
|
60 |
-
|
61 |
-
#: addquicktag.php:253
|
62 |
-
msgid "Export »"
|
63 |
-
msgstr "匯出 »"
|
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 »"
|
79 |
-
msgstr "上傳並匯入檔案 »"
|
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 »"
|
95 |
-
msgstr "移除設定 »"
|
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 – AddQuicktag"
|
144 |
-
msgstr "WP-Quicktag – 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
DELETED
@@ -1,174 +0,0 @@
|
|
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‘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 »"
|
59 |
-
msgstr "Einstellungen aktualisieren »"
|
60 |
-
|
61 |
-
#: addquicktag.php:262
|
62 |
-
msgid "Export »"
|
63 |
-
msgstr "Exportieren »"
|
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 »"
|
79 |
-
msgstr "Datei hochladen und importieren »"
|
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 »"
|
95 |
-
msgstr "Einstellungen löschen »"
|
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 – AddQuicktag"
|
152 |
-
msgstr "WP-Quicktag – 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,26 +1,30 @@
|
|
1 |
=== AddQuicktag ===
|
2 |
Contributors: Bueltge
|
3 |
-
Donate link:
|
4 |
-
Tags: quicktag, editor
|
5 |
-
Requires at least:
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag:
|
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 |
|
13 |
-
|
14 |
-
= THANKS =
|
15 |
|
16 |
-
|
|
|
|
|
17 |
|
18 |
-
|
|
|
|
|
19 |
|
20 |
-
= More Plugins =
|
21 |
Please see also my [Premium Plugins](http://wpplugins.com/author/malo.conny/). Maybe you find an solution for your requirement.
|
22 |
|
23 |
-
|
|
|
24 |
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/)
|
25 |
|
26 |
|
@@ -28,38 +32,41 @@ You may also be interested in WordPress tips and tricks at [WP Engineer](http://
|
|
28 |
1. Unpack the download-package
|
29 |
1. Upload the files to the `/wp-content/plugins/` directory
|
30 |
1. Activate the plugin through the 'Plugins' menu in WordPress
|
31 |
-
1. Got to '
|
32 |
|
33 |
-
See
|
34 |
|
35 |
|
36 |
== Screenshots ==
|
37 |
-
1.
|
38 |
-
2.
|
39 |
-
3.
|
|
|
40 |
|
41 |
|
42 |
== Other Notes ==
|
43 |
= Acknowledgements =
|
44 |
-
|
45 |
-
|
|
|
|
|
46 |
|
47 |
= Licence =
|
48 |
-
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](
|
49 |
|
50 |
= Translations =
|
51 |
-
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
|
52 |
-
|
53 |
-
|
54 |
-
== Frequently Asked Questions ==
|
55 |
-
= Where can I get more information? =
|
56 |
-
Please visit [the official website](http://bueltge.de/wp-addquicktags-de-plugin/120 "AddQuicktag") for the latest information on this plugin.
|
57 |
-
|
58 |
-
= I love this plugin! How can I show the developer how much I appreciate his work? =
|
59 |
-
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.
|
60 |
|
61 |
|
62 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
= v1.6.5 (02/02/2011) =
|
64 |
* changes for admin-hints
|
65 |
* kill php warnings on debug-mode
|
1 |
=== AddQuicktag ===
|
2 |
Contributors: Bueltge
|
3 |
+
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6069955
|
4 |
+
Tags: quicktag, editor, tinymce, add buttons, button, buttons, visual editor
|
5 |
+
Requires at least: 3.3
|
6 |
+
Tested up to: 3.3
|
7 |
+
Stable tag: 2.0.0
|
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, completly rewrite with version 2.0.0 and more functionalities.
|
|
|
15 |
|
16 |
+
Requires WordPress 3.0 and PHP 5.
|
17 |
+
|
18 |
+
**Version before WordPress smaller 3.0**
|
19 |
|
20 |
+
If you will use this plugin with an older version of WordPress, please use an older version of this plugin, smaller version 2.0.0 - you find it in the [repo](http://wordpress.org/extend/plugins/addquicktag/download/). But i will not support this version. The version 2.0.0 and higher was rewrite with all new posibilties of the WordPress Core.
|
21 |
+
|
22 |
+
**More Plugins**
|
23 |
|
|
|
24 |
Please see also my [Premium Plugins](http://wpplugins.com/author/malo.conny/). Maybe you find an solution for your requirement.
|
25 |
|
26 |
+
**Interested in WordPress tips and tricks**
|
27 |
+
|
28 |
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/)
|
29 |
|
30 |
|
32 |
1. Unpack the download-package
|
33 |
1. Upload the files to the `/wp-content/plugins/` directory
|
34 |
1. Activate the plugin through the 'Plugins' menu in WordPress
|
35 |
+
1. Got to 'Settings' menu and configure the plugin
|
36 |
|
37 |
+
See also [the official website](http://bueltge.de/wp-addquicktags-de-plugin/120 "AddQuicktag").
|
38 |
|
39 |
|
40 |
== Screenshots ==
|
41 |
+
1. Settings area in WordPress 3.3
|
42 |
+
2. Settings area in WordPress Network of an Multisite install 3.3
|
43 |
+
3. HTML Editor with new Quicktags
|
44 |
+
4. Visual editor with new Quicktags
|
45 |
|
46 |
|
47 |
== Other Notes ==
|
48 |
= Acknowledgements =
|
49 |
+
**Thanks to**
|
50 |
+
|
51 |
+
* [Frank Bültge](http://bueltge.de) for german language file ;)
|
52 |
+
* [Brian Flores](http://www.inmotionhosting.com/) for serbian translation
|
53 |
|
54 |
= Licence =
|
55 |
+
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](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6069955 "Paypal Donate link") 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 ;)
|
56 |
|
57 |
= Translations =
|
58 |
+
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 .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) or plugin for WordPress [Localization](http://wordpress.org/extend/plugins/codestyling-localization/).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
|
61 |
== Changelog ==
|
62 |
+
= 2.0.0 =
|
63 |
+
* complete redesign, new code from the first line
|
64 |
+
* add function for add quicktags on html and visual editor
|
65 |
+
* works also on Multisite Network
|
66 |
+
* new settings page
|
67 |
+
* add fallback in JS to use this new version also in WordPress smaller 3.3
|
68 |
+
* add serbian language files
|
69 |
+
|
70 |
= v1.6.5 (02/02/2011) =
|
71 |
* changes for admin-hints
|
72 |
* kill php warnings on debug-mode
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|
screenshot-4.png
ADDED
Binary file
|