AddQuicktag - Version 2.0.4

Version Description

  • Add fix for use older settings from previous versions
  • Unicode fix for upload XML file
Download this release

Release Info

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

Code changes from version 2.0.3 to 2.0.4

addquicktag.php CHANGED
@@ -5,7 +5,7 @@
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.3
9
  * Author: Frank Bültge
10
  * Author URI: http://bueltge.de
11
  * License: GPLv3
@@ -107,7 +107,10 @@ class Add_Quicktag {
107
  // sort array by order value
108
  $tmp = array();
109
  foreach( $options['buttons'] as $order ) {
110
- $tmp[] = $order['order'];
 
 
 
111
  }
112
  array_multisort( $tmp, SORT_ASC, $options['buttons'] );
113
  }
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.4
9
  * Author: Frank Bültge
10
  * Author URI: http://bueltge.de
11
  * License: GPLv3
107
  // sort array by order value
108
  $tmp = array();
109
  foreach( $options['buttons'] as $order ) {
110
+ if ( isset( $order['order'] ) )
111
+ $tmp[] = $order['order'];
112
+ else
113
+ $tmp[] = 0;
114
  }
115
  array_multisort( $tmp, SORT_ASC, $options['buttons'] );
116
  }
addquicktag_cpt.php.example ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Plugin Name: Example: AddQuicktag for CPT
4
+ * Plugin URI: http://bueltge.de/
5
+ * Description: Add custom post type 'my_custom_post_type' to AddQuicktag plugin
6
+ * Author: Frank Bültge
7
+ * Version: 0.0.1
8
+ * Licence: GPLv3
9
+ * Author URI: http://bueltge.de
10
+ */
11
+
12
+ // This file is not called from WordPress. We don't like that.
13
+ if ( ! function_exists( 'add_filter' ) ) {
14
+ echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
15
+ exit;
16
+ }
17
+
18
+ if ( ! function_exists( 'my_addquicktag_post_types' ) ) {
19
+
20
+ // add custom function to filter hook 'addquicktag_post_types'
21
+ add_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );
22
+
23
+ /**
24
+ * Return array $post_types with custom post types strings
25
+ *
26
+ * @param $post_type Array
27
+ * @return $post_type Array
28
+ */
29
+ function my_addquicktag_post_types( $post_types ) {
30
+
31
+ $post_types[] = 'snippet';
32
+
33
+ return $post_types;
34
+ }
35
+
36
+ }
inc/class-imexport.php CHANGED
@@ -182,6 +182,7 @@ class Add_Quicktag_Im_Export extends Add_Quicktag_Settings {
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
182
  $filename = $_FILES['xml']['tmp_name'];
183
 
184
  $filename = preg_replace( "/\<\!\[CDATA\[(.*?)\]\]\>/ies", "'[CDATA]' . base64_encode('$1') . '[/CDATA]'", $filename );
185
+ $filename = utf8_encode( $filename );
186
  $matches = simplexml_load_file( $filename );
187
 
188
  // create array from xml
inc/class-settings.php CHANGED
@@ -198,7 +198,9 @@ class Add_Quicktag_Settings extends Add_Quicktag {
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
  }
@@ -409,8 +411,10 @@ class Add_Quicktag_Settings extends Add_Quicktag {
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
198
  // sort array by order value
199
  $tmp = array();
200
  foreach( $options['buttons'] as $order ) {
201
+ if ( isset( $order['order'] ) )
202
+ $tmp[] = $order['order'];
203
+ $tmp[] = 0;
204
  }
205
  array_multisort( $tmp, SORT_ASC, $options['buttons'] );
206
  }
411
  $b['title'] = esc_html( $b['title'] );
412
  $b['start'] = stripslashes( $b['start'] );
413
  $b['end'] = stripslashes( $b['end'] );
414
+ if ( isset( $b['access'] ) )
415
+ $b['access'] = esc_html( $b['access'] );
416
+ if ( isset( $b['order'] ) )
417
+ $b['order'] = intval( $b['order'] );
418
  if ( isset( $b['visual'] ) )
419
  $b['visual'] = intval( $b['visual'] );
420
  else
inc/tinymce/editor_plugin.dev.js CHANGED
File without changes
inc/tinymce/editor_plugin.js CHANGED
File without changes
inc/tinymce/langs/de.js CHANGED
File without changes
inc/tinymce/langs/en.js CHANGED
File without changes
languages/addquicktag-es_ES.mo DELETED
Binary file
languages/addquicktag-fr_FR.mo CHANGED
Binary file
languages/addquicktag-fr_FR.po CHANGED
@@ -3,7 +3,7 @@ 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: 2012-04-27 22:26+0100\n"
7
  "Last-Translator: Li-An <lian00@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -77,7 +77,7 @@ msgstr "Fin du(des) tag(s)"
77
  # @ addquicktag
78
  #: inc/class-settings.php:213
79
  msgid "Access Key"
80
- msgstr "Clef d'accès"
81
 
82
  # @ addquicktag
83
  #: inc/class-settings.php:273
@@ -97,37 +97,37 @@ msgstr "Vous aimez ce plugin ?"
97
  # @ addquicktag
98
  #: inc/class-settings.php:312
99
  msgid "Here's how you can give back:"
100
- msgstr "Voilà comment rendre la pareille:"
101
 
102
  # @ addquicktag
103
  #: inc/class-settings.php:314
104
  msgid "The Plugin on the WordPress plugin repository"
105
- msgstr "Le plugin dans le dépôt officiel de plugins de Wordpress"
106
 
107
  # @ addquicktag
108
  #: inc/class-settings.php:314
109
  msgid "Give the plugin a good rating."
110
- msgstr "Donnez au plugin une bonne note."
111
 
112
  # @ addquicktag
113
  #: inc/class-settings.php:315
114
  msgid "Donate via PayPal"
115
- msgstr "Faire un don via Paypal"
116
 
117
  # @ addquicktag
118
  #: inc/class-settings.php:315
119
  msgid "Donate a few euros."
120
- msgstr "Donner quelques euros"
121
 
122
  # @ addquicktag
123
  #: inc/class-settings.php:316
124
  msgid "Frank Bültge's Amazon Wish List"
125
- msgstr "La liste d'envies cadeaux d'Amazon pour Frank Bültge"
126
 
127
  # @ addquicktag
128
  #: inc/class-settings.php:316
129
  msgid "Get me something from my wish list."
130
- msgstr "Offrez-moi quelque chose à partir de ma liste cadeaux."
131
 
132
  # @ addquicktag
133
  #: inc/class-settings.php:335
@@ -141,23 +141,23 @@ msgstr "Version:"
141
  # @ addquicktag
142
  #: inc/class-settings.php:342
143
  msgid "Description:"
144
- msgstr "Description: "
145
 
146
  # @ addquicktag
147
  #: inc/class-settings.php:214
148
  msgid "Order"
149
- msgstr "Ordre"
150
 
151
  # @ addquicktag
152
  #: inc/class-settings.php:215
153
  msgid "Visual"
154
- msgstr "Visuel"
155
 
156
  # @ addquicktag
157
  #. translators: plugin header field 'Description'
158
  #: addquicktag.php:0
159
  msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
160
- msgstr "ce plugin vous permet d'ajouter simplement des quicktags personnalisés dans l'éditeur HTML ou visuel."
161
 
162
  # @ addquicktag
163
  #. translators: plugin header field 'Version'
@@ -173,22 +173,22 @@ msgstr "Exporter"
173
  # @ addquicktag
174
  #: inc/class-imexport.php:66
175
  msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
176
- msgstr "En cliquant sur le bouton ci-dessous, le plugin créera un fichier XML à sauvegarder sur votre ordinateur."
177
 
178
  # @ addquicktag
179
  #: inc/class-imexport.php:67
180
  msgid "This format, a custom XML, will contain your options from quicktags."
181
- msgstr "Ce fichier, un XML personnalisé, contiendra vos options de quicktags."
182
 
183
  # @ addquicktag
184
  #: inc/class-imexport.php:68
185
  msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
186
- msgstr "Une fois le fichier téléchargé sauvegardé, vous pouvez utiliser la fonction d'import dans une autre installation Wordpress pour l'importer dans le site."
187
 
188
  # @ addquicktag
189
  #: inc/class-imexport.php:72
190
  msgid "Download Export File"
191
- msgstr "Télécharger le fichier d'export"
192
 
193
  # @ addquicktag
194
  #: inc/class-imexport.php:80
@@ -198,12 +198,12 @@ msgstr "Importer"
198
  # @ addquicktag
199
  #: inc/class-imexport.php:82
200
  msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
201
- msgstr "Si vous avez des quicktags provenant d'une autre installation, le plugin peut importer ceux-ci dans ce site. Pour commencer, veuillez choisir le fichier à importer."
202
 
203
  # @ addquicktag
204
  #: inc/class-imexport.php:87
205
  msgid "Upload file and import"
206
- msgstr "Uploader et importer le fichier"
207
 
208
  # @ secure_wp
209
  #: inc/class-imexport.php:178
3
  "Project-Id-Version: AddQuicktag v1.5.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2011-12-15 15:35+0100\n"
7
  "Last-Translator: Li-An <lian00@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
77
  # @ addquicktag
78
  #: inc/class-settings.php:213
79
  msgid "Access Key"
80
+ msgstr "Zugriffstaste"
81
 
82
  # @ addquicktag
83
  #: inc/class-settings.php:273
97
  # @ addquicktag
98
  #: inc/class-settings.php:312
99
  msgid "Here's how you can give back:"
100
+ msgstr "Über folgende Möglichkeiten kannst du etwas zurück geben:"
101
 
102
  # @ addquicktag
103
  #: inc/class-settings.php:314
104
  msgid "The Plugin on the WordPress plugin repository"
105
+ msgstr "Das Plugin im offiziellen WordPress Repository"
106
 
107
  # @ addquicktag
108
  #: inc/class-settings.php:314
109
  msgid "Give the plugin a good rating."
110
+ msgstr "Gib dem Plugin eine gute Wertung"
111
 
112
  # @ addquicktag
113
  #: inc/class-settings.php:315
114
  msgid "Donate via PayPal"
115
+ msgstr "Spende via Paypal"
116
 
117
  # @ addquicktag
118
  #: inc/class-settings.php:315
119
  msgid "Donate a few euros."
120
+ msgstr "Spende einige Euros"
121
 
122
  # @ addquicktag
123
  #: inc/class-settings.php:316
124
  msgid "Frank Bültge's Amazon Wish List"
125
+ msgstr "Frank Bültge's Amazon Wunschliste"
126
 
127
  # @ addquicktag
128
  #: inc/class-settings.php:316
129
  msgid "Get me something from my wish list."
130
+ msgstr "Suche dir was aus und lass mir ein Objekt meiner Wunschliste zukommen."
131
 
132
  # @ addquicktag
133
  #: inc/class-settings.php:335
141
  # @ addquicktag
142
  #: inc/class-settings.php:342
143
  msgid "Description:"
144
+ msgstr "Beschreibung:"
145
 
146
  # @ addquicktag
147
  #: inc/class-settings.php:214
148
  msgid "Order"
149
+ msgstr "Reihenfolge"
150
 
151
  # @ addquicktag
152
  #: inc/class-settings.php:215
153
  msgid "Visual"
154
+ msgstr "Visuell"
155
 
156
  # @ addquicktag
157
  #. translators: plugin header field 'Description'
158
  #: addquicktag.php:0
159
  msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
160
+ msgstr "Erlaubt das einfache Hinzufügen von Quicktags zum html- und visuellen Editor."
161
 
162
  # @ addquicktag
163
  #. translators: plugin header field 'Version'
173
  # @ addquicktag
174
  #: inc/class-imexport.php:66
175
  msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
176
+ 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."
177
 
178
  # @ addquicktag
179
  #: inc/class-imexport.php:67
180
  msgid "This format, a custom XML, will contain your options from quicktags."
181
+ msgstr "Dieses Format, ein benutzerdefniertes XML, beinhaltet Einstellungen der Quicktags."
182
 
183
  # @ addquicktag
184
  #: inc/class-imexport.php:68
185
  msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
186
+ msgstr "Nachdem die heruntergeladene Datei gespeichert wurde, kannst du die Import-Funktion in einer anderen WordPress Installation nutzen."
187
 
188
  # @ addquicktag
189
  #: inc/class-imexport.php:72
190
  msgid "Download Export File"
191
+ msgstr "Export-Datei herunterladen"
192
 
193
  # @ addquicktag
194
  #: inc/class-imexport.php:80
198
  # @ addquicktag
199
  #: inc/class-imexport.php:82
200
  msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
201
+ 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."
202
 
203
  # @ addquicktag
204
  #: inc/class-imexport.php:87
205
  msgid "Upload file and import"
206
+ msgstr "Uploader et importer fichier"
207
 
208
  # @ secure_wp
209
  #: inc/class-imexport.php:178
languages/addquicktag-ja.mo ADDED
Binary file
languages/{addquicktag-es_ES.po → addquicktag-ja.po} RENAMED
@@ -1,22 +1,17 @@
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: 2012-01-09 14:33-0500\n"
7
- "Last-Translator: Tristan Goethel <tristang@doftcom.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-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ addquicktag
22
  #. translators: plugin header field 'Name'
@@ -40,124 +35,127 @@ msgstr "Frank Bültge"
40
  #. translators: plugin header field 'AuthorURI'
41
  #: addquicktag.php:0
42
  msgid "http://bueltge.de"
43
- msgstr "http://bueltge.de "
44
 
 
 
45
  #: inc/class-settings.php:110
46
  #: inc/class-settings.php:127
47
  #: inc/class-settings.php:145
48
  #: inc/class-settings.php:153
49
  msgid "Settings"
50
- msgstr "Configuración"
51
 
52
  # @ addquicktag
53
  #: inc/class-settings.php:178
54
  msgid "Add or delete Quicktag buttons"
55
- msgstr "Agregar o eliminar botones Quicktag"
56
 
57
  # @ addquicktag
58
  #: inc/class-settings.php:209
59
  msgid "Button Label*"
60
- msgstr "Etiqueta del botón*"
61
 
62
  # @ addquicktag
63
  #: inc/class-settings.php:210
64
  msgid "Title Attribute"
65
- msgstr "Atributo del título"
66
 
67
  # @ addquicktag
68
  #: inc/class-settings.php:211
69
  msgid "Start Tag(s)*"
70
- msgstr "Etiqueta(s) de inicio*"
71
 
72
  # @ addquicktag
73
  #: inc/class-settings.php:212
74
  msgid "End Tag(s)"
75
- msgstr "Etiqueta(s) de cierre"
76
 
77
  # @ addquicktag
78
  #: inc/class-settings.php:213
79
  msgid "Access Key"
80
- msgstr "Clave de acceso"
81
 
82
  # @ addquicktag
83
  #: inc/class-settings.php:273
84
  msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
85
- msgstr "Rellenar los siguientes campos para agregar o editar las quicktags. Los campos con * son obligatorios. Para eliminar una etiqueta, simplemente vacíe todos los campos."
86
 
87
  # @ default
88
  #: inc/class-settings.php:275
89
  msgid "Save Changes"
90
- msgstr "Guardar cambios"
91
 
92
  # @ addquicktag
93
  #: inc/class-settings.php:310
94
  msgid "Like this plugin?"
95
- msgstr "¿Le gusta este complemento?"
96
 
97
  # @ addquicktag
98
  #: inc/class-settings.php:312
99
  msgid "Here's how you can give back:"
100
- msgstr "Esta es la manera en la que puede devolver:"
101
 
102
  # @ addquicktag
103
  #: inc/class-settings.php:314
104
  msgid "The Plugin on the WordPress plugin repository"
105
- msgstr "Complemento en el repositorio de complementos de WordPress"
106
 
107
  # @ addquicktag
108
  #: inc/class-settings.php:314
109
  msgid "Give the plugin a good rating."
110
- msgstr "Otorgar una buena calificación al complemento."
111
 
112
  # @ addquicktag
113
  #: inc/class-settings.php:315
114
  msgid "Donate via PayPal"
115
- msgstr "Donar a través de PayPal"
116
 
117
  # @ addquicktag
118
  #: inc/class-settings.php:315
119
  msgid "Donate a few euros."
120
- msgstr "Donar algunos euros."
121
 
122
  # @ addquicktag
123
  #: inc/class-settings.php:316
124
  msgid "Frank Bültge's Amazon Wish List"
125
- msgstr "Lista de deseos de Amazon de Frank Bültge"
126
 
127
  # @ addquicktag
128
  #: inc/class-settings.php:316
129
  msgid "Get me something from my wish list."
130
- msgstr "Regálame algo de mi lista de deseos"
131
 
132
  # @ addquicktag
133
  #: inc/class-settings.php:335
134
  msgid "About this plugin"
135
- msgstr "Acerca de este complemento"
136
 
 
137
  #: inc/class-settings.php:338
138
  msgid "Version:"
139
- msgstr "Versión:"
140
 
141
  # @ addquicktag
142
  #: inc/class-settings.php:342
143
  msgid "Description:"
144
- msgstr "Descripción:"
145
 
146
  # @ addquicktag
147
  #: inc/class-settings.php:214
148
  msgid "Order"
149
- msgstr "Pedido"
150
 
151
  # @ addquicktag
152
  #: inc/class-settings.php:215
153
  msgid "Visual"
154
- msgstr "Visual"
155
 
156
  # @ addquicktag
157
  #. translators: plugin header field 'Description'
158
  #: addquicktag.php:0
159
  msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
160
- msgstr "Le permite agregar rápidamente Quicktags personalizadas al editor de HTML y visual."
161
 
162
  # @ addquicktag
163
  #. translators: plugin header field 'Version'
@@ -168,50 +166,50 @@ msgstr "2.0.0"
168
  # @ addquicktag
169
  #: inc/class-imexport.php:64
170
  msgid "Export"
171
- msgstr "Exportar"
172
 
173
  # @ addquicktag
174
  #: inc/class-imexport.php:66
175
  msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
176
- msgstr "Al hacer clic en el siguiente botón, el complemento creará un archivo XML para que guarde en su computadora. "
177
 
178
  # @ addquicktag
179
  #: inc/class-imexport.php:67
180
  msgid "This format, a custom XML, will contain your options from quicktags."
181
- msgstr "Este formato, un XML personalizado, contendrá sus opciones de las quicktags."
182
 
183
  # @ addquicktag
184
  #: inc/class-imexport.php:68
185
  msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
186
- msgstr "Una vez que haya guardado el archivo de descarga, puede utilizar la función Importar en otra instalación de WordPress para importar este sitio."
187
 
188
  # @ addquicktag
189
  #: inc/class-imexport.php:72
190
  msgid "Download Export File"
191
- msgstr "Descargar el Archivo para Exportar"
192
 
193
  # @ addquicktag
194
  #: inc/class-imexport.php:80
195
  msgid "Import"
196
- msgstr "Importar"
197
 
198
  # @ addquicktag
199
  #: inc/class-imexport.php:82
200
  msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
201
- msgstr "Si tiene quicktags de otras instalaciones, el complemento puede importarlas a este sitio. Para comenzar, seleccione un archivo para importar."
202
 
203
  # @ addquicktag
204
  #: inc/class-imexport.php:87
205
  msgid "Upload file and import"
206
- msgstr "Cargar archivo e importar"
207
 
208
- # @ secure_wp
209
  #: inc/class-imexport.php:178
210
  msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
211
- msgstr "Opciones no actualizadas. ¡Usted no tiene los privilegios para realizar esta acción!"
212
 
213
  # @ addquicktag
214
  #: inc/class-settings.php:387
215
  msgid "Options saved."
216
- msgstr "Opciones guardadas."
217
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: AddQuicktag\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Yuuichi <u1@u-1.net>\n"
8
+ "Language-Team: Yuuichi <u1@u-1.net>\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-SourceCharset: utf-8\n"
 
 
 
 
15
 
16
  # @ addquicktag
17
  #. translators: plugin header field 'Name'
35
  #. translators: plugin header field 'AuthorURI'
36
  #: addquicktag.php:0
37
  msgid "http://bueltge.de"
38
+ msgstr "http://bueltge.de"
39
 
40
+ # @ default
41
+ # @ addquicktag
42
  #: inc/class-settings.php:110
43
  #: inc/class-settings.php:127
44
  #: inc/class-settings.php:145
45
  #: inc/class-settings.php:153
46
  msgid "Settings"
47
+ msgstr "設定"
48
 
49
  # @ addquicktag
50
  #: inc/class-settings.php:178
51
  msgid "Add or delete Quicktag buttons"
52
+ msgstr "クイックタグの追加と削除"
53
 
54
  # @ addquicktag
55
  #: inc/class-settings.php:209
56
  msgid "Button Label*"
57
+ msgstr "ボタン名*"
58
 
59
  # @ addquicktag
60
  #: inc/class-settings.php:210
61
  msgid "Title Attribute"
62
+ msgstr "ラベル名"
63
 
64
  # @ addquicktag
65
  #: inc/class-settings.php:211
66
  msgid "Start Tag(s)*"
67
+ msgstr "開始タグ*"
68
 
69
  # @ addquicktag
70
  #: inc/class-settings.php:212
71
  msgid "End Tag(s)"
72
+ msgstr "終了タグ(s)"
73
 
74
  # @ addquicktag
75
  #: inc/class-settings.php:213
76
  msgid "Access Key"
77
+ msgstr "アクセスキー"
78
 
79
  # @ addquicktag
80
  #: inc/class-settings.php:273
81
  msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
82
+ msgstr "クイックタグを追加・編集するには以下の項目を埋めるか変更してください。 * が付いた項目は必須です。タグを削除するには全ての項目を空にしてください。"
83
 
84
  # @ default
85
  #: inc/class-settings.php:275
86
  msgid "Save Changes"
87
+ msgstr "変更を保存"
88
 
89
  # @ addquicktag
90
  #: inc/class-settings.php:310
91
  msgid "Like this plugin?"
92
+ msgstr "このプラグインが気に入りましたか?"
93
 
94
  # @ addquicktag
95
  #: inc/class-settings.php:312
96
  msgid "Here's how you can give back:"
97
+ msgstr "あなたからの支援をお待ちしています:"
98
 
99
  # @ addquicktag
100
  #: inc/class-settings.php:314
101
  msgid "The Plugin on the WordPress plugin repository"
102
+ msgstr "WordPress プラグインリポジトリへ移動"
103
 
104
  # @ addquicktag
105
  #: inc/class-settings.php:314
106
  msgid "Give the plugin a good rating."
107
+ msgstr "評価をお願いします"
108
 
109
  # @ addquicktag
110
  #: inc/class-settings.php:315
111
  msgid "Donate via PayPal"
112
+ msgstr "PayPal 経由で寄付"
113
 
114
  # @ addquicktag
115
  #: inc/class-settings.php:315
116
  msgid "Donate a few euros."
117
+ msgstr "寄付をする"
118
 
119
  # @ addquicktag
120
  #: inc/class-settings.php:316
121
  msgid "Frank Bültge's Amazon Wish List"
122
+ msgstr "Frank Bültge Amazon ウィッシュリスト"
123
 
124
  # @ addquicktag
125
  #: inc/class-settings.php:316
126
  msgid "Get me something from my wish list."
127
+ msgstr "ウィッシュリストからどれかを送ってください"
128
 
129
  # @ addquicktag
130
  #: inc/class-settings.php:335
131
  msgid "About this plugin"
132
+ msgstr "このプラグインについて"
133
 
134
+ # @ addquicktag
135
  #: inc/class-settings.php:338
136
  msgid "Version:"
137
+ msgstr "バージョン:"
138
 
139
  # @ addquicktag
140
  #: inc/class-settings.php:342
141
  msgid "Description:"
142
+ msgstr "説明:"
143
 
144
  # @ addquicktag
145
  #: inc/class-settings.php:214
146
  msgid "Order"
147
+ msgstr "順番"
148
 
149
  # @ addquicktag
150
  #: inc/class-settings.php:215
151
  msgid "Visual"
152
+ msgstr "ビジュアルエディター"
153
 
154
  # @ addquicktag
155
  #. translators: plugin header field 'Description'
156
  #: addquicktag.php:0
157
  msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
158
+ msgstr "HTMLエディターやビジュアルリッチエディターで定型入力に使用できるクイックタグを簡単に追加・管理できます。"
159
 
160
  # @ addquicktag
161
  #. translators: plugin header field 'Version'
166
  # @ addquicktag
167
  #: inc/class-imexport.php:64
168
  msgid "Export"
169
+ msgstr "エクスポート"
170
 
171
  # @ addquicktag
172
  #: inc/class-imexport.php:66
173
  msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
174
+ msgstr "下のボタンを押すとプラグインの設定を保存した XML ファイルをあなたのコンピューターにダウンロードすることができます。"
175
 
176
  # @ addquicktag
177
  #: inc/class-imexport.php:67
178
  msgid "This format, a custom XML, will contain your options from quicktags."
179
+ msgstr "この XML ファイルにはプラグインの設定(クイックタグのリストなど)が保存されています。"
180
 
181
  # @ addquicktag
182
  #: inc/class-imexport.php:68
183
  msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
184
+ msgstr "設定ファイルの保存を行うと、プラグインのインポート機能が使用できます。他の WordPress サイトにこのサイトのクイックタグの設定を取り込むことができます。"
185
 
186
  # @ addquicktag
187
  #: inc/class-imexport.php:72
188
  msgid "Download Export File"
189
+ msgstr "エクスポートファイルのダウンロード"
190
 
191
  # @ addquicktag
192
  #: inc/class-imexport.php:80
193
  msgid "Import"
194
+ msgstr "インポート"
195
 
196
  # @ addquicktag
197
  #: inc/class-imexport.php:82
198
  msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
199
+ msgstr "このプラグインを他のサイトで利用の場合、その設定をインポートできます。インポートするファイルを選択してください。"
200
 
201
  # @ addquicktag
202
  #: inc/class-imexport.php:87
203
  msgid "Upload file and import"
204
+ msgstr "ファイルのアップロード・インポート"
205
 
206
+ # @ addquicktag
207
  #: inc/class-imexport.php:178
208
  msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
209
+ msgstr "権限がないため設定は更新されません。"
210
 
211
  # @ addquicktag
212
  #: inc/class-settings.php:387
213
  msgid "Options saved."
214
+ msgstr "設定は保存されました。"
215
 
languages/addquicktag-lt_LT.mo DELETED
Binary file
languages/addquicktag-lt_LT.po DELETED
@@ -1,217 +0,0 @@
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-SourceCharset: utf-8\n"
14
- "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"
15
- "X-Textdomain-Support: yes\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #@ addquicktag
19
- #. translators: plugin header field 'Name'
20
- #: addquicktag.php:0
21
- msgid "AddQuicktag"
22
- msgstr "AddQuicktag"
23
-
24
- #@ addquicktag
25
- #. translators: plugin header field 'PluginURI'
26
- #: addquicktag.php:0
27
- msgid "http://bueltge.de/wp-addquicktags-de-plugin/120/"
28
- msgstr "http://bueltge.de/wp-addquicktags-de-plugin/120/"
29
-
30
- #@ addquicktag
31
- #. translators: plugin header field 'Author'
32
- #: addquicktag.php:0
33
- msgid "Frank Bültge"
34
- msgstr "Frank Bültge"
35
-
36
- #@ addquicktag
37
- #. translators: plugin header field 'AuthorURI'
38
- #: addquicktag.php:0
39
- msgid "http://bueltge.de"
40
- msgstr "http://bueltge.de"
41
-
42
- #@ default
43
- #@ addquicktag
44
- #: inc/class-settings.php:110
45
- #: inc/class-settings.php:127
46
- #: inc/class-settings.php:145
47
- #: inc/class-settings.php:153
48
- msgid "Settings"
49
- msgstr "Nuostatos"
50
-
51
- #@ addquicktag
52
- #: inc/class-settings.php:178
53
- msgid "Add or delete Quicktag buttons"
54
- msgstr "Pridėti arba ištrinti Sparčiųjų gairių mygtukus"
55
-
56
- #@ addquicktag
57
- #: inc/class-settings.php:209
58
- msgid "Button Label*"
59
- msgstr "Mygtuko Žymė*"
60
-
61
- #@ addquicktag
62
- #: inc/class-settings.php:210
63
- msgid "Title Attribute"
64
- msgstr "Antraštės Požymis"
65
-
66
- #@ addquicktag
67
- #: inc/class-settings.php:211
68
- msgid "Start Tag(s)*"
69
- msgstr "Paleisti Gairę (Gaires)*"
70
-
71
- #@ addquicktag
72
- #: inc/class-settings.php:212
73
- msgid "End Tag(s)"
74
- msgstr "Nutraukti Gairę (Gaires)"
75
-
76
- #@ addquicktag
77
- #: inc/class-settings.php:213
78
- msgid "Access Key"
79
- msgstr "Priėjimo Raktas"
80
-
81
- #@ addquicktag
82
- #: inc/class-settings.php:273
83
- msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
84
- msgstr "Norėdami papildyti ar redaguoti gaires, užpildykite žemiau esančius laukelius. Simboliu * pažymėti laukeliai yra privalomi. Norėdami ištrinti gairę, tiesiog ištuštinkite visus laukelius."
85
-
86
- #@ default
87
- #: inc/class-settings.php:275
88
- msgid "Save Changes"
89
- msgstr "Įrašyti Pakeitimus"
90
-
91
- #@ addquicktag
92
- #: inc/class-settings.php:310
93
- msgid "Like this plugin?"
94
- msgstr "Jums patinka šis papildinys?"
95
-
96
- #@ addquicktag
97
- #: inc/class-settings.php:312
98
- msgid "Here's how you can give back:"
99
- msgstr "Štai kaip galite atsidėkoti:"
100
-
101
- #@ addquicktag
102
- #: inc/class-settings.php:314
103
- msgid "The Plugin on the WordPress plugin repository"
104
- msgstr "Papildinys WordPress papildinių saugykloje"
105
-
106
- #@ addquicktag
107
- #: inc/class-settings.php:314
108
- msgid "Give the plugin a good rating."
109
- msgstr "Įvertinkite šį papildinį aukštu balu."
110
-
111
- #@ addquicktag
112
- #: inc/class-settings.php:315
113
- msgid "Donate via PayPal"
114
- msgstr "Paaukokite per PayPal internetinių atsiskaitimų sistemą"
115
-
116
- #@ addquicktag
117
- #: inc/class-settings.php:315
118
- msgid "Donate a few euros."
119
- msgstr "Paaukokite kelis Eurus."
120
-
121
- #@ addquicktag
122
- #: inc/class-settings.php:316
123
- msgid "Frank Bültge's Amazon Wish List"
124
- msgstr "Frank Bültge's Amazon Pageidavimų Sąrašas"
125
-
126
- #@ addquicktag
127
- #: inc/class-settings.php:316
128
- msgid "Get me something from my wish list."
129
- msgstr "Padovanokite man ką nors iš mano pageidavimų sąrašo."
130
-
131
- #@ addquicktag
132
- #: inc/class-settings.php:335
133
- msgid "About this plugin"
134
- msgstr "Apie šį papildinį"
135
-
136
- #@ addquicktag
137
- #: inc/class-settings.php:338
138
- msgid "Version:"
139
- msgstr "Versija:"
140
-
141
- #@ addquicktag
142
- #: inc/class-settings.php:342
143
- msgid "Description:"
144
- msgstr "Aprašas:"
145
-
146
- #@ addquicktag
147
- #: inc/class-settings.php:214
148
- msgid "Order"
149
- msgstr "Tvarka"
150
-
151
- #@ addquicktag
152
- #: inc/class-settings.php:215
153
- msgid "Visual"
154
- msgstr "Vaizdinis"
155
-
156
- #@ addquicktag
157
- #. translators: plugin header field 'Description'
158
- #: addquicktag.php:0
159
- msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
160
- msgstr "Suteikia Jums galimybę lengvai pridėti individualizuotą sparčiąją gairę į html ir vaizdinį redaktorius."
161
-
162
- #@ addquicktag
163
- #. translators: plugin header field 'Version'
164
- #: addquicktag.php:0
165
- msgid "2.0.0"
166
- msgstr "2.0.0"
167
-
168
- #@ addquicktag
169
- #: inc/class-imexport.php:64
170
- msgid "Export"
171
- msgstr "Eksportuoti"
172
-
173
- #@ addquicktag
174
- #: inc/class-imexport.php:66
175
- msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
176
- msgstr "Kai paspausite mygtuką, esantį žemiau, papildinys sukurs XML rinkmeną, kurią galėsite parsisiųsti į savo kompiuterį."
177
-
178
- #@ addquicktag
179
- #: inc/class-imexport.php:67
180
- msgid "This format, a custom XML, will contain your options from quicktags."
181
- msgstr "Šis, adaptuotas XML formatas, saugos Jūsų sparčiųjų gairių parinktis."
182
-
183
- #@ addquicktag
184
- #: inc/class-imexport.php:68
185
- msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
186
- msgstr "Iškart po to, kai įsirašysite savo parsisiuntimo rinkmeną, galėsite naudoti šio puslapio importavimo funkciją kitame įrenginyje, kuriame įdiegta WordPress sistema."
187
-
188
- #@ addquicktag
189
- #: inc/class-imexport.php:72
190
- msgid "Download Export File"
191
- msgstr "Parsisiųsti Eksportavimo Rinkmeną"
192
-
193
- #@ addquicktag
194
- #: inc/class-imexport.php:80
195
- msgid "Import"
196
- msgstr "Importuoti"
197
-
198
- #@ addquicktag
199
- #: inc/class-imexport.php:82
200
- msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
201
- msgstr "Jeigu turite susikūręs sparčiųjų gairių kituose įrengimuose, papildinys importuos jas į šį tinklapį. Kad galėtumėte pradėti, pasirinkite importavimo rinkmeną."
202
-
203
- #@ addquicktag
204
- #: inc/class-imexport.php:87
205
- msgid "Upload file and import"
206
- msgstr "Nusiųsti rinkmeną ir ją importuoti"
207
-
208
- #@ addquicktag
209
- #: inc/class-imexport.php:178
210
- msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
211
- msgstr "Neatnaujintos reikiamos parinktys - Jūs neturite teisių to daryti!"
212
-
213
- #@ addquicktag
214
- #: inc/class-settings.php:387
215
- msgid "Options saved."
216
- msgstr "Parinktys išsaugotos."
217
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/addquicktag-ru_RU.mo DELETED
Binary file
languages/addquicktag-ru_RU.po DELETED
@@ -1,220 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AddQuicktag-ru\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Flector <rlector@gmail.com>\n"
8
- "Language-Team: WordpressPlugins.ru\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-SourceCharset: utf-8\n"
14
- "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"
15
- "X-Textdomain-Support: yes\n"
16
- "X-Poedit-Language: Russian\n"
17
- "X-Poedit-Country: RUSSIAN FEDERATION\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ addquicktag
22
- #. translators: plugin header field 'Name'
23
- #: addquicktag.php:0
24
- msgid "AddQuicktag"
25
- msgstr "AddQuicktag"
26
-
27
- #@ addquicktag
28
- #. translators: plugin header field 'PluginURI'
29
- #: addquicktag.php:0
30
- msgid "http://bueltge.de/wp-addquicktags-de-plugin/120/"
31
- msgstr "http://bueltge.de/wp-addquicktags-de-plugin/120/"
32
-
33
- #@ addquicktag
34
- #. translators: plugin header field 'Author'
35
- #: addquicktag.php:0
36
- msgid "Frank Bültge"
37
- msgstr "Frank Bültge"
38
-
39
- #@ addquicktag
40
- #. translators: plugin header field 'AuthorURI'
41
- #: addquicktag.php:0
42
- msgid "http://bueltge.de"
43
- msgstr "http://bueltge.de"
44
-
45
- #@ default
46
- #@ addquicktag
47
- #: inc/class-settings.php:110
48
- #: inc/class-settings.php:127
49
- #: inc/class-settings.php:145
50
- #: inc/class-settings.php:153
51
- msgid "Settings"
52
- msgstr "Настройки"
53
-
54
- #@ addquicktag
55
- #: inc/class-settings.php:178
56
- msgid "Add or delete Quicktag buttons"
57
- msgstr "Добавление или удаление кнопок Quicktag"
58
-
59
- #@ addquicktag
60
- #: inc/class-settings.php:209
61
- msgid "Button Label*"
62
- msgstr "Название кнопки*"
63
-
64
- #@ addquicktag
65
- #: inc/class-settings.php:210
66
- msgid "Title Attribute"
67
- msgstr "Заголовок"
68
-
69
- #@ addquicktag
70
- #: inc/class-settings.php:211
71
- msgid "Start Tag(s)*"
72
- msgstr "Начало тега(ов)*"
73
-
74
- #@ addquicktag
75
- #: inc/class-settings.php:212
76
- msgid "End Tag(s)"
77
- msgstr "Конец тега(ов)"
78
-
79
- #@ addquicktag
80
- #: inc/class-settings.php:213
81
- msgid "Access Key"
82
- msgstr "Хоткей"
83
-
84
- #@ addquicktag
85
- #: inc/class-settings.php:273
86
- msgid "Fill in the fields below to add or edit the quicktags. Fields with * are required. To delete a tag simply empty all fields."
87
- msgstr "Заполните поля, чтобы добавить или отредактировать кнопки. Для удаления кнопки удалите все ее поля и сохраните изменения. <br />Поля со звездочкой (*) обязательны для заполнения."
88
-
89
- #@ default
90
- #: inc/class-settings.php:275
91
- msgid "Save Changes"
92
- msgstr "Сохранить настройки"
93
-
94
- #@ addquicktag
95
- #: inc/class-settings.php:310
96
- msgid "Like this plugin?"
97
- msgstr "Понравился плагин?"
98
-
99
- #@ addquicktag
100
- #: inc/class-settings.php:312
101
- msgid "Here's how you can give back:"
102
- msgstr "Способы отблагодарить автора:"
103
-
104
- #@ addquicktag
105
- #: inc/class-settings.php:314
106
- msgid "The Plugin on the WordPress plugin repository"
107
- msgstr "Страница плагина в репозитории WordPress.org"
108
-
109
- #@ addquicktag
110
- #: inc/class-settings.php:314
111
- msgid "Give the plugin a good rating."
112
- msgstr "Поставить плагину хорошую оценку"
113
-
114
- #@ addquicktag
115
- #: inc/class-settings.php:315
116
- msgid "Donate via PayPal"
117
- msgstr "Сделать пожертвование через PayPal"
118
-
119
- #@ addquicktag
120
- #: inc/class-settings.php:315
121
- msgid "Donate a few euros."
122
- msgstr "Пожертвовать пару евро"
123
-
124
- #@ addquicktag
125
- #: inc/class-settings.php:316
126
- msgid "Frank Bültge's Amazon Wish List"
127
- msgstr "Список пожеланий автора на Amazon'е"
128
-
129
- #@ addquicktag
130
- #: inc/class-settings.php:316
131
- msgid "Get me something from my wish list."
132
- msgstr "Подарить автору что-нибудь из этого списка"
133
-
134
- #@ addquicktag
135
- #: inc/class-settings.php:335
136
- msgid "About this plugin"
137
- msgstr "О плагине"
138
-
139
- #@ addquicktag
140
- #: inc/class-settings.php:338
141
- msgid "Version:"
142
- msgstr "Версия:"
143
-
144
- #@ addquicktag
145
- #: inc/class-settings.php:342
146
- msgid "Description:"
147
- msgstr "Описание:"
148
-
149
- #@ addquicktag
150
- #: inc/class-settings.php:214
151
- msgid "Order"
152
- msgstr "Порядок"
153
-
154
- #@ addquicktag
155
- #: inc/class-settings.php:215
156
- msgid "Visual"
157
- msgstr "Визуально"
158
-
159
- #@ addquicktag
160
- #. translators: plugin header field 'Description'
161
- #: addquicktag.php:0
162
- msgid "Allows you to easily add custom Quicktags to the html- and visual-editor."
163
- msgstr "Плагин позволяет легко добавить свои кнопки в html и визуальный редактор WordPress."
164
-
165
- #@ addquicktag
166
- #. translators: plugin header field 'Version'
167
- #: addquicktag.php:0
168
- msgid "2.0.0"
169
- msgstr "2.0.0"
170
-
171
- #@ addquicktag
172
- #: inc/class-imexport.php:64
173
- msgid "Export"
174
- msgstr "Экспорт"
175
-
176
- #@ addquicktag
177
- #: inc/class-imexport.php:66
178
- msgid "When you click the button below the plugin will create an XML file for you to save to your computer."
179
- msgstr "При клике на кнопку плагин создаст XML-файл, который вы можете сохранить на своем компьютере."
180
-
181
- #@ addquicktag
182
- #: inc/class-imexport.php:67
183
- msgid "This format, a custom XML, will contain your options from quicktags."
184
- msgstr "Этот XML-файл будет содержать все настройки плагина."
185
-
186
- #@ addquicktag
187
- #: inc/class-imexport.php:68
188
- msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site."
189
- msgstr "С помощью данного файла вы сможете импортировать настройки этого плагина в другом блоге."
190
-
191
- #@ addquicktag
192
- #: inc/class-imexport.php:72
193
- msgid "Download Export File"
194
- msgstr "Скачать файл экспорта"
195
-
196
- #@ addquicktag
197
- #: inc/class-imexport.php:80
198
- msgid "Import"
199
- msgstr "Импорт"
200
-
201
- #@ addquicktag
202
- #: inc/class-imexport.php:82
203
- msgid "If you have quicktags from other installs, the plugin can import those into this site. To get started, choose a file to import."
204
- msgstr "Если у вас есть файл с настройками плагина вы можете их импортировать. Для этого выберите файл и нажмите кнопку \"Загрузить и импортировать\"."
205
-
206
- #@ addquicktag
207
- #: inc/class-imexport.php:87
208
- msgid "Upload file and import"
209
- msgstr "Загрузить и импортировать"
210
-
211
- #@ addquicktag
212
- #: inc/class-imexport.php:178
213
- msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
214
- msgstr "Настройки не сохранены - у вас нет прав доступа для этого!"
215
-
216
- #@ addquicktag
217
- #: inc/class-settings.php:387
218
- msgid "Options saved."
219
- msgstr "Настройки сохранены."
220
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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.0
6
- Tested up to: 3.4-beta3
7
- Stable tag: 2.0.3
8
 
9
  This plugin make it easy, Quicktags add to the html - and visual-editor.
10
 
@@ -65,10 +65,9 @@ If you will use this plugin with an older version of WordPress, please use an ol
65
  = Acknowledgements =
66
  **Thanks to**
67
 
68
- * German translation by [myself](http://bueltge.de) ;)
69
- * French translation by [Jean-Michel MEYER (dit Li-An)](http://www.li-an.fr/blog)
70
- * Russion translation by Flector
71
- * Lithuanian translation files by [Vincent G](http://www.host1plus.com)
72
 
73
  = Licence =
74
  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 ;)
@@ -78,6 +77,10 @@ The plugin comes with various translations, please refer to the [WordPress Codex
78
 
79
 
80
  == Changelog ==
 
 
 
 
81
  = 2.0.3 =
82
  * Add Filter 'addquicktag_post_types' for use the plugin also on custom post types
83
  * Update readme and add an example for this filter; also an Gist for use faster
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.0
6
+ Tested up to: 3.3
7
+ Stable tag: 2.0.4
8
 
9
  This plugin make it easy, Quicktags add to the html - and visual-editor.
10
 
65
  = Acknowledgements =
66
  **Thanks to**
67
 
68
+ * German Translation by [myself](http://bueltge.de) ;)
69
+ * French translation by [Jean-Michel MEYER](http://www.li-an.fr/blog)
70
+ * Japanese translation by [Yuuichi](http://www.u-1.net/2011/12/29/2498/)
 
71
 
72
  = Licence =
73
  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 ;)
77
 
78
 
79
  == Changelog ==
80
+ = 2.0.4 =
81
+ * Add fix for use older settings from previous versions
82
+ * Unicode fix for upload XML file
83
+
84
  = 2.0.3 =
85
  * Add Filter 'addquicktag_post_types' for use the plugin also on custom post types
86
  * Update readme and add an example for this filter; also an Gist for use faster