Version Description
Download this release
Release Info
Developer | Bueltge |
Plugin | AddQuicktag |
Version | 1.5.7 |
Comparing to | |
See all releases |
Code changes from version 1.5.3 to 1.5.7
- addquicktag-de_DE.mo +0 -0
- addquicktag-it_IT.mo +0 -0
- addquicktag.php +251 -100
- languages/addquicktag-cs_CZ.mo +0 -0
- languages/addquicktag-cs_CZ.po +167 -0
- languages/addquicktag-de_DE.mo +0 -0
- addquicktag.pot → languages/addquicktag-de_DE.po +74 -38
- languages/addquicktag-fr_FR.mo +0 -0
- languages/addquicktag-fr_FR.po +164 -0
- languages/addquicktag-it_IT.mo +0 -0
- addquicktag-it_IT.po → languages/addquicktag-it_IT.po +70 -40
- addquicktag-ja.mo → languages/addquicktag-ja.mo +0 -0
- addquicktag-ja.po → languages/addquicktag-ja.po +0 -0
- languages/addquicktag-ro_RO.mo +0 -0
- languages/addquicktag-ro_RO.po +162 -0
- addquicktag-zh_TW.mo → languages/addquicktag-zh_TW.mo +0 -0
- addquicktag-zh_TW.po → languages/addquicktag-zh_TW.po +0 -0
- addquicktag-de_DE.po → languages/addquicktag.pot +68 -39
addquicktag-de_DE.mo
DELETED
Binary file
|
addquicktag-it_IT.mo
DELETED
Binary file
|
addquicktag.php
CHANGED
@@ -1,15 +1,31 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Plugin Name: AddQuicktag
|
4 |
-
|
5 |
-
Plugin URI: http://bueltge.de/wp-addquicktags-de-plugin/120/
|
6 |
Description: Allows you to easily add custom Quicktags to the editor. You can also export and import your Quicktags.
|
7 |
-
Author:
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
-
// SCRIPT INFO ///////////////////////////////////////////////////////////////////////////
|
12 |
-
/*
|
13 |
WP-AddQuicktag for WordPress is in originally by
|
14 |
(C) 2005 Roel Meurders - GNU General Public License
|
15 |
|
@@ -23,7 +39,6 @@ Last Change: 21.08.2008 14:06:21
|
|
23 |
|
24 |
This Wordpress plugin is released "as is". Without any warranty. The authors cannot
|
25 |
be held responsible for any damage that this script might cause.
|
26 |
-
|
27 |
*/
|
28 |
|
29 |
// Pre-2.6 compatibility
|
@@ -31,15 +46,16 @@ if ( !defined('WP_CONTENT_URL') )
|
|
31 |
define( 'WP_CONTENT_URL', get_option('url') . '/wp-content');
|
32 |
if ( !defined('WP_CONTENT_DIR') )
|
33 |
define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
|
34 |
-
|
|
|
35 |
|
36 |
function wpaq_textdomain() {
|
37 |
|
38 |
if (function_exists('load_plugin_textdomain')) {
|
39 |
if ( !defined('WP_PLUGIN_DIR') ) {
|
40 |
-
load_plugin_textdomain('addquicktag', str_replace( ABSPATH, '', dirname(__FILE__) ) );
|
41 |
} else {
|
42 |
-
load_plugin_textdomain('addquicktag', false, dirname(plugin_basename(__FILE__)) );
|
43 |
}
|
44 |
}
|
45 |
}
|
@@ -58,12 +74,19 @@ function wpaq_install() {
|
|
58 |
}
|
59 |
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
// options-page in wp-backend
|
62 |
function wpaq_options_page() {
|
63 |
-
global $wpdb;
|
64 |
|
65 |
$wpaq_document_root = $_SERVER['DOCUMENT_ROOT'] . $_SERVER['REQUEST_URI'];
|
66 |
-
$wpaq_document_root = str_replace("/wp-admin/options-general.php?page=addquicktag.php",
|
67 |
|
68 |
$wpaq_link = $_SERVER['REQUEST_URI'];
|
69 |
$wpaq_link = str_replace("\\", "/", $wpaq_link);
|
@@ -103,7 +126,7 @@ function wpaq_options_page() {
|
|
103 |
$fh = @ fopen($file_name, 'w');
|
104 |
|
105 |
if ($fh == false) {
|
106 |
-
$message_export = '<br class="clear" /><div class="error"><p><strong>' . __('Can not open for write!', 'addquicktag') . '</strong></p></div>';
|
107 |
} else {
|
108 |
@flock($fh, LOCK_EXCLUSIVE);
|
109 |
$err = @fputs($fh, $wpaq_data);
|
@@ -139,14 +162,14 @@ function wpaq_options_page() {
|
|
139 |
} elseif (file_exists($_FILES['datei']['name'])) {
|
140 |
$message_export.= __('File is exist!', 'addquicktag');
|
141 |
} else {
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
// SQL import
|
151 |
ini_set('default_socket_timeout', 120);
|
152 |
$import_file = file_get_contents($str_ziel);
|
@@ -166,7 +189,7 @@ function wpaq_options_page() {
|
|
166 |
if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
|
167 |
|
168 |
check_admin_referer('rmnl_nonce');
|
169 |
-
|
170 |
$message_export = '<br class="clear" /><div class="updated fade"><p>';
|
171 |
$message_export.= __('AddQuicktag options have been deleted!', 'addquicktag');
|
172 |
$message_export.= '</p></div>';
|
@@ -186,7 +209,7 @@ function wpaq_options_page() {
|
|
186 |
// Export strings
|
187 |
$button2 = __('Export »', 'addquicktag');
|
188 |
$export1 = __('Export Quicktag buttons options', 'addquicktag');
|
189 |
-
$export2 = __('You can save a .wpaq file with your options in <em
|
190 |
|
191 |
// Import strings
|
192 |
$button3 = __('Upload file and import »', 'addquicktag');
|
@@ -197,33 +220,36 @@ function wpaq_options_page() {
|
|
197 |
// Uninstall strings
|
198 |
$button4 = __('Uninstall Options »', 'addquicktag');
|
199 |
$uninstall1 = __('Uninstall options', 'addquicktag');
|
200 |
-
$uninstall2 = __('This button deletes all options of the WP-AddQuicktag plugin.
|
201 |
|
202 |
// Info
|
|
|
203 |
$info1 = __('Further information: Visit the <a href=\'http://bueltge.de/wp-addquicktags-de-plugin/120\'>plugin homepage</a> for further information or to grab the latest version of this plugin.', 'addquicktag');
|
204 |
$info2 = __('You want to thank me? Visit my <a href=\'http://bueltge.de/wunschliste/\'>wishlist</a>.', 'addquicktag');
|
205 |
|
206 |
$o = get_option('rmnlQuicktagSettings');
|
207 |
-
|
208 |
-
echo '
|
209 |
<div class="wrap">
|
210 |
-
<h2
|
211 |
-
|
212 |
-
|
213 |
-
<
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
<
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
|
|
|
|
227 |
for ($i = 0; $i < count($o['buttons']); $i++) {
|
228 |
$b = $o['buttons'][$i];
|
229 |
$b['text'] = htmlentities(stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset'));
|
@@ -238,59 +264,107 @@ function wpaq_options_page() {
|
|
238 |
</tr>
|
239 |
';
|
240 |
}
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
253 |
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
<p>' . $export2 . '</p>
|
258 |
-
<p class="submit">
|
259 |
-
<input class="button" type="submit" name="Submit_export" value="' . $button2 . '" />
|
260 |
-
<input type="hidden" name="action" value="export" />
|
261 |
-
</p>
|
262 |
-
</form>
|
263 |
-
|
264 |
-
<form name="form3" enctype="multipart/form-data" method="post" action="options-general.php?page=addquicktag.php">
|
265 |
-
' . wp_nonce_field('rmnl_nonce') . '
|
266 |
-
<h3>' . $import1 . '</h3>
|
267 |
-
<p>' . $import2 . '</p>
|
268 |
-
<p>
|
269 |
-
<label for="datei_id">' . $import3 . '</label>
|
270 |
-
<input name="datei" id="datei_id" type="file" />
|
271 |
-
</p>
|
272 |
-
<p class="submit">
|
273 |
-
<input class="button" type="submit" name="Submit_import" value="' . $button3 . '" />
|
274 |
-
<input type="hidden" name="action" value="import" />
|
275 |
-
</p>
|
276 |
-
</form>
|
277 |
-
|
278 |
-
<form name="form4" method="post" action="options-general.php?page=addquicktag.php">
|
279 |
-
' . wp_nonce_field('rmnl_nonce') . '
|
280 |
-
<h3>' . $uninstall1 . '</h3>
|
281 |
-
<p>' . $uninstall2 . '</p>
|
282 |
-
<p class="submit">
|
283 |
-
<input class="button" type="submit" name="Submit_uninstall" value="' . $button4 . '" />
|
284 |
-
<input type="hidden" name="action" value="uninstall" />
|
285 |
-
</p>
|
286 |
-
</form>
|
287 |
|
288 |
-
<div class="
|
289 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
</div>
|
291 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
</div>
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
} //End function wpaq_options_page
|
295 |
|
296 |
|
@@ -345,7 +419,10 @@ if (strpos($_SERVER['REQUEST_URI'], 'post.php') || strpos($_SERVER['REQUEST_URI'
|
|
345 |
|
346 |
|
347 |
// add to wp
|
348 |
-
|
|
|
|
|
|
|
349 |
if ( is_admin() ) {
|
350 |
add_action('init', 'wpaq_textdomain');
|
351 |
add_action('admin_menu', 'wpaq_add_settings_page');
|
@@ -363,20 +440,94 @@ function wpaq_filter_plugin_actions($links, $file){
|
|
363 |
if( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
|
364 |
|
365 |
if( $file == $this_plugin ){
|
366 |
-
$settings_link = '<a href="options-general.php?page=addquicktag.php">' . __('Settings') . '</a>';
|
367 |
$links = array_merge( array($settings_link), $links); // before other links
|
368 |
}
|
369 |
return $links;
|
370 |
}
|
371 |
|
372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
/**
|
374 |
* settings in plugin-admin-page
|
375 |
*/
|
376 |
function wpaq_add_settings_page() {
|
377 |
-
|
378 |
-
|
379 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
}
|
381 |
}
|
382 |
|
@@ -385,7 +536,7 @@ function wpaq_add_settings_page() {
|
|
385 |
* credit in wp-footer
|
386 |
*/
|
387 |
function wpaq_admin_footer() {
|
388 |
-
if( basename($_SERVER['REQUEST_URI']) == '
|
389 |
$plugin_data = get_plugin_data( __FILE__ );
|
390 |
printf('%1$s plugin | ' . __('Version') . ' %2$s | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
|
391 |
}
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* @package AddQuicktag
|
4 |
+
* @author Roel Meurders, Frank Bültge
|
5 |
+
* @version 1.5.7
|
6 |
+
*/
|
7 |
+
|
8 |
+
/**
|
9 |
Plugin Name: AddQuicktag
|
10 |
+
Plugin URI: http://bueltge.de/wp-addquicktags-de-plugin/120/
|
|
|
11 |
Description: Allows you to easily add custom Quicktags to the editor. You can also export and import your Quicktags.
|
12 |
+
Author: Roel Meurders, Frank Bültge
|
13 |
+
Author URI: http://bueltge.de/
|
14 |
+
Version: 1.5.7
|
15 |
+
License: GNU General Public License
|
16 |
+
Last Change: 17.12.2008 01:05:46
|
17 |
+
|
18 |
+
This program is free software; you can redistribute it and/or modify
|
19 |
+
it under the terms of the GNU General Public License as published by
|
20 |
+
the Free Software Foundation; either version 2 of the License, or
|
21 |
+
(at your option) any later version.
|
22 |
+
|
23 |
+
This program is distributed in the hope that it will be useful,
|
24 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
25 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
26 |
+
GNU General Public License for more details.
|
27 |
+
|
28 |
|
|
|
|
|
29 |
WP-AddQuicktag for WordPress is in originally by
|
30 |
(C) 2005 Roel Meurders - GNU General Public License
|
31 |
|
39 |
|
40 |
This Wordpress plugin is released "as is". Without any warranty. The authors cannot
|
41 |
be held responsible for any damage that this script might cause.
|
|
|
42 |
*/
|
43 |
|
44 |
// Pre-2.6 compatibility
|
46 |
define( 'WP_CONTENT_URL', get_option('url') . '/wp-content');
|
47 |
if ( !defined('WP_CONTENT_DIR') )
|
48 |
define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
|
49 |
+
|
50 |
+
define( 'WP_CONTENT_FOLDER', str_replace(ABSPATH, '/', WP_CONTENT_DIR) );
|
51 |
|
52 |
function wpaq_textdomain() {
|
53 |
|
54 |
if (function_exists('load_plugin_textdomain')) {
|
55 |
if ( !defined('WP_PLUGIN_DIR') ) {
|
56 |
+
load_plugin_textdomain('addquicktag', str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
|
57 |
} else {
|
58 |
+
load_plugin_textdomain('addquicktag', false, dirname( plugin_basename(__FILE__) ) . '/languages');
|
59 |
}
|
60 |
}
|
61 |
}
|
74 |
}
|
75 |
|
76 |
|
77 |
+
// unsinstall options in table options
|
78 |
+
function wpaq_uninstall() {
|
79 |
+
|
80 |
+
delete_option('rmnlQuicktagSettings');
|
81 |
+
}
|
82 |
+
|
83 |
+
|
84 |
// options-page in wp-backend
|
85 |
function wpaq_options_page() {
|
86 |
+
global $wpdb, $wp_version;
|
87 |
|
88 |
$wpaq_document_root = $_SERVER['DOCUMENT_ROOT'] . $_SERVER['REQUEST_URI'];
|
89 |
+
$wpaq_document_root = str_replace("/wp-admin/options-general.php?page=addquicktag.php", WP_CONTENT_FOLDER, $wpaq_document_root);
|
90 |
|
91 |
$wpaq_link = $_SERVER['REQUEST_URI'];
|
92 |
$wpaq_link = str_replace("\\", "/", $wpaq_link);
|
126 |
$fh = @ fopen($file_name, 'w');
|
127 |
|
128 |
if ($fh == false) {
|
129 |
+
$message_export = '<br class="clear" /><div class="error"><p><strong>' . __('Can not open for write!', 'addquicktag') . ' - ' . get_bloginfo('url') . WP_CONTENT_FOLDER . '</strong></p></div>';
|
130 |
} else {
|
131 |
@flock($fh, LOCK_EXCLUSIVE);
|
132 |
$err = @fputs($fh, $wpaq_data);
|
162 |
} elseif (file_exists($_FILES['datei']['name'])) {
|
163 |
$message_export.= __('File is exist!', 'addquicktag');
|
164 |
} else {
|
165 |
+
// path for file
|
166 |
+
$wpaq_document_root = str_replace("/wp-admin/options-general.php?page=addquicktag.php", WP_CONTENT_FOLDER, $wpaq_document_root);
|
167 |
+
$str_ziel = $wpaq_document_root . '/' . $_FILES['datei']['name'];
|
168 |
+
$str_ziel = str_replace("//", "/", $str_ziel);
|
169 |
+
// transfer
|
170 |
+
move_uploaded_file($_FILES['datei']['tmp_name'], $str_ziel);
|
171 |
+
// access authorisation
|
172 |
+
chmod($str_ziel, 0644);
|
173 |
// SQL import
|
174 |
ini_set('default_socket_timeout', 120);
|
175 |
$import_file = file_get_contents($str_ziel);
|
189 |
if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
|
190 |
|
191 |
check_admin_referer('rmnl_nonce');
|
192 |
+
wpaq_uninstall();
|
193 |
$message_export = '<br class="clear" /><div class="updated fade"><p>';
|
194 |
$message_export.= __('AddQuicktag options have been deleted!', 'addquicktag');
|
195 |
$message_export.= '</p></div>';
|
209 |
// Export strings
|
210 |
$button2 = __('Export »', 'addquicktag');
|
211 |
$export1 = __('Export Quicktag buttons options', 'addquicktag');
|
212 |
+
$export2 = __('You can save a .wpaq file with your options in <em>', 'addquicktag') . WP_CONTENT_FOLDER . __('/wpaq_export.wpaq</em>', 'addquicktag');
|
213 |
|
214 |
// Import strings
|
215 |
$button3 = __('Upload file and import »', 'addquicktag');
|
220 |
// Uninstall strings
|
221 |
$button4 = __('Uninstall Options »', 'addquicktag');
|
222 |
$uninstall1 = __('Uninstall options', 'addquicktag');
|
223 |
+
$uninstall2 = __('This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!', 'addquicktag');
|
224 |
|
225 |
// Info
|
226 |
+
$info0 = __('About the plugin', 'addquicktag');
|
227 |
$info1 = __('Further information: Visit the <a href=\'http://bueltge.de/wp-addquicktags-de-plugin/120\'>plugin homepage</a> for further information or to grab the latest version of this plugin.', 'addquicktag');
|
228 |
$info2 = __('You want to thank me? Visit my <a href=\'http://bueltge.de/wunschliste/\'>wishlist</a>.', 'addquicktag');
|
229 |
|
230 |
$o = get_option('rmnlQuicktagSettings');
|
231 |
+
?>
|
|
|
232 |
<div class="wrap">
|
233 |
+
<h2><?php _e('WP-Quicktag Management', 'addquicktag'); ?></h2>
|
234 |
+
<?php echo $message . $message_export; ?>
|
235 |
+
<br class="clear" />
|
236 |
+
<div id="poststuff" class="ui-sortable">
|
237 |
+
<div class="postbox">
|
238 |
+
<h3><?php echo $string1; ?></h3>
|
239 |
+
<div class="inside">
|
240 |
+
<br class="clear" />
|
241 |
+
<form name="form1" method="post" action="">
|
242 |
+
<?php wp_nonce_field('rmnl_nonce'); ?>
|
243 |
+
<table summary="rmnl" class="widefat">
|
244 |
+
<thead>
|
245 |
+
<tr>
|
246 |
+
<th scope="col"><?php echo $field1; ?></th>
|
247 |
+
<th scope="col"><?php echo $field2; ?></th>
|
248 |
+
<th scope="col"><?php echo $field3; ?></th>
|
249 |
+
</tr>
|
250 |
+
</thead>
|
251 |
+
<tbody>
|
252 |
+
<?php
|
253 |
for ($i = 0; $i < count($o['buttons']); $i++) {
|
254 |
$b = $o['buttons'][$i];
|
255 |
$b['text'] = htmlentities(stripslashes($b['text']), ENT_COMPAT, get_option('blog_charset'));
|
264 |
</tr>
|
265 |
';
|
266 |
}
|
267 |
+
?>
|
268 |
+
<tr valign="top">
|
269 |
+
<td><input type="text" name="wpaq[buttons][<?php _e( $i ); ?>][text]" value="" tyle="width: 95%;" /></td>
|
270 |
+
<td><textarea class="code" name="wpaq[buttons][<?php _e( $i ); ?>][start]" rows="2" cols="25" style="width: 95%;"></textarea></td>
|
271 |
+
<td><textarea class="code" name="wpaq[buttons][<?php _e( $i ); ?>][end]" rows="2" cols="25" style="width: 95%;"></textarea></td>
|
272 |
+
</tr>
|
273 |
+
</tbody>
|
274 |
+
</table>
|
275 |
+
<p><?php echo $string2; ?></p>
|
276 |
+
<p class="submit">
|
277 |
+
<input class="button button-primary" type="submit" name="Submit" value="<?php _e( $button1 ); ?>" />
|
278 |
+
</p>
|
279 |
+
</form>
|
280 |
|
281 |
+
</div>
|
282 |
+
</div>
|
283 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
|
285 |
+
<div id="poststuff" class="ui-sortable">
|
286 |
+
<div class="postbox closed">
|
287 |
+
<h3><?php echo $export1; ?></h3>
|
288 |
+
<div class="inside">
|
289 |
+
|
290 |
+
<form name="form2" method="post" action="options-general.php?page=addquicktag.php">
|
291 |
+
<?php wp_nonce_field('rmnl_nonce'); ?>
|
292 |
+
<p><?php echo $export2; ?></p>
|
293 |
+
<p id="submitbutton">
|
294 |
+
<input class="button" type="submit" name="Submit_export" value="<?php echo $button2; ?>" />
|
295 |
+
<input type="hidden" name="action" value="export" />
|
296 |
+
</p>
|
297 |
+
</form>
|
298 |
+
|
299 |
+
</div>
|
300 |
+
</div>
|
301 |
+
</div>
|
302 |
+
|
303 |
+
<div id="poststuff" class="ui-sortable">
|
304 |
+
<div class="postbox closed">
|
305 |
+
<h3><?php echo $import1; ?></h3>
|
306 |
+
<div class="inside">
|
307 |
+
|
308 |
+
<form name="form3" enctype="multipart/form-data" method="post" action="">
|
309 |
+
<?php wp_nonce_field('rmnl_nonce'); ?>
|
310 |
+
<p><?php echo $import2; ?></p>
|
311 |
+
<p>
|
312 |
+
<label for="datei_id"><?php echo $import3; ?></label>
|
313 |
+
<input name="datei" id="datei_id" type="file" />
|
314 |
+
</p>
|
315 |
+
<p id="submitbutton">
|
316 |
+
<input class="button" type="submit" name="Submit_import" value="<?php echo $button3; ?>" />
|
317 |
+
<input type="hidden" name="action" value="import" />
|
318 |
+
</p>
|
319 |
+
</form>
|
320 |
+
|
321 |
+
</div>
|
322 |
+
</div>
|
323 |
</div>
|
324 |
+
|
325 |
+
<div id="poststuff" class="ui-sortable">
|
326 |
+
<div class="postbox closed">
|
327 |
+
<h3><?php echo $uninstall1; ?></h3>
|
328 |
+
<div class="inside">
|
329 |
+
|
330 |
+
<form name="form4" method="post" action="">
|
331 |
+
<?php wp_nonce_field('rmnl_nonce'); ?>
|
332 |
+
<p><?php echo $uninstall2; ?></p>
|
333 |
+
<p id="submitbutton">
|
334 |
+
<input class="button" type="submit" name="Submit_uninstall" value="<?php _e($button4); ?>" />
|
335 |
+
<input type="hidden" name="action" value="uninstall" />
|
336 |
+
</p>
|
337 |
+
</form>
|
338 |
+
|
339 |
+
</div>
|
340 |
+
</div>
|
341 |
</div>
|
342 |
+
|
343 |
+
<div id="poststuff" class="ui-sortable">
|
344 |
+
<div class="postbox closed">
|
345 |
+
<h3><?php echo $info0; ?></h3>
|
346 |
+
<div class="inside">
|
347 |
+
|
348 |
+
<p><?php echo $info1; ?><br />© Copyright 2007 - <?php _e( date("Y") ); ?> <a href="http://bueltge.de">Frank Bültge</a> | <?php echo $info2; ?></p>
|
349 |
+
|
350 |
+
</div>
|
351 |
+
</div>
|
352 |
+
</div>
|
353 |
+
|
354 |
+
<script type="text/javascript">
|
355 |
+
<!--
|
356 |
+
<?php if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) ) { ?>
|
357 |
+
jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
|
358 |
+
<?php } ?>
|
359 |
+
jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
|
360 |
+
jQuery('.postbox.close-me').each(function(){
|
361 |
+
jQuery(this).addClass("closed");
|
362 |
+
});
|
363 |
+
//-->
|
364 |
+
</script>
|
365 |
+
|
366 |
+
</div>
|
367 |
+
<?php
|
368 |
} //End function wpaq_options_page
|
369 |
|
370 |
|
419 |
|
420 |
|
421 |
// add to wp
|
422 |
+
if ( function_exists('register_activation_hook') )
|
423 |
+
register_activation_hook(__FILE__, 'wpaq_install');
|
424 |
+
if ( function_exists('register_uninstall_hook') )
|
425 |
+
register_uninstall_hook(__FILE__, 'wpaq_uninstall');
|
426 |
if ( is_admin() ) {
|
427 |
add_action('init', 'wpaq_textdomain');
|
428 |
add_action('admin_menu', 'wpaq_add_settings_page');
|
440 |
if( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
|
441 |
|
442 |
if( $file == $this_plugin ){
|
443 |
+
$settings_link = '<a href="options-general.php?page=addquicktag/addquicktag.php">' . __('Settings') . '</a>';
|
444 |
$links = array_merge( array($settings_link), $links); // before other links
|
445 |
}
|
446 |
return $links;
|
447 |
}
|
448 |
|
449 |
|
450 |
+
/**
|
451 |
+
* @version WP 2.7
|
452 |
+
* Add action link(s) to plugins page
|
453 |
+
*/
|
454 |
+
function wpaq_filter_plugin_actions_new($links) {
|
455 |
+
|
456 |
+
$settings_link = '<a href="options-general.php?page=addquicktag/addquicktag.php">' . __('Settings') . '</a>';
|
457 |
+
array_unshift( $links, $settings_link );
|
458 |
+
|
459 |
+
return $links;
|
460 |
+
}
|
461 |
+
|
462 |
+
|
463 |
+
/**
|
464 |
+
* Images/ Icons in base64-encoding
|
465 |
+
* @use function wpag_get_resource_url() for display
|
466 |
+
*/
|
467 |
+
if( isset($_GET['resource']) && !empty($_GET['resource'])) {
|
468 |
+
# base64 encoding performed by base64img.php from http://php.holtsmark.no
|
469 |
+
$resources = array(
|
470 |
+
'addquicktag.gif' =>
|
471 |
+
'R0lGODlhCwAJALMPAPL19Y2cnLzNzZempsXV1VpfX6WysrS/v5'.
|
472 |
+
'+trXmDg9Xh4drr66W5uay6urnHx////yH5BAEAAA8ALAAAAAAL'.
|
473 |
+
'AAkAAARA8D0gmBMESMUIK0XAVNzQOE6QCIJhIMOANMRCHG+MuI'.
|
474 |
+
'5yG4PAzjDyORqyxKwh8AlUAEUiQVswqBINIHEIHCSPCAA7'.
|
475 |
+
'');
|
476 |
+
|
477 |
+
if(array_key_exists($_GET['resource'], $resources)) {
|
478 |
+
|
479 |
+
$content = base64_decode($resources[ $_GET['resource'] ]);
|
480 |
+
|
481 |
+
$lastMod = filemtime(__FILE__);
|
482 |
+
$client = ( isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false );
|
483 |
+
// Checking if the client is validating his cache and if it is current.
|
484 |
+
if (isset($client) && (strtotime($client) == $lastMod)) {
|
485 |
+
// Client's cache IS current, so we just respond '304 Not Modified'.
|
486 |
+
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 304);
|
487 |
+
exit;
|
488 |
+
} else {
|
489 |
+
// Image not cached or cache outdated, we respond '200 OK' and output the image.
|
490 |
+
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 200);
|
491 |
+
header('Content-Length: '.strlen($content));
|
492 |
+
header('Content-Type: image/' . substr(strrchr($_GET['resource'], '.'), 1) );
|
493 |
+
echo $content;
|
494 |
+
exit;
|
495 |
+
}
|
496 |
+
}
|
497 |
+
}
|
498 |
+
|
499 |
+
|
500 |
+
/**
|
501 |
+
* Display Images/ Icons in base64-encoding
|
502 |
+
* @return $resourceID
|
503 |
+
*/
|
504 |
+
function wpag_get_resource_url($resourceID) {
|
505 |
+
|
506 |
+
return trailingslashit( get_bloginfo('url') ) . '?resource=' . $resourceID;
|
507 |
+
}
|
508 |
+
|
509 |
+
|
510 |
/**
|
511 |
* settings in plugin-admin-page
|
512 |
*/
|
513 |
function wpaq_add_settings_page() {
|
514 |
+
global $wp_version;
|
515 |
+
|
516 |
+
if ( function_exists('add_options_page') && current_user_can('manage_options') ) {
|
517 |
+
$plugin = plugin_basename(__FILE__);
|
518 |
+
$menutitle = '';
|
519 |
+
if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
|
520 |
+
$menutitle = '<img src="' . wpag_get_resource_url('addquicktag.gif') . '" alt="" />' . ' ';
|
521 |
+
}
|
522 |
+
$menutitle .= __('Add Quicktag', 'addquicktag');
|
523 |
+
|
524 |
+
add_options_page( __('WP-Quicktag – Add Quicktag', 'addquicktag'), $menutitle, 9, $plugin, 'wpaq_options_page');
|
525 |
+
|
526 |
+
if ( version_compare( $wp_version, '2.6.999', '<' ) ) {
|
527 |
+
add_filter('plugin_action_links', 'wpaq_filter_plugin_actions', 10, 2);
|
528 |
+
} else {
|
529 |
+
add_filter( 'plugin_action_links_' . $plugin, 'wpaq_filter_plugin_actions_new' );
|
530 |
+
}
|
531 |
}
|
532 |
}
|
533 |
|
536 |
* credit in wp-footer
|
537 |
*/
|
538 |
function wpaq_admin_footer() {
|
539 |
+
if( basename($_SERVER['REQUEST_URI']) == 'addquicktag.php') {
|
540 |
$plugin_data = get_plugin_data( __FILE__ );
|
541 |
printf('%1$s plugin | ' . __('Version') . ' %2$s | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
|
542 |
}
|
languages/addquicktag-cs_CZ.mo
ADDED
Binary file
|
languages/addquicktag-cs_CZ.po
ADDED
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: addquicktags CZ\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-01 14:39+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Pepawo <jklimosz@gmail.com>\n"
|
8 |
+
"Language-Team: Pepawo <jklimosz@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Czech\n"
|
13 |
+
"X-Poedit-Country: CZECH REPUBLIC\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
": "
|
19 |
+
|
20 |
+
#: addquicktag.php:110
|
21 |
+
msgid "Options saved."
|
22 |
+
msgstr "Nastavení uložena."
|
23 |
+
|
24 |
+
#: addquicktag.php:113
|
25 |
+
#: addquicktag.php:145
|
26 |
+
#: addquicktag.php:183
|
27 |
+
#: addquicktag.php:198
|
28 |
+
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
29 |
+
msgstr "nemáte dostatečné oprávnění k editaci pluginů na tomto webu."
|
30 |
+
|
31 |
+
#: addquicktag.php:129
|
32 |
+
msgid "Can not open for write!"
|
33 |
+
msgstr "Nelze otevřít pro zápis!"
|
34 |
+
|
35 |
+
#: addquicktag.php:136
|
36 |
+
msgid "Can not write!"
|
37 |
+
msgstr "Nelze zapisovat!"
|
38 |
+
|
39 |
+
#: addquicktag.php:139
|
40 |
+
msgid "AddQuicktag options saved!"
|
41 |
+
msgstr "Nastavení AddQuicktag uložena!"
|
42 |
+
|
43 |
+
#: addquicktag.php:140
|
44 |
+
msgid "Saved in: "
|
45 |
+
msgstr "Uloženo do: "
|
46 |
+
|
47 |
+
#: addquicktag.php:161
|
48 |
+
msgid "Invalid file extension!"
|
49 |
+
msgstr "Nesprávná přípona souboru!"
|
50 |
+
|
51 |
+
#: addquicktag.php:163
|
52 |
+
msgid "File is exist!"
|
53 |
+
msgstr "Soubor existuje!"
|
54 |
+
|
55 |
+
#: addquicktag.php:178
|
56 |
+
msgid "AddQuicktag options imported!"
|
57 |
+
msgstr "Nastavení AddQuicktag importována!"
|
58 |
+
|
59 |
+
#: addquicktag.php:194
|
60 |
+
msgid "AddQuicktag options have been deleted!"
|
61 |
+
msgstr "Nastavení AddQuicktag byla vymazána!"
|
62 |
+
|
63 |
+
#: addquicktag.php:202
|
64 |
+
msgid "Add or delete Quicktag buttons"
|
65 |
+
msgstr "Přidat nebo zrušit tlačítka Quicktag"
|
66 |
+
|
67 |
+
#: addquicktag.php:203
|
68 |
+
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
69 |
+
msgstr "Vyplňte pole níže a editujte nebo přidejte Quicktag. Pole označená * jsou vyžadována. Quicktag vymažete jednoduše tak, že necháte všechna pole prázdná."
|
70 |
+
|
71 |
+
#: addquicktag.php:204
|
72 |
+
msgid "Button Label*"
|
73 |
+
msgstr "Název tlačítka *"
|
74 |
+
|
75 |
+
#: addquicktag.php:205
|
76 |
+
msgid "Start Tag(s)*"
|
77 |
+
msgstr "Počáteční značka *"
|
78 |
+
|
79 |
+
#: addquicktag.php:206
|
80 |
+
msgid "End Tag(s)"
|
81 |
+
msgstr "Koncová značka"
|
82 |
+
|
83 |
+
#: addquicktag.php:207
|
84 |
+
msgid "Update Options »"
|
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
ADDED
Binary file
|
addquicktag.pot → languages/addquicktag-de_DE.po
RENAMED
@@ -1,128 +1,164 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AddQuicktag\n"
|
4 |
-
"
|
5 |
-
"
|
|
|
6 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
13 |
|
14 |
-
#: addquicktag.php:
|
15 |
msgid "Options saved."
|
16 |
msgstr "Einstellungen gespeichert."
|
17 |
|
18 |
-
#: addquicktag.php:
|
19 |
-
#: addquicktag.php:
|
20 |
-
#: addquicktag.php:
|
21 |
-
#: addquicktag.php:
|
22 |
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
23 |
msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
|
24 |
|
25 |
-
#: addquicktag.php:
|
26 |
msgid "Can not open for write!"
|
27 |
msgstr "Öffnen zum Schreiben nicht möglich!"
|
28 |
|
29 |
-
#: addquicktag.php:
|
30 |
msgid "Can not write!"
|
31 |
msgstr "Schreiben nicht möglich!"
|
32 |
|
33 |
-
#: addquicktag.php:
|
34 |
msgid "AddQuicktag options saved!"
|
35 |
msgstr "AddQuicktag Einstellungen gespeichert!"
|
36 |
|
37 |
-
#: addquicktag.php:
|
38 |
msgid "Saved in: "
|
39 |
msgstr "Gespeichert in: "
|
40 |
|
41 |
-
#: addquicktag.php:
|
42 |
msgid "Invalid file extension!"
|
43 |
msgstr "Nicht zulässige Dateierweiterung!"
|
44 |
|
45 |
-
#: addquicktag.php:
|
46 |
msgid "File is exist!"
|
47 |
msgstr "Datei nicht vorhanden!"
|
48 |
|
49 |
-
#: addquicktag.php:
|
50 |
msgid "AddQuicktag options imported!"
|
51 |
msgstr "AddQuicktag Einstellungen importiert!"
|
52 |
|
53 |
-
#: addquicktag.php:
|
54 |
msgid "AddQuicktag options have been deleted!"
|
55 |
msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
|
56 |
|
57 |
-
#: addquicktag.php:
|
58 |
msgid "Add or delete Quicktag buttons"
|
59 |
msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
|
60 |
|
61 |
-
#: addquicktag.php:
|
62 |
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
63 |
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."
|
64 |
|
65 |
-
#: addquicktag.php:
|
66 |
msgid "Button Label*"
|
67 |
msgstr "Button Name*"
|
68 |
|
69 |
-
#: addquicktag.php:
|
70 |
msgid "Start Tag(s)*"
|
71 |
msgstr "Start Tag(s)*"
|
72 |
|
73 |
-
#: addquicktag.php:
|
74 |
msgid "End Tag(s)"
|
75 |
msgstr "Ende Tag(s)"
|
76 |
|
77 |
-
#: addquicktag.php:
|
78 |
msgid "Update Options »"
|
79 |
msgstr "Einstellungen aktualisieren »"
|
80 |
|
81 |
-
#: addquicktag.php:
|
82 |
msgid "Export »"
|
83 |
msgstr "Exportieren »"
|
84 |
|
85 |
-
#: addquicktag.php:
|
86 |
msgid "Export Quicktag buttons options"
|
87 |
msgstr "Exportiere deine Quicktag-buttons"
|
88 |
|
89 |
-
#: addquicktag.php:
|
90 |
-
msgid "You can save a .wpaq file with your options in <em
|
91 |
-
msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen auf <em
|
|
|
|
|
|
|
|
|
92 |
|
93 |
-
#: addquicktag.php:
|
94 |
msgid "Upload file and import »"
|
95 |
msgstr "Datei hochladen und importieren »"
|
96 |
|
97 |
-
#: addquicktag.php:
|
98 |
msgid "Import Quicktag buttons options"
|
99 |
msgstr "Importiere deine Quicktag-buttons"
|
100 |
|
101 |
-
#: addquicktag.php:
|
102 |
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
103 |
msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
|
104 |
|
105 |
-
#: addquicktag.php:
|
106 |
msgid "Choose a file from your computer: "
|
107 |
msgstr "Wähle eine Datei von deinem Rechner. "
|
108 |
|
109 |
-
#: addquicktag.php:
|
110 |
msgid "Uninstall Options »"
|
111 |
msgstr "Einstellungen löschen »"
|
112 |
|
113 |
-
#: addquicktag.php:
|
114 |
msgid "Uninstall options"
|
115 |
msgstr "Deinstalliere Einstellungen"
|
116 |
|
117 |
-
#: addquicktag.php:
|
118 |
-
msgid "This button deletes all options of the WP-AddQuicktag plugin.
|
119 |
-
msgstr "Der Button löscht alle Einstellungen des Plugins
|
120 |
|
121 |
-
#: addquicktag.php:
|
|
|
|
|
|
|
|
|
122 |
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."
|
123 |
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."
|
124 |
|
125 |
-
#: addquicktag.php:
|
126 |
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
127 |
msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AddQuicktag\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-12-17 12:04+0100\n"
|
6 |
+
"PO-Revision-Date: 2008-12-17 12:04+0100\n"
|
7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
+
"X-Poedit-Basepath: D:\\WP-Plugins\\addquicktag\\trunk\\\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
+
#: addquicktag.php:95
|
17 |
msgid "Options saved."
|
18 |
msgstr "Einstellungen gespeichert."
|
19 |
|
20 |
+
#: addquicktag.php:98
|
21 |
+
#: addquicktag.php:130
|
22 |
+
#: addquicktag.php:168
|
23 |
+
#: addquicktag.php:183
|
24 |
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
25 |
msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
|
26 |
|
27 |
+
#: addquicktag.php:114
|
28 |
msgid "Can not open for write!"
|
29 |
msgstr "Öffnen zum Schreiben nicht möglich!"
|
30 |
|
31 |
+
#: addquicktag.php:121
|
32 |
msgid "Can not write!"
|
33 |
msgstr "Schreiben nicht möglich!"
|
34 |
|
35 |
+
#: addquicktag.php:124
|
36 |
msgid "AddQuicktag options saved!"
|
37 |
msgstr "AddQuicktag Einstellungen gespeichert!"
|
38 |
|
39 |
+
#: addquicktag.php:125
|
40 |
msgid "Saved in: "
|
41 |
msgstr "Gespeichert in: "
|
42 |
|
43 |
+
#: addquicktag.php:146
|
44 |
msgid "Invalid file extension!"
|
45 |
msgstr "Nicht zulässige Dateierweiterung!"
|
46 |
|
47 |
+
#: addquicktag.php:148
|
48 |
msgid "File is exist!"
|
49 |
msgstr "Datei nicht vorhanden!"
|
50 |
|
51 |
+
#: addquicktag.php:163
|
52 |
msgid "AddQuicktag options imported!"
|
53 |
msgstr "AddQuicktag Einstellungen importiert!"
|
54 |
|
55 |
+
#: addquicktag.php:179
|
56 |
msgid "AddQuicktag options have been deleted!"
|
57 |
msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
|
58 |
|
59 |
+
#: addquicktag.php:187
|
60 |
msgid "Add or delete Quicktag buttons"
|
61 |
msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
|
62 |
|
63 |
+
#: addquicktag.php:188
|
64 |
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
65 |
msgstr "Fülle das Feld unterhalb der bestehenden Buttons oder ändere einen Quicktag. Felder mit * sind Pflichtfelder. Um Quicktags zu löschen, einfach den Inhalt der zugehörigen Felder löschen."
|
66 |
|
67 |
+
#: addquicktag.php:189
|
68 |
msgid "Button Label*"
|
69 |
msgstr "Button Name*"
|
70 |
|
71 |
+
#: addquicktag.php:190
|
72 |
msgid "Start Tag(s)*"
|
73 |
msgstr "Start Tag(s)*"
|
74 |
|
75 |
+
#: addquicktag.php:191
|
76 |
msgid "End Tag(s)"
|
77 |
msgstr "Ende Tag(s)"
|
78 |
|
79 |
+
#: addquicktag.php:192
|
80 |
msgid "Update Options »"
|
81 |
msgstr "Einstellungen aktualisieren »"
|
82 |
|
83 |
+
#: addquicktag.php:195
|
84 |
msgid "Export »"
|
85 |
msgstr "Exportieren »"
|
86 |
|
87 |
+
#: addquicktag.php:196
|
88 |
msgid "Export Quicktag buttons options"
|
89 |
msgstr "Exportiere deine Quicktag-buttons"
|
90 |
|
91 |
+
#: addquicktag.php:197
|
92 |
+
msgid "You can save a .wpaq file with your options in <em>"
|
93 |
+
msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen auf <em>"
|
94 |
+
|
95 |
+
#: addquicktag.php:197
|
96 |
+
msgid "/wpaq_export.wpaq</em>"
|
97 |
+
msgstr "/wpaq_export.wpaq</em>"
|
98 |
|
99 |
+
#: addquicktag.php:200
|
100 |
msgid "Upload file and import »"
|
101 |
msgstr "Datei hochladen und importieren »"
|
102 |
|
103 |
+
#: addquicktag.php:201
|
104 |
msgid "Import Quicktag buttons options"
|
105 |
msgstr "Importiere deine Quicktag-buttons"
|
106 |
|
107 |
+
#: addquicktag.php:202
|
108 |
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
109 |
msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
|
110 |
|
111 |
+
#: addquicktag.php:203
|
112 |
msgid "Choose a file from your computer: "
|
113 |
msgstr "Wähle eine Datei von deinem Rechner. "
|
114 |
|
115 |
+
#: addquicktag.php:206
|
116 |
msgid "Uninstall Options »"
|
117 |
msgstr "Einstellungen löschen »"
|
118 |
|
119 |
+
#: addquicktag.php:207
|
120 |
msgid "Uninstall options"
|
121 |
msgstr "Deinstalliere Einstellungen"
|
122 |
|
123 |
+
#: addquicktag.php:208
|
124 |
+
msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
|
125 |
+
msgstr "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
|
126 |
|
127 |
+
#: addquicktag.php:211
|
128 |
+
msgid "About the plugin"
|
129 |
+
msgstr "Über das Plugin"
|
130 |
+
|
131 |
+
#: addquicktag.php:212
|
132 |
msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
|
133 |
msgstr "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>Plugin Homepage</a> für weitere Informationen oder hole die letzte Version des Plugins."
|
134 |
|
135 |
+
#: addquicktag.php:213
|
136 |
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
137 |
msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
|
138 |
|
139 |
+
#: addquicktag.php:218
|
140 |
+
#, fuzzy
|
141 |
+
msgid "WP-Quicktag Management"
|
142 |
+
msgstr "WP-Quicktag Verwaltung"
|
143 |
+
|
144 |
+
#: addquicktag.php:428
|
145 |
+
#: addquicktag.php:441
|
146 |
+
msgid "Settings"
|
147 |
+
msgstr "Einstellungen"
|
148 |
+
|
149 |
+
#: addquicktag.php:507
|
150 |
+
msgid "Add Quicktag"
|
151 |
+
msgstr "Add Quicktag"
|
152 |
+
|
153 |
+
#: addquicktag.php:509
|
154 |
+
msgid "WP-Quicktag – Add Quicktag"
|
155 |
+
msgstr "WP-Quicktag – Add Quicktag"
|
156 |
+
|
157 |
+
#: addquicktag.php:526
|
158 |
+
msgid "Version"
|
159 |
+
msgstr "Version"
|
160 |
+
|
161 |
+
#: addquicktag.php:526
|
162 |
+
msgid "Author"
|
163 |
+
msgstr "Autor"
|
164 |
+
|
languages/addquicktag-fr_FR.mo
ADDED
Binary file
|
languages/addquicktag-fr_FR.po
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: AddQuicktag v1.5.7\n"
|
4 |
+
"PO-Revision-Date: 2009-01-19 13:22-0500\n"
|
5 |
+
"Last-Translator: Li-An <lian00@gmail.com>\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
10 |
+
"X-Poedit-Language: French\n"
|
11 |
+
"X-Poedit-Country: FRANCE\n"
|
12 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Poedit-SearchPath-0: ."
|
16 |
+
|
17 |
+
#: addquicktag.php:110
|
18 |
+
msgid "Options saved."
|
19 |
+
msgstr "Options sauvegardées."
|
20 |
+
|
21 |
+
#: addquicktag.php:113
|
22 |
+
#: addquicktag.php:145
|
23 |
+
#: addquicktag.php:183
|
24 |
+
#: addquicktag.php:198
|
25 |
+
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
26 |
+
msgstr "Vous n'avez pas les droits suffisants pour éditer les plugins de ce blog."
|
27 |
+
|
28 |
+
#: addquicktag.php:129
|
29 |
+
msgid "Can not open for write!"
|
30 |
+
msgstr "Impossible d'ouvrir le fichier pour écriture !"
|
31 |
+
|
32 |
+
#: addquicktag.php:136
|
33 |
+
msgid "Can not write!"
|
34 |
+
msgstr "Impossible d'écrire !"
|
35 |
+
|
36 |
+
#: addquicktag.php:139
|
37 |
+
msgid "AddQuicktag options saved!"
|
38 |
+
msgstr "Options d'AddQuicktag sauvegardées !"
|
39 |
+
|
40 |
+
#: addquicktag.php:140
|
41 |
+
msgid "Saved in: "
|
42 |
+
msgstr "Sauvegarder dans:"
|
43 |
+
|
44 |
+
#: addquicktag.php:161
|
45 |
+
msgid "Invalid file extension!"
|
46 |
+
msgstr "Extension du fichier non valide !"
|
47 |
+
|
48 |
+
#: addquicktag.php:163
|
49 |
+
msgid "File is exist!"
|
50 |
+
msgstr "Le fichier existe déjà ! "
|
51 |
+
|
52 |
+
#: addquicktag.php:178
|
53 |
+
msgid "AddQuicktag options imported!"
|
54 |
+
msgstr "Options d'AddQuicktag importées !"
|
55 |
+
|
56 |
+
#: addquicktag.php:194
|
57 |
+
msgid "AddQuicktag options have been deleted!"
|
58 |
+
msgstr "Les options d'AddQuicktag ont été effacées !"
|
59 |
+
|
60 |
+
#: addquicktag.php:202
|
61 |
+
msgid "Add or delete Quicktag buttons"
|
62 |
+
msgstr "Ajouter ou supprimer des boutons Quicktag"
|
63 |
+
|
64 |
+
#: addquicktag.php:203
|
65 |
+
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
66 |
+
msgstr "Remplissez les champs ci-dessous ou éditez les quicktags. Les champs marqués d'un * sont obligatoires. Pour effacer un tag, videz simplement tous les champs."
|
67 |
+
|
68 |
+
#: addquicktag.php:204
|
69 |
+
msgid "Button Label*"
|
70 |
+
msgstr "Label du bouton*"
|
71 |
+
|
72 |
+
#: addquicktag.php:205
|
73 |
+
msgid "Start Tag(s)*"
|
74 |
+
msgstr "Début du/des tag(s)*"
|
75 |
+
|
76 |
+
#: addquicktag.php:206
|
77 |
+
msgid "End Tag(s)"
|
78 |
+
msgstr "Fin du(des) tag(s)"
|
79 |
+
|
80 |
+
#: addquicktag.php:207
|
81 |
+
msgid "Update Options »"
|
82 |
+
msgstr "Mise à jour des options »"
|
83 |
+
|
84 |
+
#: addquicktag.php:210
|
85 |
+
msgid "Export »"
|
86 |
+
msgstr "Exporter »"
|
87 |
+
|
88 |
+
#: addquicktag.php:211
|
89 |
+
msgid "Export Quicktag buttons options"
|
90 |
+
msgstr "Exporter les options des boutons Quicktag"
|
91 |
+
|
92 |
+
#: addquicktag.php:212
|
93 |
+
msgid "You can save a .wpaq file with your options in <em>"
|
94 |
+
msgstr "Vous pouvez sauvegarder un fichier .wpaq avec vos options dans <em>"
|
95 |
+
|
96 |
+
#: addquicktag.php:212
|
97 |
+
msgid "/wpaq_export.wpaq</em>"
|
98 |
+
msgstr "/wpaq_export.wpaq</em>"
|
99 |
+
|
100 |
+
#: addquicktag.php:215
|
101 |
+
msgid "Upload file and import »"
|
102 |
+
msgstr "Uploader et importer fichier »"
|
103 |
+
|
104 |
+
#: addquicktag.php:216
|
105 |
+
msgid "Import Quicktag buttons options"
|
106 |
+
msgstr "Importer les options des boutons Quicktag"
|
107 |
+
|
108 |
+
#: addquicktag.php:217
|
109 |
+
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
110 |
+
msgstr "Choisir un fichier (<em>.wpaq</em>) à uploader, puis cliquer sur <em>Uploader et importer fichier </em>."
|
111 |
+
|
112 |
+
#: addquicktag.php:218
|
113 |
+
msgid "Choose a file from your computer: "
|
114 |
+
msgstr "Choisir un fichier sur votre ordinateur:"
|
115 |
+
|
116 |
+
#: addquicktag.php:221
|
117 |
+
msgid "Uninstall Options »"
|
118 |
+
msgstr "Options de désinstallation »"
|
119 |
+
|
120 |
+
#: addquicktag.php:222
|
121 |
+
msgid "Uninstall options"
|
122 |
+
msgstr "Options de désinstallation"
|
123 |
+
|
124 |
+
#: addquicktag.php:223
|
125 |
+
msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
|
126 |
+
msgstr "Ce bouton efface toutes les options du plugin WP-AddQuicktag. <strong>Attention: </strong> vous ne pourrez pas annuler cette action !"
|
127 |
+
|
128 |
+
#: addquicktag.php:226
|
129 |
+
msgid "About the plugin"
|
130 |
+
msgstr "À propos du plugin"
|
131 |
+
|
132 |
+
#: addquicktag.php:227
|
133 |
+
msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
|
134 |
+
msgstr "Informations complémentaires: visitez la <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>homepage du plugin</a> pour d'autres informations ou pour récupérer la dernière version de ce plugin."
|
135 |
+
|
136 |
+
#: addquicktag.php:228
|
137 |
+
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
138 |
+
msgstr "Vous désirez me remercier ? Visitez ma <a href='http://bueltge.de/wunschliste/'>liste de cadeaux</a>."
|
139 |
+
|
140 |
+
#: addquicktag.php:233
|
141 |
+
msgid "WP-Quicktag Management"
|
142 |
+
msgstr "Gestion de WP-Quicktag"
|
143 |
+
|
144 |
+
#: addquicktag.php:443
|
145 |
+
#: addquicktag.php:456
|
146 |
+
msgid "Settings"
|
147 |
+
msgstr "Réglages"
|
148 |
+
|
149 |
+
#: addquicktag.php:522
|
150 |
+
msgid "Add Quicktag"
|
151 |
+
msgstr "Ajouter un Quicktag"
|
152 |
+
|
153 |
+
#: addquicktag.php:524
|
154 |
+
msgid "WP-Quicktag – Add Quicktag"
|
155 |
+
msgstr "WP-Quicktag – ajouter un Quicktag"
|
156 |
+
|
157 |
+
#: addquicktag.php:541
|
158 |
+
msgid "Version"
|
159 |
+
msgstr "Version"
|
160 |
+
|
161 |
+
#: addquicktag.php:541
|
162 |
+
msgid "Author"
|
163 |
+
msgstr "Auteur"
|
164 |
+
|
languages/addquicktag-it_IT.mo
ADDED
Binary file
|
addquicktag-it_IT.po → languages/addquicktag-it_IT.po
RENAMED
@@ -1,10 +1,11 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AddQuicktag in italiano\n"
|
4 |
-
"
|
5 |
-
"
|
|
|
6 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
|
7 |
-
"Language-Team: gidibao.net <gidibao@gmail.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -15,121 +16,150 @@ msgstr ""
|
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: addquicktag.php:
|
19 |
msgid "Options saved."
|
20 |
msgstr "Le opzioni sono state salvate."
|
21 |
|
22 |
-
#: addquicktag.php:
|
23 |
-
#: addquicktag.php:
|
24 |
-
#: addquicktag.php:
|
25 |
-
#: addquicktag.php:
|
26 |
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
27 |
msgstr "Non hai i permessi necessari per poter modificare i plugin di questo blog"
|
28 |
|
29 |
-
#: addquicktag.php:
|
30 |
msgid "Can not open for write!"
|
31 |
msgstr "Non é possibile la scrittura!"
|
32 |
|
33 |
-
#: addquicktag.php:
|
34 |
msgid "Can not write!"
|
35 |
msgstr "Non é possibile la scrittura!"
|
36 |
|
37 |
-
#: addquicktag.php:
|
38 |
msgid "AddQuicktag options saved!"
|
39 |
msgstr "Le opzioni di AddQuicktag sono state salvate!"
|
40 |
|
41 |
-
#: addquicktag.php:
|
42 |
msgid "Saved in: "
|
43 |
msgstr "Salvate in:"
|
44 |
|
45 |
-
#: addquicktag.php:
|
46 |
msgid "Invalid file extension!"
|
47 |
msgstr "L'estensione del file non é valida!"
|
48 |
|
49 |
-
#: addquicktag.php:
|
50 |
msgid "File is exist!"
|
51 |
msgstr "Il file é presente!"
|
52 |
|
53 |
-
#: addquicktag.php:
|
54 |
msgid "AddQuicktag options imported!"
|
55 |
msgstr "Le opzioni di AddQuicktag sono state importate!"
|
56 |
|
57 |
-
#: addquicktag.php:
|
58 |
msgid "AddQuicktag options have been deleted!"
|
59 |
msgstr "Le opzioni di AddQuicktag sono state cancellate!"
|
60 |
|
61 |
-
#: addquicktag.php:
|
62 |
msgid "Add or delete Quicktag buttons"
|
63 |
msgstr "Aggiungi o cancella i pulsanti Quicktag"
|
64 |
|
65 |
-
#: addquicktag.php:
|
66 |
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
67 |
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."
|
68 |
|
69 |
-
#: addquicktag.php:
|
70 |
msgid "Button Label*"
|
71 |
msgstr "Etichetta del pulsante*"
|
72 |
|
73 |
-
#: addquicktag.php:
|
74 |
msgid "Start Tag(s)*"
|
75 |
msgstr "Davanti al/ai tag*"
|
76 |
|
77 |
-
#: addquicktag.php:
|
78 |
msgid "End Tag(s)"
|
79 |
msgstr "In coda al/ai tag"
|
80 |
|
81 |
-
#: addquicktag.php:
|
82 |
msgid "Update Options »"
|
83 |
msgstr "Aggiorna le opzioni »"
|
84 |
|
85 |
-
#: addquicktag.php:
|
86 |
msgid "Export »"
|
87 |
msgstr "Esporta »"
|
88 |
|
89 |
-
#: addquicktag.php:
|
90 |
msgid "Export Quicktag buttons options"
|
91 |
msgstr "Esporta le opzioni dei pulsanti Quicktag"
|
92 |
|
93 |
-
#: addquicktag.php:
|
94 |
-
msgid "You can save a .wpaq file with your options in <em
|
95 |
-
msgstr "Puoi salvare un file .wpaq personalizzato in <em
|
|
|
|
|
|
|
|
|
96 |
|
97 |
-
#: addquicktag.php:
|
98 |
msgid "Upload file and import »"
|
99 |
msgstr "Carica il file e importa »"
|
100 |
|
101 |
-
#: addquicktag.php:
|
102 |
msgid "Import Quicktag buttons options"
|
103 |
msgstr "Importa le opzioni dei pulsanti Quicktag"
|
104 |
|
105 |
-
#: addquicktag.php:
|
106 |
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
107 |
msgstr "Scegli un file Quicktag (<em>.wpaq</em>) da caricare poi, clicca su <em>Carica il file e importa</em>."
|
108 |
|
109 |
-
#: addquicktag.php:
|
110 |
msgid "Choose a file from your computer: "
|
111 |
msgstr "Scegli un file dal tuo computer:"
|
112 |
|
113 |
-
#: addquicktag.php:
|
114 |
msgid "Uninstall Options »"
|
115 |
msgstr "Disinstalla »"
|
116 |
|
117 |
-
#: addquicktag.php:
|
118 |
msgid "Uninstall options"
|
119 |
msgstr "Disinstalla le opzioni"
|
120 |
|
121 |
-
#: addquicktag.php:
|
122 |
-
msgid "This button deletes all options of the WP-AddQuicktag plugin.
|
123 |
-
msgstr "Il pulsante qui sotto cancellerà tutte le modifiche apportate alle opzioni del plugin WP-AddQuicktag.
|
124 |
|
125 |
-
#: addquicktag.php:
|
|
|
|
|
|
|
|
|
126 |
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."
|
127 |
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."
|
128 |
|
129 |
-
#: addquicktag.php:
|
130 |
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
131 |
msgstr "Desideri ringraziarmi? Visita la mia <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
132 |
|
133 |
-
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AddQuicktag in italiano\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-01 14:39+0100\n"
|
6 |
+
"PO-Revision-Date: 2008-12-17 13:19+0100\n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
|
8 |
+
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: addquicktag.php:95
|
20 |
msgid "Options saved."
|
21 |
msgstr "Le opzioni sono state salvate."
|
22 |
|
23 |
+
#: addquicktag.php:98
|
24 |
+
#: addquicktag.php:130
|
25 |
+
#: addquicktag.php:168
|
26 |
+
#: addquicktag.php:183
|
27 |
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
28 |
msgstr "Non hai i permessi necessari per poter modificare i plugin di questo blog"
|
29 |
|
30 |
+
#: addquicktag.php:114
|
31 |
msgid "Can not open for write!"
|
32 |
msgstr "Non é possibile la scrittura!"
|
33 |
|
34 |
+
#: addquicktag.php:121
|
35 |
msgid "Can not write!"
|
36 |
msgstr "Non é possibile la scrittura!"
|
37 |
|
38 |
+
#: addquicktag.php:124
|
39 |
msgid "AddQuicktag options saved!"
|
40 |
msgstr "Le opzioni di AddQuicktag sono state salvate!"
|
41 |
|
42 |
+
#: addquicktag.php:125
|
43 |
msgid "Saved in: "
|
44 |
msgstr "Salvate in:"
|
45 |
|
46 |
+
#: addquicktag.php:146
|
47 |
msgid "Invalid file extension!"
|
48 |
msgstr "L'estensione del file non é valida!"
|
49 |
|
50 |
+
#: addquicktag.php:148
|
51 |
msgid "File is exist!"
|
52 |
msgstr "Il file é presente!"
|
53 |
|
54 |
+
#: addquicktag.php:163
|
55 |
msgid "AddQuicktag options imported!"
|
56 |
msgstr "Le opzioni di AddQuicktag sono state importate!"
|
57 |
|
58 |
+
#: addquicktag.php:179
|
59 |
msgid "AddQuicktag options have been deleted!"
|
60 |
msgstr "Le opzioni di AddQuicktag sono state cancellate!"
|
61 |
|
62 |
+
#: addquicktag.php:187
|
63 |
msgid "Add or delete Quicktag buttons"
|
64 |
msgstr "Aggiungi o cancella i pulsanti Quicktag"
|
65 |
|
66 |
+
#: addquicktag.php:188
|
67 |
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
68 |
msgstr "Compila i campi qui sotto per aggiungere o modificare i quicktag. I campi contrassegnati con * sono obbligatori. Per poter cancellare un tag dovrai lasciare in bianco tutti i campi."
|
69 |
|
70 |
+
#: addquicktag.php:189
|
71 |
msgid "Button Label*"
|
72 |
msgstr "Etichetta del pulsante*"
|
73 |
|
74 |
+
#: addquicktag.php:190
|
75 |
msgid "Start Tag(s)*"
|
76 |
msgstr "Davanti al/ai tag*"
|
77 |
|
78 |
+
#: addquicktag.php:191
|
79 |
msgid "End Tag(s)"
|
80 |
msgstr "In coda al/ai tag"
|
81 |
|
82 |
+
#: addquicktag.php:192
|
83 |
msgid "Update Options »"
|
84 |
msgstr "Aggiorna le opzioni »"
|
85 |
|
86 |
+
#: addquicktag.php:195
|
87 |
msgid "Export »"
|
88 |
msgstr "Esporta »"
|
89 |
|
90 |
+
#: addquicktag.php:196
|
91 |
msgid "Export Quicktag buttons options"
|
92 |
msgstr "Esporta le opzioni dei pulsanti Quicktag"
|
93 |
|
94 |
+
#: addquicktag.php:197
|
95 |
+
msgid "You can save a .wpaq file with your options in <em>"
|
96 |
+
msgstr "Puoi salvare un file .wpaq personalizzato in <em>"
|
97 |
+
|
98 |
+
#: addquicktag.php:197
|
99 |
+
msgid "/wpaq_export.wpaq</em>"
|
100 |
+
msgstr "/wpaq_export.wpaq</em>"
|
101 |
|
102 |
+
#: addquicktag.php:200
|
103 |
msgid "Upload file and import »"
|
104 |
msgstr "Carica il file e importa »"
|
105 |
|
106 |
+
#: addquicktag.php:201
|
107 |
msgid "Import Quicktag buttons options"
|
108 |
msgstr "Importa le opzioni dei pulsanti Quicktag"
|
109 |
|
110 |
+
#: addquicktag.php:202
|
111 |
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
112 |
msgstr "Scegli un file Quicktag (<em>.wpaq</em>) da caricare poi, clicca su <em>Carica il file e importa</em>."
|
113 |
|
114 |
+
#: addquicktag.php:203
|
115 |
msgid "Choose a file from your computer: "
|
116 |
msgstr "Scegli un file dal tuo computer:"
|
117 |
|
118 |
+
#: addquicktag.php:206
|
119 |
msgid "Uninstall Options »"
|
120 |
msgstr "Disinstalla »"
|
121 |
|
122 |
+
#: addquicktag.php:207
|
123 |
msgid "Uninstall options"
|
124 |
msgstr "Disinstalla le opzioni"
|
125 |
|
126 |
+
#: addquicktag.php:208
|
127 |
+
msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
|
128 |
+
msgstr "Il pulsante qui sotto cancellerà tutte le modifiche apportate alle opzioni del plugin WP-AddQuicktag. <strong>Attenzione: </strong>l'azione non é reversibile!"
|
129 |
|
130 |
+
#: addquicktag.php:211
|
131 |
+
msgid "About the plugin"
|
132 |
+
msgstr "Info Plugin"
|
133 |
+
|
134 |
+
#: addquicktag.php:212
|
135 |
msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
|
136 |
msgstr "Ulteriori informazioni: Visita la <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>homepage del plugin</a> per ulteriori e dettagliate informazioni oppure per scaricare l'ultima versione del plugin."
|
137 |
|
138 |
+
#: addquicktag.php:213
|
139 |
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
140 |
msgstr "Desideri ringraziarmi? Visita la mia <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
141 |
|
142 |
+
#: addquicktag.php:218
|
143 |
+
msgid "WP-Quicktag Management"
|
144 |
+
msgstr "Gestione WP-Quicktag"
|
145 |
+
|
146 |
+
#: addquicktag.php:428
|
147 |
+
msgid "Settings"
|
148 |
+
msgstr "Impostazioni"
|
149 |
+
|
150 |
+
#: addquicktag.php:493
|
151 |
+
msgid "Add Quicktag"
|
152 |
+
msgstr "Aggiungi Quicktag"
|
153 |
+
|
154 |
+
#: addquicktag.php:495
|
155 |
+
msgid "WP-Quicktag – Add Quicktag"
|
156 |
+
msgstr "WP-Quicktag – Aggiungi Quicktag"
|
157 |
+
|
158 |
+
#: addquicktag.php:507
|
159 |
+
msgid "Version"
|
160 |
+
msgstr "Versione"
|
161 |
+
|
162 |
+
#: addquicktag.php:507
|
163 |
+
msgid "Author"
|
164 |
+
msgstr "Autore"
|
165 |
|
addquicktag-ja.mo → languages/addquicktag-ja.mo
RENAMED
File without changes
|
addquicktag-ja.po → languages/addquicktag-ja.po
RENAMED
File without changes
|
languages/addquicktag-ro_RO.mo
ADDED
Binary file
|
languages/addquicktag-ro_RO.po
ADDED
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: AddQuicktag\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-12-13 22:24+0200\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Dragos Nicholas <freesoftwareworkshop@gmail.com>\n"
|
8 |
+
"Language-Team: Dragos Nicolae <freesoftwareworkshop@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Romanian\n"
|
13 |
+
"X-Poedit-Country: ROMANIA\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __\n"
|
16 |
+
"X-Poedit-Basepath: C:\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\addquicktag\n"
|
17 |
+
"X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\addquicktag\n"
|
18 |
+
|
19 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:95
|
20 |
+
msgid "Options saved."
|
21 |
+
msgstr "Opţiuni salvate."
|
22 |
+
|
23 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:98
|
24 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:130
|
25 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:168
|
26 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:183
|
27 |
+
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
28 |
+
msgstr "Nu aveţi suficiente privilegii pentru a modifica pluginurile de pe acest blog."
|
29 |
+
|
30 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:114
|
31 |
+
msgid "Can not open for write!"
|
32 |
+
msgstr "Nu pot deschide pentru a scrie!"
|
33 |
+
|
34 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:121
|
35 |
+
msgid "Can not write!"
|
36 |
+
msgstr "Nu pot scrie!"
|
37 |
+
|
38 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:124
|
39 |
+
msgid "AddQuicktag options saved!"
|
40 |
+
msgstr "Opţiunile AddQuicktag au fost salvate!"
|
41 |
+
|
42 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:125
|
43 |
+
msgid "Saved in: "
|
44 |
+
msgstr "Salvate în:"
|
45 |
+
|
46 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:146
|
47 |
+
msgid "Invalid file extension!"
|
48 |
+
msgstr "Extensia fişierului este invalidă!"
|
49 |
+
|
50 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:148
|
51 |
+
msgid "File is exist!"
|
52 |
+
msgstr "Fişierul există."
|
53 |
+
|
54 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:163
|
55 |
+
msgid "AddQuicktag options imported!"
|
56 |
+
msgstr "Opţiunile AddQuicktag au fost importate!"
|
57 |
+
|
58 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:179
|
59 |
+
msgid "AddQuicktag options have been deleted!"
|
60 |
+
msgstr "Opţiunile AddQuicktag au fost şterse!"
|
61 |
+
|
62 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:187
|
63 |
+
msgid "Add or delete Quicktag buttons"
|
64 |
+
msgstr "Adaugă sau şterge butoane Quicktag"
|
65 |
+
|
66 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:188
|
67 |
+
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
68 |
+
msgstr "Completaţi câmpurile de mai jos pentru a adăuga sau modifica quicktagurile (etichetele). Câmpurile cu * sunt obligatorii. Pentru a şterge o etichetă (tag) pur şi simplu goliţi toate câmpurile."
|
69 |
+
|
70 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:189
|
71 |
+
msgid "Button Label*"
|
72 |
+
msgstr "Eticheta butonului"
|
73 |
+
|
74 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:190
|
75 |
+
msgid "Start Tag(s)*"
|
76 |
+
msgstr "Eticheta (tag) de deschidere"
|
77 |
+
|
78 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:191
|
79 |
+
msgid "End Tag(s)"
|
80 |
+
msgstr "Eticheta (tag) de închidere"
|
81 |
+
|
82 |
+
#: C:\xampp\htdocs\wordpress\wp-content\plugins\addquicktag/addquicktag.php:192
|
83 |
+
msgid "Update Options »"
|
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 |
+
|
addquicktag-zh_TW.mo → languages/addquicktag-zh_TW.mo
RENAMED
File without changes
|
addquicktag-zh_TW.po → languages/addquicktag-zh_TW.po
RENAMED
File without changes
|
addquicktag-de_DE.po → languages/addquicktag.pot
RENAMED
@@ -1,133 +1,162 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AddQuicktag\n"
|
4 |
-
"
|
5 |
-
"
|
|
|
6 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Poedit-KeywordsList: _e;__\n"
|
12 |
"X-Poedit-Basepath: D:\\WP-Plugins\\addquicktag\\trunk\\\n"
|
13 |
"X-Poedit-SearchPath-0: .\n"
|
14 |
|
15 |
-
#: addquicktag.php:
|
16 |
msgid "Options saved."
|
17 |
msgstr "Einstellungen gespeichert."
|
18 |
|
19 |
-
#: addquicktag.php:
|
20 |
-
#: addquicktag.php:
|
21 |
-
#: addquicktag.php:
|
22 |
-
#: addquicktag.php:
|
23 |
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
24 |
msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
|
25 |
|
26 |
-
#: addquicktag.php:
|
27 |
msgid "Can not open for write!"
|
28 |
msgstr "Öffnen zum Schreiben nicht möglich!"
|
29 |
|
30 |
-
#: addquicktag.php:
|
31 |
msgid "Can not write!"
|
32 |
msgstr "Schreiben nicht möglich!"
|
33 |
|
34 |
-
#: addquicktag.php:
|
35 |
msgid "AddQuicktag options saved!"
|
36 |
msgstr "AddQuicktag Einstellungen gespeichert!"
|
37 |
|
38 |
-
#: addquicktag.php:
|
39 |
msgid "Saved in: "
|
40 |
msgstr "Gespeichert in: "
|
41 |
|
42 |
-
#: addquicktag.php:
|
43 |
msgid "Invalid file extension!"
|
44 |
msgstr "Nicht zulässige Dateierweiterung!"
|
45 |
|
46 |
-
#: addquicktag.php:
|
47 |
msgid "File is exist!"
|
48 |
msgstr "Datei nicht vorhanden!"
|
49 |
|
50 |
-
#: addquicktag.php:
|
51 |
msgid "AddQuicktag options imported!"
|
52 |
msgstr "AddQuicktag Einstellungen importiert!"
|
53 |
|
54 |
-
#: addquicktag.php:
|
55 |
msgid "AddQuicktag options have been deleted!"
|
56 |
msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
|
57 |
|
58 |
-
#: addquicktag.php:
|
59 |
msgid "Add or delete Quicktag buttons"
|
60 |
msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
|
61 |
|
62 |
-
#: addquicktag.php:
|
63 |
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
64 |
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."
|
65 |
|
66 |
-
#: addquicktag.php:
|
67 |
msgid "Button Label*"
|
68 |
msgstr "Button Name*"
|
69 |
|
70 |
-
#: addquicktag.php:
|
71 |
msgid "Start Tag(s)*"
|
72 |
msgstr "Start Tag(s)*"
|
73 |
|
74 |
-
#: addquicktag.php:
|
75 |
msgid "End Tag(s)"
|
76 |
msgstr "Ende Tag(s)"
|
77 |
|
78 |
-
#: addquicktag.php:
|
79 |
msgid "Update Options »"
|
80 |
msgstr "Einstellungen aktualisieren »"
|
81 |
|
82 |
-
#: addquicktag.php:
|
83 |
msgid "Export »"
|
84 |
msgstr "Exportieren »"
|
85 |
|
86 |
-
#: addquicktag.php:
|
87 |
msgid "Export Quicktag buttons options"
|
88 |
msgstr "Exportiere deine Quicktag-buttons"
|
89 |
|
90 |
-
#: addquicktag.php:
|
91 |
-
msgid "You can save a .wpaq file with your options in <em
|
92 |
-
msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen auf <em
|
93 |
|
94 |
-
#: addquicktag.php:
|
|
|
|
|
|
|
|
|
95 |
msgid "Upload file and import »"
|
96 |
msgstr "Datei hochladen und importieren »"
|
97 |
|
98 |
-
#: addquicktag.php:
|
99 |
msgid "Import Quicktag buttons options"
|
100 |
msgstr "Importiere deine Quicktag-buttons"
|
101 |
|
102 |
-
#: addquicktag.php:
|
103 |
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
104 |
msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
|
105 |
|
106 |
-
#: addquicktag.php:
|
107 |
msgid "Choose a file from your computer: "
|
108 |
msgstr "Wähle eine Datei von deinem Rechner. "
|
109 |
|
110 |
-
#: addquicktag.php:
|
111 |
msgid "Uninstall Options »"
|
112 |
msgstr "Einstellungen löschen »"
|
113 |
|
114 |
-
#: addquicktag.php:
|
115 |
msgid "Uninstall options"
|
116 |
msgstr "Deinstalliere Einstellungen"
|
117 |
|
118 |
-
#: addquicktag.php:
|
119 |
-
msgid "This button deletes all options of the WP-AddQuicktag plugin.
|
120 |
-
msgstr "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag.
|
121 |
|
122 |
-
#: addquicktag.php:
|
|
|
|
|
|
|
|
|
123 |
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."
|
124 |
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."
|
125 |
|
126 |
-
#: addquicktag.php:
|
127 |
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
128 |
msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
|
129 |
|
130 |
-
#: addquicktag.php:
|
|
|
|
|
|
|
|
|
131 |
msgid "Settings"
|
132 |
msgstr "Einstellungen"
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AddQuicktag\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-01 14:39+0100\n"
|
6 |
+
"PO-Revision-Date: 2008-11-01 14:40+0100\n"
|
7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
"X-Poedit-Basepath: D:\\WP-Plugins\\addquicktag\\trunk\\\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
+
#: addquicktag.php:95
|
17 |
msgid "Options saved."
|
18 |
msgstr "Einstellungen gespeichert."
|
19 |
|
20 |
+
#: addquicktag.php:98
|
21 |
+
#: addquicktag.php:130
|
22 |
+
#: addquicktag.php:168
|
23 |
+
#: addquicktag.php:183
|
24 |
msgid "You do not have sufficient permissions to edit plugins for this blog."
|
25 |
msgstr "Du hast keine ausreichenden Rechte um das Plugin zu ändern."
|
26 |
|
27 |
+
#: addquicktag.php:114
|
28 |
msgid "Can not open for write!"
|
29 |
msgstr "Öffnen zum Schreiben nicht möglich!"
|
30 |
|
31 |
+
#: addquicktag.php:121
|
32 |
msgid "Can not write!"
|
33 |
msgstr "Schreiben nicht möglich!"
|
34 |
|
35 |
+
#: addquicktag.php:124
|
36 |
msgid "AddQuicktag options saved!"
|
37 |
msgstr "AddQuicktag Einstellungen gespeichert!"
|
38 |
|
39 |
+
#: addquicktag.php:125
|
40 |
msgid "Saved in: "
|
41 |
msgstr "Gespeichert in: "
|
42 |
|
43 |
+
#: addquicktag.php:146
|
44 |
msgid "Invalid file extension!"
|
45 |
msgstr "Nicht zulässige Dateierweiterung!"
|
46 |
|
47 |
+
#: addquicktag.php:148
|
48 |
msgid "File is exist!"
|
49 |
msgstr "Datei nicht vorhanden!"
|
50 |
|
51 |
+
#: addquicktag.php:163
|
52 |
msgid "AddQuicktag options imported!"
|
53 |
msgstr "AddQuicktag Einstellungen importiert!"
|
54 |
|
55 |
+
#: addquicktag.php:179
|
56 |
msgid "AddQuicktag options have been deleted!"
|
57 |
msgstr "AddQuicktag Einstellungenwurden gelöschtt!"
|
58 |
|
59 |
+
#: addquicktag.php:187
|
60 |
msgid "Add or delete Quicktag buttons"
|
61 |
msgstr "Hinzufügen oder löschen eines Quicktag-buttons"
|
62 |
|
63 |
+
#: addquicktag.php:188
|
64 |
msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
|
65 |
msgstr "Fülle das Feld unterhalb der bestehenden Buttons oder ändere einen Quicktag. Felder mit * sind Pflichtfelder. Um Quicktags zu löschen, einfach den Inhalt der zugehörigen Felder löschen."
|
66 |
|
67 |
+
#: addquicktag.php:189
|
68 |
msgid "Button Label*"
|
69 |
msgstr "Button Name*"
|
70 |
|
71 |
+
#: addquicktag.php:190
|
72 |
msgid "Start Tag(s)*"
|
73 |
msgstr "Start Tag(s)*"
|
74 |
|
75 |
+
#: addquicktag.php:191
|
76 |
msgid "End Tag(s)"
|
77 |
msgstr "Ende Tag(s)"
|
78 |
|
79 |
+
#: addquicktag.php:192
|
80 |
msgid "Update Options »"
|
81 |
msgstr "Einstellungen aktualisieren »"
|
82 |
|
83 |
+
#: addquicktag.php:195
|
84 |
msgid "Export »"
|
85 |
msgstr "Exportieren »"
|
86 |
|
87 |
+
#: addquicktag.php:196
|
88 |
msgid "Export Quicktag buttons options"
|
89 |
msgstr "Exportiere deine Quicktag-buttons"
|
90 |
|
91 |
+
#: addquicktag.php:197
|
92 |
+
msgid "You can save a .wpaq file with your options in <em>"
|
93 |
+
msgstr "Du kannst eine .wpaq Datei mit allen Einstellungen auf <em>"
|
94 |
|
95 |
+
#: addquicktag.php:197
|
96 |
+
msgid "/wpaq_export.wpaq</em>"
|
97 |
+
msgstr "/wpaq_export.wpaq</em>"
|
98 |
+
|
99 |
+
#: addquicktag.php:200
|
100 |
msgid "Upload file and import »"
|
101 |
msgstr "Datei hochladen und importieren »"
|
102 |
|
103 |
+
#: addquicktag.php:201
|
104 |
msgid "Import Quicktag buttons options"
|
105 |
msgstr "Importiere deine Quicktag-buttons"
|
106 |
|
107 |
+
#: addquicktag.php:202
|
108 |
msgid "Choose a Quicktag (<em>.wpaq</em>) file to upload, then click <em>Upload file and import</em>."
|
109 |
msgstr "Wähle eine Quicktag (.wpaq) Datei zum hochladen und klicke dann <em>Datei hochladen und importieren</em>."
|
110 |
|
111 |
+
#: addquicktag.php:203
|
112 |
msgid "Choose a file from your computer: "
|
113 |
msgstr "Wähle eine Datei von deinem Rechner. "
|
114 |
|
115 |
+
#: addquicktag.php:206
|
116 |
msgid "Uninstall Options »"
|
117 |
msgstr "Einstellungen löschen »"
|
118 |
|
119 |
+
#: addquicktag.php:207
|
120 |
msgid "Uninstall options"
|
121 |
msgstr "Deinstalliere Einstellungen"
|
122 |
|
123 |
+
#: addquicktag.php:208
|
124 |
+
msgid "This button deletes all options of the WP-AddQuicktag plugin. <strong>Attention: </strong>You cannot undo this!"
|
125 |
+
msgstr "Der Button löscht alle Einstellungen des Plugins WP-AddQuicktag. <strong>Achtung: </strong>Du kannst dies nicht rückgängig machen!"
|
126 |
|
127 |
+
#: addquicktag.php:211
|
128 |
+
msgid "About the plugin"
|
129 |
+
msgstr "Über das Plugin"
|
130 |
+
|
131 |
+
#: addquicktag.php:212
|
132 |
msgid "Further information: Visit the <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>plugin homepage</a> for further information or to grab the latest version of this plugin."
|
133 |
msgstr "Weitere Informationen: Besuche die <a href='http://bueltge.de/wp-addquicktags-de-plugin/120'>Plugin Homepage</a> für weitere Informationen oder hole die letzte Version des Plugins."
|
134 |
|
135 |
+
#: addquicktag.php:213
|
136 |
msgid "You want to thank me? Visit my <a href='http://bueltge.de/wunschliste/'>wishlist</a>."
|
137 |
msgstr "Du willst Danke sagen? Besuche meine <a href='http://bueltge.de/wunschliste/'>Wunschliste</a>."
|
138 |
|
139 |
+
#: addquicktag.php:218
|
140 |
+
msgid "WP-Quicktag Management"
|
141 |
+
msgstr "WP-Quicktag Verwaltung"
|
142 |
+
|
143 |
+
#: addquicktag.php:428
|
144 |
msgid "Settings"
|
145 |
msgstr "Einstellungen"
|
146 |
|
147 |
+
#: addquicktag.php:493
|
148 |
+
msgid "Add Quicktag"
|
149 |
+
msgstr "Add Quicktag"
|
150 |
+
|
151 |
+
#: addquicktag.php:495
|
152 |
+
msgid "WP-Quicktag – Add Quicktag"
|
153 |
+
msgstr "WP-Quicktag – Add Quicktag"
|
154 |
+
|
155 |
+
#: addquicktag.php:507
|
156 |
+
msgid "Version"
|
157 |
+
msgstr "Version"
|
158 |
+
|
159 |
+
#: addquicktag.php:507
|
160 |
+
msgid "Author"
|
161 |
+
msgstr "Autor"
|
162 |
+
|