Version Description
- Adding language support for Russian.
- Adding language support for Serbian. Thanks to Andrijana Nikolic [http://webhostinggeeks.com/].
- Adding language support for Catalan. Thanks to Marc Queralt i Bassa [http://www.demomentsomtres.com/].
- Change the plugin text domain from zci to categories-images to match the plugin slug as requested by Wordpress.
Download this release
Release Info
Developer | elzahlan |
Plugin | Categories Images |
Version | 2.5.1 |
Comparing to | |
See all releases |
Code changes from version 2.5 to 2.5.1
- categories-images.php +19 -17
- languages/{zci-ar.mo → categories-images-ar.mo} +0 -0
- languages/{zci-ar.po → categories-images-ar.po} +16 -14
- languages/categories-images-ca.mo +0 -0
- languages/categories-images-ca.po +63 -0
- languages/{zci-es_ES.mo → categories-images-es_ES.mo} +0 -0
- languages/{zci-es_ES.po → categories-images-es_ES.po} +0 -0
- languages/{zci-fr_FR.mo → categories-images-fr_FR.mo} +0 -0
- languages/{zci-fr_FR.po → categories-images-fr_FR.po} +10 -19
- languages/categories-images-ru_RU.mo +0 -0
- languages/categories-images-ru_RU.po +58 -0
- languages/categories-images-sr_RS.mo +0 -0
- languages/categories-images-sr_RS.po +57 -0
- languages/{zci-uk_UA.mo → categories-images-uk_UA.mo} +0 -0
- languages/{zci-uk_UA.po → categories-images-uk_UA.po} +0 -0
- languages/{zci-zh_CN.mo → categories-images-zh_CN.mo} +0 -0
- languages/{zci-zh_CN.po → categories-images-zh_CN.po} +0 -0
- readme.txt +8 -2
categories-images.php
CHANGED
@@ -4,8 +4,10 @@
|
|
4 |
* Plugin URI: http://zahlan.net/blog/2012/06/categories-images/
|
5 |
* Description: Categories Images Plugin allow you to add an image to category or any custom term.
|
6 |
* Author: Muhammad Said El Zahlan
|
7 |
-
* Version: 2.5
|
8 |
* Author URI: http://zahlan.net/
|
|
|
|
|
9 |
*/
|
10 |
?>
|
11 |
<?php
|
@@ -15,7 +17,7 @@ if (!defined('Z_PLUGIN_URL'))
|
|
15 |
define('Z_IMAGE_PLACEHOLDER', Z_PLUGIN_URL."/images/placeholder.png");
|
16 |
|
17 |
// l10n
|
18 |
-
load_plugin_textdomain('
|
19 |
|
20 |
add_action('admin_init', 'z_init');
|
21 |
function z_init() {
|
@@ -56,10 +58,10 @@ function z_add_texonomy_field() {
|
|
56 |
}
|
57 |
|
58 |
echo '<div class="form-field">
|
59 |
-
<label for="taxonomy_image">' . __('Image', '
|
60 |
<input type="text" name="taxonomy_image" id="taxonomy_image" value="" />
|
61 |
<br/>
|
62 |
-
<button class="z_upload_image_button button">' . __('Upload/Add image', '
|
63 |
</div>'.z_script();
|
64 |
}
|
65 |
|
@@ -77,10 +79,10 @@ function z_edit_texonomy_field($taxonomy) {
|
|
77 |
else
|
78 |
$image_text = z_taxonomy_image_url( $taxonomy->term_id, NULL, TRUE );
|
79 |
echo '<tr class="form-field">
|
80 |
-
<th scope="row" valign="top"><label for="taxonomy_image">' . __('Image', '
|
81 |
<td><img class="taxonomy-image" src="' . z_taxonomy_image_url( $taxonomy->term_id, NULL, TRUE ) . '"/><br/><input type="text" name="taxonomy_image" id="taxonomy_image" value="'.$image_text.'" /><br />
|
82 |
-
<button class="z_upload_image_button button">' . __('Upload/Add image', '
|
83 |
-
<button class="z_remove_image_button button">' . __('Remove image', '
|
84 |
</td>
|
85 |
</tr>'.z_script();
|
86 |
}
|
@@ -206,8 +208,8 @@ function z_quick_edit_custom_box($column_name, $screen, $name) {
|
|
206 |
<span class="title"><img src="" alt="Thumbnail"/></span>
|
207 |
<span class="input-text-wrap"><input type="text" name="taxonomy_image" value="" class="tax_list" /></span>
|
208 |
<span class="input-text-wrap">
|
209 |
-
<button class="z_upload_image_button button">' . __('Upload/Add image', '
|
210 |
-
<button class="z_remove_image_button button">' . __('Remove image', '
|
211 |
</span>
|
212 |
</label>
|
213 |
</div>
|
@@ -224,7 +226,7 @@ function z_quick_edit_custom_box($column_name, $screen, $name) {
|
|
224 |
function z_taxonomy_columns( $columns ) {
|
225 |
$new_columns = array();
|
226 |
$new_columns['cb'] = $columns['cb'];
|
227 |
-
$new_columns['thumb'] = __('Image', '
|
228 |
|
229 |
unset( $columns['cb'] );
|
230 |
|
@@ -242,7 +244,7 @@ function z_taxonomy_columns( $columns ) {
|
|
242 |
*/
|
243 |
function z_taxonomy_column( $columns, $column, $id ) {
|
244 |
if ( $column == 'thumb' )
|
245 |
-
$columns = '<span><img src="' . z_taxonomy_image_url($id, NULL, TRUE) . '" alt="' . __('Thumbnail', '
|
246 |
|
247 |
return $columns;
|
248 |
}
|
@@ -262,20 +264,20 @@ if ( strpos( $_SERVER['SCRIPT_NAME'], 'edit-tags.php' ) > 0 ) {
|
|
262 |
// New menu submenu for plugin options in Settings menu
|
263 |
add_action('admin_menu', 'z_options_menu');
|
264 |
function z_options_menu() {
|
265 |
-
add_options_page(__('Categories Images settings', '
|
266 |
add_action('admin_init', 'z_register_settings');
|
267 |
}
|
268 |
|
269 |
// Register plugin settings
|
270 |
function z_register_settings() {
|
271 |
register_setting('zci_options', 'zci_options', 'z_options_validate');
|
272 |
-
add_settings_section('zci_settings', __('Categories Images settings', '
|
273 |
-
add_settings_field('z_excluded_taxonomies', __('Excluded Taxonomies', '
|
274 |
}
|
275 |
|
276 |
// Settings section description
|
277 |
function z_section_text() {
|
278 |
-
echo '<p>'.__('Please select the taxonomies you want to exclude it from Categories Images plugin', '
|
279 |
}
|
280 |
|
281 |
// Excluded taxonomies checkboxs
|
@@ -295,12 +297,12 @@ function z_options_validate($input) {
|
|
295 |
// Plugin option page
|
296 |
function zci_options() {
|
297 |
if (!current_user_can('manage_options'))
|
298 |
-
wp_die(__( 'You do not have sufficient permissions to access this page.', '
|
299 |
$options = get_option('zci_options');
|
300 |
?>
|
301 |
<div class="wrap">
|
302 |
<?php screen_icon(); ?>
|
303 |
-
<h2><?php _e('Categories Images', '
|
304 |
<form method="post" action="options.php">
|
305 |
<?php settings_fields('zci_options'); ?>
|
306 |
<?php do_settings_sections('zci-options'); ?>
|
4 |
* Plugin URI: http://zahlan.net/blog/2012/06/categories-images/
|
5 |
* Description: Categories Images Plugin allow you to add an image to category or any custom term.
|
6 |
* Author: Muhammad Said El Zahlan
|
7 |
+
* Version: 2.5.1
|
8 |
* Author URI: http://zahlan.net/
|
9 |
+
* Domain Path: /languages
|
10 |
+
* Text Domain: categories-images
|
11 |
*/
|
12 |
?>
|
13 |
<?php
|
17 |
define('Z_IMAGE_PLACEHOLDER', Z_PLUGIN_URL."/images/placeholder.png");
|
18 |
|
19 |
// l10n
|
20 |
+
load_plugin_textdomain('categories-images', FALSE, 'categories-images/languages');
|
21 |
|
22 |
add_action('admin_init', 'z_init');
|
23 |
function z_init() {
|
58 |
}
|
59 |
|
60 |
echo '<div class="form-field">
|
61 |
+
<label for="taxonomy_image">' . __('Image', 'categories-images') . '</label>
|
62 |
<input type="text" name="taxonomy_image" id="taxonomy_image" value="" />
|
63 |
<br/>
|
64 |
+
<button class="z_upload_image_button button">' . __('Upload/Add image', 'categories-images') . '</button>
|
65 |
</div>'.z_script();
|
66 |
}
|
67 |
|
79 |
else
|
80 |
$image_text = z_taxonomy_image_url( $taxonomy->term_id, NULL, TRUE );
|
81 |
echo '<tr class="form-field">
|
82 |
+
<th scope="row" valign="top"><label for="taxonomy_image">' . __('Image', 'categories-images') . '</label></th>
|
83 |
<td><img class="taxonomy-image" src="' . z_taxonomy_image_url( $taxonomy->term_id, NULL, TRUE ) . '"/><br/><input type="text" name="taxonomy_image" id="taxonomy_image" value="'.$image_text.'" /><br />
|
84 |
+
<button class="z_upload_image_button button">' . __('Upload/Add image', 'categories-images') . '</button>
|
85 |
+
<button class="z_remove_image_button button">' . __('Remove image', 'categories-images') . '</button>
|
86 |
</td>
|
87 |
</tr>'.z_script();
|
88 |
}
|
208 |
<span class="title"><img src="" alt="Thumbnail"/></span>
|
209 |
<span class="input-text-wrap"><input type="text" name="taxonomy_image" value="" class="tax_list" /></span>
|
210 |
<span class="input-text-wrap">
|
211 |
+
<button class="z_upload_image_button button">' . __('Upload/Add image', 'categories-images') . '</button>
|
212 |
+
<button class="z_remove_image_button button">' . __('Remove image', 'categories-images') . '</button>
|
213 |
</span>
|
214 |
</label>
|
215 |
</div>
|
226 |
function z_taxonomy_columns( $columns ) {
|
227 |
$new_columns = array();
|
228 |
$new_columns['cb'] = $columns['cb'];
|
229 |
+
$new_columns['thumb'] = __('Image', 'categories-images');
|
230 |
|
231 |
unset( $columns['cb'] );
|
232 |
|
244 |
*/
|
245 |
function z_taxonomy_column( $columns, $column, $id ) {
|
246 |
if ( $column == 'thumb' )
|
247 |
+
$columns = '<span><img src="' . z_taxonomy_image_url($id, NULL, TRUE) . '" alt="' . __('Thumbnail', 'categories-images') . '" class="wp-post-image" /></span>';
|
248 |
|
249 |
return $columns;
|
250 |
}
|
264 |
// New menu submenu for plugin options in Settings menu
|
265 |
add_action('admin_menu', 'z_options_menu');
|
266 |
function z_options_menu() {
|
267 |
+
add_options_page(__('Categories Images settings', 'categories-images'), __('Categories Images', 'categories-images'), 'manage_options', 'zci-options', 'zci_options');
|
268 |
add_action('admin_init', 'z_register_settings');
|
269 |
}
|
270 |
|
271 |
// Register plugin settings
|
272 |
function z_register_settings() {
|
273 |
register_setting('zci_options', 'zci_options', 'z_options_validate');
|
274 |
+
add_settings_section('zci_settings', __('Categories Images settings', 'categories-images'), 'z_section_text', 'zci-options');
|
275 |
+
add_settings_field('z_excluded_taxonomies', __('Excluded Taxonomies', 'categories-images'), 'z_excluded_taxonomies', 'zci-options', 'zci_settings');
|
276 |
}
|
277 |
|
278 |
// Settings section description
|
279 |
function z_section_text() {
|
280 |
+
echo '<p>'.__('Please select the taxonomies you want to exclude it from Categories Images plugin', 'categories-images').'</p>';
|
281 |
}
|
282 |
|
283 |
// Excluded taxonomies checkboxs
|
297 |
// Plugin option page
|
298 |
function zci_options() {
|
299 |
if (!current_user_can('manage_options'))
|
300 |
+
wp_die(__( 'You do not have sufficient permissions to access this page.', 'categories-images'));
|
301 |
$options = get_option('zci_options');
|
302 |
?>
|
303 |
<div class="wrap">
|
304 |
<?php screen_icon(); ?>
|
305 |
+
<h2><?php _e('Categories Images', 'categories-images'); ?></h2>
|
306 |
<form method="post" action="options.php">
|
307 |
<?php settings_fields('zci_options'); ?>
|
308 |
<?php do_settings_sections('zci-options'); ?>
|
languages/{zci-ar.mo → categories-images-ar.mo}
RENAMED
Binary file
|
languages/{zci-ar.po → categories-images-ar.po}
RENAMED
@@ -1,49 +1,51 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Categories Images\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator:
|
7 |
-
"Language-Team: Muhammad Zahlan <elzahlan@gmail.com>\n"
|
8 |
"Language: ar\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: _;__;_e\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: categories-images.php:
|
|
|
19 |
msgid "Image"
|
20 |
msgstr "صورة"
|
21 |
|
22 |
-
#: categories-images.php:
|
|
|
23 |
msgid "Upload/Add image"
|
24 |
msgstr "رفع/اضافة صورة"
|
25 |
|
26 |
-
#: categories-images.php:
|
27 |
msgid "Remove image"
|
28 |
msgstr "حذف الصورة"
|
29 |
|
30 |
-
#: categories-images.php:
|
31 |
msgid "Thumbnail"
|
32 |
msgstr "صورة مصغرة"
|
33 |
|
34 |
-
#: categories-images.php:
|
35 |
msgid "Categories Images settings"
|
36 |
msgstr "إعدادات صور التصنيفات"
|
37 |
|
38 |
-
#: categories-images.php:
|
39 |
msgid "Categories Images"
|
40 |
msgstr "صور التصنيفات"
|
41 |
|
42 |
-
#: categories-images.php:
|
43 |
msgid "Excluded Taxonomies"
|
44 |
msgstr "التصنيفات المستبعدة"
|
45 |
|
46 |
-
#: categories-images.php:
|
47 |
msgid ""
|
48 |
"Please select the taxonomies you want to exclude it from Categories Images "
|
49 |
"plugin"
|
@@ -51,6 +53,6 @@ msgstr ""
|
|
51 |
"من فضلك قم بإختيار نوع التصنيفات التي تريد استبعادها من الإضافة ( التصنيفات "
|
52 |
"التي لن يتم استخدام صور فيها )"
|
53 |
|
54 |
-
#: categories-images.php:
|
55 |
msgid "You do not have sufficient permissions to access this page."
|
56 |
msgstr "لا توجد لديك صلاحيات كافية لعرض هذه الصفحة."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Categories Images\n"
|
4 |
+
"POT-Creation-Date: 2015-09-29 01:47+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-09-29 01:48+0200\n"
|
6 |
+
"Last-Translator: Munamamad El Zahlan <zahlan@theplanet.com.eg>\n"
|
7 |
+
"Language-Team: Muhammad Said El Zahlan <elzahlan@gmail.com>\n"
|
8 |
"Language: ar\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.5\n"
|
13 |
"X-Poedit-KeywordsList: _;__;_e\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: categories-images.php:61 categories-images.php:82
|
19 |
+
#: categories-images.php:229
|
20 |
msgid "Image"
|
21 |
msgstr "صورة"
|
22 |
|
23 |
+
#: categories-images.php:64 categories-images.php:84
|
24 |
+
#: categories-images.php:211
|
25 |
msgid "Upload/Add image"
|
26 |
msgstr "رفع/اضافة صورة"
|
27 |
|
28 |
+
#: categories-images.php:85 categories-images.php:212
|
29 |
msgid "Remove image"
|
30 |
msgstr "حذف الصورة"
|
31 |
|
32 |
+
#: categories-images.php:247
|
33 |
msgid "Thumbnail"
|
34 |
msgstr "صورة مصغرة"
|
35 |
|
36 |
+
#: categories-images.php:267 categories-images.php:274
|
37 |
msgid "Categories Images settings"
|
38 |
msgstr "إعدادات صور التصنيفات"
|
39 |
|
40 |
+
#: categories-images.php:267 categories-images.php:305
|
41 |
msgid "Categories Images"
|
42 |
msgstr "صور التصنيفات"
|
43 |
|
44 |
+
#: categories-images.php:275
|
45 |
msgid "Excluded Taxonomies"
|
46 |
msgstr "التصنيفات المستبعدة"
|
47 |
|
48 |
+
#: categories-images.php:280
|
49 |
msgid ""
|
50 |
"Please select the taxonomies you want to exclude it from Categories Images "
|
51 |
"plugin"
|
53 |
"من فضلك قم بإختيار نوع التصنيفات التي تريد استبعادها من الإضافة ( التصنيفات "
|
54 |
"التي لن يتم استخدام صور فيها )"
|
55 |
|
56 |
+
#: categories-images.php:300
|
57 |
msgid "You do not have sufficient permissions to access this page."
|
58 |
msgstr "لا توجد لديك صلاحيات كافية لعرض هذه الصفحة."
|
languages/categories-images-ca.mo
ADDED
Binary file
|
languages/categories-images-ca.po
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Categories Images\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: Wed Jun 10 2015 19:06:10 GMT+0200 (CEST)\n"
|
6 |
+
"PO-Revision-Date: Wed Jun 10 2015 19:07:54 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: dms3 <dms3@demomentsomtres.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: Catalan\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Loco-Target-Locale: ca_ES\n"
|
23 |
+
"X-Generator: Loco - https://localise.biz/"
|
24 |
+
|
25 |
+
#: ../categories-images.php:59 ../categories-images.php:80 ../categories-images.
|
26 |
+
#: php:227
|
27 |
+
msgid "Image"
|
28 |
+
msgstr "Imatge"
|
29 |
+
|
30 |
+
#: ../categories-images.php:62 ../categories-images.php:82 ../categories-images.
|
31 |
+
#: php:209
|
32 |
+
msgid "Upload/Add image"
|
33 |
+
msgstr "Puja/Afegeix imatge"
|
34 |
+
|
35 |
+
#: ../categories-images.php:83 ../categories-images.php:210
|
36 |
+
msgid "Remove image"
|
37 |
+
msgstr "Elimina la imatge"
|
38 |
+
|
39 |
+
#: ../categories-images.php:245
|
40 |
+
msgid "Thumbnail"
|
41 |
+
msgstr "Miniatura"
|
42 |
+
|
43 |
+
#: ../categories-images.php:265 ../categories-images.php:272
|
44 |
+
msgid "Categories Images settings"
|
45 |
+
msgstr "Configuració d'Imatges de Categoria"
|
46 |
+
|
47 |
+
#: ../categories-images.php:265 ../categories-images.php:303
|
48 |
+
msgid "Categories Images"
|
49 |
+
msgstr "Imatges de Categoria"
|
50 |
+
|
51 |
+
#: ../categories-images.php:273
|
52 |
+
msgid "Excluded Taxonomies"
|
53 |
+
msgstr "Taxonomies excloses"
|
54 |
+
|
55 |
+
#: ../categories-images.php:278
|
56 |
+
msgid ""
|
57 |
+
"Please select the taxonomies you want to exclude it from Categories Images "
|
58 |
+
"plugin"
|
59 |
+
msgstr "Escull les taxonomies que vulguis excloure d'aquesta extensió"
|
60 |
+
|
61 |
+
#: ../categories-images.php:298
|
62 |
+
msgid "You do not have sufficient permissions to access this page."
|
63 |
+
msgstr "No tens permís per accedir a aquesta pàgina"
|
languages/{zci-es_ES.mo → categories-images-es_ES.mo}
RENAMED
File without changes
|
languages/{zci-es_ES.po → categories-images-es_ES.po}
RENAMED
File without changes
|
languages/{zci-fr_FR.mo → categories-images-fr_FR.mo}
RENAMED
Binary file
|
languages/{zci-fr_FR.po → categories-images-fr_FR.po}
RENAMED
@@ -2,35 +2,29 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Categories Images\n"
|
4 |
"POT-Creation-Date: 2013-06-14 04:42+0200\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator:
|
7 |
"Language-Team: Marc Frèrebeau <marc.frerebeau@agama.fr>\n"
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: _;__;_e\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"
|
17 |
-
"X-Poedit-Country: FRANCE\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: categories-images.php:59
|
21 |
-
#: categories-images.php:80
|
22 |
-
#: categories-images.php:207
|
23 |
msgid "Image"
|
24 |
msgstr "Image"
|
25 |
|
26 |
-
#: categories-images.php:62
|
27 |
-
#: categories-images.php:82
|
28 |
-
#: categories-images.php:189
|
29 |
msgid "Upload/Add image"
|
30 |
msgstr "Charger / Ajouter une image"
|
31 |
|
32 |
-
#: categories-images.php:83
|
33 |
-
#: categories-images.php:190
|
34 |
msgid "Remove image"
|
35 |
msgstr "Supprimer l'image"
|
36 |
|
@@ -38,13 +32,11 @@ msgstr "Supprimer l'image"
|
|
38 |
msgid "Thumbnail"
|
39 |
msgstr "Vignette"
|
40 |
|
41 |
-
#: categories-images.php:245
|
42 |
-
#: categories-images.php:252
|
43 |
msgid "Categories Images settings"
|
44 |
msgstr "Paramétrage des images de catégories"
|
45 |
|
46 |
-
#: categories-images.php:245
|
47 |
-
#: categories-images.php:283
|
48 |
msgid "Categories Images"
|
49 |
msgstr "Images de catégories"
|
50 |
|
@@ -59,4 +51,3 @@ msgstr "Sélectionnez les taxonomies qui ne doivent pas être modifiées par l'e
|
|
59 |
#: categories-images.php:278
|
60 |
msgid "You do not have sufficient permissions to access this page."
|
61 |
msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page."
|
62 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Categories Images\n"
|
4 |
"POT-Creation-Date: 2013-06-14 04:42+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-09-29 01:46+0200\n"
|
6 |
+
"Last-Translator: Munamamad El Zahlan <zahlan@theplanet.com.eg>\n"
|
7 |
"Language-Team: Marc Frèrebeau <marc.frerebeau@agama.fr>\n"
|
8 |
+
"Language: fr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.5\n"
|
13 |
"X-Poedit-KeywordsList: _;__;_e\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: categories-images.php:59 categories-images.php:80 categories-images.php:207
|
|
|
|
|
20 |
msgid "Image"
|
21 |
msgstr "Image"
|
22 |
|
23 |
+
#: categories-images.php:62 categories-images.php:82 categories-images.php:189
|
|
|
|
|
24 |
msgid "Upload/Add image"
|
25 |
msgstr "Charger / Ajouter une image"
|
26 |
|
27 |
+
#: categories-images.php:83 categories-images.php:190
|
|
|
28 |
msgid "Remove image"
|
29 |
msgstr "Supprimer l'image"
|
30 |
|
32 |
msgid "Thumbnail"
|
33 |
msgstr "Vignette"
|
34 |
|
35 |
+
#: categories-images.php:245 categories-images.php:252
|
|
|
36 |
msgid "Categories Images settings"
|
37 |
msgstr "Paramétrage des images de catégories"
|
38 |
|
39 |
+
#: categories-images.php:245 categories-images.php:283
|
|
|
40 |
msgid "Categories Images"
|
41 |
msgstr "Images de catégories"
|
42 |
|
51 |
#: categories-images.php:278
|
52 |
msgid "You do not have sufficient permissions to access this page."
|
53 |
msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page."
|
|
languages/categories-images-ru_RU.mo
ADDED
Binary file
|
languages/categories-images-ru_RU.po
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Categories Images\n"
|
4 |
+
"POT-Creation-Date: 2013-06-14 04:42+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-09-29 02:45+0200\n"
|
6 |
+
"Last-Translator: Munamamad El Zahlan <zahlan@theplanet.com.eg>\n"
|
7 |
+
"Language-Team: Muhammad Said El Zahlan <elzahlan@gmail.com>\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.7.5\n"
|
12 |
+
"X-Poedit-KeywordsList: _;__;_e\n"
|
13 |
+
"X-Poedit-Basepath: ../\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
+
"Language: ru_RU\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: categories-images.php:59 categories-images.php:80
|
21 |
+
#: categories-images.php:207
|
22 |
+
msgid "Image"
|
23 |
+
msgstr "Изображение"
|
24 |
+
|
25 |
+
#: categories-images.php:62 categories-images.php:82
|
26 |
+
#: categories-images.php:189
|
27 |
+
msgid "Upload/Add image"
|
28 |
+
msgstr "Загрузить/добавить изображение"
|
29 |
+
|
30 |
+
#: categories-images.php:83 categories-images.php:190
|
31 |
+
msgid "Remove image"
|
32 |
+
msgstr "Убрать изображение"
|
33 |
+
|
34 |
+
#: categories-images.php:225
|
35 |
+
msgid "Thumbnail"
|
36 |
+
msgstr "«Ноготок»"
|
37 |
+
|
38 |
+
#: categories-images.php:245 categories-images.php:252
|
39 |
+
msgid "Categories Images settings"
|
40 |
+
msgstr "Настройки плагина"
|
41 |
+
|
42 |
+
#: categories-images.php:245 categories-images.php:283
|
43 |
+
msgid "Categories Images"
|
44 |
+
msgstr "Изображения таксономий"
|
45 |
+
|
46 |
+
#: categories-images.php:253
|
47 |
+
msgid "Excluded Taxonomies"
|
48 |
+
msgstr "Исключённые таксономии"
|
49 |
+
|
50 |
+
#: categories-images.php:258
|
51 |
+
msgid ""
|
52 |
+
"Please select the taxonomies you want to exclude it from Categories Images "
|
53 |
+
"plugin"
|
54 |
+
msgstr "Выберите таксономии которые не должны обслуживаться плагином"
|
55 |
+
|
56 |
+
#: categories-images.php:278
|
57 |
+
msgid "You do not have sufficient permissions to access this page."
|
58 |
+
msgstr "У вас не хватает прав для доступа к данной странице."
|
languages/categories-images-sr_RS.mo
ADDED
Binary file
|
languages/categories-images-sr_RS.po
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Categories Images\n"
|
4 |
+
"POT-Creation-Date: 2013-06-14 04:42+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-04-14 14:58+0100\n"
|
6 |
+
"Last-Translator: Muhammad Zahlan <elzahlan@gmail.com>\n"
|
7 |
+
"Language-Team: Muhammad Zahlan <elzahlan@gmail.com>\n"
|
8 |
+
"Language: ar\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
+
"X-Poedit-KeywordsList: _;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: categories-images.php:59 categories-images.php:80
|
19 |
+
#: categories-images.php:207
|
20 |
+
msgid "Image"
|
21 |
+
msgstr "Slika"
|
22 |
+
|
23 |
+
#: categories-images.php:62 categories-images.php:82
|
24 |
+
#: categories-images.php:189
|
25 |
+
msgid "Upload/Add image"
|
26 |
+
msgstr "Otpremi/Dodaj sliku"
|
27 |
+
|
28 |
+
#: categories-images.php:83 categories-images.php:190
|
29 |
+
msgid "Remove image"
|
30 |
+
msgstr "Ukloni sliku"
|
31 |
+
|
32 |
+
#: categories-images.php:225
|
33 |
+
msgid "Thumbnail"
|
34 |
+
msgstr "Sličica"
|
35 |
+
|
36 |
+
#: categories-images.php:245 categories-images.php:252
|
37 |
+
msgid "Categories Images settings"
|
38 |
+
msgstr "Categories Images Podešavanja"
|
39 |
+
|
40 |
+
#: categories-images.php:245 categories-images.php:283
|
41 |
+
msgid "Categories Images"
|
42 |
+
msgstr "Categories Images"
|
43 |
+
|
44 |
+
#: categories-images.php:253
|
45 |
+
msgid "Excluded Taxonomies"
|
46 |
+
msgstr "Izuzete taksonomije"
|
47 |
+
|
48 |
+
#: categories-images.php:258
|
49 |
+
msgid ""
|
50 |
+
"Please select the taxonomies you want to exclude it from Categories Images "
|
51 |
+
"plugin"
|
52 |
+
msgstr ""
|
53 |
+
"Odaberite taksonomije koje želite da izuzmete iz Categories Images plugin-a"
|
54 |
+
|
55 |
+
#: categories-images.php:278
|
56 |
+
msgid "You do not have sufficient permissions to access this page."
|
57 |
+
msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici."
|
languages/{zci-uk_UA.mo → categories-images-uk_UA.mo}
RENAMED
File without changes
|
languages/{zci-uk_UA.po → categories-images-uk_UA.po}
RENAMED
File without changes
|
languages/{zci-zh_CN.mo → categories-images-zh_CN.mo}
RENAMED
File without changes
|
languages/{zci-zh_CN.po → categories-images-zh_CN.po}
RENAMED
File without changes
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: elzahlan
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=G8LC4VSYKYSGA
|
4 |
Tags: Category Image, Category Images, Categories Images, taxonomy image, taxonomy images, taxonomies images, category icon, categories icons, category logo, categories logos, admin, wp-admin, category image plugin, categories images plugin, category featured image, categories featured images, feature image for category
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 4.3
|
7 |
-
Stable tag: 2.5
|
8 |
|
9 |
The Categories Images Plugin allow you to add image with category or taxonomy.
|
10 |
|
@@ -57,6 +57,12 @@ Please check the documentation page:
|
|
57 |
|
58 |
== Changelog ==
|
59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
= 2.5 =
|
61 |
* Adding language support for Ukrainian. Thanks to Michael Yunat [http://getvoip.com].
|
62 |
* Adding new function z_taxonomy_image() to display category or taxonomy image directly with support for size, alt and other attributes, for and how to use it please check the documentations.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=G8LC4VSYKYSGA
|
4 |
Tags: Category Image, Category Images, Categories Images, taxonomy image, taxonomy images, taxonomies images, category icon, categories icons, category logo, categories logos, admin, wp-admin, category image plugin, categories images plugin, category featured image, categories featured images, feature image for category
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 4.3.1
|
7 |
+
Stable tag: 2.5.1
|
8 |
|
9 |
The Categories Images Plugin allow you to add image with category or taxonomy.
|
10 |
|
57 |
|
58 |
== Changelog ==
|
59 |
|
60 |
+
= 2.5.1 =
|
61 |
+
* Adding language support for Russian.
|
62 |
+
* Adding language support for Serbian. Thanks to Andrijana Nikolic [http://webhostinggeeks.com/].
|
63 |
+
* Adding language support for Catalan. Thanks to Marc Queralt i Bassa [http://www.demomentsomtres.com/].
|
64 |
+
* Change the plugin text domain from zci to categories-images to match the plugin slug as requested by Wordpress.
|
65 |
+
|
66 |
= 2.5 =
|
67 |
* Adding language support for Ukrainian. Thanks to Michael Yunat [http://getvoip.com].
|
68 |
* Adding new function z_taxonomy_image() to display category or taxonomy image directly with support for size, alt and other attributes, for and how to use it please check the documentations.
|