AVH Extended Categories Widgets - Version 3.3.2

Version Description

Download this release

Release Info

Developer petervanderdoes
Plugin Icon wp plugin AVH Extended Categories Widgets
Version 3.3.2
Comparing to
See all releases

Code changes from version 3.3.1 to 3.3.2

2.8/avh-ec.client.php CHANGED
@@ -21,13 +21,13 @@ class AVH_EC_Singleton
21
  switch ( $class )
22
  {
23
  case 'AVH_EC_Core' :
24
- require_once (AVHEC_WORKING_DIR . '/class/avh-ec.core.php');
25
  break;
26
  case 'AVH_EC_Category_Group' :
27
- require_once (AVHEC_WORKING_DIR . '/class/avh-ec.category-group.php');
28
  break;
29
  case 'AVH_EC_Widget_Helper_Class' :
30
- require_once (AVHEC_WORKING_DIR . '/class/avh-ec.widget-helper.php');
31
  break;
32
  }
33
  }
@@ -42,8 +42,8 @@ class AVH_EC_Singleton
42
  * Include the necessary files
43
  *
44
  */
45
- require_once (AVHEC_WORKING_DIR . '/helpers/avh-forms.php');
46
- require_once (AVHEC_WORKING_DIR . '/class/avh-ec.widgets.php');
47
 
48
  /**
49
  * Initialize the plugin
@@ -53,7 +53,7 @@ function avhextendedcategories_init ()
53
  {
54
  // Admin
55
  if ( is_admin() ) {
56
- require_once (AVHEC_WORKING_DIR . '/class/avh-ec.admin.php');
57
  $avhec_admin = new AVH_EC_Admin();
58
  }
59
  add_action( 'widgets_init', 'avhextendedcategories_widgets_init' );
21
  switch ( $class )
22
  {
23
  case 'AVH_EC_Core' :
24
+ require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.core.php');
25
  break;
26
  case 'AVH_EC_Category_Group' :
27
+ require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.category-group.php');
28
  break;
29
  case 'AVH_EC_Widget_Helper_Class' :
30
+ require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.widget-helper.php');
31
  break;
32
  }
33
  }
42
  * Include the necessary files
43
  *
44
  */
45
+ require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/helpers/avh-forms.php');
46
+ require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.widgets.php');
47
 
48
  /**
49
  * Initialize the plugin
53
  {
54
  // Admin
55
  if ( is_admin() ) {
56
+ require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.admin.php');
57
  $avhec_admin = new AVH_EC_Admin();
58
  }
59
  add_action( 'widgets_init', 'avhextendedcategories_widgets_init' );
2.8/class/avh-ec.admin.php CHANGED
@@ -236,10 +236,10 @@ class AVH_EC_Admin
236
  $groupname[] = $group->name;
237
  }
238
 
239
- $options_general[] = array ('avhec[general][alternative_name_select_category]', '<em>Select Category</em> Alternative', 'text', 20, 'Alternative text for Select Category.' );
240
- $options_general[] = array ('avhec[cat_group][home_group]', 'Home Group', 'dropdown', $group_id, $groupname, 'Select which group to show on the home page.<br />Selecting the group \'none\' will not show the widget on the page.' );
241
- $options_general[] = array ('avhec[cat_group][no_group]', 'Nonexistence Group', 'dropdown', $group_id, $groupname, 'Select which group to show when there is no group associated with the post.<br />Selecting the group \'none\' will not show the widget on the page.' );
242
- $options_general[] = array ('avhec[cat_group][default_group]', 'Default Group', 'dropdown', $group_id, $groupname, 'Select which group will be the default group when editing a post.<br />Selecting the group \'none\' will not show the widget on the page.' );
243
 
244
  if ( isset( $_POST['updateoptions'] ) ) {
245
  check_admin_referer( 'avh_ec_generaloptions' );
@@ -394,16 +394,16 @@ class AVH_EC_Admin
394
  $data_add_group_default = array ('name' => '', 'slug' => '', 'widget_title' => '', 'description' => '' );
395
  $data_add_group_new = $data_add_group_default;
396
 
397
- $options_add_group[] = array ('avhec_add_group[add][name]', ' Group Name', 'text', 20, 'The name is used to identify the group.' );
398
- $options_add_group[] = array ('avhec_add_group[add][slug]', ' Slug Group', 'text', 20, 'The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' );
399
- $options_add_group[] = array ('avhec_add_group[add][widget_title]', ' Widget Title', 'text', 20, 'When no title is given in the widget options, this will used as the title of the widget when this group is shown.' );
400
- $options_add_group[] = array ('avhec_add_group[add][description]', ' Description', 'textarea', 40, 'Description is not prominent by default.', 5 );
401
 
402
- $options_edit_group[] = array ('avhec_edit_group[edit][name]', ' Group Name', 'text', 20, 'The name is used to identify the group.' );
403
- $options_edit_group[] = array ('avhec_edit_group[edit][slug]', ' Slug Group', 'text', 20, 'The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' );
404
- $options_edit_group[] = array ('avhec_edit_group[edit][widget_title]', ' Widget Title', 'text', 20, 'When no title is given in the widget options, this will used as the title of the widget when this group is shown.' );
405
- $options_edit_group[] = array ('avhec_edit_group[edit][description]', ' Description', 'textarea', 40, 'Description is not prominent by default.', 5 );
406
- $options_edit_group[] = array ('avhec_edit_group[edit][categories]', ' Categories', 'catlist', 0, 'Select categories to be included in the group.' );
407
 
408
 
409
  if ( isset( $_POST['addgroup'] ) ) {
@@ -532,13 +532,13 @@ class AVH_EC_Admin
532
  $dropdown_value[]= $group->term_id;
533
  $dropdown_text[]= $temp_cat->name;
534
  }
535
- $options_special_pages[] = array('avhec_special_pages[sp][home_group]','Home page','dropdown',$dropdown_value,$dropdown_text,'');
536
- $options_special_pages[] = array('avhec_special_pages[sp][category_group]','Category Archive','dropdown',$dropdown_value,$dropdown_text,'');
537
- $options_special_pages[] = array('avhec_special_pages[sp][day_group]','Daily Archive','dropdown',$dropdown_value,$dropdown_text,'');
538
- $options_special_pages[] = array('avhec_special_pages[sp][month_group]','Monthly Archive','dropdown',$dropdown_value,$dropdown_text,'');
539
- $options_special_pages[] = array('avhec_special_pages[sp][year_group]','Yearly Archive','dropdown',$dropdown_value,$dropdown_text,'');
540
- $options_special_pages[] = array('avhec_special_pages[sp][author_group]','Author Archive','dropdown',$dropdown_value,$dropdown_text,'');
541
- $options_special_pages[] = array('avhec_special_pages[sp][search_group]','Search Page','dropdown',$dropdown_value,$dropdown_text,'');
542
 
543
  $data['sp']=array ('form' => $options_special_pages, 'data' => $data_special_pages );
544
 
@@ -723,19 +723,26 @@ class AVH_EC_Admin
723
  */
724
  function metaboxTranslation ()
725
  {
726
- echo '<p>A language pack can be created for this plugin. The .pot file is included with the plugin and can be found in the directory extended-categories-widget/2.8/lang';
727
- echo 'If you have created a language pack you can send the .po, and if you have it the .mo file, to me and I will include the files with the plugin';
728
- echo 'More information about translating can found at http://codex.wordpress.org/Translating_WordPress . This page is dedicated for translating WordPress but the instructions are the same for this plugin.';
729
- echo '</p>';
730
  echo '<p>';
731
- echo 'I have also setup a project in Launchpad for translating the plugin. Just visit <a href="http://bit.ly/95WyJ" target="_blank" title="AVH Extended Categories Translation Project">http://bit.ly/95WyJ</a>';
 
732
  echo '</p>';
733
  echo '<p>';
734
  echo '<span class="b">Available Languages</span></p><p>';
735
- echo 'Czech - Čeština (cs_CZ) in Launchpad - Dirty Mind - <a href="http://dirtymind.ic.cz" target="_blank">http://dirtymind.ic.cz</a><br />';
736
- echo 'Spanish - Español (es_ES) in Launchpad<br />';
737
- echo 'Italian - Italiano (it_IT) in Launchpad - Gianni Diurno - <a href="http://gidibao.net" target="_blank">http://gidibao.net</a><br />';
738
- echo 'French - Français (fr_FR) in Launchpad - BeAlCoSt - <a href="http://www.aclanester56.com/" target="_blank">http://www.aclanester56.com/</a><br />';
 
 
 
 
 
 
 
 
 
 
739
  echo '</p>';
740
  }
741
 
@@ -1059,7 +1066,7 @@ class AVH_EC_Admin
1059
  function printAdminFooter ()
1060
  {
1061
  echo '<p class="footer_avhec">';
1062
- printf( '&copy; Copyright 2009 <a href="http://blog.avirtualhome.com/" title="My Thoughts">Peter van der Does</a> | AVH Extended Categories Version %s', $this->core->version );
1063
  echo '</p>';
1064
  }
1065
 
236
  $groupname[] = $group->name;
237
  }
238
 
239
+ $options_general[] = array ('avhec[general][alternative_name_select_category]', __('<em>Select Category</em> Alternative','avh-ec'), 'text', 20, __('Alternative text for Select Category.','avh-ec') );
240
+ $options_general[] = array ('avhec[cat_group][home_group]', 'Home Group', 'dropdown', $group_id, $groupname, __('Select which group to show on the home page.<br />Selecting the group \'none\' will not show the widget on the page.','avh-ec') );
241
+ $options_general[] = array ('avhec[cat_group][no_group]', 'Nonexistence Group', 'dropdown', $group_id, $groupname, __('Select which group to show when there is no group associated with the post.<br />Selecting the group \'none\' will not show the widget on the page.','avh-ec') );
242
+ $options_general[] = array ('avhec[cat_group][default_group]', 'Default Group', 'dropdown', $group_id, $groupname, __('Select which group will be the default group when editing a post.<br />Selecting the group \'none\' will not show the widget on the page.','avh-ec') );
243
 
244
  if ( isset( $_POST['updateoptions'] ) ) {
245
  check_admin_referer( 'avh_ec_generaloptions' );
394
  $data_add_group_default = array ('name' => '', 'slug' => '', 'widget_title' => '', 'description' => '' );
395
  $data_add_group_new = $data_add_group_default;
396
 
397
+ $options_add_group[] = array ('avhec_add_group[add][name]', __(' Group Name','avh-ec'), 'text', 20, __('The name is used to identify the group.','avh-ec') );
398
+ $options_add_group[] = array ('avhec_add_group[add][slug]', __(' Slug Group','avh-ec'), 'text', 20, __('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.','avh-ec') );
399
+ $options_add_group[] = array ('avhec_add_group[add][widget_title]', __(' Widget Title,','avh-ec'), 'text', 20, __('When no title is given in the widget options, this will used as the title of the widget when this group is shown.','avh-ec') );
400
+ $options_add_group[] = array ('avhec_add_group[add][description]', __(' Description','avh-ec'), 'textarea', 40, __('Description is not prominent by default.','avh-ec'), 5 );
401
 
402
+ $options_edit_group[] = array ('avhec_edit_group[edit][name]', __(' Group Name','avh-ec'), 'text', 20, __('The name is used to identify the group.','avh-ec') );
403
+ $options_edit_group[] = array ('avhec_edit_group[edit][slug]', __(' Slug Group','avh-ec'), 'text', 20, __('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.','avh-ec') );
404
+ $options_edit_group[] = array ('avhec_edit_group[edit][widget_title]', __(' Widget Title','avh-ec'), 'text', 20, __('When no title is given in the widget options, this will used as the title of the widget when this group is shown.','avh-ec') );
405
+ $options_edit_group[] = array ('avhec_edit_group[edit][description]', __(' Description','avh-ec'), 'textarea', 40, __('Description is not prominent by default.','avh-ec'), 5 );
406
+ $options_edit_group[] = array ('avhec_edit_group[edit][categories]', __(' Categories','avh-ec'), 'catlist', 0, __('Select categories to be included in the group.','avh-ec') );
407
 
408
 
409
  if ( isset( $_POST['addgroup'] ) ) {
532
  $dropdown_value[]= $group->term_id;
533
  $dropdown_text[]= $temp_cat->name;
534
  }
535
+ $options_special_pages[] = array('avhec_special_pages[sp][home_group]',__('Home page','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
536
+ $options_special_pages[] = array('avhec_special_pages[sp][category_group]',__('Category Archive','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
537
+ $options_special_pages[] = array('avhec_special_pages[sp][day_group]',__('Daily Archive','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
538
+ $options_special_pages[] = array('avhec_special_pages[sp][month_group]',__('Monthly Archive','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
539
+ $options_special_pages[] = array('avhec_special_pages[sp][year_group]',__('Yearly Archive','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
540
+ $options_special_pages[] = array('avhec_special_pages[sp][author_group]',__('Author Archive','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
541
+ $options_special_pages[] = array('avhec_special_pages[sp][search_group]',__('Search Page','avh-ec'),'dropdown',$dropdown_value,$dropdown_text,'');
542
 
543
  $data['sp']=array ('form' => $options_special_pages, 'data' => $data_special_pages );
544
 
723
  */
724
  function metaboxTranslation ()
725
  {
 
 
 
 
726
  echo '<p>';
727
+ echo 'This plugin is translated in several languages. Some of the languages might be incomplete. Please help to complete these translations or add a new language.<br />';
728
+ echo 'You can visit <a href="https://translations.launchpad.net/avhextendedcategories/trunk" target="_blank">Launchpad</a> to help complete these translations or add a new language.';
729
  echo '</p>';
730
  echo '<p>';
731
  echo '<span class="b">Available Languages</span></p><p>';
732
+ echo '<ul>';
733
+ echo '<li>Czech - Čeština (cs_CZ)</li>';
734
+ echo '<li>Dutch - Nederlands (nl_NL)</li>';
735
+ echo '<li>Greek (el)</li>';
736
+ echo '<li>Indonesian - Bahasa Indonesia (id_ID)</li>';
737
+ echo '<li>Italian - Italiano (it_IT)</li>';
738
+ echo '<li>Russian — Русский (ru_RU)</li>';
739
+ echo '<li>Spanish - Español (es_ES)</li>';
740
+ echo '<li>Swedish - Svenska (sv_SE)</li>';
741
+ echo '<li>Turkish - Türkçe (tr)</li>';
742
+ echo '</ul>';
743
+ echo '</p>';
744
+ echo '<p>';
745
+ echo 'More information about translating can found at http://codex.wordpress.org/Translating_WordPress . This page is dedicated for translating WordPress but the instructions are the same for this plugin.';
746
  echo '</p>';
747
  }
748
 
1066
  function printAdminFooter ()
1067
  {
1068
  echo '<p class="footer_avhec">';
1069
+ printf( '&copy; Copyright 2011 <a href="http://blog.avirtualhome.com/" title="My Thoughts">Peter van der Does</a> | AVH Extended Categories Version %s', $this->core->version );
1070
  echo '</p>';
1071
  }
1072
 
2.8/class/avh-ec.category-group.php CHANGED
@@ -87,9 +87,9 @@ class AVH_EC_Category_Group
87
 
88
  // Setup the standard groups if the none group does not exists.
89
  if (false === $this->getTermIDBy('slug', 'none')) {
90
- $none_group_id = wp_insert_term('none', $this->taxonomy_name, array('description'=>'This group will not show the widget.'));
91
- $all_group_id = wp_insert_term('All', $this->taxonomy_name, array('description'=>'Holds all the categories.'));
92
- $home_group_id = wp_insert_term('Home', $this->taxonomy_name, array('description'=>'This group will be shown on the front page.'));
93
 
94
  // Fill the standard groups with all categories
95
  $all_categories = $this->getAllCategoriesTermID();
87
 
88
  // Setup the standard groups if the none group does not exists.
89
  if (false === $this->getTermIDBy('slug', 'none')) {
90
+ $none_group_id = wp_insert_term('none', $this->taxonomy_name, array('description'=>__('This group will not show the widget.','avh-ec')));
91
+ $all_group_id = wp_insert_term('All', $this->taxonomy_name, array('description'=>__('Holds all the categories.','avh-ec')));
92
+ $home_group_id = wp_insert_term('Home', $this->taxonomy_name, array('description'=>__('This group will be shown on the front page.','avh-ec')));
93
 
94
  // Fill the standard groups with all categories
95
  $all_categories = $this->getAllCategoriesTermID();
2.8/class/avh-ec.core.php CHANGED
@@ -24,11 +24,10 @@ class AVH_EC_Core
24
  */
25
  $catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
26
 
27
- $this->version = '3.3.1';
28
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
29
  $this->db_options_core = 'avhec';
30
 
31
- $this->handleTextdomain();
32
  add_action('init', array(&$this,'handleInitializePlugin'),10);
33
  }
34
 
@@ -48,7 +47,7 @@ class AVH_EC_Core
48
 
49
  $info['siteurl'] = get_option( 'siteurl' );
50
  $info['plugin_dir'] = AVHEC_PLUGIN_DIR;
51
- $info['lang_dir'] = AVHEC_WORKING_DIR . '/lang';
52
  $info['graphics_url'] = AVHEC_PLUGIN_URL . '/images';
53
 
54
  // Set class property for info
@@ -78,6 +77,8 @@ class AVH_EC_Core
78
  $this->doUpdateOptions( $db_version );
79
  }
80
 
 
 
81
  }
82
  /**
83
  * Loads the i18n
24
  */
25
  $catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
26
 
27
+ $this->version = '3.3.2';
28
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
29
  $this->db_options_core = 'avhec';
30
 
 
31
  add_action('init', array(&$this,'handleInitializePlugin'),10);
32
  }
33
 
47
 
48
  $info['siteurl'] = get_option( 'siteurl' );
49
  $info['plugin_dir'] = AVHEC_PLUGIN_DIR;
50
+ $info['lang_dir'] = AVHEC_RELATIVE_WORKING_DIR . '/lang';
51
  $info['graphics_url'] = AVHEC_PLUGIN_URL . '/images';
52
 
53
  // Set class property for info
77
  $this->doUpdateOptions( $db_version );
78
  }
79
 
80
+ $this->handleTextdomain();
81
+
82
  }
83
  /**
84
  * Loads the i18n
2.8/class/avh-ec.widgets.php CHANGED
@@ -585,28 +585,37 @@ class WP_Widget_AVH_ExtendedCategories_Category_Group extends WP_Widget
585
  $special_page='none';
586
  }
587
 
 
588
  if ( $special_page != 'none' ) {
589
  $sp_category_group = $options['sp_cat_group'][$special_page];
590
- $row = get_term_by( 'id', $sp_category_group, $catgrp->taxonomy_name ); // Returns FALSE when non-existance. (empty(FALSE)=TRUE)
 
 
 
591
  } else {
592
  $terms = wp_get_object_terms( $post->ID, $catgrp->taxonomy_name );
593
  if ( ! empty( $terms ) ) {
594
  foreach ($terms as $key => $value){
595
  if (!($this->getWidgetDoneCatGroup($value->term_id))) {
596
  $row=$value;
 
597
  break;
598
  }
599
  }
 
 
 
 
 
600
  }
601
  }
602
 
603
- if ( empty( $row ) ) { // There is no group associated with the post or the home group is empty
604
- $options = $this->core->options;
605
- $no_cat_group = $options['cat_group']['no_group'];
606
- $row = get_term_by( 'id', $no_cat_group, $catgrp->taxonomy_name );
607
  }
608
 
609
- if ( ! ('none' == $row->name) ) {
610
  extract( $args );
611
 
612
  $c = $instance['count'] ? TRUE : FALSE;
585
  $special_page='none';
586
  }
587
 
588
+ $toDisplay = FALSE;
589
  if ( $special_page != 'none' ) {
590
  $sp_category_group = $options['sp_cat_group'][$special_page];
591
+ if (!($this->getWidgetDoneCatGroup($sp_category_group))) {
592
+ $row = get_term_by( 'id', $sp_category_group, $catgrp->taxonomy_name ); // Returns FALSE when non-existance. (empty(FALSE)=TRUE)
593
+ $toDisplay = TRUE;
594
+ }
595
  } else {
596
  $terms = wp_get_object_terms( $post->ID, $catgrp->taxonomy_name );
597
  if ( ! empty( $terms ) ) {
598
  foreach ($terms as $key => $value){
599
  if (!($this->getWidgetDoneCatGroup($value->term_id))) {
600
  $row=$value;
601
+ $toDisplay = TRUE;
602
  break;
603
  }
604
  }
605
+ } else {
606
+ $options = $this->core->options;
607
+ $no_cat_group = $options['cat_group']['no_group'];
608
+ $row = get_term_by( 'id', $no_cat_group, $catgrp->taxonomy_name );
609
+ $toDisplay = TRUE;
610
  }
611
  }
612
 
613
+ $selected_catgroups = unserialize($instance['post_group_category']);
614
+ if (! (FALSE == $selected_catgroups || array_key_exists($row->term_id, $selected_catgroups))) {
615
+ $toDisplay = FALSE;
 
616
  }
617
 
618
+ if ( $toDisplay ) {
619
  extract( $args );
620
 
621
  $c = $instance['count'] ? TRUE : FALSE;
2.8/lang/avh-ec-cs_CZ.mo DELETED
Binary file
2.8/lang/avh-ec-cs_CZ.po DELETED
@@ -1,342 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AVH Extended Categories\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-30 19:59-0500\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Dirty Mind <bluebat@seznam.cz>\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-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __ngettext:1,2;__;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
- "X-Poedit-SearchPath-1: ..\n"
18
-
19
- #: ../class/avh-ec.admin.php:35
20
- #: ../class/avh-ec.admin.php:36
21
- msgid "Category Group"
22
- msgstr "Skupina rubrik"
23
-
24
- #: ../class/avh-ec.admin.php:174
25
- #: ../class/avh-ec.admin.php:234
26
- msgid "Overview"
27
- msgstr "Přehled"
28
-
29
- #: ../class/avh-ec.admin.php:175
30
- #: ../class/avh-ec.admin.php:367
31
- msgid "General Options"
32
- msgstr "Základní nastavení"
33
-
34
- #: ../class/avh-ec.admin.php:176
35
- #: ../class/avh-ec.admin.php:556
36
- #: ../class/avh-ec.category-group.php:44
37
- #: ../class/avh-ec.category-group.php:45
38
- msgid "Category Groups"
39
- msgstr "Skupiny rubrik"
40
-
41
- #: ../class/avh-ec.admin.php:177
42
- #: ../class/avh-ec.admin.php:692
43
- msgid "F.A.Q"
44
- msgstr "F.A.Q."
45
-
46
- #: ../class/avh-ec.admin.php:193
47
- #: ../class/avh-ec.admin.php:413
48
- msgid "Group Overview"
49
- msgstr "Přehled skupiny"
50
-
51
- #: ../class/avh-ec.admin.php:218
52
- #: ../class/avh-ec.admin.php:676
53
- msgid "Announcements"
54
- msgstr "Oznámení"
55
-
56
- #: ../class/avh-ec.admin.php:219
57
- #: ../class/avh-ec.admin.php:352
58
- #: ../class/avh-ec.admin.php:677
59
- msgid "Donations"
60
- msgstr "Podpořte nás"
61
-
62
- #: ../class/avh-ec.admin.php:262
63
- msgid "Options"
64
- msgstr "Nastavení"
65
-
66
- #: ../class/avh-ec.admin.php:330
67
- msgid "Options saved"
68
- msgstr "Nastavení bylo uloženo"
69
-
70
- #: ../class/avh-ec.admin.php:384
71
- msgid "Save Changes"
72
- msgstr "Uložit změny"
73
-
74
- #: ../class/avh-ec.admin.php:412
75
- msgid "Add Group"
76
- msgstr "Přidat skupinu"
77
-
78
- #: ../class/avh-ec.admin.php:462
79
- msgid "Category group saved"
80
- msgstr "Skupina rubrik byla uložena"
81
-
82
- #: ../class/avh-ec.admin.php:468
83
- msgid "Category group conflicts with "
84
- msgstr "Skupina rubrik koliduje s"
85
-
86
- #: ../class/avh-ec.admin.php:469
87
- msgid "Same slug is used. "
88
- msgstr "Toto zjednodušené jméno je již používáno."
89
-
90
- #: ../class/avh-ec.admin.php:491
91
- msgid "Edit Group"
92
- msgstr "Upravit skupinu"
93
-
94
- #: ../class/avh-ec.admin.php:503
95
- msgid "Cheatin&#8217; uh?"
96
- msgstr "Podvádíš?"
97
-
98
- #: ../class/avh-ec.admin.php:525
99
- msgid "Category group updated"
100
- msgstr "Skupina rubrik byla aktualizována"
101
-
102
- #: ../class/avh-ec.admin.php:528
103
- msgid "Category group not updated"
104
- msgstr "Změna skupiny nebyla provedena"
105
-
106
- #: ../class/avh-ec.admin.php:529
107
- msgid "Duplicate slug detected"
108
- msgstr "Kolize stejných zkrácených jmen"
109
-
110
- #: ../class/avh-ec.admin.php:533
111
- msgid "Unknown category group"
112
- msgstr "Neznámá skupina rubrik"
113
-
114
- #: ../class/avh-ec.admin.php:590
115
- msgid "Add group"
116
- msgstr "Přidat skupinu"
117
-
118
- #: ../class/avh-ec.admin.php:639
119
- msgid "Update group"
120
- msgstr "Aktualizovat skupinu"
121
-
122
- #: ../class/avh-ec.admin.php:650
123
- msgid "F.A.Q."
124
- msgstr "F.A.Q."
125
-
126
- #: ../class/avh-ec.admin.php:651
127
- msgid "Translation"
128
- msgstr "Překlad"
129
-
130
- #: ../class/avh-ec.admin.php:831
131
- msgid "Settings"
132
- msgstr "Nastavení"
133
-
134
- #: ../class/avh-ec.admin.php:847
135
- #: ../class/avh-ec.widgets.php:248
136
- #: ../class/avh-ec.widgets.php:551
137
- #: ../class/avh-ec.widgets.php:786
138
- msgid "Name"
139
- msgstr "Jméno"
140
-
141
- #: ../class/avh-ec.admin.php:847
142
- msgid "Description"
143
- msgstr "Popis"
144
-
145
- #: ../class/avh-ec.admin.php:847
146
- msgid "Categories in the group"
147
- msgstr "Rubriky ve skupině"
148
-
149
- #: ../class/avh-ec.admin.php:864
150
- #, php-format
151
- msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
152
- msgstr "Pokus o smazání skupiny &#8220;%s&#8221; byl neúspěšný."
153
-
154
- #: ../class/avh-ec.admin.php:926
155
- #, php-format
156
- msgid "Edit &#8220;%s&#8221;"
157
- msgstr "Upravit &#8220;%s&#8221;"
158
-
159
- #: ../class/avh-ec.admin.php:928
160
- msgid "Edit"
161
- msgstr "Upravit"
162
-
163
- #: ../class/avh-ec.admin.php:933
164
- msgid "Delete"
165
- msgstr "Smazat"
166
-
167
- #: ../class/avh-ec.core.php:346
168
- #: ../class/avh-ec.widgets.php:64
169
- #: ../class/avh-ec.widgets.php:410
170
- #: ../class/avh-ec.widgets.php:644
171
- msgid "Categories"
172
- msgstr "Rubriky"
173
-
174
- #: ../class/avh-ec.core.php:379
175
- #: ../class/avh-ec.core.php:381
176
- msgid "No categories"
177
- msgstr "Žádné rubriky"
178
-
179
- #: ../class/avh-ec.core.php:566
180
- #, php-format
181
- msgid "View all posts filed under %s"
182
- msgstr "Zobrazit všechny příspěvky pod %s"
183
-
184
- #: ../class/avh-ec.core.php:581
185
- #, php-format
186
- msgid "Feed for all posts filed under %s"
187
- msgstr "Feed pro všechny příspěvky pod %s"
188
-
189
- #: ../class/avh-ec.widgets.php:24
190
- msgid "An extended version of the default Categories widget."
191
- msgstr "Rozšířená verze základního widgetu Rubriky (Categories)."
192
-
193
- #: ../class/avh-ec.widgets.php:25
194
- msgid "AVH Extended Categories"
195
- msgstr "AVH Extended Categories"
196
-
197
- #: ../class/avh-ec.widgets.php:86
198
- #: ../class/avh-ec.widgets.php:432
199
- #: ../class/avh-ec.widgets.php:670
200
- msgid "Select Category"
201
- msgstr "Vybrat rubriku"
202
-
203
- #: ../class/avh-ec.widgets.php:199
204
- #: ../class/avh-ec.widgets.php:527
205
- #: ../class/avh-ec.widgets.php:755
206
- msgid "Title"
207
- msgstr "Název"
208
-
209
- #: ../class/avh-ec.widgets.php:208
210
- msgid "Show selected categories only"
211
- msgstr "Zobrazit pouze vybrané rubriky"
212
-
213
- #: ../class/avh-ec.widgets.php:214
214
- #: ../class/avh-ec.widgets.php:543
215
- #: ../class/avh-ec.widgets.php:764
216
- msgid "Show post counts"
217
- msgstr "Zobrazit počty příspěvků"
218
-
219
- #: ../class/avh-ec.widgets.php:220
220
- #: ../class/avh-ec.widgets.php:770
221
- msgid "Show hierarchy"
222
- msgstr "Zobrazit hierarchii"
223
-
224
- #: ../class/avh-ec.widgets.php:225
225
- msgid "How many levels to show"
226
- msgstr "Počet zobrazovaných úrovní"
227
-
228
- #: ../class/avh-ec.widgets.php:228
229
- msgid "All Levels"
230
- msgstr "Všechny úrovně"
231
-
232
- #: ../class/avh-ec.widgets.php:229
233
- msgid "Toplevel only"
234
- msgstr "Pouze základní úroveň"
235
-
236
- #: ../class/avh-ec.widgets.php:231
237
- msgid "Child "
238
- msgstr "Potomků: "
239
-
240
- #: ../class/avh-ec.widgets.php:238
241
- #: ../class/avh-ec.widgets.php:776
242
- msgid "Hide empty categories"
243
- msgstr "Skrýt prázdné rubriky"
244
-
245
- #: ../class/avh-ec.widgets.php:245
246
- #: ../class/avh-ec.widgets.php:548
247
- #: ../class/avh-ec.widgets.php:783
248
- msgid "Sort by "
249
- msgstr "Setřídit podle"
250
-
251
- #: ../class/avh-ec.widgets.php:247
252
- #: ../class/avh-ec.widgets.php:550
253
- #: ../class/avh-ec.widgets.php:785
254
- msgid "ID"
255
- msgstr "ID"
256
-
257
- #: ../class/avh-ec.widgets.php:249
258
- #: ../class/avh-ec.widgets.php:552
259
- #: ../class/avh-ec.widgets.php:787
260
- msgid "Count"
261
- msgstr "Počet"
262
-
263
- #: ../class/avh-ec.widgets.php:255
264
- #: ../class/avh-ec.widgets.php:558
265
- #: ../class/avh-ec.widgets.php:793
266
- msgid "Sort order "
267
- msgstr "Způsob řazení"
268
-
269
- #: ../class/avh-ec.widgets.php:257
270
- #: ../class/avh-ec.widgets.php:560
271
- #: ../class/avh-ec.widgets.php:795
272
- msgid "Ascending"
273
- msgstr "Vzestupně"
274
-
275
- #: ../class/avh-ec.widgets.php:258
276
- #: ../class/avh-ec.widgets.php:561
277
- #: ../class/avh-ec.widgets.php:796
278
- msgid "Descending"
279
- msgstr "Sestupně"
280
-
281
- #: ../class/avh-ec.widgets.php:264
282
- #: ../class/avh-ec.widgets.php:567
283
- #: ../class/avh-ec.widgets.php:802
284
- msgid "Display style "
285
- msgstr "Styl zobrazení"
286
-
287
- #: ../class/avh-ec.widgets.php:266
288
- #: ../class/avh-ec.widgets.php:569
289
- #: ../class/avh-ec.widgets.php:804
290
- msgid "List"
291
- msgstr "Seznam"
292
-
293
- #: ../class/avh-ec.widgets.php:267
294
- #: ../class/avh-ec.widgets.php:570
295
- #: ../class/avh-ec.widgets.php:805
296
- msgid "Drop down"
297
- msgstr "Drop down"
298
-
299
- #: ../class/avh-ec.widgets.php:277
300
- #: ../class/avh-ec.widgets.php:580
301
- #: ../class/avh-ec.widgets.php:815
302
- msgid "Show RSS Feed"
303
- msgstr "Ukázat RSS Feed"
304
-
305
- #: ../class/avh-ec.widgets.php:282
306
- #: ../class/avh-ec.widgets.php:585
307
- #: ../class/avh-ec.widgets.php:820
308
- msgid "Path (URI) to RSS image"
309
- msgstr "Cesta (URI) k obrázku RSS"
310
-
311
- #: ../class/avh-ec.widgets.php:288
312
- msgid "Select categories"
313
- msgstr "Vybrat rubriky"
314
-
315
- #: ../class/avh-ec.widgets.php:293
316
- msgid "All Categories"
317
- msgstr "Všechny rubriky"
318
-
319
- #: ../class/avh-ec.widgets.php:303
320
- msgid "Exclude the selected categories"
321
- msgstr "Vyloučit vybrané rubriky"
322
-
323
- #: ../class/avh-ec.widgets.php:389
324
- msgid "Shows the top categories."
325
- msgstr "Zobrazí top rubriky."
326
-
327
- #: ../class/avh-ec.widgets.php:390
328
- msgid "AVH Extended Categories: Top Categories"
329
- msgstr "AVH Extended Categories: Top rubriky"
330
-
331
- #: ../class/avh-ec.widgets.php:534
332
- msgid "How many categories to show"
333
- msgstr "Počet zobrazovaných rubrik"
334
-
335
- #: ../class/avh-ec.widgets.php:612
336
- msgid "Shows grouped categories."
337
- msgstr "Zobrazí seskupené rubriky."
338
-
339
- #: ../class/avh-ec.widgets.php:613
340
- msgid "AVH Extended Category: Category Group"
341
- msgstr "AVH Extended Category: Skupina Rubrik"
342
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2.8/lang/avh-ec-es_ES.mo DELETED
Binary file
2.8/lang/avh-ec-es_ES.po DELETED
@@ -1,351 +0,0 @@
1
- # Spanish translation for avhextendedcategories
2
- # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
3
- # This file is distributed under the same license as the avhextendedcategories package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: avhextendedcategories\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2010-01-30 19:59-0500\n"
11
- "PO-Revision-Date: 2010-01-30 19:59-0500\n"
12
- "Last-Translator: Peter van der Does <peter@avirtualhome.com>\n"
13
- "Language-Team: Spanish <es@li.org>\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Launchpad-Export-Date: 2009-09-26 00:32+0000\n"
18
- "X-Generator: Launchpad (build Unknown)\n"
19
-
20
- #: ../class/avh-ec.admin.php:35
21
- #: ../class/avh-ec.admin.php:36
22
- msgid "Category Group"
23
- msgstr ""
24
-
25
- #: ../class/avh-ec.admin.php:174
26
- #: ../class/avh-ec.admin.php:234
27
- msgid "Overview"
28
- msgstr ""
29
-
30
- #: ../class/avh-ec.admin.php:175
31
- #: ../class/avh-ec.admin.php:367
32
- #, fuzzy
33
- msgid "General Options"
34
- msgstr "Opciones"
35
-
36
- #: ../class/avh-ec.admin.php:176
37
- #: ../class/avh-ec.admin.php:556
38
- #: ../class/avh-ec.category-group.php:44
39
- #: ../class/avh-ec.category-group.php:45
40
- #, fuzzy
41
- msgid "Category Groups"
42
- msgstr "Categorías"
43
-
44
- #: ../class/avh-ec.admin.php:177
45
- #: ../class/avh-ec.admin.php:692
46
- msgid "F.A.Q"
47
- msgstr ""
48
-
49
- #: ../class/avh-ec.admin.php:193
50
- #: ../class/avh-ec.admin.php:413
51
- msgid "Group Overview"
52
- msgstr ""
53
-
54
- #: ../class/avh-ec.admin.php:218
55
- #: ../class/avh-ec.admin.php:676
56
- msgid "Announcements"
57
- msgstr ""
58
-
59
- #: ../class/avh-ec.admin.php:219
60
- #: ../class/avh-ec.admin.php:352
61
- #: ../class/avh-ec.admin.php:677
62
- #, fuzzy
63
- msgid "Donations"
64
- msgstr "Opciones"
65
-
66
- #: ../class/avh-ec.admin.php:262
67
- msgid "Options"
68
- msgstr "Opciones"
69
-
70
- #: ../class/avh-ec.admin.php:330
71
- msgid "Options saved"
72
- msgstr "Opciones guardadas"
73
-
74
- #: ../class/avh-ec.admin.php:384
75
- msgid "Save Changes"
76
- msgstr "Guardar cambios"
77
-
78
- #: ../class/avh-ec.admin.php:412
79
- msgid "Add Group"
80
- msgstr ""
81
-
82
- #: ../class/avh-ec.admin.php:462
83
- msgid "Category group saved"
84
- msgstr ""
85
-
86
- #: ../class/avh-ec.admin.php:468
87
- msgid "Category group conflicts with "
88
- msgstr ""
89
-
90
- #: ../class/avh-ec.admin.php:469
91
- msgid "Same slug is used. "
92
- msgstr ""
93
-
94
- #: ../class/avh-ec.admin.php:491
95
- msgid "Edit Group"
96
- msgstr ""
97
-
98
- #: ../class/avh-ec.admin.php:503
99
- msgid "Cheatin&#8217; uh?"
100
- msgstr ""
101
-
102
- #: ../class/avh-ec.admin.php:525
103
- msgid "Category group updated"
104
- msgstr ""
105
-
106
- #: ../class/avh-ec.admin.php:528
107
- msgid "Category group not updated"
108
- msgstr ""
109
-
110
- #: ../class/avh-ec.admin.php:529
111
- msgid "Duplicate slug detected"
112
- msgstr ""
113
-
114
- #: ../class/avh-ec.admin.php:533
115
- msgid "Unknown category group"
116
- msgstr ""
117
-
118
- #: ../class/avh-ec.admin.php:590
119
- msgid "Add group"
120
- msgstr ""
121
-
122
- #: ../class/avh-ec.admin.php:639
123
- msgid "Update group"
124
- msgstr ""
125
-
126
- #: ../class/avh-ec.admin.php:650
127
- msgid "F.A.Q."
128
- msgstr ""
129
-
130
- #: ../class/avh-ec.admin.php:651
131
- msgid "Translation"
132
- msgstr "Traducción"
133
-
134
- #: ../class/avh-ec.admin.php:831
135
- msgid "Settings"
136
- msgstr "Configuración"
137
-
138
- #: ../class/avh-ec.admin.php:847
139
- #: ../class/avh-ec.widgets.php:248
140
- #: ../class/avh-ec.widgets.php:551
141
- #: ../class/avh-ec.widgets.php:786
142
- msgid "Name"
143
- msgstr "Nombre"
144
-
145
- #: ../class/avh-ec.admin.php:847
146
- msgid "Description"
147
- msgstr ""
148
-
149
- #: ../class/avh-ec.admin.php:847
150
- #, fuzzy
151
- msgid "Categories in the group"
152
- msgstr "Categorías"
153
-
154
- #: ../class/avh-ec.admin.php:864
155
- #, php-format
156
- msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
157
- msgstr ""
158
-
159
- #: ../class/avh-ec.admin.php:926
160
- #, php-format
161
- msgid "Edit &#8220;%s&#8221;"
162
- msgstr ""
163
-
164
- #: ../class/avh-ec.admin.php:928
165
- msgid "Edit"
166
- msgstr ""
167
-
168
- #: ../class/avh-ec.admin.php:933
169
- msgid "Delete"
170
- msgstr ""
171
-
172
- #: ../class/avh-ec.core.php:346
173
- #: ../class/avh-ec.widgets.php:64
174
- #: ../class/avh-ec.widgets.php:410
175
- #: ../class/avh-ec.widgets.php:644
176
- msgid "Categories"
177
- msgstr "Categorías"
178
-
179
- #: ../class/avh-ec.core.php:379
180
- #: ../class/avh-ec.core.php:381
181
- msgid "No categories"
182
- msgstr "No hay categorías"
183
-
184
- #: ../class/avh-ec.core.php:566
185
- #, php-format
186
- msgid "View all posts filed under %s"
187
- msgstr ""
188
-
189
- #: ../class/avh-ec.core.php:581
190
- #, php-format
191
- msgid "Feed for all posts filed under %s"
192
- msgstr ""
193
-
194
- #: ../class/avh-ec.widgets.php:24
195
- msgid "An extended version of the default Categories widget."
196
- msgstr "Una versión extendida del widget de categorías predeterminado."
197
-
198
- #: ../class/avh-ec.widgets.php:25
199
- #, fuzzy
200
- msgid "AVH Extended Categories"
201
- msgstr "AVH Extended Categories Top"
202
-
203
- #: ../class/avh-ec.widgets.php:86
204
- #: ../class/avh-ec.widgets.php:432
205
- #: ../class/avh-ec.widgets.php:670
206
- msgid "Select Category"
207
- msgstr "Seleccionar categoría"
208
-
209
- #: ../class/avh-ec.widgets.php:199
210
- #: ../class/avh-ec.widgets.php:527
211
- #: ../class/avh-ec.widgets.php:755
212
- msgid "Title"
213
- msgstr "Título"
214
-
215
- #: ../class/avh-ec.widgets.php:208
216
- msgid "Show selected categories only"
217
- msgstr "Mostrar solo categorías seleccionadas"
218
-
219
- #: ../class/avh-ec.widgets.php:214
220
- #: ../class/avh-ec.widgets.php:543
221
- #: ../class/avh-ec.widgets.php:764
222
- msgid "Show post counts"
223
- msgstr "Mostrar contadores de entradas"
224
-
225
- #: ../class/avh-ec.widgets.php:220
226
- #: ../class/avh-ec.widgets.php:770
227
- msgid "Show hierarchy"
228
- msgstr "Mostrar jerarquía"
229
-
230
- #: ../class/avh-ec.widgets.php:225
231
- msgid "How many levels to show"
232
- msgstr "Cuantos niveles mostrar"
233
-
234
- #: ../class/avh-ec.widgets.php:228
235
- msgid "All Levels"
236
- msgstr "Todos los niveles"
237
-
238
- #: ../class/avh-ec.widgets.php:229
239
- msgid "Toplevel only"
240
- msgstr "Primer nivel"
241
-
242
- #: ../class/avh-ec.widgets.php:231
243
- msgid "Child "
244
- msgstr "Hijo "
245
-
246
- #: ../class/avh-ec.widgets.php:238
247
- #: ../class/avh-ec.widgets.php:776
248
- msgid "Hide empty categories"
249
- msgstr "Esconder categorías vacías"
250
-
251
- #: ../class/avh-ec.widgets.php:245
252
- #: ../class/avh-ec.widgets.php:548
253
- #: ../class/avh-ec.widgets.php:783
254
- msgid "Sort by "
255
- msgstr "Ordenar por "
256
-
257
- #: ../class/avh-ec.widgets.php:247
258
- #: ../class/avh-ec.widgets.php:550
259
- #: ../class/avh-ec.widgets.php:785
260
- msgid "ID"
261
- msgstr "ID"
262
-
263
- #: ../class/avh-ec.widgets.php:249
264
- #: ../class/avh-ec.widgets.php:552
265
- #: ../class/avh-ec.widgets.php:787
266
- msgid "Count"
267
- msgstr "Número"
268
-
269
- #: ../class/avh-ec.widgets.php:255
270
- #: ../class/avh-ec.widgets.php:558
271
- #: ../class/avh-ec.widgets.php:793
272
- msgid "Sort order "
273
- msgstr "Orden "
274
-
275
- #: ../class/avh-ec.widgets.php:257
276
- #: ../class/avh-ec.widgets.php:560
277
- #: ../class/avh-ec.widgets.php:795
278
- msgid "Ascending"
279
- msgstr "Ascendente"
280
-
281
- #: ../class/avh-ec.widgets.php:258
282
- #: ../class/avh-ec.widgets.php:561
283
- #: ../class/avh-ec.widgets.php:796
284
- msgid "Descending"
285
- msgstr "Descendente"
286
-
287
- #: ../class/avh-ec.widgets.php:264
288
- #: ../class/avh-ec.widgets.php:567
289
- #: ../class/avh-ec.widgets.php:802
290
- msgid "Display style "
291
- msgstr "Estilo de visualización "
292
-
293
- #: ../class/avh-ec.widgets.php:266
294
- #: ../class/avh-ec.widgets.php:569
295
- #: ../class/avh-ec.widgets.php:804
296
- msgid "List"
297
- msgstr "Lista"
298
-
299
- #: ../class/avh-ec.widgets.php:267
300
- #: ../class/avh-ec.widgets.php:570
301
- #: ../class/avh-ec.widgets.php:805
302
- msgid "Drop down"
303
- msgstr "Desplegable"
304
-
305
- #: ../class/avh-ec.widgets.php:277
306
- #: ../class/avh-ec.widgets.php:580
307
- #: ../class/avh-ec.widgets.php:815
308
- msgid "Show RSS Feed"
309
- msgstr "Mostrar RSS feed"
310
-
311
- #: ../class/avh-ec.widgets.php:282
312
- #: ../class/avh-ec.widgets.php:585
313
- #: ../class/avh-ec.widgets.php:820
314
- msgid "Path (URI) to RSS image"
315
- msgstr "Ruta (URI) al RSS feed"
316
-
317
- #: ../class/avh-ec.widgets.php:288
318
- msgid "Select categories"
319
- msgstr "Elija categorías"
320
-
321
- #: ../class/avh-ec.widgets.php:293
322
- msgid "All Categories"
323
- msgstr "Todas las categorías"
324
-
325
- #: ../class/avh-ec.widgets.php:303
326
- msgid "Exclude the selected categories"
327
- msgstr "Excluir las categorías seleccionadas"
328
-
329
- #: ../class/avh-ec.widgets.php:389
330
- msgid "Shows the top categories."
331
- msgstr "Mostrar las principales categorías"
332
-
333
- #: ../class/avh-ec.widgets.php:390
334
- #, fuzzy
335
- msgid "AVH Extended Categories: Top Categories"
336
- msgstr "AVH Extended Categories Top"
337
-
338
- #: ../class/avh-ec.widgets.php:534
339
- msgid "How many categories to show"
340
- msgstr "Cuantas categorías mostrar"
341
-
342
- #: ../class/avh-ec.widgets.php:612
343
- #, fuzzy
344
- msgid "Shows grouped categories."
345
- msgstr "Mostrar las principales categorías"
346
-
347
- #: ../class/avh-ec.widgets.php:613
348
- #, fuzzy
349
- msgid "AVH Extended Category: Category Group"
350
- msgstr "AVH Extended Categories Top"
351
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2.8/lang/avh-ec-fr_FR.mo DELETED
Binary file
2.8/lang/avh-ec-fr_FR.po DELETED
@@ -1,336 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AVH Extended Categories\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-30 19:59-0500\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Peter van der Does <peter@avirtualhome.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
-
13
- #: ../class/avh-ec.admin.php:35
14
- #: ../class/avh-ec.admin.php:36
15
- msgid "Category Group"
16
- msgstr "Groupe de catégorie"
17
-
18
- #: ../class/avh-ec.admin.php:174
19
- #: ../class/avh-ec.admin.php:234
20
- msgid "Overview"
21
- msgstr "Présentation"
22
-
23
- #: ../class/avh-ec.admin.php:175
24
- #: ../class/avh-ec.admin.php:367
25
- msgid "General Options"
26
- msgstr "Options générales"
27
-
28
- #: ../class/avh-ec.admin.php:176
29
- #: ../class/avh-ec.admin.php:556
30
- #: ../class/avh-ec.category-group.php:44
31
- #: ../class/avh-ec.category-group.php:45
32
- msgid "Category Groups"
33
- msgstr "Groupes de catégorie"
34
-
35
- #: ../class/avh-ec.admin.php:177
36
- #: ../class/avh-ec.admin.php:692
37
- msgid "F.A.Q"
38
- msgstr "FAQ"
39
-
40
- #: ../class/avh-ec.admin.php:193
41
- #: ../class/avh-ec.admin.php:413
42
- msgid "Group Overview"
43
- msgstr "Group Overview"
44
-
45
- #: ../class/avh-ec.admin.php:218
46
- #: ../class/avh-ec.admin.php:676
47
- msgid "Announcements"
48
- msgstr "Annonces"
49
-
50
- #: ../class/avh-ec.admin.php:219
51
- #: ../class/avh-ec.admin.php:352
52
- #: ../class/avh-ec.admin.php:677
53
- msgid "Donations"
54
- msgstr "Dons"
55
-
56
- #: ../class/avh-ec.admin.php:262
57
- msgid "Options"
58
- msgstr "Options"
59
-
60
- #: ../class/avh-ec.admin.php:330
61
- msgid "Options saved"
62
- msgstr "Options sauvegardées"
63
-
64
- #: ../class/avh-ec.admin.php:384
65
- msgid "Save Changes"
66
- msgstr "Sauver les modifications"
67
-
68
- #: ../class/avh-ec.admin.php:412
69
- msgid "Add Group"
70
- msgstr "Ajouter un groupe"
71
-
72
- #: ../class/avh-ec.admin.php:462
73
- msgid "Category group saved"
74
- msgstr "Groupe de la catégorie sauvegardée"
75
-
76
- #: ../class/avh-ec.admin.php:468
77
- msgid "Category group conflicts with "
78
- msgstr "Groupe de la catégorie en conflit avec"
79
-
80
- #: ../class/avh-ec.admin.php:469
81
- msgid "Same slug is used. "
82
- msgstr "Same slug is used. "
83
-
84
- #: ../class/avh-ec.admin.php:491
85
- msgid "Edit Group"
86
- msgstr "Editer le groupe"
87
-
88
- #: ../class/avh-ec.admin.php:503
89
- msgid "Cheatin&#8217; uh?"
90
- msgstr "Cheatin&#8217; uh?"
91
-
92
- #: ../class/avh-ec.admin.php:525
93
- msgid "Category group updated"
94
- msgstr "Groupe de categorie mis a jour"
95
-
96
- #: ../class/avh-ec.admin.php:528
97
- msgid "Category group not updated"
98
- msgstr "Groupe de catégorie non mis a jour"
99
-
100
- #: ../class/avh-ec.admin.php:529
101
- msgid "Duplicate slug detected"
102
- msgstr "Duplicate slug detected"
103
-
104
- #: ../class/avh-ec.admin.php:533
105
- msgid "Unknown category group"
106
- msgstr "Groupe de catégorie inconnu"
107
-
108
- #: ../class/avh-ec.admin.php:590
109
- msgid "Add group"
110
- msgstr "Ajouter un groupe"
111
-
112
- #: ../class/avh-ec.admin.php:639
113
- msgid "Update group"
114
- msgstr "Groupe mis a jour"
115
-
116
- #: ../class/avh-ec.admin.php:650
117
- msgid "F.A.Q."
118
- msgstr "FAQ"
119
-
120
- #: ../class/avh-ec.admin.php:651
121
- msgid "Translation"
122
- msgstr "Traduction"
123
-
124
- #: ../class/avh-ec.admin.php:831
125
- msgid "Settings"
126
- msgstr "Paramètres"
127
-
128
- #: ../class/avh-ec.admin.php:847
129
- #: ../class/avh-ec.widgets.php:248
130
- #: ../class/avh-ec.widgets.php:551
131
- #: ../class/avh-ec.widgets.php:786
132
- msgid "Name"
133
- msgstr "Nom"
134
-
135
- #: ../class/avh-ec.admin.php:847
136
- msgid "Description"
137
- msgstr "Description"
138
-
139
- #: ../class/avh-ec.admin.php:847
140
- msgid "Categories in the group"
141
- msgstr "Categorie dans le groupe"
142
-
143
- #: ../class/avh-ec.admin.php:864
144
- #, php-format
145
- msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
146
- msgstr "Votre demande pour supprimer ce groupe &#8220;%s&#8221; a échoué"
147
-
148
- #: ../class/avh-ec.admin.php:926
149
- #, php-format
150
- msgid "Edit &#8220;%s&#8221;"
151
- msgstr "Editer &#8220;%s&#8221;"
152
-
153
- #: ../class/avh-ec.admin.php:928
154
- msgid "Edit"
155
- msgstr "Editer"
156
-
157
- #: ../class/avh-ec.admin.php:933
158
- msgid "Delete"
159
- msgstr "Supprimer"
160
-
161
- #: ../class/avh-ec.core.php:346
162
- #: ../class/avh-ec.widgets.php:64
163
- #: ../class/avh-ec.widgets.php:410
164
- #: ../class/avh-ec.widgets.php:644
165
- msgid "Categories"
166
- msgstr "Categories"
167
-
168
- #: ../class/avh-ec.core.php:379
169
- #: ../class/avh-ec.core.php:381
170
- msgid "No categories"
171
- msgstr "Pas de catégories"
172
-
173
- #: ../class/avh-ec.core.php:566
174
- #, php-format
175
- msgid "View all posts filed under %s"
176
- msgstr "Voir tous les posts sous %s"
177
-
178
- #: ../class/avh-ec.core.php:581
179
- #, php-format
180
- msgid "Feed for all posts filed under %s"
181
- msgstr "Flux pour tous les posts sous %s"
182
-
183
- #: ../class/avh-ec.widgets.php:24
184
- msgid "An extended version of the default Categories widget."
185
- msgstr "Une version étendue de votre widget categorie"
186
-
187
- #: ../class/avh-ec.widgets.php:25
188
- msgid "AVH Extended Categories"
189
- msgstr "AVH Extended Categories"
190
-
191
- #: ../class/avh-ec.widgets.php:86
192
- #: ../class/avh-ec.widgets.php:432
193
- #: ../class/avh-ec.widgets.php:670
194
- msgid "Select Category"
195
- msgstr "Selection d'une catégorie"
196
-
197
- #: ../class/avh-ec.widgets.php:199
198
- #: ../class/avh-ec.widgets.php:527
199
- #: ../class/avh-ec.widgets.php:755
200
- msgid "Title"
201
- msgstr "Titre"
202
-
203
- #: ../class/avh-ec.widgets.php:208
204
- msgid "Show selected categories only"
205
- msgstr "Montrer que les catégories sélectionnées"
206
-
207
- #: ../class/avh-ec.widgets.php:214
208
- #: ../class/avh-ec.widgets.php:543
209
- #: ../class/avh-ec.widgets.php:764
210
- msgid "Show post counts"
211
- msgstr "Montrer les articles comptés"
212
-
213
- #: ../class/avh-ec.widgets.php:220
214
- #: ../class/avh-ec.widgets.php:770
215
- msgid "Show hierarchy"
216
- msgstr "Montrer la hiérarchie"
217
-
218
- #: ../class/avh-ec.widgets.php:225
219
- msgid "How many levels to show"
220
- msgstr "Combien de niveau a afficher"
221
-
222
- #: ../class/avh-ec.widgets.php:228
223
- msgid "All Levels"
224
- msgstr "Tous les niveaux"
225
-
226
- #: ../class/avh-ec.widgets.php:229
227
- msgid "Toplevel only"
228
- msgstr "Unqiuement le 1er niveau"
229
-
230
- #: ../class/avh-ec.widgets.php:231
231
- msgid "Child "
232
- msgstr "Enfants"
233
-
234
- #: ../class/avh-ec.widgets.php:238
235
- #: ../class/avh-ec.widgets.php:776
236
- msgid "Hide empty categories"
237
- msgstr "Cacher les catégories vides"
238
-
239
- #: ../class/avh-ec.widgets.php:245
240
- #: ../class/avh-ec.widgets.php:548
241
- #: ../class/avh-ec.widgets.php:783
242
- msgid "Sort by "
243
- msgstr "Trié par"
244
-
245
- #: ../class/avh-ec.widgets.php:247
246
- #: ../class/avh-ec.widgets.php:550
247
- #: ../class/avh-ec.widgets.php:785
248
- msgid "ID"
249
- msgstr "ID"
250
-
251
- #: ../class/avh-ec.widgets.php:249
252
- #: ../class/avh-ec.widgets.php:552
253
- #: ../class/avh-ec.widgets.php:787
254
- msgid "Count"
255
- msgstr "Comptée"
256
-
257
- #: ../class/avh-ec.widgets.php:255
258
- #: ../class/avh-ec.widgets.php:558
259
- #: ../class/avh-ec.widgets.php:793
260
- msgid "Sort order "
261
- msgstr "Trié par ordre"
262
-
263
- #: ../class/avh-ec.widgets.php:257
264
- #: ../class/avh-ec.widgets.php:560
265
- #: ../class/avh-ec.widgets.php:795
266
- msgid "Ascending"
267
- msgstr "Croissant"
268
-
269
- #: ../class/avh-ec.widgets.php:258
270
- #: ../class/avh-ec.widgets.php:561
271
- #: ../class/avh-ec.widgets.php:796
272
- msgid "Descending"
273
- msgstr "Descendant"
274
-
275
- #: ../class/avh-ec.widgets.php:264
276
- #: ../class/avh-ec.widgets.php:567
277
- #: ../class/avh-ec.widgets.php:802
278
- msgid "Display style "
279
- msgstr "Afficher les style"
280
-
281
- #: ../class/avh-ec.widgets.php:266
282
- #: ../class/avh-ec.widgets.php:569
283
- #: ../class/avh-ec.widgets.php:804
284
- msgid "List"
285
- msgstr "Liste"
286
-
287
- #: ../class/avh-ec.widgets.php:267
288
- #: ../class/avh-ec.widgets.php:570
289
- #: ../class/avh-ec.widgets.php:805
290
- msgid "Drop down"
291
- msgstr "Déroulante"
292
-
293
- #: ../class/avh-ec.widgets.php:277
294
- #: ../class/avh-ec.widgets.php:580
295
- #: ../class/avh-ec.widgets.php:815
296
- msgid "Show RSS Feed"
297
- msgstr "Afficher le flux RSS"
298
-
299
- #: ../class/avh-ec.widgets.php:282
300
- #: ../class/avh-ec.widgets.php:585
301
- #: ../class/avh-ec.widgets.php:820
302
- msgid "Path (URI) to RSS image"
303
- msgstr "Chemin de l'icone RSS"
304
-
305
- #: ../class/avh-ec.widgets.php:288
306
- msgid "Select categories"
307
- msgstr "Selection des catégories"
308
-
309
- #: ../class/avh-ec.widgets.php:293
310
- msgid "All Categories"
311
- msgstr "Toutes les catégories"
312
-
313
- #: ../class/avh-ec.widgets.php:303
314
- msgid "Exclude the selected categories"
315
- msgstr "Ezclure les catégories sélectionnées"
316
-
317
- #: ../class/avh-ec.widgets.php:389
318
- msgid "Shows the top categories."
319
- msgstr "Afficher les catégories principales"
320
-
321
- #: ../class/avh-ec.widgets.php:390
322
- msgid "AVH Extended Categories: Top Categories"
323
- msgstr "AVH Extented Categories : Les catégories principales"
324
-
325
- #: ../class/avh-ec.widgets.php:534
326
- msgid "How many categories to show"
327
- msgstr "Nombre de catégories a afficher"
328
-
329
- #: ../class/avh-ec.widgets.php:612
330
- msgid "Shows grouped categories."
331
- msgstr "Afficher les groupes de catégories"
332
-
333
- #: ../class/avh-ec.widgets.php:613
334
- msgid "AVH Extended Category: Category Group"
335
- msgstr "AVH Extented Category : Groupe de catégorie"
336
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2.8/lang/avh-ec-it_IT.mo DELETED
Binary file
2.8/lang/avh-ec-it_IT.po DELETED
@@ -1,351 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: AVH Extended Categories in italiano\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-30 17:01-0500\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
- "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __ngettext:1,2;__;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Poedit-Language: Italian\n"
17
- "X-Poedit-Country: ITALY\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../class/avh-ec.admin.php:35
22
- #: ../class/avh-ec.admin.php:36
23
- msgid "Category Group"
24
- msgstr ""
25
-
26
- #: ../class/avh-ec.admin.php:174
27
- #: ../class/avh-ec.admin.php:234
28
- msgid "Overview"
29
- msgstr ""
30
-
31
- #: ../class/avh-ec.admin.php:175
32
- #: ../class/avh-ec.admin.php:367
33
- #, fuzzy
34
- msgid "General Options"
35
- msgstr "Opzioni"
36
-
37
- #: ../class/avh-ec.admin.php:176
38
- #: ../class/avh-ec.admin.php:556
39
- #: ../class/avh-ec.category-group.php:44
40
- #: ../class/avh-ec.category-group.php:45
41
- #, fuzzy
42
- msgid "Category Groups"
43
- msgstr "Categorie"
44
-
45
- #: ../class/avh-ec.admin.php:177
46
- #: ../class/avh-ec.admin.php:692
47
- msgid "F.A.Q"
48
- msgstr ""
49
-
50
- #: ../class/avh-ec.admin.php:193
51
- #: ../class/avh-ec.admin.php:413
52
- msgid "Group Overview"
53
- msgstr ""
54
-
55
- #: ../class/avh-ec.admin.php:218
56
- #: ../class/avh-ec.admin.php:676
57
- msgid "Announcements"
58
- msgstr ""
59
-
60
- #: ../class/avh-ec.admin.php:219
61
- #: ../class/avh-ec.admin.php:352
62
- #: ../class/avh-ec.admin.php:677
63
- #, fuzzy
64
- msgid "Donations"
65
- msgstr "Opzioni"
66
-
67
- #: ../class/avh-ec.admin.php:262
68
- msgid "Options"
69
- msgstr "Opzioni"
70
-
71
- #: ../class/avh-ec.admin.php:330
72
- msgid "Options saved"
73
- msgstr "Le opzioni sono state salvate"
74
-
75
- #: ../class/avh-ec.admin.php:384
76
- msgid "Save Changes"
77
- msgstr "Salva le modifiche"
78
-
79
- #: ../class/avh-ec.admin.php:412
80
- msgid "Add Group"
81
- msgstr ""
82
-
83
- #: ../class/avh-ec.admin.php:462
84
- msgid "Category group saved"
85
- msgstr ""
86
-
87
- #: ../class/avh-ec.admin.php:468
88
- msgid "Category group conflicts with "
89
- msgstr ""
90
-
91
- #: ../class/avh-ec.admin.php:469
92
- msgid "Same slug is used. "
93
- msgstr ""
94
-
95
- #: ../class/avh-ec.admin.php:491
96
- msgid "Edit Group"
97
- msgstr ""
98
-
99
- #: ../class/avh-ec.admin.php:503
100
- msgid "Cheatin&#8217; uh?"
101
- msgstr ""
102
-
103
- #: ../class/avh-ec.admin.php:525
104
- msgid "Category group updated"
105
- msgstr ""
106
-
107
- #: ../class/avh-ec.admin.php:528
108
- msgid "Category group not updated"
109
- msgstr ""
110
-
111
- #: ../class/avh-ec.admin.php:529
112
- msgid "Duplicate slug detected"
113
- msgstr ""
114
-
115
- #: ../class/avh-ec.admin.php:533
116
- msgid "Unknown category group"
117
- msgstr ""
118
-
119
- #: ../class/avh-ec.admin.php:590
120
- msgid "Add group"
121
- msgstr ""
122
-
123
- #: ../class/avh-ec.admin.php:639
124
- msgid "Update group"
125
- msgstr ""
126
-
127
- #: ../class/avh-ec.admin.php:650
128
- msgid "F.A.Q."
129
- msgstr ""
130
-
131
- #: ../class/avh-ec.admin.php:651
132
- msgid "Translation"
133
- msgstr "Traduzione"
134
-
135
- #: ../class/avh-ec.admin.php:831
136
- msgid "Settings"
137
- msgstr "Impostazioni"
138
-
139
- #: ../class/avh-ec.admin.php:847
140
- #: ../class/avh-ec.widgets.php:248
141
- #: ../class/avh-ec.widgets.php:551
142
- #: ../class/avh-ec.widgets.php:786
143
- msgid "Name"
144
- msgstr "nome"
145
-
146
- #: ../class/avh-ec.admin.php:847
147
- msgid "Description"
148
- msgstr ""
149
-
150
- #: ../class/avh-ec.admin.php:847
151
- #, fuzzy
152
- msgid "Categories in the group"
153
- msgstr "Categorie"
154
-
155
- #: ../class/avh-ec.admin.php:864
156
- #, php-format
157
- msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
158
- msgstr ""
159
-
160
- #: ../class/avh-ec.admin.php:926
161
- #, php-format
162
- msgid "Edit &#8220;%s&#8221;"
163
- msgstr ""
164
-
165
- #: ../class/avh-ec.admin.php:928
166
- msgid "Edit"
167
- msgstr ""
168
-
169
- #: ../class/avh-ec.admin.php:933
170
- msgid "Delete"
171
- msgstr ""
172
-
173
- #: ../class/avh-ec.core.php:346
174
- #: ../class/avh-ec.widgets.php:64
175
- #: ../class/avh-ec.widgets.php:410
176
- #: ../class/avh-ec.widgets.php:644
177
- msgid "Categories"
178
- msgstr "Categorie"
179
-
180
- #: ../class/avh-ec.core.php:379
181
- #: ../class/avh-ec.core.php:381
182
- msgid "No categories"
183
- msgstr "Nessuna categoria"
184
-
185
- #: ../class/avh-ec.core.php:566
186
- #, php-format
187
- msgid "View all posts filed under %s"
188
- msgstr ""
189
-
190
- #: ../class/avh-ec.core.php:581
191
- #, php-format
192
- msgid "Feed for all posts filed under %s"
193
- msgstr ""
194
-
195
- #: ../class/avh-ec.widgets.php:24
196
- msgid "An extended version of the default Categories widget."
197
- msgstr "Una versione estesa del widget predefinito per le categorie"
198
-
199
- #: ../class/avh-ec.widgets.php:25
200
- msgid "AVH Extended Categories"
201
- msgstr "AVH Extended Categories"
202
-
203
- #: ../class/avh-ec.widgets.php:86
204
- #: ../class/avh-ec.widgets.php:432
205
- #: ../class/avh-ec.widgets.php:670
206
- msgid "Select Category"
207
- msgstr "Selezione categoria"
208
-
209
- #: ../class/avh-ec.widgets.php:199
210
- #: ../class/avh-ec.widgets.php:527
211
- #: ../class/avh-ec.widgets.php:755
212
- msgid "Title"
213
- msgstr "Titolo"
214
-
215
- #: ../class/avh-ec.widgets.php:208
216
- msgid "Show selected categories only"
217
- msgstr "Mostra le sole categorie selezionate"
218
-
219
- #: ../class/avh-ec.widgets.php:214
220
- #: ../class/avh-ec.widgets.php:543
221
- #: ../class/avh-ec.widgets.php:764
222
- msgid "Show post counts"
223
- msgstr "Mostra il computo degli articoli"
224
-
225
- #: ../class/avh-ec.widgets.php:220
226
- #: ../class/avh-ec.widgets.php:770
227
- msgid "Show hierarchy"
228
- msgstr "Mostra la gerachia"
229
-
230
- #: ../class/avh-ec.widgets.php:225
231
- msgid "How many levels to show"
232
- msgstr "Quanti livelli desideri mostrare?"
233
-
234
- #: ../class/avh-ec.widgets.php:228
235
- msgid "All Levels"
236
- msgstr "tutti i livelli"
237
-
238
- #: ../class/avh-ec.widgets.php:229
239
- msgid "Toplevel only"
240
- msgstr "solo i principali"
241
-
242
- #: ../class/avh-ec.widgets.php:231
243
- msgid "Child "
244
- msgstr "figlio"
245
-
246
- #: ../class/avh-ec.widgets.php:238
247
- #: ../class/avh-ec.widgets.php:776
248
- msgid "Hide empty categories"
249
- msgstr "Nascondi le categorie vuote"
250
-
251
- #: ../class/avh-ec.widgets.php:245
252
- #: ../class/avh-ec.widgets.php:548
253
- #: ../class/avh-ec.widgets.php:783
254
- msgid "Sort by "
255
- msgstr "Disposti per"
256
-
257
- #: ../class/avh-ec.widgets.php:247
258
- #: ../class/avh-ec.widgets.php:550
259
- #: ../class/avh-ec.widgets.php:785
260
- msgid "ID"
261
- msgstr "ID"
262
-
263
- #: ../class/avh-ec.widgets.php:249
264
- #: ../class/avh-ec.widgets.php:552
265
- #: ../class/avh-ec.widgets.php:787
266
- msgid "Count"
267
- msgstr "conteggio"
268
-
269
- #: ../class/avh-ec.widgets.php:255
270
- #: ../class/avh-ec.widgets.php:558
271
- #: ../class/avh-ec.widgets.php:793
272
- msgid "Sort order "
273
- msgstr "Ordine"
274
-
275
- #: ../class/avh-ec.widgets.php:257
276
- #: ../class/avh-ec.widgets.php:560
277
- #: ../class/avh-ec.widgets.php:795
278
- msgid "Ascending"
279
- msgstr "ascendente"
280
-
281
- #: ../class/avh-ec.widgets.php:258
282
- #: ../class/avh-ec.widgets.php:561
283
- #: ../class/avh-ec.widgets.php:796
284
- msgid "Descending"
285
- msgstr "discendente"
286
-
287
- #: ../class/avh-ec.widgets.php:264
288
- #: ../class/avh-ec.widgets.php:567
289
- #: ../class/avh-ec.widgets.php:802
290
- msgid "Display style "
291
- msgstr "Stile"
292
-
293
- #: ../class/avh-ec.widgets.php:266
294
- #: ../class/avh-ec.widgets.php:569
295
- #: ../class/avh-ec.widgets.php:804
296
- msgid "List"
297
- msgstr "lista"
298
-
299
- #: ../class/avh-ec.widgets.php:267
300
- #: ../class/avh-ec.widgets.php:570
301
- #: ../class/avh-ec.widgets.php:805
302
- msgid "Drop down"
303
- msgstr "menu a cascata"
304
-
305
- #: ../class/avh-ec.widgets.php:277
306
- #: ../class/avh-ec.widgets.php:580
307
- #: ../class/avh-ec.widgets.php:815
308
- msgid "Show RSS Feed"
309
- msgstr "Mostra feed RSS"
310
-
311
- #: ../class/avh-ec.widgets.php:282
312
- #: ../class/avh-ec.widgets.php:585
313
- #: ../class/avh-ec.widgets.php:820
314
- msgid "Path (URI) to RSS image"
315
- msgstr "Percorso (URI) alla immagine RSS"
316
-
317
- #: ../class/avh-ec.widgets.php:288
318
- msgid "Select categories"
319
- msgstr "Selezione categorie"
320
-
321
- #: ../class/avh-ec.widgets.php:293
322
- msgid "All Categories"
323
- msgstr "Tutte le categorie"
324
-
325
- #: ../class/avh-ec.widgets.php:303
326
- msgid "Exclude the selected categories"
327
- msgstr "Escludi le categorie selezionate"
328
-
329
- #: ../class/avh-ec.widgets.php:389
330
- msgid "Shows the top categories."
331
- msgstr "Mostra le categorie top"
332
-
333
- #: ../class/avh-ec.widgets.php:390
334
- #, fuzzy
335
- msgid "AVH Extended Categories: Top Categories"
336
- msgstr "AVH Extended Categories Top"
337
-
338
- #: ../class/avh-ec.widgets.php:534
339
- msgid "How many categories to show"
340
- msgstr "Quante categorie desideri mostrare"
341
-
342
- #: ../class/avh-ec.widgets.php:612
343
- #, fuzzy
344
- msgid "Shows grouped categories."
345
- msgstr "Mostra le categorie top"
346
-
347
- #: ../class/avh-ec.widgets.php:613
348
- #, fuzzy
349
- msgid "AVH Extended Category: Category Group"
350
- msgstr "AVH Extended Categories Top"
351
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2.8/lang/avh-ec.mo ADDED
Binary file
2.8/lang/avh-ec.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AVH Extended Categories\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-30 19:59-0500\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Peter van der Does <peter@avirtualhome.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"
@@ -16,327 +17,504 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
- #: ../class/avh-ec.admin.php:35
20
- #: ../class/avh-ec.admin.php:36
21
- msgid "Category Group"
22
- msgstr ""
23
-
24
- #: ../class/avh-ec.admin.php:174
25
- #: ../class/avh-ec.admin.php:234
26
  msgid "Overview"
27
  msgstr ""
28
 
29
- #: ../class/avh-ec.admin.php:175
30
- #: ../class/avh-ec.admin.php:367
31
  msgid "General Options"
32
  msgstr ""
33
 
34
- #: ../class/avh-ec.admin.php:176
35
- #: ../class/avh-ec.admin.php:556
36
- #: ../class/avh-ec.category-group.php:44
37
- #: ../class/avh-ec.category-group.php:45
38
  msgid "Category Groups"
39
  msgstr ""
40
 
41
- #: ../class/avh-ec.admin.php:177
42
- #: ../class/avh-ec.admin.php:692
43
  msgid "F.A.Q"
44
  msgstr ""
45
 
46
- #: ../class/avh-ec.admin.php:193
47
- #: ../class/avh-ec.admin.php:413
48
  msgid "Group Overview"
49
  msgstr ""
50
 
51
- #: ../class/avh-ec.admin.php:218
52
- #: ../class/avh-ec.admin.php:676
53
  msgid "Announcements"
54
  msgstr ""
55
 
56
- #: ../class/avh-ec.admin.php:219
57
- #: ../class/avh-ec.admin.php:352
58
- #: ../class/avh-ec.admin.php:677
59
  msgid "Donations"
60
  msgstr ""
61
 
62
- #: ../class/avh-ec.admin.php:262
63
  msgid "Options"
64
  msgstr ""
65
 
66
- #: ../class/avh-ec.admin.php:330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "Options saved"
68
  msgstr ""
69
 
70
- #: ../class/avh-ec.admin.php:384
71
  msgid "Save Changes"
72
  msgstr ""
73
 
74
- #: ../class/avh-ec.admin.php:412
75
  msgid "Add Group"
76
  msgstr ""
77
 
78
- #: ../class/avh-ec.admin.php:462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  msgid "Category group saved"
80
  msgstr ""
81
 
82
- #: ../class/avh-ec.admin.php:468
83
  msgid "Category group conflicts with "
84
  msgstr ""
85
 
86
- #: ../class/avh-ec.admin.php:469
87
  msgid "Same slug is used. "
88
  msgstr ""
89
 
90
- #: ../class/avh-ec.admin.php:491
91
  msgid "Edit Group"
92
  msgstr ""
93
 
94
- #: ../class/avh-ec.admin.php:503
95
  msgid "Cheatin&#8217; uh?"
96
  msgstr ""
97
 
98
- #: ../class/avh-ec.admin.php:525
99
  msgid "Category group updated"
100
  msgstr ""
101
 
102
- #: ../class/avh-ec.admin.php:528
103
  msgid "Category group not updated"
104
  msgstr ""
105
 
106
- #: ../class/avh-ec.admin.php:529
107
  msgid "Duplicate slug detected"
108
  msgstr ""
109
 
110
- #: ../class/avh-ec.admin.php:533
111
  msgid "Unknown category group"
112
  msgstr ""
113
 
114
- #: ../class/avh-ec.admin.php:590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  msgid "Add group"
116
  msgstr ""
117
 
118
- #: ../class/avh-ec.admin.php:639
119
  msgid "Update group"
120
  msgstr ""
121
 
122
- #: ../class/avh-ec.admin.php:650
 
 
 
 
123
  msgid "F.A.Q."
124
  msgstr ""
125
 
126
- #: ../class/avh-ec.admin.php:651
127
  msgid "Translation"
128
  msgstr ""
129
 
130
- #: ../class/avh-ec.admin.php:831
131
  msgid "Settings"
132
  msgstr ""
133
 
134
- #: ../class/avh-ec.admin.php:847
135
- #: ../class/avh-ec.widgets.php:248
136
- #: ../class/avh-ec.widgets.php:551
137
- #: ../class/avh-ec.widgets.php:786
138
  msgid "Name"
139
  msgstr ""
140
 
141
- #: ../class/avh-ec.admin.php:847
 
 
 
 
142
  msgid "Description"
143
  msgstr ""
144
 
145
- #: ../class/avh-ec.admin.php:847
146
  msgid "Categories in the group"
147
  msgstr ""
148
 
149
- #: ../class/avh-ec.admin.php:864
150
  #, php-format
151
  msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
152
  msgstr ""
153
 
154
- #: ../class/avh-ec.admin.php:926
155
  #, php-format
156
  msgid "Edit &#8220;%s&#8221;"
157
  msgstr ""
158
 
159
- #: ../class/avh-ec.admin.php:928
160
  msgid "Edit"
161
  msgstr ""
162
 
163
- #: ../class/avh-ec.admin.php:933
164
  msgid "Delete"
165
  msgstr ""
166
 
167
- #: ../class/avh-ec.core.php:346
168
- #: ../class/avh-ec.widgets.php:64
169
- #: ../class/avh-ec.widgets.php:410
170
- #: ../class/avh-ec.widgets.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  msgid "Categories"
172
  msgstr ""
173
 
174
- #: ../class/avh-ec.core.php:379
175
- #: ../class/avh-ec.core.php:381
176
  msgid "No categories"
177
  msgstr ""
178
 
179
- #: ../class/avh-ec.core.php:566
180
  #, php-format
181
  msgid "View all posts filed under %s"
182
  msgstr ""
183
 
184
- #: ../class/avh-ec.core.php:581
185
  #, php-format
186
  msgid "Feed for all posts filed under %s"
187
  msgstr ""
188
 
189
- #: ../class/avh-ec.widgets.php:24
190
  msgid "An extended version of the default Categories widget."
191
  msgstr ""
192
 
193
- #: ../class/avh-ec.widgets.php:25
194
  msgid "AVH Extended Categories"
195
  msgstr ""
196
 
197
- #: ../class/avh-ec.widgets.php:86
198
- #: ../class/avh-ec.widgets.php:432
199
- #: ../class/avh-ec.widgets.php:670
200
  msgid "Select Category"
201
  msgstr ""
202
 
203
- #: ../class/avh-ec.widgets.php:199
204
- #: ../class/avh-ec.widgets.php:527
205
- #: ../class/avh-ec.widgets.php:755
206
  msgid "Title"
207
  msgstr ""
208
 
209
- #: ../class/avh-ec.widgets.php:208
210
  msgid "Show selected categories only"
211
  msgstr ""
212
 
213
- #: ../class/avh-ec.widgets.php:214
214
- #: ../class/avh-ec.widgets.php:543
215
- #: ../class/avh-ec.widgets.php:764
216
  msgid "Show post counts"
217
  msgstr ""
218
 
219
- #: ../class/avh-ec.widgets.php:220
220
- #: ../class/avh-ec.widgets.php:770
221
  msgid "Show hierarchy"
222
  msgstr ""
223
 
224
- #: ../class/avh-ec.widgets.php:225
225
- msgid "How many levels to show"
226
- msgstr ""
227
-
228
- #: ../class/avh-ec.widgets.php:228
229
  msgid "All Levels"
230
  msgstr ""
231
 
232
- #: ../class/avh-ec.widgets.php:229
233
  msgid "Toplevel only"
234
  msgstr ""
235
 
236
- #: ../class/avh-ec.widgets.php:231
237
  msgid "Child "
238
  msgstr ""
239
 
240
- #: ../class/avh-ec.widgets.php:238
241
- #: ../class/avh-ec.widgets.php:776
 
 
 
 
242
  msgid "Hide empty categories"
243
  msgstr ""
244
 
245
- #: ../class/avh-ec.widgets.php:245
246
- #: ../class/avh-ec.widgets.php:548
247
- #: ../class/avh-ec.widgets.php:783
248
- msgid "Sort by "
249
  msgstr ""
250
 
251
- #: ../class/avh-ec.widgets.php:247
252
- #: ../class/avh-ec.widgets.php:550
253
- #: ../class/avh-ec.widgets.php:785
254
  msgid "ID"
255
  msgstr ""
256
 
257
- #: ../class/avh-ec.widgets.php:249
258
- #: ../class/avh-ec.widgets.php:552
259
- #: ../class/avh-ec.widgets.php:787
260
  msgid "Count"
261
  msgstr ""
262
 
263
- #: ../class/avh-ec.widgets.php:255
264
- #: ../class/avh-ec.widgets.php:558
265
- #: ../class/avh-ec.widgets.php:793
266
- msgid "Sort order "
267
  msgstr ""
268
 
269
- #: ../class/avh-ec.widgets.php:257
270
- #: ../class/avh-ec.widgets.php:560
271
- #: ../class/avh-ec.widgets.php:795
 
 
 
 
 
 
272
  msgid "Ascending"
273
  msgstr ""
274
 
275
- #: ../class/avh-ec.widgets.php:258
276
- #: ../class/avh-ec.widgets.php:561
277
- #: ../class/avh-ec.widgets.php:796
278
  msgid "Descending"
279
  msgstr ""
280
 
281
- #: ../class/avh-ec.widgets.php:264
282
- #: ../class/avh-ec.widgets.php:567
283
- #: ../class/avh-ec.widgets.php:802
284
- msgid "Display style "
285
  msgstr ""
286
 
287
- #: ../class/avh-ec.widgets.php:266
288
- #: ../class/avh-ec.widgets.php:569
289
- #: ../class/avh-ec.widgets.php:804
290
  msgid "List"
291
  msgstr ""
292
 
293
- #: ../class/avh-ec.widgets.php:267
294
- #: ../class/avh-ec.widgets.php:570
295
- #: ../class/avh-ec.widgets.php:805
296
  msgid "Drop down"
297
  msgstr ""
298
 
299
- #: ../class/avh-ec.widgets.php:277
300
- #: ../class/avh-ec.widgets.php:580
301
- #: ../class/avh-ec.widgets.php:815
 
 
 
 
 
 
302
  msgid "Show RSS Feed"
303
  msgstr ""
304
 
305
- #: ../class/avh-ec.widgets.php:282
306
- #: ../class/avh-ec.widgets.php:585
307
- #: ../class/avh-ec.widgets.php:820
308
  msgid "Path (URI) to RSS image"
309
  msgstr ""
310
 
311
- #: ../class/avh-ec.widgets.php:288
312
  msgid "Select categories"
313
  msgstr ""
314
 
315
- #: ../class/avh-ec.widgets.php:293
316
  msgid "All Categories"
317
  msgstr ""
318
 
319
- #: ../class/avh-ec.widgets.php:303
320
  msgid "Exclude the selected categories"
321
  msgstr ""
322
 
323
- #: ../class/avh-ec.widgets.php:389
324
  msgid "Shows the top categories."
325
  msgstr ""
326
 
327
- #: ../class/avh-ec.widgets.php:390
328
  msgid "AVH Extended Categories: Top Categories"
329
  msgstr ""
330
 
331
- #: ../class/avh-ec.widgets.php:534
332
  msgid "How many categories to show"
333
  msgstr ""
334
 
335
- #: ../class/avh-ec.widgets.php:612
336
  msgid "Shows grouped categories."
337
  msgstr ""
338
 
339
- #: ../class/avh-ec.widgets.php:613
340
  msgid "AVH Extended Category: Category Group"
341
  msgstr ""
342
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: AVH Extended Categories\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-10 21:37-0500\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Peter van der Does <peter@avirtualhome.com>\n"
8
  "Language-Team: \n"
9
+ "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
19
 
20
+ #: ../class/avh-ec.admin.php:108
21
+ #: ../class/avh-ec.admin.php:179
 
 
 
 
 
22
  msgid "Overview"
23
  msgstr ""
24
 
25
+ #: ../class/avh-ec.admin.php:109
26
+ #: ../class/avh-ec.admin.php:320
27
  msgid "General Options"
28
  msgstr ""
29
 
30
+ #: ../class/avh-ec.admin.php:110
31
+ #: ../class/avh-ec.admin.php:551
32
+ #: ../class/avh-ec.category-group.php:85
 
33
  msgid "Category Groups"
34
  msgstr ""
35
 
36
+ #: ../class/avh-ec.admin.php:111
37
+ #: ../class/avh-ec.admin.php:700
38
  msgid "F.A.Q"
39
  msgstr ""
40
 
41
+ #: ../class/avh-ec.admin.php:134
42
+ #: ../class/avh-ec.admin.php:365
43
  msgid "Group Overview"
44
  msgstr ""
45
 
46
+ #: ../class/avh-ec.admin.php:163
47
+ #: ../class/avh-ec.admin.php:684
48
  msgid "Announcements"
49
  msgstr ""
50
 
51
+ #: ../class/avh-ec.admin.php:164
52
+ #: ../class/avh-ec.admin.php:305
53
+ #: ../class/avh-ec.admin.php:685
54
  msgid "Donations"
55
  msgstr ""
56
 
57
+ #: ../class/avh-ec.admin.php:207
58
  msgid "Options"
59
  msgstr ""
60
 
61
+ #: ../class/avh-ec.admin.php:239
62
+ msgid "<em>Select Category</em> Alternative"
63
+ msgstr ""
64
+
65
+ #: ../class/avh-ec.admin.php:239
66
+ msgid "Alternative text for Select Category."
67
+ msgstr ""
68
+
69
+ #: ../class/avh-ec.admin.php:240
70
+ msgid "Select which group to show on the home page.<br />Selecting the group 'none' will not show the widget on the page."
71
+ msgstr ""
72
+
73
+ #: ../class/avh-ec.admin.php:241
74
+ msgid "Select which group to show when there is no group associated with the post.<br />Selecting the group 'none' will not show the widget on the page."
75
+ msgstr ""
76
+
77
+ #: ../class/avh-ec.admin.php:242
78
+ msgid "Select which group will be the default group when editing a post.<br />Selecting the group 'none' will not show the widget on the page."
79
+ msgstr ""
80
+
81
+ #: ../class/avh-ec.admin.php:278
82
  msgid "Options saved"
83
  msgstr ""
84
 
85
+ #: ../class/avh-ec.admin.php:336
86
  msgid "Save Changes"
87
  msgstr ""
88
 
89
+ #: ../class/avh-ec.admin.php:364
90
  msgid "Add Group"
91
  msgstr ""
92
 
93
+ #: ../class/avh-ec.admin.php:366
94
+ msgid "Special Pages"
95
+ msgstr ""
96
+
97
+ #: ../class/avh-ec.admin.php:397
98
+ #: ../class/avh-ec.admin.php:402
99
+ msgid " Group Name"
100
+ msgstr ""
101
+
102
+ #: ../class/avh-ec.admin.php:397
103
+ #: ../class/avh-ec.admin.php:402
104
+ msgid "The name is used to identify the group."
105
+ msgstr ""
106
+
107
+ #: ../class/avh-ec.admin.php:398
108
+ #: ../class/avh-ec.admin.php:403
109
+ msgid " Slug Group"
110
+ msgstr ""
111
+
112
+ #: ../class/avh-ec.admin.php:398
113
+ #: ../class/avh-ec.admin.php:403
114
+ msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
115
+ msgstr ""
116
+
117
+ #: ../class/avh-ec.admin.php:399
118
+ msgid " Widget Title,"
119
+ msgstr ""
120
+
121
+ #: ../class/avh-ec.admin.php:399
122
+ #: ../class/avh-ec.admin.php:404
123
+ msgid "When no title is given in the widget options, this will used as the title of the widget when this group is shown."
124
+ msgstr ""
125
+
126
+ #: ../class/avh-ec.admin.php:400
127
+ #: ../class/avh-ec.admin.php:405
128
+ msgid " Description"
129
+ msgstr ""
130
+
131
+ #: ../class/avh-ec.admin.php:400
132
+ #: ../class/avh-ec.admin.php:405
133
+ msgid "Description is not prominent by default."
134
+ msgstr ""
135
+
136
+ #: ../class/avh-ec.admin.php:404
137
+ msgid " Widget Title"
138
+ msgstr ""
139
+
140
+ #: ../class/avh-ec.admin.php:406
141
+ msgid " Categories"
142
+ msgstr ""
143
+
144
+ #: ../class/avh-ec.admin.php:406
145
+ msgid "Select categories to be included in the group."
146
+ msgstr ""
147
+
148
+ #: ../class/avh-ec.admin.php:423
149
  msgid "Category group saved"
150
  msgstr ""
151
 
152
+ #: ../class/avh-ec.admin.php:429
153
  msgid "Category group conflicts with "
154
  msgstr ""
155
 
156
+ #: ../class/avh-ec.admin.php:430
157
  msgid "Same slug is used. "
158
  msgstr ""
159
 
160
+ #: ../class/avh-ec.admin.php:453
161
  msgid "Edit Group"
162
  msgstr ""
163
 
164
+ #: ../class/avh-ec.admin.php:465
165
  msgid "Cheatin&#8217; uh?"
166
  msgstr ""
167
 
168
+ #: ../class/avh-ec.admin.php:486
169
  msgid "Category group updated"
170
  msgstr ""
171
 
172
+ #: ../class/avh-ec.admin.php:490
173
  msgid "Category group not updated"
174
  msgstr ""
175
 
176
+ #: ../class/avh-ec.admin.php:491
177
  msgid "Duplicate slug detected"
178
  msgstr ""
179
 
180
+ #: ../class/avh-ec.admin.php:495
181
  msgid "Unknown category group"
182
  msgstr ""
183
 
184
+ #: ../class/avh-ec.admin.php:535
185
+ msgid "Home page"
186
+ msgstr ""
187
+
188
+ #: ../class/avh-ec.admin.php:536
189
+ msgid "Category Archive"
190
+ msgstr ""
191
+
192
+ #: ../class/avh-ec.admin.php:537
193
+ msgid "Daily Archive"
194
+ msgstr ""
195
+
196
+ #: ../class/avh-ec.admin.php:538
197
+ msgid "Monthly Archive"
198
+ msgstr ""
199
+
200
+ #: ../class/avh-ec.admin.php:539
201
+ msgid "Yearly Archive"
202
+ msgstr ""
203
+
204
+ #: ../class/avh-ec.admin.php:540
205
+ msgid "Author Archive"
206
+ msgstr ""
207
+
208
+ #: ../class/avh-ec.admin.php:541
209
+ msgid "Search Page"
210
+ msgstr ""
211
+
212
+ #: ../class/avh-ec.admin.php:584
213
  msgid "Add group"
214
  msgstr ""
215
 
216
+ #: ../class/avh-ec.admin.php:633
217
  msgid "Update group"
218
  msgstr ""
219
 
220
+ #: ../class/avh-ec.admin.php:646
221
+ msgid "Save settings"
222
+ msgstr ""
223
+
224
+ #: ../class/avh-ec.admin.php:656
225
  msgid "F.A.Q."
226
  msgstr ""
227
 
228
+ #: ../class/avh-ec.admin.php:657
229
  msgid "Translation"
230
  msgstr ""
231
 
232
+ #: ../class/avh-ec.admin.php:842
233
  msgid "Settings"
234
  msgstr ""
235
 
236
+ #: ../class/avh-ec.admin.php:857
237
+ #: ../class/avh-ec.widgets.php:216
238
+ #: ../class/avh-ec.widgets.php:487
239
+ #: ../class/avh-ec.widgets.php:760
240
  msgid "Name"
241
  msgstr ""
242
 
243
+ #: ../class/avh-ec.admin.php:857
244
+ msgid "Widget Title"
245
+ msgstr ""
246
+
247
+ #: ../class/avh-ec.admin.php:857
248
  msgid "Description"
249
  msgstr ""
250
 
251
+ #: ../class/avh-ec.admin.php:857
252
  msgid "Categories in the group"
253
  msgstr ""
254
 
255
+ #: ../class/avh-ec.admin.php:874
256
  #, php-format
257
  msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
258
  msgstr ""
259
 
260
+ #: ../class/avh-ec.admin.php:936
261
  #, php-format
262
  msgid "Edit &#8220;%s&#8221;"
263
  msgstr ""
264
 
265
+ #: ../class/avh-ec.admin.php:938
266
  msgid "Edit"
267
  msgstr ""
268
 
269
+ #: ../class/avh-ec.admin.php:943
270
  msgid "Delete"
271
  msgstr ""
272
 
273
+ #: ../class/avh-ec.category-group.php:85
274
+ msgid "Category Group"
275
+ msgstr ""
276
+
277
+ #: ../class/avh-ec.category-group.php:85
278
+ msgid "Search Category Groups"
279
+ msgstr ""
280
+
281
+ #: ../class/avh-ec.category-group.php:85
282
+ msgid "Popular Category Groups"
283
+ msgstr ""
284
+
285
+ #: ../class/avh-ec.category-group.php:85
286
+ msgid "All Category Groups"
287
+ msgstr ""
288
+
289
+ #: ../class/avh-ec.category-group.php:85
290
+ msgid "Parent Category Group"
291
+ msgstr ""
292
+
293
+ #: ../class/avh-ec.category-group.php:85
294
+ msgid "Parent Category Group:"
295
+ msgstr ""
296
+
297
+ #: ../class/avh-ec.category-group.php:85
298
+ msgid "Edit Category Group"
299
+ msgstr ""
300
+
301
+ #: ../class/avh-ec.category-group.php:85
302
+ msgid "Update Category Group"
303
+ msgstr ""
304
+
305
+ #: ../class/avh-ec.category-group.php:85
306
+ msgid "Add New Category Group"
307
+ msgstr ""
308
+
309
+ #: ../class/avh-ec.category-group.php:85
310
+ msgid "New Category Group Name"
311
+ msgstr ""
312
+
313
+ #: ../class/avh-ec.category-group.php:90
314
+ msgid "This group will not show the widget."
315
+ msgstr ""
316
+
317
+ #: ../class/avh-ec.category-group.php:91
318
+ msgid "Holds all the categories."
319
+ msgstr ""
320
+
321
+ #: ../class/avh-ec.category-group.php:92
322
+ msgid "This group will be shown on the front page."
323
+ msgstr ""
324
+
325
+ #: ../class/avh-ec.core.php:373
326
+ #: ../class/avh-ec.widgets.php:80
327
+ #: ../class/avh-ec.widgets.php:364
328
+ #: ../class/avh-ec.widgets.php:640
329
  msgid "Categories"
330
  msgstr ""
331
 
332
+ #: ../class/avh-ec.core.php:404
333
+ #: ../class/avh-ec.core.php:406
334
  msgid "No categories"
335
  msgstr ""
336
 
337
+ #: ../class/avh-ec.core.php:615
338
  #, php-format
339
  msgid "View all posts filed under %s"
340
  msgstr ""
341
 
342
+ #: ../class/avh-ec.core.php:630
343
  #, php-format
344
  msgid "Feed for all posts filed under %s"
345
  msgstr ""
346
 
347
+ #: ../class/avh-ec.widgets.php:28
348
  msgid "An extended version of the default Categories widget."
349
  msgstr ""
350
 
351
+ #: ../class/avh-ec.widgets.php:29
352
  msgid "AVH Extended Categories"
353
  msgstr ""
354
 
355
+ #: ../class/avh-ec.widgets.php:102
356
+ #: ../class/avh-ec.widgets.php:387
357
+ #: ../class/avh-ec.widgets.php:649
358
  msgid "Select Category"
359
  msgstr ""
360
 
361
+ #: ../class/avh-ec.widgets.php:192
362
+ #: ../class/avh-ec.widgets.php:471
363
+ #: ../class/avh-ec.widgets.php:744
364
  msgid "Title"
365
  msgstr ""
366
 
367
+ #: ../class/avh-ec.widgets.php:196
368
  msgid "Show selected categories only"
369
  msgstr ""
370
 
371
+ #: ../class/avh-ec.widgets.php:198
372
+ #: ../class/avh-ec.widgets.php:479
373
+ #: ../class/avh-ec.widgets.php:749
374
  msgid "Show post counts"
375
  msgstr ""
376
 
377
+ #: ../class/avh-ec.widgets.php:200
378
+ #: ../class/avh-ec.widgets.php:751
379
  msgid "Show hierarchy"
380
  msgstr ""
381
 
382
+ #: ../class/avh-ec.widgets.php:202
 
 
 
 
383
  msgid "All Levels"
384
  msgstr ""
385
 
386
+ #: ../class/avh-ec.widgets.php:202
387
  msgid "Toplevel only"
388
  msgstr ""
389
 
390
+ #: ../class/avh-ec.widgets.php:204
391
  msgid "Child "
392
  msgstr ""
393
 
394
+ #: ../class/avh-ec.widgets.php:206
395
+ msgid "How many levels to show"
396
+ msgstr ""
397
+
398
+ #: ../class/avh-ec.widgets.php:209
399
+ #: ../class/avh-ec.widgets.php:753
400
  msgid "Hide empty categories"
401
  msgstr ""
402
 
403
+ #: ../class/avh-ec.widgets.php:211
404
+ #: ../class/avh-ec.widgets.php:482
405
+ #: ../class/avh-ec.widgets.php:755
406
+ msgid "Use description for title"
407
  msgstr ""
408
 
409
+ #: ../class/avh-ec.widgets.php:215
410
+ #: ../class/avh-ec.widgets.php:486
411
+ #: ../class/avh-ec.widgets.php:759
412
  msgid "ID"
413
  msgstr ""
414
 
415
+ #: ../class/avh-ec.widgets.php:217
416
+ #: ../class/avh-ec.widgets.php:488
417
+ #: ../class/avh-ec.widgets.php:761
418
  msgid "Count"
419
  msgstr ""
420
 
421
+ #: ../class/avh-ec.widgets.php:218
422
+ #: ../class/avh-ec.widgets.php:489
423
+ #: ../class/avh-ec.widgets.php:762
424
+ msgid "Slug"
425
  msgstr ""
426
 
427
+ #: ../class/avh-ec.widgets.php:219
428
+ #: ../class/avh-ec.widgets.php:490
429
+ #: ../class/avh-ec.widgets.php:763
430
+ msgid "Sort by"
431
+ msgstr ""
432
+
433
+ #: ../class/avh-ec.widgets.php:222
434
+ #: ../class/avh-ec.widgets.php:493
435
+ #: ../class/avh-ec.widgets.php:766
436
  msgid "Ascending"
437
  msgstr ""
438
 
439
+ #: ../class/avh-ec.widgets.php:223
440
+ #: ../class/avh-ec.widgets.php:494
441
+ #: ../class/avh-ec.widgets.php:767
442
  msgid "Descending"
443
  msgstr ""
444
 
445
+ #: ../class/avh-ec.widgets.php:224
446
+ #: ../class/avh-ec.widgets.php:495
447
+ #: ../class/avh-ec.widgets.php:768
448
+ msgid "Sort order"
449
  msgstr ""
450
 
451
+ #: ../class/avh-ec.widgets.php:227
452
+ #: ../class/avh-ec.widgets.php:498
453
+ #: ../class/avh-ec.widgets.php:771
454
  msgid "List"
455
  msgstr ""
456
 
457
+ #: ../class/avh-ec.widgets.php:228
458
+ #: ../class/avh-ec.widgets.php:499
459
+ #: ../class/avh-ec.widgets.php:772
460
  msgid "Drop down"
461
  msgstr ""
462
 
463
+ #: ../class/avh-ec.widgets.php:229
464
+ #: ../class/avh-ec.widgets.php:500
465
+ #: ../class/avh-ec.widgets.php:773
466
+ msgid "Display style"
467
+ msgstr ""
468
+
469
+ #: ../class/avh-ec.widgets.php:235
470
+ #: ../class/avh-ec.widgets.php:506
471
+ #: ../class/avh-ec.widgets.php:779
472
  msgid "Show RSS Feed"
473
  msgstr ""
474
 
475
+ #: ../class/avh-ec.widgets.php:237
476
+ #: ../class/avh-ec.widgets.php:508
477
+ #: ../class/avh-ec.widgets.php:781
478
  msgid "Path (URI) to RSS image"
479
  msgstr ""
480
 
481
+ #: ../class/avh-ec.widgets.php:242
482
  msgid "Select categories"
483
  msgstr ""
484
 
485
+ #: ../class/avh-ec.widgets.php:247
486
  msgid "All Categories"
487
  msgstr ""
488
 
489
+ #: ../class/avh-ec.widgets.php:257
490
  msgid "Exclude the selected categories"
491
  msgstr ""
492
 
493
+ #: ../class/avh-ec.widgets.php:334
494
  msgid "Shows the top categories."
495
  msgstr ""
496
 
497
+ #: ../class/avh-ec.widgets.php:335
498
  msgid "AVH Extended Categories: Top Categories"
499
  msgstr ""
500
 
501
+ #: ../class/avh-ec.widgets.php:475
502
  msgid "How many categories to show"
503
  msgstr ""
504
 
505
+ #: ../class/avh-ec.widgets.php:536
506
  msgid "Shows grouped categories."
507
  msgstr ""
508
 
509
+ #: ../class/avh-ec.widgets.php:537
510
  msgid "AVH Extended Category: Category Group"
511
  msgstr ""
512
 
513
+ #: ../class/avh-ec.widgets.php:785
514
+ msgid "Select Groups"
515
+ msgstr ""
516
+
517
+ #: ../class/avh-ec.widgets.php:790
518
+ msgid "Any Group"
519
+ msgstr ""
520
+
2.8/lang/avh-ec.pot ADDED
@@ -0,0 +1,520 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AVH Extended Categories\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-10 21:37-0500\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Peter van der Does <peter@avirtualhome.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __ngettext:1,2;__;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: ..\n"
19
+
20
+ #: ../class/avh-ec.admin.php:108
21
+ #: ../class/avh-ec.admin.php:179
22
+ msgid "Overview"
23
+ msgstr ""
24
+
25
+ #: ../class/avh-ec.admin.php:109
26
+ #: ../class/avh-ec.admin.php:320
27
+ msgid "General Options"
28
+ msgstr ""
29
+
30
+ #: ../class/avh-ec.admin.php:110
31
+ #: ../class/avh-ec.admin.php:551
32
+ #: ../class/avh-ec.category-group.php:85
33
+ msgid "Category Groups"
34
+ msgstr ""
35
+
36
+ #: ../class/avh-ec.admin.php:111
37
+ #: ../class/avh-ec.admin.php:700
38
+ msgid "F.A.Q"
39
+ msgstr ""
40
+
41
+ #: ../class/avh-ec.admin.php:134
42
+ #: ../class/avh-ec.admin.php:365
43
+ msgid "Group Overview"
44
+ msgstr ""
45
+
46
+ #: ../class/avh-ec.admin.php:163
47
+ #: ../class/avh-ec.admin.php:684
48
+ msgid "Announcements"
49
+ msgstr ""
50
+
51
+ #: ../class/avh-ec.admin.php:164
52
+ #: ../class/avh-ec.admin.php:305
53
+ #: ../class/avh-ec.admin.php:685
54
+ msgid "Donations"
55
+ msgstr ""
56
+
57
+ #: ../class/avh-ec.admin.php:207
58
+ msgid "Options"
59
+ msgstr ""
60
+
61
+ #: ../class/avh-ec.admin.php:239
62
+ msgid "<em>Select Category</em> Alternative"
63
+ msgstr ""
64
+
65
+ #: ../class/avh-ec.admin.php:239
66
+ msgid "Alternative text for Select Category."
67
+ msgstr ""
68
+
69
+ #: ../class/avh-ec.admin.php:240
70
+ msgid "Select which group to show on the home page.<br />Selecting the group 'none' will not show the widget on the page."
71
+ msgstr ""
72
+
73
+ #: ../class/avh-ec.admin.php:241
74
+ msgid "Select which group to show when there is no group associated with the post.<br />Selecting the group 'none' will not show the widget on the page."
75
+ msgstr ""
76
+
77
+ #: ../class/avh-ec.admin.php:242
78
+ msgid "Select which group will be the default group when editing a post.<br />Selecting the group 'none' will not show the widget on the page."
79
+ msgstr ""
80
+
81
+ #: ../class/avh-ec.admin.php:278
82
+ msgid "Options saved"
83
+ msgstr ""
84
+
85
+ #: ../class/avh-ec.admin.php:336
86
+ msgid "Save Changes"
87
+ msgstr ""
88
+
89
+ #: ../class/avh-ec.admin.php:364
90
+ msgid "Add Group"
91
+ msgstr ""
92
+
93
+ #: ../class/avh-ec.admin.php:366
94
+ msgid "Special Pages"
95
+ msgstr ""
96
+
97
+ #: ../class/avh-ec.admin.php:397
98
+ #: ../class/avh-ec.admin.php:402
99
+ msgid " Group Name"
100
+ msgstr ""
101
+
102
+ #: ../class/avh-ec.admin.php:397
103
+ #: ../class/avh-ec.admin.php:402
104
+ msgid "The name is used to identify the group."
105
+ msgstr ""
106
+
107
+ #: ../class/avh-ec.admin.php:398
108
+ #: ../class/avh-ec.admin.php:403
109
+ msgid " Slug Group"
110
+ msgstr ""
111
+
112
+ #: ../class/avh-ec.admin.php:398
113
+ #: ../class/avh-ec.admin.php:403
114
+ msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
115
+ msgstr ""
116
+
117
+ #: ../class/avh-ec.admin.php:399
118
+ msgid " Widget Title,"
119
+ msgstr ""
120
+
121
+ #: ../class/avh-ec.admin.php:399
122
+ #: ../class/avh-ec.admin.php:404
123
+ msgid "When no title is given in the widget options, this will used as the title of the widget when this group is shown."
124
+ msgstr ""
125
+
126
+ #: ../class/avh-ec.admin.php:400
127
+ #: ../class/avh-ec.admin.php:405
128
+ msgid " Description"
129
+ msgstr ""
130
+
131
+ #: ../class/avh-ec.admin.php:400
132
+ #: ../class/avh-ec.admin.php:405
133
+ msgid "Description is not prominent by default."
134
+ msgstr ""
135
+
136
+ #: ../class/avh-ec.admin.php:404
137
+ msgid " Widget Title"
138
+ msgstr ""
139
+
140
+ #: ../class/avh-ec.admin.php:406
141
+ msgid " Categories"
142
+ msgstr ""
143
+
144
+ #: ../class/avh-ec.admin.php:406
145
+ msgid "Select categories to be included in the group."
146
+ msgstr ""
147
+
148
+ #: ../class/avh-ec.admin.php:423
149
+ msgid "Category group saved"
150
+ msgstr ""
151
+
152
+ #: ../class/avh-ec.admin.php:429
153
+ msgid "Category group conflicts with "
154
+ msgstr ""
155
+
156
+ #: ../class/avh-ec.admin.php:430
157
+ msgid "Same slug is used. "
158
+ msgstr ""
159
+
160
+ #: ../class/avh-ec.admin.php:453
161
+ msgid "Edit Group"
162
+ msgstr ""
163
+
164
+ #: ../class/avh-ec.admin.php:465
165
+ msgid "Cheatin&#8217; uh?"
166
+ msgstr ""
167
+
168
+ #: ../class/avh-ec.admin.php:486
169
+ msgid "Category group updated"
170
+ msgstr ""
171
+
172
+ #: ../class/avh-ec.admin.php:490
173
+ msgid "Category group not updated"
174
+ msgstr ""
175
+
176
+ #: ../class/avh-ec.admin.php:491
177
+ msgid "Duplicate slug detected"
178
+ msgstr ""
179
+
180
+ #: ../class/avh-ec.admin.php:495
181
+ msgid "Unknown category group"
182
+ msgstr ""
183
+
184
+ #: ../class/avh-ec.admin.php:535
185
+ msgid "Home page"
186
+ msgstr ""
187
+
188
+ #: ../class/avh-ec.admin.php:536
189
+ msgid "Category Archive"
190
+ msgstr ""
191
+
192
+ #: ../class/avh-ec.admin.php:537
193
+ msgid "Daily Archive"
194
+ msgstr ""
195
+
196
+ #: ../class/avh-ec.admin.php:538
197
+ msgid "Monthly Archive"
198
+ msgstr ""
199
+
200
+ #: ../class/avh-ec.admin.php:539
201
+ msgid "Yearly Archive"
202
+ msgstr ""
203
+
204
+ #: ../class/avh-ec.admin.php:540
205
+ msgid "Author Archive"
206
+ msgstr ""
207
+
208
+ #: ../class/avh-ec.admin.php:541
209
+ msgid "Search Page"
210
+ msgstr ""
211
+
212
+ #: ../class/avh-ec.admin.php:584
213
+ msgid "Add group"
214
+ msgstr ""
215
+
216
+ #: ../class/avh-ec.admin.php:633
217
+ msgid "Update group"
218
+ msgstr ""
219
+
220
+ #: ../class/avh-ec.admin.php:646
221
+ msgid "Save settings"
222
+ msgstr ""
223
+
224
+ #: ../class/avh-ec.admin.php:656
225
+ msgid "F.A.Q."
226
+ msgstr ""
227
+
228
+ #: ../class/avh-ec.admin.php:657
229
+ msgid "Translation"
230
+ msgstr ""
231
+
232
+ #: ../class/avh-ec.admin.php:842
233
+ msgid "Settings"
234
+ msgstr ""
235
+
236
+ #: ../class/avh-ec.admin.php:857
237
+ #: ../class/avh-ec.widgets.php:216
238
+ #: ../class/avh-ec.widgets.php:487
239
+ #: ../class/avh-ec.widgets.php:760
240
+ msgid "Name"
241
+ msgstr ""
242
+
243
+ #: ../class/avh-ec.admin.php:857
244
+ msgid "Widget Title"
245
+ msgstr ""
246
+
247
+ #: ../class/avh-ec.admin.php:857
248
+ msgid "Description"
249
+ msgstr ""
250
+
251
+ #: ../class/avh-ec.admin.php:857
252
+ msgid "Categories in the group"
253
+ msgstr ""
254
+
255
+ #: ../class/avh-ec.admin.php:874
256
+ #, php-format
257
+ msgid "Your attempt to delete this group: &#8220;%s&#8221; has failed."
258
+ msgstr ""
259
+
260
+ #: ../class/avh-ec.admin.php:936
261
+ #, php-format
262
+ msgid "Edit &#8220;%s&#8221;"
263
+ msgstr ""
264
+
265
+ #: ../class/avh-ec.admin.php:938
266
+ msgid "Edit"
267
+ msgstr ""
268
+
269
+ #: ../class/avh-ec.admin.php:943
270
+ msgid "Delete"
271
+ msgstr ""
272
+
273
+ #: ../class/avh-ec.category-group.php:85
274
+ msgid "Category Group"
275
+ msgstr ""
276
+
277
+ #: ../class/avh-ec.category-group.php:85
278
+ msgid "Search Category Groups"
279
+ msgstr ""
280
+
281
+ #: ../class/avh-ec.category-group.php:85
282
+ msgid "Popular Category Groups"
283
+ msgstr ""
284
+
285
+ #: ../class/avh-ec.category-group.php:85
286
+ msgid "All Category Groups"
287
+ msgstr ""
288
+
289
+ #: ../class/avh-ec.category-group.php:85
290
+ msgid "Parent Category Group"
291
+ msgstr ""
292
+
293
+ #: ../class/avh-ec.category-group.php:85
294
+ msgid "Parent Category Group:"
295
+ msgstr ""
296
+
297
+ #: ../class/avh-ec.category-group.php:85
298
+ msgid "Edit Category Group"
299
+ msgstr ""
300
+
301
+ #: ../class/avh-ec.category-group.php:85
302
+ msgid "Update Category Group"
303
+ msgstr ""
304
+
305
+ #: ../class/avh-ec.category-group.php:85
306
+ msgid "Add New Category Group"
307
+ msgstr ""
308
+
309
+ #: ../class/avh-ec.category-group.php:85
310
+ msgid "New Category Group Name"
311
+ msgstr ""
312
+
313
+ #: ../class/avh-ec.category-group.php:90
314
+ msgid "This group will not show the widget."
315
+ msgstr ""
316
+
317
+ #: ../class/avh-ec.category-group.php:91
318
+ msgid "Holds all the categories."
319
+ msgstr ""
320
+
321
+ #: ../class/avh-ec.category-group.php:92
322
+ msgid "This group will be shown on the front page."
323
+ msgstr ""
324
+
325
+ #: ../class/avh-ec.core.php:373
326
+ #: ../class/avh-ec.widgets.php:80
327
+ #: ../class/avh-ec.widgets.php:364
328
+ #: ../class/avh-ec.widgets.php:640
329
+ msgid "Categories"
330
+ msgstr ""
331
+
332
+ #: ../class/avh-ec.core.php:404
333
+ #: ../class/avh-ec.core.php:406
334
+ msgid "No categories"
335
+ msgstr ""
336
+
337
+ #: ../class/avh-ec.core.php:615
338
+ #, php-format
339
+ msgid "View all posts filed under %s"
340
+ msgstr ""
341
+
342
+ #: ../class/avh-ec.core.php:630
343
+ #, php-format
344
+ msgid "Feed for all posts filed under %s"
345
+ msgstr ""
346
+
347
+ #: ../class/avh-ec.widgets.php:28
348
+ msgid "An extended version of the default Categories widget."
349
+ msgstr ""
350
+
351
+ #: ../class/avh-ec.widgets.php:29
352
+ msgid "AVH Extended Categories"
353
+ msgstr ""
354
+
355
+ #: ../class/avh-ec.widgets.php:102
356
+ #: ../class/avh-ec.widgets.php:387
357
+ #: ../class/avh-ec.widgets.php:649
358
+ msgid "Select Category"
359
+ msgstr ""
360
+
361
+ #: ../class/avh-ec.widgets.php:192
362
+ #: ../class/avh-ec.widgets.php:471
363
+ #: ../class/avh-ec.widgets.php:744
364
+ msgid "Title"
365
+ msgstr ""
366
+
367
+ #: ../class/avh-ec.widgets.php:196
368
+ msgid "Show selected categories only"
369
+ msgstr ""
370
+
371
+ #: ../class/avh-ec.widgets.php:198
372
+ #: ../class/avh-ec.widgets.php:479
373
+ #: ../class/avh-ec.widgets.php:749
374
+ msgid "Show post counts"
375
+ msgstr ""
376
+
377
+ #: ../class/avh-ec.widgets.php:200
378
+ #: ../class/avh-ec.widgets.php:751
379
+ msgid "Show hierarchy"
380
+ msgstr ""
381
+
382
+ #: ../class/avh-ec.widgets.php:202
383
+ msgid "All Levels"
384
+ msgstr ""
385
+
386
+ #: ../class/avh-ec.widgets.php:202
387
+ msgid "Toplevel only"
388
+ msgstr ""
389
+
390
+ #: ../class/avh-ec.widgets.php:204
391
+ msgid "Child "
392
+ msgstr ""
393
+
394
+ #: ../class/avh-ec.widgets.php:206
395
+ msgid "How many levels to show"
396
+ msgstr ""
397
+
398
+ #: ../class/avh-ec.widgets.php:209
399
+ #: ../class/avh-ec.widgets.php:753
400
+ msgid "Hide empty categories"
401
+ msgstr ""
402
+
403
+ #: ../class/avh-ec.widgets.php:211
404
+ #: ../class/avh-ec.widgets.php:482
405
+ #: ../class/avh-ec.widgets.php:755
406
+ msgid "Use description for title"
407
+ msgstr ""
408
+
409
+ #: ../class/avh-ec.widgets.php:215
410
+ #: ../class/avh-ec.widgets.php:486
411
+ #: ../class/avh-ec.widgets.php:759
412
+ msgid "ID"
413
+ msgstr ""
414
+
415
+ #: ../class/avh-ec.widgets.php:217
416
+ #: ../class/avh-ec.widgets.php:488
417
+ #: ../class/avh-ec.widgets.php:761
418
+ msgid "Count"
419
+ msgstr ""
420
+
421
+ #: ../class/avh-ec.widgets.php:218
422
+ #: ../class/avh-ec.widgets.php:489
423
+ #: ../class/avh-ec.widgets.php:762
424
+ msgid "Slug"
425
+ msgstr ""
426
+
427
+ #: ../class/avh-ec.widgets.php:219
428
+ #: ../class/avh-ec.widgets.php:490
429
+ #: ../class/avh-ec.widgets.php:763
430
+ msgid "Sort by"
431
+ msgstr ""
432
+
433
+ #: ../class/avh-ec.widgets.php:222
434
+ #: ../class/avh-ec.widgets.php:493
435
+ #: ../class/avh-ec.widgets.php:766
436
+ msgid "Ascending"
437
+ msgstr ""
438
+
439
+ #: ../class/avh-ec.widgets.php:223
440
+ #: ../class/avh-ec.widgets.php:494
441
+ #: ../class/avh-ec.widgets.php:767
442
+ msgid "Descending"
443
+ msgstr ""
444
+
445
+ #: ../class/avh-ec.widgets.php:224
446
+ #: ../class/avh-ec.widgets.php:495
447
+ #: ../class/avh-ec.widgets.php:768
448
+ msgid "Sort order"
449
+ msgstr ""
450
+
451
+ #: ../class/avh-ec.widgets.php:227
452
+ #: ../class/avh-ec.widgets.php:498
453
+ #: ../class/avh-ec.widgets.php:771
454
+ msgid "List"
455
+ msgstr ""
456
+
457
+ #: ../class/avh-ec.widgets.php:228
458
+ #: ../class/avh-ec.widgets.php:499
459
+ #: ../class/avh-ec.widgets.php:772
460
+ msgid "Drop down"
461
+ msgstr ""
462
+
463
+ #: ../class/avh-ec.widgets.php:229
464
+ #: ../class/avh-ec.widgets.php:500
465
+ #: ../class/avh-ec.widgets.php:773
466
+ msgid "Display style"
467
+ msgstr ""
468
+
469
+ #: ../class/avh-ec.widgets.php:235
470
+ #: ../class/avh-ec.widgets.php:506
471
+ #: ../class/avh-ec.widgets.php:779
472
+ msgid "Show RSS Feed"
473
+ msgstr ""
474
+
475
+ #: ../class/avh-ec.widgets.php:237
476
+ #: ../class/avh-ec.widgets.php:508
477
+ #: ../class/avh-ec.widgets.php:781
478
+ msgid "Path (URI) to RSS image"
479
+ msgstr ""
480
+
481
+ #: ../class/avh-ec.widgets.php:242
482
+ msgid "Select categories"
483
+ msgstr ""
484
+
485
+ #: ../class/avh-ec.widgets.php:247
486
+ msgid "All Categories"
487
+ msgstr ""
488
+
489
+ #: ../class/avh-ec.widgets.php:257
490
+ msgid "Exclude the selected categories"
491
+ msgstr ""
492
+
493
+ #: ../class/avh-ec.widgets.php:334
494
+ msgid "Shows the top categories."
495
+ msgstr ""
496
+
497
+ #: ../class/avh-ec.widgets.php:335
498
+ msgid "AVH Extended Categories: Top Categories"
499
+ msgstr ""
500
+
501
+ #: ../class/avh-ec.widgets.php:475
502
+ msgid "How many categories to show"
503
+ msgstr ""
504
+
505
+ #: ../class/avh-ec.widgets.php:536
506
+ msgid "Shows grouped categories."
507
+ msgstr ""
508
+
509
+ #: ../class/avh-ec.widgets.php:537
510
+ msgid "AVH Extended Category: Category Group"
511
+ msgstr ""
512
+
513
+ #: ../class/avh-ec.widgets.php:785
514
+ msgid "Select Groups"
515
+ msgstr ""
516
+
517
+ #: ../class/avh-ec.widgets.php:790
518
+ msgid "Any Group"
519
+ msgstr ""
520
+
2.8/lang/avh-ec_cs_CZ.mo ADDED
Binary file
2.8/lang/avh-ec_el.mo ADDED
Binary file
2.8/lang/avh-ec_es_ES.mo ADDED
Binary file
2.8/lang/avh-ec_id_ID.mo ADDED
Binary file
2.8/lang/avh-ec_it_IT.mo ADDED
Binary file
2.8/lang/avh-ec_nl_NL.mo ADDED
Binary file
2.8/lang/avh-ec_ru_RU.mo ADDED
Binary file
2.8/lang/avh-ec_sv_SE.mo ADDED
Binary file
2.8/lang/avh-ec_tr.mo ADDED
Binary file
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.avirtualhome.com/wordpress-plugins/
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 3.0.5
7
- Stable tag: 3.3.1
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
@@ -61,10 +61,17 @@ You can also select not to show the Category Group widget by selecting the group
61
 
62
  Translations:
63
 
64
- * Czech - Čeština (cs_CZ) in Launchpad by Dirty Mind - http://dirtymind.ic.cz
65
- * Spanish - Español (es_ES) in Launchpad
66
- * Italian - Italiano (it_IT) in Launchpad - Gianni Diurno - http://gidibao.net
67
- * French - Français (fr_FR) in Launchpad - BeAlCoSt - http://www.aclanester56.com/
 
 
 
 
 
 
 
68
 
69
  == Installation ==
70
 
@@ -89,11 +96,7 @@ Here is how it works: Say you have 5 top level categories and each top level has
89
  You select to display all categories, select to Show hierarchy and select how many levels you want to show, in this case Toplevel only.
90
 
91
  = I want to help and translate the plug-in =
92
- The .pot file is included with the plug-in.
93
- If you have created a language pack, or have an update of an existing one, you can send the [gettext .po and .mo files](http://codex.wordpress.org/Translating_WordPress) to me so that I can include them in future releases.
94
- I'll keep a list of translators and their websites here in the readme.txt and on my website.
95
-
96
- I have also setup a project in Launchpad for translating the plug-in. Just visit http://bit.ly/95WyJ
97
 
98
  = Multiple Category Groups =
99
  The following is an explanation how assigning multiple groups to page/post works.
@@ -130,6 +133,11 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
130
  None
131
 
132
  == Changelog ==
 
 
 
 
 
133
  = Version 3.3.1 =
134
  * Bugfix: A PHP warning would show up when using multiple Category Group widgets.
135
 
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 3.0.5
7
+ Stable tag: 3.3.2
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
61
 
62
  Translations:
63
 
64
+ * Czech - Čeština (cs_CZ)
65
+ * Dutch - Nederlands (nl_NL)
66
+ * Greek (el)
67
+ * Indonesian - Bahasa Indonesia (id_ID)
68
+ * Italian - Italiano (it_IT)
69
+ * Russian — Русский (ru_RU)
70
+ * Spanish - Español (es_ES)
71
+ * Swedish - Svenska (sv_SE)
72
+ * Turkish - Türkçe (tr)
73
+
74
+ Some of the translations are incomplete. You can complete them or add your own language through Launchpad (https://translations.launchpad.net/avhextendedcategories/trunk)
75
 
76
  == Installation ==
77
 
96
  You select to display all categories, select to Show hierarchy and select how many levels you want to show, in this case Toplevel only.
97
 
98
  = I want to help and translate the plug-in =
99
+ I have setup a project in Launchpad for translating the plug-in. Just visit http://bit.ly/95WyJ
 
 
 
 
100
 
101
  = Multiple Category Groups =
102
  The following is an explanation how assigning multiple groups to page/post works.
133
  None
134
 
135
  == Changelog ==
136
+ = Version 3.3.2 =
137
+ * Added several new localizations.
138
+ * Bugfix: When using multiple Category Group widgets, all of them would show up on the special pages instead of just the one selected in the options.
139
+ * Bugfix: Localization didn't work.
140
+
141
  = Version 3.3.1 =
142
  * Bugfix: A PHP warning would show up when using multiple Category Group widgets.
143
 
widget-pre2.8.php CHANGED
@@ -7,7 +7,7 @@ function widget_extended_categories_init() {
7
  }
8
 
9
  function widget_extended_categories($args, $number = 1) {
10
- $version = '3.3.1';
11
  // Check for version
12
  require (ABSPATH . WPINC . '/version.php');
13
  if ( version_compare($wp_version, '2.5.1', '<') ) {
7
  }
8
 
9
  function widget_extended_categories($args, $number = 1) {
10
+ $version = '3.3.2';
11
  // Check for version
12
  require (ABSPATH . WPINC . '/version.php');
13
  if ( version_compare($wp_version, '2.5.1', '<') ) {
widget_extended_categories.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AVH Extended Categories Widgets
4
  Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
5
  Description: Replacement of the category widget to allow for greater customization of the category widget.
6
- Version: 3.3.1
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
@@ -37,9 +37,10 @@ define( 'AVHEC_PLUGIN_NAME', $pluginname );
37
 
38
  if ( ( float ) $wp_version >= 2.8 ) {
39
  define( 'AVHEC_PLUGIN_URL', WP_PLUGIN_URL . '/' . $dir . '/2.8' );
40
- define( 'AVHEC_WORKING_DIR', AVHEC_PLUGIN_DIR . '/2.8' );
 
41
  unset ($dir);
42
- require (AVHEC_WORKING_DIR . '/avh-ec.client.php');
43
  } else {
44
  require_once 'widget-pre2.8.php';
45
  }
3
  Plugin Name: AVH Extended Categories Widgets
4
  Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
5
  Description: Replacement of the category widget to allow for greater customization of the category widget.
6
+ Version: 3.3.2
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
37
 
38
  if ( ( float ) $wp_version >= 2.8 ) {
39
  define( 'AVHEC_PLUGIN_URL', WP_PLUGIN_URL . '/' . $dir . '/2.8' );
40
+ define( 'AVHEC_ABSOLUTE_WORKING_DIR', AVHEC_PLUGIN_DIR . '/2.8' );
41
+ define ('AVHEC_RELATIVE_WORKING_DIR', $dir . '/2.8');
42
  unset ($dir);
43
+ require (AVHEC_ABSOLUTE_WORKING_DIR . '/avh-ec.client.php');
44
  } else {
45
  require_once 'widget-pre2.8.php';
46
  }