-- MySQL dump 10.9
--
-- Host: localhost Database: HRCAPITAL
-- ------------------------------------------------------
-- Server version 4.1.11-Debian_4sarge7-log
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO,MYSQL40' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `access`
--
DROP TABLE IF EXISTS `access`;
CREATE TABLE `access` (
`aid` tinyint(10) NOT NULL auto_increment,
`mask` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`status` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`aid`)
) TYPE=MyISAM;
--
-- Dumping data for table `access`
--
/*!40000 ALTER TABLE `access` DISABLE KEYS */;
LOCK TABLES `access` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `access` ENABLE KEYS */;
--
-- Table structure for table `accesslog`
--
DROP TABLE IF EXISTS `accesslog`;
CREATE TABLE `accesslog` (
`aid` int(10) NOT NULL auto_increment,
`sid` varchar(32) NOT NULL default '',
`title` varchar(255) default NULL,
`path` varchar(255) default NULL,
`url` varchar(255) default NULL,
`hostname` varchar(128) default NULL,
`uid` int(10) unsigned default '0',
`timer` int(10) unsigned NOT NULL default '0',
`timestamp` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`aid`),
KEY `accesslog_timestamp` (`timestamp`)
) TYPE=MyISAM;
--
-- Dumping data for table `accesslog`
--
/*!40000 ALTER TABLE `accesslog` DISABLE KEYS */;
LOCK TABLES `accesslog` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `accesslog` ENABLE KEYS */;
--
-- Table structure for table `aggregator_category`
--
DROP TABLE IF EXISTS `aggregator_category`;
CREATE TABLE `aggregator_category` (
`cid` int(10) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`description` longtext NOT NULL,
`block` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`cid`),
UNIQUE KEY `title` (`title`)
) TYPE=MyISAM;
--
-- Dumping data for table `aggregator_category`
--
/*!40000 ALTER TABLE `aggregator_category` DISABLE KEYS */;
LOCK TABLES `aggregator_category` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `aggregator_category` ENABLE KEYS */;
--
-- Table structure for table `aggregator_category_feed`
--
DROP TABLE IF EXISTS `aggregator_category_feed`;
CREATE TABLE `aggregator_category_feed` (
`fid` int(10) NOT NULL default '0',
`cid` int(10) NOT NULL default '0',
PRIMARY KEY (`fid`,`cid`)
) TYPE=MyISAM;
--
-- Dumping data for table `aggregator_category_feed`
--
/*!40000 ALTER TABLE `aggregator_category_feed` DISABLE KEYS */;
LOCK TABLES `aggregator_category_feed` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `aggregator_category_feed` ENABLE KEYS */;
--
-- Table structure for table `aggregator_category_item`
--
DROP TABLE IF EXISTS `aggregator_category_item`;
CREATE TABLE `aggregator_category_item` (
`iid` int(10) NOT NULL default '0',
`cid` int(10) NOT NULL default '0',
PRIMARY KEY (`iid`,`cid`)
) TYPE=MyISAM;
--
-- Dumping data for table `aggregator_category_item`
--
/*!40000 ALTER TABLE `aggregator_category_item` DISABLE KEYS */;
LOCK TABLES `aggregator_category_item` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `aggregator_category_item` ENABLE KEYS */;
--
-- Table structure for table `aggregator_feed`
--
DROP TABLE IF EXISTS `aggregator_feed`;
CREATE TABLE `aggregator_feed` (
`fid` int(10) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`url` varchar(255) NOT NULL default '',
`refresh` int(10) NOT NULL default '0',
`checked` int(10) NOT NULL default '0',
`link` varchar(255) NOT NULL default '',
`description` longtext NOT NULL,
`image` longtext NOT NULL,
`etag` varchar(255) NOT NULL default '',
`modified` int(10) NOT NULL default '0',
`block` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`fid`),
UNIQUE KEY `link` (`url`),
UNIQUE KEY `title` (`title`)
) TYPE=MyISAM;
--
-- Dumping data for table `aggregator_feed`
--
/*!40000 ALTER TABLE `aggregator_feed` DISABLE KEYS */;
LOCK TABLES `aggregator_feed` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `aggregator_feed` ENABLE KEYS */;
--
-- Table structure for table `aggregator_item`
--
DROP TABLE IF EXISTS `aggregator_item`;
CREATE TABLE `aggregator_item` (
`iid` int(10) NOT NULL auto_increment,
`fid` int(10) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`link` varchar(255) NOT NULL default '',
`author` varchar(255) NOT NULL default '',
`description` longtext NOT NULL,
`timestamp` int(11) default NULL,
PRIMARY KEY (`iid`)
) TYPE=MyISAM;
--
-- Dumping data for table `aggregator_item`
--
/*!40000 ALTER TABLE `aggregator_item` DISABLE KEYS */;
LOCK TABLES `aggregator_item` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `aggregator_item` ENABLE KEYS */;
--
-- Table structure for table `authmap`
--
DROP TABLE IF EXISTS `authmap`;
CREATE TABLE `authmap` (
`aid` int(10) unsigned NOT NULL auto_increment,
`uid` int(10) NOT NULL default '0',
`authname` varchar(128) NOT NULL default '',
`module` varchar(128) NOT NULL default '',
PRIMARY KEY (`aid`),
UNIQUE KEY `authname` (`authname`)
) TYPE=MyISAM;
--
-- Dumping data for table `authmap`
--
/*!40000 ALTER TABLE `authmap` DISABLE KEYS */;
LOCK TABLES `authmap` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `authmap` ENABLE KEYS */;
--
-- Table structure for table `blocks`
--
DROP TABLE IF EXISTS `blocks`;
CREATE TABLE `blocks` (
`module` varchar(64) NOT NULL default '',
`delta` varchar(32) NOT NULL default '0',
`theme` varchar(255) NOT NULL default '',
`status` tinyint(2) NOT NULL default '0',
`weight` tinyint(1) NOT NULL default '0',
`region` varchar(64) NOT NULL default 'left',
`custom` tinyint(2) NOT NULL default '0',
`throttle` tinyint(1) NOT NULL default '0',
`visibility` tinyint(1) NOT NULL default '0',
`pages` text NOT NULL
) TYPE=MyISAM;
--
-- Dumping data for table `blocks`
--
/*!40000 ALTER TABLE `blocks` DISABLE KEYS */;
LOCK TABLES `blocks` WRITE;
INSERT INTO `blocks` VALUES ('user','0','bluemarine',1,0,'left',0,0,1,'\r\n*/node\r\n*/frontpage'),('user','1','bluemarine',1,0,'left',0,0,0,''),('nodewords','0','HRCapital',0,0,'left',0,0,0,''),('views','popular_alltime','HRCapital',0,0,'left',0,0,0,''),('views','popular_recent','HRCapital',0,0,'left',0,0,0,''),('views','news_hp','HRCapital',1,-2,'left',0,0,1,'*/node\r\n*/frontpage'),('i18n','0','HRCapital',0,0,'left',0,0,1,'*/node\r\n*/frontpage\r\n'),('translation','0','HRCapital',0,0,'left',0,0,0,''),('search','0','HRCapital',0,0,'left',0,0,0,''),('profile','0','HRCapital',0,0,'left',0,0,0,''),('menu','68','HRCapital',0,0,'left',0,0,0,''),('menu','2','HRCapital',0,0,'left',0,0,0,''),('block','1','HRCapital',1,-10,'left',0,0,1,'*/\r\n\r\n*/node\r\n*/frontpage'),('user','3','HRCapital',0,0,'left',0,0,0,''),('user','2','HRCapital',0,0,'left',0,0,0,''),('user','1','HRCapital',1,0,'left',0,0,0,''),('user','0','HRCapital',0,0,'left',0,0,1,'\r\n*/node\r\n*/frontpage'),('node','0','HRCapital',0,0,'left',0,0,0,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `blocks` ENABLE KEYS */;
--
-- Table structure for table `book`
--
DROP TABLE IF EXISTS `book`;
CREATE TABLE `book` (
`vid` int(10) unsigned NOT NULL default '0',
`nid` int(10) unsigned NOT NULL default '0',
`parent` int(10) NOT NULL default '0',
`weight` tinyint(3) NOT NULL default '0',
PRIMARY KEY (`vid`),
KEY `nid` (`nid`),
KEY `parent` (`parent`)
) TYPE=MyISAM;
--
-- Dumping data for table `book`
--
/*!40000 ALTER TABLE `book` DISABLE KEYS */;
LOCK TABLES `book` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `book` ENABLE KEYS */;
--
-- Table structure for table `boxes`
--
DROP TABLE IF EXISTS `boxes`;
CREATE TABLE `boxes` (
`bid` tinyint(4) NOT NULL auto_increment,
`title` varchar(64) NOT NULL default '',
`body` longtext,
`info` varchar(128) NOT NULL default '',
`format` int(4) NOT NULL default '0',
PRIMARY KEY (`bid`),
UNIQUE KEY `info` (`info`)
) TYPE=MyISAM;
--
-- Dumping data for table `boxes`
--
/*!40000 ALTER TABLE `boxes` DISABLE KEYS */;
LOCK TABLES `boxes` WRITE;
INSERT INTO `boxes` VALUES (1,'','Area riservata','Accesso Area Riservata',3);
UNLOCK TABLES;
/*!40000 ALTER TABLE `boxes` ENABLE KEYS */;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
CREATE TABLE `cache` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) TYPE=MyISAM;
--
-- Dumping data for table `cache`
--
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
LOCK TABLES `cache` WRITE;
INSERT INTO `cache` VALUES ('filter:3:cf02ee86bea9645c56c1d19f0347831c','PAYROLL - ELABORAZIONE DELLE RETRIBUZIONI
\nHR Capital assicura il servizio di elaborazione delle retribuzioni che comprende una ampia gamma di servizi tagliati sulla base delle esigenze dei propri clienti che vanno dalla emissione del cedolino alla completa presa in carico della funzione del personale.
\n',1158853711,1158767311,''),('views_default_views:en','a:4:{s:9:\"frontpage\";O:8:\"stdClass\":17:{s:4:\"name\";s:9:\"frontpage\";s:11:\"description\";s:26:\"The basic front page view.\";s:4:\"page\";b:1;s:3:\"url\";s:9:\"frontpage\";s:10:\"page_title\";s:0:\"\";s:9:\"page_type\";s:6:\"teaser\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"10\";s:5:\"block\";b:0;s:4:\"menu\";b:0;s:18:\"breadcrumb_no_home\";b:1;s:4:\"sort\";a:2:{i:0;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.sticky\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:11:\"node.sticky\";}i:1;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:12:\"node.created\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:12:\"node.created\";}}s:8:\"argument\";a:1:{i:0;a:7:{s:4:\"type\";s:9:\"node_feed\";s:10:\"argdefault\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:7:\"options\";s:0:\"\";s:8:\"wildcard\";s:0:\"\";s:21:\"wildcard_substitution\";s:0:\"\";s:2:\"id\";s:9:\"node_feed\";}}s:5:\"field\";a:0:{}s:6:\"filter\";a:2:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:12:\"node.promote\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:12:\"node.promote\";}i:1;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:14:\"exposed_filter\";a:0:{}s:6:\"access\";a:0:{}}s:14:\"popular_recent\";O:8:\"stdClass\":41:{s:4:\"name\";s:14:\"popular_recent\";s:11:\"description\";s:33:\"Nodes sorted by recent page-views\";s:6:\"access\";a:0:{}s:13:\"view_args_php\";s:0:\"\";s:4:\"page\";b:1;s:10:\"page_title\";s:22:\"recent popular content\";s:11:\"page_header\";s:0:\"\";s:18:\"page_header_format\";s:1:\"1\";s:11:\"page_footer\";s:0:\"\";s:18:\"page_footer_format\";s:1:\"1\";s:10:\"page_empty\";s:0:\"\";s:17:\"page_empty_format\";s:1:\"1\";s:9:\"page_type\";s:5:\"table\";s:3:\"url\";s:14:\"popular/latest\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"20\";s:4:\"menu\";b:1;s:10:\"menu_title\";s:0:\"\";s:8:\"menu_tab\";b:1;s:16:\"menu_tab_default\";b:1;s:11:\"menu_weight\";s:2:\"-1\";s:5:\"block\";b:1;s:11:\"block_title\";s:22:\"recent popular content\";s:12:\"block_header\";s:0:\"\";s:19:\"block_header_format\";s:1:\"1\";s:12:\"block_footer\";s:0:\"\";s:19:\"block_footer_format\";s:1:\"1\";s:11:\"block_empty\";s:0:\"\";s:18:\"block_empty_format\";s:1:\"1\";s:10:\"block_type\";s:4:\"list\";s:15:\"nodes_per_block\";s:1:\"5\";s:10:\"block_more\";s:1:\"1\";s:21:\"block_use_page_header\";b:0;s:21:\"block_use_page_footer\";b:0;s:20:\"block_use_page_empty\";b:0;s:4:\"sort\";a:0:{}s:8:\"argument\";a:0:{}s:5:\"field\";a:5:{i:0;a:7:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"label\";s:4:\"type\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:9:\"node.type\";s:2:\"id\";s:9:\"node.type\";s:9:\"queryname\";s:9:\"node_type\";}i:1;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:5:\"title\";s:7:\"handler\";s:28:\"views_handler_field_nodelink\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"node.title\";s:2:\"id\";s:10:\"node.title\";s:9:\"queryname\";s:10:\"node_title\";}i:2;a:7:{s:9:\"tablename\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:5:\"label\";s:6:\"author\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"users.name\";s:2:\"id\";s:10:\"users.name\";s:9:\"queryname\";s:10:\"users_name\";}i:3;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"label\";s:7:\"created\";s:7:\"handler\";s:30:\"views_handler_field_date_small\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:12:\"node.created\";s:2:\"id\";s:12:\"node.created\";s:9:\"queryname\";s:12:\"node_created\";}i:4;a:8:{s:9:\"tablename\";s:12:\"node_counter\";s:5:\"field\";s:8:\"daycount\";s:5:\"label\";s:11:\"recent hits\";s:8:\"sortable\";s:1:\"1\";s:11:\"defaultsort\";s:4:\"DESC\";s:8:\"fullname\";s:21:\"node_counter.daycount\";s:2:\"id\";s:21:\"node_counter.daycount\";s:9:\"queryname\";s:21:\"node_counter_daycount\";}}s:6:\"filter\";a:1:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:8:\"requires\";a:3:{i:0;s:12:\"node_counter\";i:1;s:4:\"node\";i:2;s:5:\"users\";}s:14:\"exposed_filter\";a:0:{}}s:15:\"popular_alltime\";O:8:\"stdClass\":41:{s:4:\"name\";s:15:\"popular_alltime\";s:11:\"description\";s:32:\"Nodes sorted by total page-views\";s:6:\"access\";a:0:{}s:13:\"view_args_php\";s:0:\"\";s:4:\"page\";b:1;s:10:\"page_title\";s:24:\"all-time popular content\";s:11:\"page_header\";s:0:\"\";s:18:\"page_header_format\";s:1:\"1\";s:11:\"page_footer\";s:0:\"\";s:18:\"page_footer_format\";s:1:\"1\";s:10:\"page_empty\";s:0:\"\";s:17:\"page_empty_format\";s:1:\"1\";s:9:\"page_type\";s:5:\"table\";s:3:\"url\";s:15:\"popular/alltime\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"20\";s:4:\"menu\";b:1;s:10:\"menu_title\";s:0:\"\";s:8:\"menu_tab\";b:1;s:16:\"menu_tab_default\";b:0;s:11:\"menu_weight\";s:1:\"1\";s:5:\"block\";b:1;s:11:\"block_title\";s:24:\"all-time popular content\";s:12:\"block_header\";s:0:\"\";s:19:\"block_header_format\";s:1:\"1\";s:12:\"block_footer\";s:0:\"\";s:19:\"block_footer_format\";s:1:\"1\";s:11:\"block_empty\";s:0:\"\";s:18:\"block_empty_format\";s:1:\"1\";s:10:\"block_type\";s:4:\"list\";s:15:\"nodes_per_block\";s:1:\"5\";s:10:\"block_more\";s:1:\"1\";s:21:\"block_use_page_header\";b:0;s:21:\"block_use_page_footer\";b:0;s:20:\"block_use_page_empty\";b:0;s:4:\"sort\";a:0:{}s:8:\"argument\";a:0:{}s:5:\"field\";a:5:{i:0;a:7:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"label\";s:4:\"type\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:9:\"node.type\";s:2:\"id\";s:9:\"node.type\";s:9:\"queryname\";s:9:\"node_type\";}i:1;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:5:\"title\";s:7:\"handler\";s:28:\"views_handler_field_nodelink\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"node.title\";s:2:\"id\";s:10:\"node.title\";s:9:\"queryname\";s:10:\"node_title\";}i:2;a:7:{s:9:\"tablename\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:5:\"label\";s:6:\"author\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"users.name\";s:2:\"id\";s:10:\"users.name\";s:9:\"queryname\";s:10:\"users_name\";}i:3;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"label\";s:7:\"created\";s:7:\"handler\";s:25:\"views_handler_field_since\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:12:\"node.created\";s:2:\"id\";s:12:\"node.created\";s:9:\"queryname\";s:12:\"node_created\";}i:4;a:8:{s:9:\"tablename\";s:12:\"node_counter\";s:5:\"field\";s:10:\"totalcount\";s:5:\"label\";s:5:\"reads\";s:8:\"sortable\";s:1:\"1\";s:11:\"defaultsort\";s:4:\"DESC\";s:8:\"fullname\";s:23:\"node_counter.totalcount\";s:2:\"id\";s:23:\"node_counter.totalcount\";s:9:\"queryname\";s:23:\"node_counter_totalcount\";}}s:6:\"filter\";a:1:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:8:\"requires\";a:3:{i:0;s:12:\"node_counter\";i:1;s:4:\"node\";i:2;s:5:\"users\";}s:14:\"exposed_filter\";a:0:{}}s:13:\"taxonomy_term\";O:8:\"stdClass\":18:{s:4:\"name\";s:13:\"taxonomy_term\";s:8:\"disabled\";b:1;s:11:\"description\";s:36:\"The taxonomy view with a depth of 0.\";s:6:\"access\";a:0:{}s:4:\"page\";b:1;s:10:\"page_title\";s:8:\"taxonomy\";s:11:\"page_header\";s:0:\"\";s:18:\"page_header_format\";s:1:\"1\";s:9:\"page_type\";s:6:\"teaser\";s:3:\"url\";s:13:\"taxonomy/term\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"10\";s:4:\"sort\";a:2:{i:0;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.sticky\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:11:\"node.sticky\";}i:1;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:12:\"node.created\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:12:\"node.created\";}}s:8:\"argument\";a:2:{i:0;a:5:{s:4:\"type\";s:5:\"taxid\";s:10:\"argdefault\";s:1:\"1\";s:5:\"title\";s:2:\"%1\";s:7:\"options\";s:1:\"0\";s:2:\"id\";s:5:\"taxid\";}i:1;a:5:{s:4:\"type\";s:9:\"node_feed\";s:10:\"argdefault\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:9:\"node_feed\";}}s:5:\"field\";a:0:{}s:6:\"filter\";a:1:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:8:\"requires\";a:1:{i:0;s:4:\"node\";}s:14:\"exposed_filter\";a:0:{}}}',0,1158605676,''),('filter:3:862e0010dcd7d510d8909ed28034b753','Grazie ad una fitta rete di corrispondenti, HR Capital è in grado di fornire assistenza ai propri Clienti in tutta Italia. Per informazioni sulla rete di corrispondenti sia in Italia che all’estero, o per richiedere di poter entrare a farne parte: info@hrcapital.it
\n',1158854281,1158767881,''),('variables','a:91:{s:13:\"theme_default\";s:9:\"HRCapital\";s:13:\"filter_html_1\";i:1;s:18:\"node_options_forum\";a:1:{i:0;s:6:\"status\";}s:19:\"file_directory_temp\";s:4:\"/tmp\";s:9:\"site_mail\";s:17:\"info@hrcapital.it\";s:12:\"site_mission\";s:0:\"\";s:9:\"anonymous\";s:9:\"Anonymous\";s:9:\"clean_url\";s:1:\"0\";s:8:\"site_403\";s:0:\"\";s:8:\"site_404\";s:0:\"\";s:11:\"error_level\";s:1:\"1\";s:14:\"watchdog_clear\";s:6:\"604800\";s:5:\"cache\";s:1:\"0\";s:14:\"cache_lifetime\";s:1:\"0\";s:19:\"file_directory_path\";s:5:\"files\";s:14:\"file_downloads\";s:1:\"2\";s:18:\"feed_default_items\";s:2:\"10\";s:16:\"feed_item_length\";s:6:\"teaser\";s:21:\"date_default_timezone\";s:4:\"3600\";s:22:\"configurable_timezones\";s:1:\"1\";s:17:\"date_format_short\";s:11:\"j M Y - H:i\";s:18:\"date_format_medium\";s:14:\"D, d/m/Y - H:i\";s:16:\"date_format_long\";s:15:\"l, j F, Y - H:i\";s:14:\"date_first_day\";s:1:\"1\";s:12:\"site_offline\";s:1:\"0\";s:20:\"site_offline_message\";s:104:\"This Drupal site is currently under maintenance. We should be back shortly. Thank you for your patience.\";s:9:\"site_name\";s:10:\"HR Capital\";s:11:\"site_slogan\";s:21:\"Corporate HR Services\";s:9:\"page_help\";s:0:\"\";s:17:\"minimum_page_size\";s:1:\"0\";s:17:\"node_options_page\";a:1:{i:0;s:6:\"status\";}s:11:\"upload_page\";s:1:\"1\";s:4:\"type\";s:5:\"story\";s:12:\"array_filter\";b:1;s:16:\"pathauto_version\";a:2:{s:4:\"text\";s:9:\"2005-9-18\";s:5:\"build\";i:5;}s:32:\"pathauto_indexaliases_bulkupdate\";b:0;s:27:\"pathauto_node_supportsfeeds\";s:4:\"feed\";s:27:\"pathauto_user_supportsfeeds\";N;s:31:\"pathauto_taxonomy_supportsfeeds\";s:6:\"0/feed\";s:19:\"pathauto_modulelist\";a:3:{i:0;s:4:\"node\";i:1;s:4:\"user\";i:2;s:8:\"taxonomy\";}s:16:\"pathauto_verbose\";i:0;s:18:\"pathauto_separator\";s:1:\"_\";s:19:\"pathauto_max_length\";s:3:\"128\";s:29:\"pathauto_max_component_length\";s:3:\"128\";s:21:\"pathauto_indexaliases\";i:1;s:22:\"pathauto_update_action\";s:1:\"0\";s:21:\"pathauto_node_pattern\";s:7:\"[title]\";s:26:\"pathauto_node_page_pattern\";s:0:\"\";s:27:\"pathauto_node_story_pattern\";s:0:\"\";s:24:\"pathauto_node_bulkupdate\";i:0;s:26:\"pathauto_node_applytofeeds\";i:0;s:21:\"pathauto_user_pattern\";s:11:\"user/[user]\";s:24:\"pathauto_user_bulkupdate\";i:0;s:25:\"pathauto_taxonomy_pattern\";s:17:\"[vocab]/[catpath]\";s:28:\"pathauto_taxonomy_bulkupdate\";i:0;s:30:\"pathauto_taxonomy_applytofeeds\";i:0;s:21:\"filter_default_format\";s:1:\"3\";s:18:\"drupal_private_key\";i:917168762;s:9:\"nodewords\";a:5:{s:6:\"global\";a:3:{s:9:\"copyright\";s:10:\"HR Capital\";s:8:\"keywords\";s:0:\"\";s:6:\"robots\";s:12:\"index,follow\";}s:10:\"use_teaser\";i:1;s:8:\"max_size\";s:3:\"255\";s:4:\"edit\";a:5:{s:8:\"abstract\";i:0;s:9:\"copyright\";i:0;s:11:\"description\";i:1;s:8:\"keywords\";i:1;s:6:\"robots\";i:0;}s:4:\"head\";a:5:{s:8:\"abstract\";i:1;s:9:\"copyright\";i:1;s:11:\"description\";i:1;s:8:\"keywords\";i:1;s:6:\"robots\";i:1;}}s:18:\"default_nodes_main\";s:2:\"10\";s:13:\"teaser_length\";s:3:\"200\";s:12:\"node_preview\";s:1:\"0\";s:11:\"site_footer\";s:106:\"Galleria Passarella 2, 20122 Milano – Tel.\r\n+39.02.365.930.1 Fax +39.02.365.930.00 – info@hrcapital.it\";s:12:\"i18n_browser\";s:1:\"0\";s:14:\"i18n_icon_path\";s:50:\"sites/hrcapital.b-lug.org/modules/i18n/flags/*.png\";s:14:\"i18n_icon_size\";s:5:\"16x12\";s:22:\"i18n_translation_links\";s:1:\"0\";s:27:\"i18n_translation_node_links\";s:1:\"0\";s:14:\"i18n_node_page\";s:1:\"1\";s:10:\"story_help\";s:0:\"\";s:18:\"minimum_story_size\";s:1:\"0\";s:18:\"node_options_story\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:12:\"upload_story\";s:1:\"1\";s:15:\"i18n_node_story\";s:1:\"1\";s:19:\"i18n_selection_mode\";s:6:\"strict\";s:17:\"i18nblocks_number\";i:1;s:12:\"i18nblocks_1\";a:3:{s:4:\"name\";s:10:\"News in hp\";s:2:\"it\";a:2:{s:6:\"module\";s:5:\"views\";s:5:\"delta\";s:4:\"news\";}s:2:\"en\";a:2:{s:6:\"module\";s:4:\"user\";s:5:\"delta\";s:1:\"3\";}}s:15:\"front_page_text\";s:1845:\"\'; ?>\r\n\r\n\">\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n
\r\n

/img/hp_img_tris.jpg\" alt=\"immagine decorativa per la pagina iniziale\" />\r\n
\r\n
\r\n
\r\n\r\n
\r\n\r\n\";s:15:\"front_page_size\";s:8:\"redirect\";s:24:\"front_page_anon_redirect\";s:9:\"frontpage\";s:14:\"front_page_php\";i:0;s:19:\"front_page_text_yes\";s:0:\"\";s:16:\"front_page2_size\";s:4:\"same\";s:19:\"front_page_redirect\";s:4:\"node\";s:18:\"front_page_php_yes\";i:0;s:21:\"front_page_breadcrumb\";i:0;s:30:\"front_page_breadcrumb_redirect\";s:0:\"\";s:14:\"site_frontpage\";s:10:\"front_page\";s:17:\"menu_primary_menu\";s:1:\"2\";s:19:\"menu_secondary_menu\";s:1:\"0\";s:17:\"menu_parent_items\";s:1:\"0\";}',0,1158850463,''),('locale:en','a:0:{}',0,1158767602,''),('filter:3:e33e77e5036b86922639ea436dd728e0','[Under Construction]
\n',1158854052,1158767652,''),('filter:3:f5919fc76610e3081a2348aca699d1a8','\nHR Capital è una società leader nell’outsourcing professionale dei servizi di contabilità del personale per le aziende, nata da un’esperienza di oltre 20 anni di attività professionale nel settore.
\n',1158854074,1158767674,''),('filter:3:174309c28a8ad2ab22c12e388270a2c8','\nHR Capital è una società leader nell’outsourcing professionale dei servizi di contabilità del personale per le aziende, nata da un’esperienza di oltre 20 anni di attività professionale nel settore.
\nDa sempre all’avanguardia nell’utilizzo di strumenti innovativi, grazie ai quali è oggi in grado di garantire la massima efficienza nell’elaborazione dati con un margine di errore che non è azzardato definire inesistente, HR Capital garantisce un supporto di assoluta qualità nell’area strategica dei servizi per le aziende nel campo delle Risorse Umane.
\nHR Capital con il suo team di personale qualificato offre alle Aziende Clienti un servizio ad elevato contenuto professionale che, attraverso l’adozione di soluzioni appositamente progettate e realizzate per soddisfare al meglio le diverse necessità dei Clienti.
\nIn questo modo HR Capital tende a creare un vero e proprio rapporto di partnership commerciale con i propri Clienti, contribuendo al raggiungimento dei loro target aziendali.
\n
\n',1158854074,1158767674,''),('filter:3:66238ff2057252a64002b42cd546bf13','Se siete interessati a valutare eventuali possibilità di collaborazione con HR Capital, Vi preghiamo di contattarci ai seguenti recapiti:
\nvia e-mail: mailto:recruitment@hrcapital.it
via fax: 02.365.930.00
\n',1158854038,1158767638,''),('filter:3:5f018604b10f78639cae6a868bb3f1ba','Se siete interessati a valutare eventuali possibilità di collaborazione con HR Capital, Vi preghiamo di contattarci ai seguenti recapiti:
\nvia e-mail: mailto:recruitment@hrcapital.it
via fax: 02.365.930.00
\n
\n',1158854038,1158767638,''),('filter:3:0d91bcc7f0a6626743676ef27e41c02c','Se siete interessati a valutare eventuali possibilità di collaborazione con HR Capital, Vi preghiamo di contattarci ai seguenti recapiti:
\nvia e-mail: mailto:recruitment@hrcapital.it
via fax: 02.365.930.00
\n',1158853985,1158767585,''),('views_with_inline_args:en','a:0:{}',0,1158667175,''),('views_default_views:it','a:4:{s:9:\"frontpage\";O:8:\"stdClass\":17:{s:4:\"name\";s:9:\"frontpage\";s:11:\"description\";s:26:\"The basic front page view.\";s:4:\"page\";b:1;s:3:\"url\";s:9:\"frontpage\";s:10:\"page_title\";s:0:\"\";s:9:\"page_type\";s:6:\"teaser\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"10\";s:5:\"block\";b:0;s:4:\"menu\";b:0;s:18:\"breadcrumb_no_home\";b:1;s:4:\"sort\";a:2:{i:0;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.sticky\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:11:\"node.sticky\";}i:1;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:12:\"node.created\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:12:\"node.created\";}}s:8:\"argument\";a:1:{i:0;a:7:{s:4:\"type\";s:9:\"node_feed\";s:10:\"argdefault\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:7:\"options\";s:0:\"\";s:8:\"wildcard\";s:0:\"\";s:21:\"wildcard_substitution\";s:0:\"\";s:2:\"id\";s:9:\"node_feed\";}}s:5:\"field\";a:0:{}s:6:\"filter\";a:2:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:12:\"node.promote\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:12:\"node.promote\";}i:1;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:14:\"exposed_filter\";a:0:{}s:6:\"access\";a:0:{}}s:14:\"popular_recent\";O:8:\"stdClass\":41:{s:4:\"name\";s:14:\"popular_recent\";s:11:\"description\";s:33:\"Nodes sorted by recent page-views\";s:6:\"access\";a:0:{}s:13:\"view_args_php\";s:0:\"\";s:4:\"page\";b:1;s:10:\"page_title\";s:22:\"recent popular content\";s:11:\"page_header\";s:0:\"\";s:18:\"page_header_format\";s:1:\"1\";s:11:\"page_footer\";s:0:\"\";s:18:\"page_footer_format\";s:1:\"1\";s:10:\"page_empty\";s:0:\"\";s:17:\"page_empty_format\";s:1:\"1\";s:9:\"page_type\";s:5:\"table\";s:3:\"url\";s:14:\"popular/latest\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"20\";s:4:\"menu\";b:1;s:10:\"menu_title\";s:0:\"\";s:8:\"menu_tab\";b:1;s:16:\"menu_tab_default\";b:1;s:11:\"menu_weight\";s:2:\"-1\";s:5:\"block\";b:1;s:11:\"block_title\";s:22:\"recent popular content\";s:12:\"block_header\";s:0:\"\";s:19:\"block_header_format\";s:1:\"1\";s:12:\"block_footer\";s:0:\"\";s:19:\"block_footer_format\";s:1:\"1\";s:11:\"block_empty\";s:0:\"\";s:18:\"block_empty_format\";s:1:\"1\";s:10:\"block_type\";s:4:\"list\";s:15:\"nodes_per_block\";s:1:\"5\";s:10:\"block_more\";s:1:\"1\";s:21:\"block_use_page_header\";b:0;s:21:\"block_use_page_footer\";b:0;s:20:\"block_use_page_empty\";b:0;s:4:\"sort\";a:0:{}s:8:\"argument\";a:0:{}s:5:\"field\";a:5:{i:0;a:7:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"label\";s:4:\"type\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:9:\"node.type\";s:2:\"id\";s:9:\"node.type\";s:9:\"queryname\";s:9:\"node_type\";}i:1;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:5:\"title\";s:7:\"handler\";s:28:\"views_handler_field_nodelink\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"node.title\";s:2:\"id\";s:10:\"node.title\";s:9:\"queryname\";s:10:\"node_title\";}i:2;a:7:{s:9:\"tablename\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:5:\"label\";s:6:\"author\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"users.name\";s:2:\"id\";s:10:\"users.name\";s:9:\"queryname\";s:10:\"users_name\";}i:3;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"label\";s:7:\"created\";s:7:\"handler\";s:30:\"views_handler_field_date_small\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:12:\"node.created\";s:2:\"id\";s:12:\"node.created\";s:9:\"queryname\";s:12:\"node_created\";}i:4;a:8:{s:9:\"tablename\";s:12:\"node_counter\";s:5:\"field\";s:8:\"daycount\";s:5:\"label\";s:11:\"recent hits\";s:8:\"sortable\";s:1:\"1\";s:11:\"defaultsort\";s:4:\"DESC\";s:8:\"fullname\";s:21:\"node_counter.daycount\";s:2:\"id\";s:21:\"node_counter.daycount\";s:9:\"queryname\";s:21:\"node_counter_daycount\";}}s:6:\"filter\";a:1:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:8:\"requires\";a:3:{i:0;s:12:\"node_counter\";i:1;s:4:\"node\";i:2;s:5:\"users\";}s:14:\"exposed_filter\";a:0:{}}s:15:\"popular_alltime\";O:8:\"stdClass\":41:{s:4:\"name\";s:15:\"popular_alltime\";s:11:\"description\";s:32:\"Nodes sorted by total page-views\";s:6:\"access\";a:0:{}s:13:\"view_args_php\";s:0:\"\";s:4:\"page\";b:1;s:10:\"page_title\";s:24:\"all-time popular content\";s:11:\"page_header\";s:0:\"\";s:18:\"page_header_format\";s:1:\"1\";s:11:\"page_footer\";s:0:\"\";s:18:\"page_footer_format\";s:1:\"1\";s:10:\"page_empty\";s:0:\"\";s:17:\"page_empty_format\";s:1:\"1\";s:9:\"page_type\";s:5:\"table\";s:3:\"url\";s:15:\"popular/alltime\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"20\";s:4:\"menu\";b:1;s:10:\"menu_title\";s:0:\"\";s:8:\"menu_tab\";b:1;s:16:\"menu_tab_default\";b:0;s:11:\"menu_weight\";s:1:\"1\";s:5:\"block\";b:1;s:11:\"block_title\";s:24:\"all-time popular content\";s:12:\"block_header\";s:0:\"\";s:19:\"block_header_format\";s:1:\"1\";s:12:\"block_footer\";s:0:\"\";s:19:\"block_footer_format\";s:1:\"1\";s:11:\"block_empty\";s:0:\"\";s:18:\"block_empty_format\";s:1:\"1\";s:10:\"block_type\";s:4:\"list\";s:15:\"nodes_per_block\";s:1:\"5\";s:10:\"block_more\";s:1:\"1\";s:21:\"block_use_page_header\";b:0;s:21:\"block_use_page_footer\";b:0;s:20:\"block_use_page_empty\";b:0;s:4:\"sort\";a:0:{}s:8:\"argument\";a:0:{}s:5:\"field\";a:5:{i:0;a:7:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"label\";s:4:\"tipo\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:9:\"node.type\";s:2:\"id\";s:9:\"node.type\";s:9:\"queryname\";s:9:\"node_type\";}i:1;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:5:\"title\";s:7:\"handler\";s:28:\"views_handler_field_nodelink\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"node.title\";s:2:\"id\";s:10:\"node.title\";s:9:\"queryname\";s:10:\"node_title\";}i:2;a:7:{s:9:\"tablename\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:5:\"label\";s:6:\"author\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:10:\"users.name\";s:2:\"id\";s:10:\"users.name\";s:9:\"queryname\";s:10:\"users_name\";}i:3;a:8:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"label\";s:7:\"created\";s:7:\"handler\";s:25:\"views_handler_field_since\";s:8:\"sortable\";s:1:\"1\";s:8:\"fullname\";s:12:\"node.created\";s:2:\"id\";s:12:\"node.created\";s:9:\"queryname\";s:12:\"node_created\";}i:4;a:8:{s:9:\"tablename\";s:12:\"node_counter\";s:5:\"field\";s:10:\"totalcount\";s:5:\"label\";s:5:\"reads\";s:8:\"sortable\";s:1:\"1\";s:11:\"defaultsort\";s:4:\"DESC\";s:8:\"fullname\";s:23:\"node_counter.totalcount\";s:2:\"id\";s:23:\"node_counter.totalcount\";s:9:\"queryname\";s:23:\"node_counter_totalcount\";}}s:6:\"filter\";a:1:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:8:\"requires\";a:3:{i:0;s:12:\"node_counter\";i:1;s:4:\"node\";i:2;s:5:\"users\";}s:14:\"exposed_filter\";a:0:{}}s:13:\"taxonomy_term\";O:8:\"stdClass\":18:{s:4:\"name\";s:13:\"taxonomy_term\";s:8:\"disabled\";b:1;s:11:\"description\";s:36:\"The taxonomy view with a depth of 0.\";s:6:\"access\";a:0:{}s:4:\"page\";b:1;s:10:\"page_title\";s:10:\"tassonomia\";s:11:\"page_header\";s:0:\"\";s:18:\"page_header_format\";s:1:\"1\";s:9:\"page_type\";s:6:\"teaser\";s:3:\"url\";s:13:\"taxonomy/term\";s:9:\"use_pager\";b:1;s:14:\"nodes_per_page\";s:2:\"10\";s:4:\"sort\";a:2:{i:0;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.sticky\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:11:\"node.sticky\";}i:1;a:5:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:12:\"node.created\";s:9:\"sortorder\";s:4:\"DESC\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:12:\"node.created\";}}s:8:\"argument\";a:2:{i:0;a:5:{s:4:\"type\";s:5:\"taxid\";s:10:\"argdefault\";s:1:\"1\";s:5:\"title\";s:2:\"%1\";s:7:\"options\";s:1:\"0\";s:2:\"id\";s:5:\"taxid\";}i:1;a:5:{s:4:\"type\";s:9:\"node_feed\";s:10:\"argdefault\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:7:\"options\";s:0:\"\";s:2:\"id\";s:9:\"node_feed\";}}s:5:\"field\";a:0:{}s:6:\"filter\";a:1:{i:0;a:6:{s:9:\"tablename\";s:4:\"node\";s:5:\"field\";s:11:\"node.status\";s:8:\"operator\";s:1:\"=\";s:7:\"options\";s:0:\"\";s:5:\"value\";s:1:\"1\";s:2:\"id\";s:11:\"node.status\";}}s:8:\"requires\";a:1:{i:0;s:4:\"node\";}s:14:\"exposed_filter\";a:0:{}}}',0,1158604900,''),('views_arguments:it','a:2:{s:4:\"base\";a:15:{s:8:\"nodetype\";s:10:\"Node: Type\";s:10:\"nodeletter\";s:11:\"Node: Title\";s:4:\"year\";s:17:\"Node: Posted Year\";s:5:\"month\";s:18:\"Node: Posted Month\";s:4:\"week\";s:17:\"Node: Posted Week\";s:9:\"monthyear\";s:25:\"Node: Posted Month + Year\";s:8:\"fulldate\";s:22:\"Node: Posted Full Date\";s:3:\"nid\";s:8:\"Node: ID\";s:9:\"node_feed\";s:19:\"Node: Feed Selector\";s:3:\"uid\";s:19:\"User: UID is Author\";s:8:\"uidtouch\";s:31:\"User: UID Authored or Commented\";s:8:\"username\";s:24:\"User: Username is Author\";s:5:\"taxid\";s:17:\"Taxonomy: Term ID\";s:9:\"taxletter\";s:19:\"Taxonomy: Term Name\";s:5:\"vocid\";s:23:\"Taxonomy: Vocabulary ID\";}s:5:\"title\";a:15:{s:8:\"nodetype\";a:3:{s:4:\"name\";s:10:\"Node: Type\";s:7:\"handler\";s:26:\"views_handler_arg_nodetype\";s:4:\"help\";s:84:\"The node type argument allows users to filter a view by specifying the type of node.\";}s:10:\"nodeletter\";a:4:{s:4:\"name\";s:11:\"Node: Title\";s:7:\"handler\";s:28:\"views_handler_arg_nodeletter\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:164:\"The argument will filter by the node title. For this argument, set the option to the number of characters, using 0 for full term; use 1 for an A/B/C style glossary.\";}s:4:\"year\";a:3:{s:4:\"name\";s:17:\"Node: Posted Year\";s:7:\"handler\";s:22:\"views_handler_arg_year\";s:4:\"help\";s:91:\"This argument allows users to filter by what year the node was posted, in the form of CCYY.\";}s:5:\"month\";a:3:{s:4:\"name\";s:18:\"Node: Posted Month\";s:7:\"handler\";s:23:\"views_handler_arg_month\";s:4:\"help\";s:146:\"Months are specified by the numbers 1-12. Since this argument does not specify a year, it is recommended that it usually follow a \'Year\' argument.\";}s:4:\"week\";a:3:{s:4:\"name\";s:17:\"Node: Posted Week\";s:7:\"handler\";s:22:\"views_handler_arg_week\";s:4:\"help\";s:125:\"This allows the user to filter a view by the week number from 1-52. It is recommended this argument follow a \'Year\' argument.\";}s:9:\"monthyear\";a:3:{s:4:\"name\";s:25:\"Node: Posted Month + Year\";s:7:\"handler\";s:27:\"views_handler_arg_monthyear\";s:4:\"help\";s:91:\"This argument combines Month and Year into a single argument, specified in the form CCYYMM.\";}s:8:\"fulldate\";a:3:{s:4:\"name\";s:22:\"Node: Posted Full Date\";s:7:\"handler\";s:26:\"views_handler_arg_fulldate\";s:4:\"help\";s:57:\"This argument is a complete date in the form of CCYYMMDD.\";}s:3:\"nid\";a:3:{s:4:\"name\";s:8:\"Node: ID\";s:7:\"handler\";s:21:\"views_handler_arg_nid\";s:4:\"help\";s:34:\"This argument is a single Node ID.\";}s:9:\"node_feed\";a:3:{s:4:\"name\";s:19:\"Node: Feed Selector\";s:7:\"handler\";s:27:\"views_handler_arg_node_feed\";s:4:\"help\";s:162:\"This argument allows pluggable \"feed\" selectors. If using views_rss module, \"feed\" will turn the view into an RSS feed. Other modules may provide their own feeds.\";}s:3:\"uid\";a:3:{s:4:\"name\";s:19:\"User: UID is Author\";s:7:\"handler\";s:21:\"views_handler_arg_uid\";s:4:\"help\";s:87:\"The User ID argument allows users to filter to nodes authored by the specified user ID.\";}s:8:\"uidtouch\";a:3:{s:4:\"name\";s:31:\"User: UID Authored or Commented\";s:7:\"handler\";s:27:\"views_handler_arg_uid_touch\";s:4:\"help\";s:102:\"The User ID argument allows users to filter a to nodes authored or commented on the specified user ID.\";}s:8:\"username\";a:3:{s:4:\"name\";s:24:\"User: Username is Author\";s:7:\"handler\";s:26:\"views_handler_arg_username\";s:4:\"help\";s:89:\"The Username argument allows users to file to a nodes authored by the specified username.\";}s:5:\"taxid\";a:4:{s:4:\"name\";s:17:\"Taxonomy: Term ID\";s:7:\"handler\";s:23:\"views_handler_arg_taxid\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:140:\"The argument will filter by a taxonomy term ID. For this argument, set the option to the depth to search. See taxonomy for more information.\";}s:9:\"taxletter\";a:4:{s:4:\"name\";s:19:\"Taxonomy: Term Name\";s:7:\"handler\";s:27:\"views_handler_arg_taxletter\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:170:\"The argument will filter by a taxonomy term name. For this argument, set the option to the number of characters, using 0 for full term; use 1 for an A/B/C style glossary.\";}s:5:\"vocid\";a:3:{s:4:\"name\";s:23:\"Taxonomy: Vocabulary ID\";s:7:\"handler\";s:23:\"views_handler_arg_vocid\";s:4:\"help\";s:61:\"The argument will filter to nodes with terms in a vocabulary.\";}}}',0,1158604901,''),('views_with_inline_args:it','a:0:{}',0,1158850463,''),('views_style_plugins:it','a:2:{s:5:\"title\";a:4:{s:4:\"list\";s:9:\"List View\";s:5:\"table\";s:10:\"Table View\";s:6:\"teaser\";s:11:\"Teaser List\";s:4:\"node\";s:10:\"Full Nodes\";}s:4:\"base\";a:4:{s:4:\"list\";a:5:{s:4:\"name\";s:9:\"List View\";s:5:\"theme\";s:15:\"views_view_list\";s:8:\"validate\";s:29:\"views_ui_plugin_validate_list\";s:12:\"needs_fields\";b:1;s:13:\"summary_theme\";s:13:\"views_summary\";}s:5:\"table\";a:6:{s:4:\"name\";s:10:\"Table View\";s:5:\"theme\";s:16:\"views_view_table\";s:8:\"validate\";s:30:\"views_ui_plugin_validate_table\";s:12:\"needs_fields\";b:1;s:18:\"needs_table_header\";b:1;s:13:\"summary_theme\";s:13:\"views_summary\";}s:6:\"teaser\";a:3:{s:4:\"name\";s:11:\"Teaser List\";s:5:\"theme\";s:18:\"views_view_teasers\";s:13:\"summary_theme\";s:13:\"views_summary\";}s:4:\"node\";a:3:{s:4:\"name\";s:10:\"Full Nodes\";s:5:\"theme\";s:16:\"views_view_nodes\";s:13:\"summary_theme\";s:13:\"views_summary\";}}}',0,1158605320,''),('views_arguments:en','a:2:{s:4:\"base\";a:15:{s:8:\"nodetype\";s:10:\"Node: Type\";s:10:\"nodeletter\";s:11:\"Node: Title\";s:4:\"year\";s:17:\"Node: Posted Year\";s:5:\"month\";s:18:\"Node: Posted Month\";s:4:\"week\";s:17:\"Node: Posted Week\";s:9:\"monthyear\";s:25:\"Node: Posted Month + Year\";s:8:\"fulldate\";s:22:\"Node: Posted Full Date\";s:3:\"nid\";s:8:\"Node: ID\";s:9:\"node_feed\";s:19:\"Node: Feed Selector\";s:3:\"uid\";s:19:\"User: UID is Author\";s:8:\"uidtouch\";s:31:\"User: UID Authored or Commented\";s:8:\"username\";s:24:\"User: Username is Author\";s:5:\"taxid\";s:17:\"Taxonomy: Term ID\";s:9:\"taxletter\";s:19:\"Taxonomy: Term Name\";s:5:\"vocid\";s:23:\"Taxonomy: Vocabulary ID\";}s:5:\"title\";a:15:{s:8:\"nodetype\";a:3:{s:4:\"name\";s:10:\"Node: Type\";s:7:\"handler\";s:26:\"views_handler_arg_nodetype\";s:4:\"help\";s:84:\"The node type argument allows users to filter a view by specifying the type of node.\";}s:10:\"nodeletter\";a:4:{s:4:\"name\";s:11:\"Node: Title\";s:7:\"handler\";s:28:\"views_handler_arg_nodeletter\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:164:\"The argument will filter by the node title. For this argument, set the option to the number of characters, using 0 for full term; use 1 for an A/B/C style glossary.\";}s:4:\"year\";a:3:{s:4:\"name\";s:17:\"Node: Posted Year\";s:7:\"handler\";s:22:\"views_handler_arg_year\";s:4:\"help\";s:91:\"This argument allows users to filter by what year the node was posted, in the form of CCYY.\";}s:5:\"month\";a:3:{s:4:\"name\";s:18:\"Node: Posted Month\";s:7:\"handler\";s:23:\"views_handler_arg_month\";s:4:\"help\";s:146:\"Months are specified by the numbers 1-12. Since this argument does not specify a year, it is recommended that it usually follow a \'Year\' argument.\";}s:4:\"week\";a:3:{s:4:\"name\";s:17:\"Node: Posted Week\";s:7:\"handler\";s:22:\"views_handler_arg_week\";s:4:\"help\";s:125:\"This allows the user to filter a view by the week number from 1-52. It is recommended this argument follow a \'Year\' argument.\";}s:9:\"monthyear\";a:3:{s:4:\"name\";s:25:\"Node: Posted Month + Year\";s:7:\"handler\";s:27:\"views_handler_arg_monthyear\";s:4:\"help\";s:91:\"This argument combines Month and Year into a single argument, specified in the form CCYYMM.\";}s:8:\"fulldate\";a:3:{s:4:\"name\";s:22:\"Node: Posted Full Date\";s:7:\"handler\";s:26:\"views_handler_arg_fulldate\";s:4:\"help\";s:57:\"This argument is a complete date in the form of CCYYMMDD.\";}s:3:\"nid\";a:3:{s:4:\"name\";s:8:\"Node: ID\";s:7:\"handler\";s:21:\"views_handler_arg_nid\";s:4:\"help\";s:34:\"This argument is a single Node ID.\";}s:9:\"node_feed\";a:3:{s:4:\"name\";s:19:\"Node: Feed Selector\";s:7:\"handler\";s:27:\"views_handler_arg_node_feed\";s:4:\"help\";s:162:\"This argument allows pluggable \"feed\" selectors. If using views_rss module, \"feed\" will turn the view into an RSS feed. Other modules may provide their own feeds.\";}s:3:\"uid\";a:3:{s:4:\"name\";s:19:\"User: UID is Author\";s:7:\"handler\";s:21:\"views_handler_arg_uid\";s:4:\"help\";s:87:\"The User ID argument allows users to filter to nodes authored by the specified user ID.\";}s:8:\"uidtouch\";a:3:{s:4:\"name\";s:31:\"User: UID Authored or Commented\";s:7:\"handler\";s:27:\"views_handler_arg_uid_touch\";s:4:\"help\";s:102:\"The User ID argument allows users to filter a to nodes authored or commented on the specified user ID.\";}s:8:\"username\";a:3:{s:4:\"name\";s:24:\"User: Username is Author\";s:7:\"handler\";s:26:\"views_handler_arg_username\";s:4:\"help\";s:89:\"The Username argument allows users to file to a nodes authored by the specified username.\";}s:5:\"taxid\";a:4:{s:4:\"name\";s:17:\"Taxonomy: Term ID\";s:7:\"handler\";s:23:\"views_handler_arg_taxid\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:140:\"The argument will filter by a taxonomy term ID. For this argument, set the option to the depth to search. See taxonomy for more information.\";}s:9:\"taxletter\";a:4:{s:4:\"name\";s:19:\"Taxonomy: Term Name\";s:7:\"handler\";s:27:\"views_handler_arg_taxletter\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:170:\"The argument will filter by a taxonomy term name. For this argument, set the option to the number of characters, using 0 for full term; use 1 for an A/B/C style glossary.\";}s:5:\"vocid\";a:3:{s:4:\"name\";s:23:\"Taxonomy: Vocabulary ID\";s:7:\"handler\";s:23:\"views_handler_arg_vocid\";s:4:\"help\";s:61:\"The argument will filter to nodes with terms in a vocabulary.\";}}}',0,1158605676,''),('filter:3:327c1bac710a446bbaab806065802845','PAYROLL - ELABORAZIONE DELLE RETRIBUZIONI
\nHR Capital assicura il servizio di elaborazione delle retribuzioni che comprende una ampia gamma di servizi tagliati sulla base delle esigenze dei propri clienti che vanno dalla emissione del cedolino alla completa presa in carico della funzione del personale.
\nIn particolare, il servizio offerto comprende:
\n- acquisizione automatica delle presenze
- gestione note spese
- elaborazione delle retribuzioni
- budget
- servizio completo di gestione ed amministrazione del personale
\nIl servizio è destinato ad aziende private di qualsiasi settore o dimensione.
\nFORMAZIONE
\nHR Capital cura per la propria selezionata clientela corsi personalizzati di formazione nell’area della amministrazione e gestione del personale.
\nA tal fine, la HR Capital si avvale, a seconda delle esigenze, dei propri collaboratori o di collaboratori esterni selezionati tra gli esperti del settore (normalmente avvocati, consulenti del lavoro ed ingenerale esperti aziendali).
\n',1158853711,1158767311,''),('filter:3:bb2de6655c8d7172a44a2d8c20c527c4','Se siete interessati a valutare eventuali possibilità di collaborazione con HR Capital, Vi preghiamo di contattarci ai seguenti recapiti:
\nvia e-mail: mailto:recruitment@hrcapital.it
via fax: 02.365.930.00
\n
\n',1158853985,1158767585,''),('locale:it','a:2576:{s:3:\"php\";s:3:\"php\";s:6:\"legacy\";s:6:\"legacy\";s:4:\"view\";s:6:\"mostra\";s:8:\"security\";b:1;s:40:\"Illegal choice %choice in %name element.\";b:1;s:4:\"form\";b:1;s:18:\"Save configuration\";s:20:\"Salva configurazione\";s:6:\"delete\";s:7:\"elimina\";s:7:\"Enabled\";s:9:\"Abilitato\";s:7:\"Default\";s:8:\"Standard\";s:10:\"Operations\";s:10:\"Operazioni\";s:6:\"Search\";s:5:\"Cerca\";s:8:\"Language\";s:6:\"Lingua\";s:4:\"edit\";s:8:\"modifica\";s:6:\"locale\";s:6:\"lingua\";s:4:\"Home\";s:4:\"Home\";s:10:\"Navigation\";s:11:\"Navigazione\";s:3:\"new\";s:5:\"nuovo\";s:18:\"View user profile.\";s:25:\"Mostra il profilo utente.\";s:12:\"add category\";s:18:\"aggiungi categoria\";s:4:\"list\";s:6:\"elenco\";s:10:\"categories\";s:9:\"categorie\";s:9:\"configure\";s:9:\"configura\";s:4:\"none\";s:7:\"nessuno\";s:17:\"Allowed HTML tags\";s:17:\"Tag HTML permessi\";s:4:\"more\";s:11:\"leggi tutto\";s:5:\"Title\";s:6:\"Titolo\";s:11:\"Description\";s:11:\"Descrizione\";s:6:\"Submit\";s:5:\"Invia\";s:6:\"Delete\";s:7:\"Elimina\";s:3:\"URL\";s:3:\"URL\";s:9:\"%time ago\";s:8:\"%time fa\";s:5:\"never\";s:3:\"mai\";s:9:\"read more\";s:11:\"leggi tutto\";s:6:\"Drupal\";s:6:\"Drupal\";s:10:\"Categories\";s:9:\"Categorie\";s:6:\"Sunday\";s:8:\"Domenica\";s:6:\"Monday\";s:7:\"Lunedì\";s:7:\"Tuesday\";s:8:\"Martedì\";s:9:\"Wednesday\";s:10:\"Mercoledì\";s:8:\"Thursday\";s:8:\"Giovedì\";s:6:\"Friday\";s:8:\"Venerdì\";s:8:\"Saturday\";s:6:\"Sabato\";s:7:\"January\";s:7:\"Gennaio\";s:8:\"February\";s:8:\"Febbraio\";s:5:\"March\";s:5:\"Marzo\";s:5:\"April\";s:6:\"Aprile\";s:3:\"May\";s:6:\"Maggio\";s:4:\"June\";s:6:\"Giugno\";s:4:\"July\";s:6:\"Luglio\";s:6:\"August\";s:6:\"Agosto\";s:9:\"September\";s:9:\"Settembre\";s:7:\"October\";s:7:\"Ottobre\";s:8:\"November\";s:8:\"Novembre\";s:8:\"December\";s:8:\"Dicembre\";s:8:\"Disabled\";s:12:\"Disabilitato\";s:6:\"Weight\";s:4:\"Peso\";s:8:\"Throttle\";s:10:\"Limitatore\";s:6:\"Cancel\";s:7:\"Annulla\";s:7:\"History\";s:10:\"Cronologia\";s:4:\"Body\";s:5:\"Testo\";s:4:\"blog\";s:4:\"blog\";s:7:\"content\";s:9:\"contenuto\";s:6:\"Parent\";s:8:\"Genitore\";s:11:\"Log message\";s:16:\"Messaggio di log\";s:4:\"‹ \";b:1;s:4:\" ›\";b:1;s:22:\"%type: updated %title.\";s:25:\"%type: %title aggiornato.\";s:8:\"settings\";s:12:\"impostazioni\";s:8:\"Optional\";s:9:\"Opzionale\";s:8:\"Required\";s:9:\"Richiesto\";s:14:\"Update options\";s:21:\"Opzioni aggiornamento\";s:6:\"Update\";s:8:\"Aggiorna\";s:7:\"Subject\";s:8:\"Soggetto\";s:6:\"Author\";s:6:\"Autore\";s:4:\"Time\";s:10:\"Data e ora\";s:30:\"The update has been performed.\";s:36:\"L\'aggiornamento è stato effettuato.\";s:29:\"This action cannot be undone.\";s:39:\"Quest\'azione non può essere annullata.\";s:33:\"You have to specify a valid date.\";s:33:\"Devi specificare una data valida.\";s:11:\"Authored by\";s:13:\"Modificato da\";s:6:\"E-mail\";s:6:\"E-mail\";s:73:\"The content of this field is kept private and will not be shown publicly.\";s:76:\"Il contenuto di questo campo è privato e non verrà mostrato pubblicamente.\";s:11:\"Authored on\";s:13:\"Modificato il\";s:6:\"Status\";s:5:\"Stato\";s:9:\"Published\";s:10:\"Pubblicato\";s:9:\"Your name\";s:11:\"Il tuo nome\";s:19:\"Date - newest first\";s:25:\"Data - prima i più nuovi\";s:19:\"Date - oldest first\";s:26:\"Data - prima i più vecchi\";s:9:\"1 comment\";s:10:\"1 commento\";s:3:\"Yes\";s:2:\"Si\";s:2:\"No\";s:2:\"No\";s:8:\"Category\";s:9:\"Categoria\";s:8:\"Selected\";s:11:\"Selezionato\";s:26:\"You must enter a category.\";s:28:\"Devi inserire una categoria.\";s:17:\"Reset to defaults\";b:1;s:7:\"Message\";s:9:\"Messaggio\";s:4:\"Name\";s:4:\"Nome\";s:5:\"Roles\";s:5:\"Ruoli\";s:4:\"root\";s:6:\"radice\";s:7:\"Replies\";s:8:\"Risposte\";s:9:\"Last post\";s:18:\"Ultimo inserimento\";s:4:\"help\";s:5:\"aiuto\";s:8:\"taxonomy\";s:10:\"tassonomia\";s:7:\"Preview\";s:9:\"Anteprima\";s:5:\"Reset\";s:21:\"Riporta a predefinito\";s:6:\"locked\";s:8:\"bloccato\";s:9:\"Unlimited\";s:10:\"Illimitato\";s:6:\"search\";s:5:\"cerca\";s:6:\"Filter\";s:6:\"Filtra\";s:4:\"Type\";s:4:\"Tipo\";s:6:\"Active\";s:6:\"Attivo\";s:7:\"results\";s:9:\"risultati\";s:7:\"details\";s:8:\"dettagli\";s:5:\"track\";s:7:\"traccia\";s:8:\"Referrer\";s:8:\"Referrer\";s:4:\"Date\";s:4:\"Data\";s:4:\"User\";s:6:\"Utente\";s:8:\"Hostname\";s:9:\"Nome host\";s:13:\"file download\";s:17:\"download del file\";s:16:\"General settings\";s:21:\"Impostazioni generali\";s:14:\"E-mail address\";s:16:\"Indirizzo e-mail\";s:6:\"1 user\";s:8:\"1 utente\";s:5:\"error\";s:6:\"errore\";s:12:\"left sidebar\";s:14:\"barra sinistra\";s:13:\"right sidebar\";s:21:\"barra laterale destra\";s:31:\"Last cron run did not complete.\";s:42:\"L\'operazione cron non è stata completata.\";s:18:\"Cron run completed\";s:26:\"Operazioni cron completate\";s:4:\"cron\";s:4:\"cron\";s:37:\"The specified passwords do not match.\";b:1;s:20:\"Built-in GD2 toolkit\";s:21:\"Toolkit GD2 integrato\";s:59:\"The built-in GD2 toolkit is installed and working properly.\";s:63:\"Il toolkit integrato GD2 è installato e funziona regolarmente.\";s:18:\"edit primary links\";s:21:\"modifica link primari\";s:27:\"Operating in off-line mode.\";b:1;s:8:\"« first\";b:1;s:8:\"next ›\";s:12:\"seguente ›\";s:18:\"Go to page %number\";b:1;s:10:\"sort by %s\";s:13:\"ordina per %s\";s:28:\"parse error. not well formed\";s:48:\"errore di interpretazione. sintassi non conforme\";s:49:\"Recursive calls to system.multicall are forbidden\";s:51:\"Chiamate ricorsive a system.multicall sono proibite\";s:57:\"server error. requested method %methodname not specified.\";s:60:\"errore server. metodo %methodname richiesto non specificato.\";s:47:\"server error. wrong number of method parameters\";s:52:\"errore server: numero errato di parametri del metodo\";s:39:\"server error. invalid method parameters\";s:47:\"errore server: parametri invalidi per il metodo\";s:58:\"server error. requested method %methodname does not exist.\";s:58:\"errore server: il metodo richiesto %methodname non esiste.\";s:56:\"server error. requested function %method does not exist.\";s:56:\"errore server: la funzione richiesta %method non esiste.\";s:67:\"server error. requested method %methodname signature not specified.\";s:66:\"errore server. firma metodo %methodname richiesto non specificata.\";s:39:\"You can not administer the help system.\";s:42:\"Non puoi amministrare il sistema di aiuto.\";s:35:\"Manages the display of online help.\";s:47:\"Gestisce la visualizzazione dell\'help in linea.\";s:40:\"No help is available for module %module.\";s:44:\"Aiuto non disponibile per il modulo %module.\";s:42:\"Legacy module has no configurable options.\";s:45:\"Il modulo legcy non ha opzioni configurabili.\";s:70:\"Provides legacy handlers for upgrades from older Drupal installations.\";s:80:\"Fornisce degli handler legacy per aggiornare le vecchie installazioni di Drupal.\";s:13:\"Legacy filter\";s:13:\"Filtro legacy\";s:67:\"Replaces URLs from Drupal 4.1 (and lower) with updated equivalents.\";s:76:\"Sostituisce gli URL di Drupal 4.1 (e precedenti) con equivalenti aggiornati.\";s:51:\"Alerts other sites when your site has been updated.\";b:1;s:39:\"Failed to notify pingomatic.com (site).\";s:47:\"Impossibile norificare a pingomatic.com (sito).\";s:14:\"directory ping\";s:20:\"ping della directory\";s:4:\"ping\";s:4:\"ping\";s:60:\"Allows users to submit stories, articles or similar content.\";s:71:\"Permette agli utenti di pubblicare storie, articoli o contenuti simili.\";s:5:\"story\";s:6:\"storia\";s:14:\"create stories\";s:11:\"crea storie\";s:16:\"edit own stories\";s:26:\"modifica le proprie storie\";s:19:\"By %author at %date\";b:1;s:9:\"chameleon\";b:1;s:6:\"header\";s:12:\"intestazione\";s:6:\"footer\";s:26:\"messaggio a piè di pagina\";s:22:\"Submitted by %a on %b.\";s:20:\"Inserito da %a il %b\";s:10:\"aggregator\";s:11:\"aggregatore\";s:8:\"add feed\";s:14:\"aggiungi fonte\";s:12:\"update items\";s:16:\"aggiorna oggetti\";s:15:\"news aggregator\";s:19:\"aggregatore notizie\";s:7:\"sources\";s:8:\"sorgenti\";s:8:\"RSS feed\";s:9:\"fonte RSS\";s:10:\"categorize\";s:11:\"categorizza\";s:9:\"edit feed\";s:14:\"modifica fonte\";s:13:\"edit category\";s:18:\"modifica categoria\";s:43:\"Items shown in sources and categories pages\";s:50:\"Oggetti mostrati nelle pagine sorgenti e categorie\";s:29:\"Discard news items older than\";s:38:\"Elimina i nuovi oggetti più vecchi di\";s:23:\"Category selection type\";s:24:\"Selezione tipo categoria\";s:10:\"checkboxes\";s:17:\"caselle controllo\";s:17:\"multiple selector\";s:18:\"selezione multipla\";s:28:\"%title category latest items\";s:37:\"ultimi oggetti della categoria %title\";s:24:\"%title feed latest items\";s:33:\"ultimi oggetti dalla fonte %title\";s:29:\"Number of news items in block\";s:28:\"Numero di notizie nel blocco\";s:29:\"View this feed\'s recent news.\";s:42:\"Mostra le notizie recenti da questa fonte.\";s:33:\"View this category\'s recent news.\";s:46:\"Mostra le notizie recenti di questa categoria.\";s:71:\"A category named %category already exists. Please enter a unique title.\";b:1;s:25:\"Category %category added.\";b:1;s:36:\"The fully-qualified URL of the feed.\";s:27:\"L\'URL completo della fonte.\";s:15:\"Update interval\";s:27:\"Intervallo di aggiornamento\";s:21:\"Categorize news items\";s:27:\"Categorizza i nuovi oggetti\";s:63:\"A feed named %feed already exists. Please enter a unique title.\";b:1;s:17:\"Feed %feed added.\";b:1;s:44:\"The news items from %site have been removed.\";s:41:\"Oggetto notizie dal sito %site eliminato.\";s:46:\"There is no new syndicated content from %site.\";s:48:\"Nessun nuovo contenuto condiviso dal sito %site.\";s:36:\"Updated URL for feed %title to %url.\";s:41:\"URL della fonte %title aggiornato a %url.\";s:43:\"There is new syndicated content from %site.\";s:48:\"Nessun nuovo contenuto condiviso dal sito %site.\";s:13:\"Feed overview\";s:16:\"Panoramica fonti\";s:5:\"Items\";s:7:\"Oggetti\";s:11:\"Last update\";s:20:\"Ultimo aggiornamento\";s:11:\"Next update\";s:22:\"Prossimo aggiornamento\";s:10:\"%time left\";s:13:\"%time rimasto\";s:17:\"Category overview\";s:19:\"Anteprima categorie\";s:15:\"Save categories\";s:15:\"Salva categorie\";s:10:\"Categorize\";s:11:\"Categorizza\";s:31:\"The categories have been saved.\";s:32:\"Le categorie sono state salvate.\";s:11:\"in category\";s:15:\"nella categoria\";s:16:\"aggregated feeds\";s:16:\"fonti di notizie\";s:4:\"URL:\";b:1;s:8:\"Updated:\";b:1;s:7:\"blog it\";s:8:\"nel blog\";s:48:\"Comment on this news item in your personal blog.\";s:42:\"Commenta la notizia nel tuo blog personale\";s:8:\"%age old\";s:13:\"%age tempo fa\";s:6:\"1 item\";s:9:\"1 oggetto\";s:21:\"administer news feeds\";s:27:\"amministra fonti di notizie\";s:30:\"The category has been updated.\";s:33:\"La categoria è stata aggiornata.\";s:26:\"The feed has been updated.\";s:29:\"La fonte è stata aggiornata.\";s:30:\"The category has been deleted.\";s:32:\"La categoria è stata eliminata.\";s:26:\"The feed has been deleted.\";s:28:\"La fonte è stata eliminata.\";s:49:\"Displays a calendar for navigating older content.\";s:55:\"Mostra un calendario per navigare nei vecchi contenuti.\";s:8:\"archives\";s:7:\"archivi\";s:27:\"Calendar to browse archives\";s:36:\"Calendario per cercare negli archivi\";s:15:\"Browse archives\";s:19:\"Cerca negli archivi\";s:33:\"A calendar to browse the archives\";s:39:\"Un calendario per cercare negli archivi\";s:14:\"Previous month\";s:15:\"Mese precedente\";s:10:\"Next month\";s:13:\"Mese seguente\";s:2:\"Su\";s:2:\"Do\";s:2:\"Mo\";s:2:\"Lu\";s:2:\"Tu\";s:2:\"Ma\";s:2:\"We\";s:2:\"Me\";s:2:\"Th\";s:2:\"Gi\";s:2:\"Fr\";s:2:\"Ve\";s:2:\"Sa\";s:2:\"Sa\";s:15:\"No posts found.\";b:1;s:4:\"Show\";s:6:\"Mostra\";s:6:\"1 post\";s:11:\"1 contenuto\";s:7:\"archive\";s:8:\"archivio\";s:13:\"Module blocks\";s:14:\"Modulo blocchi\";s:28:\"Administrator defined blocks\";s:36:\"Blocchi definiti dall\'amministratore\";s:62:\"Controls the boxes that are displayed around the main content.\";s:66:\"Controlla i riquadri visualizzati attorno ai contenuti principali.\";s:15:\"configure block\";s:19:\"configura il blocco\";s:12:\"delete block\";s:17:\"elimina il blocco\";s:9:\"add block\";s:18:\"aggiungi un blocco\";s:13:\"%key settings\";s:17:\"Impostazioni %key\";s:11:\"Save blocks\";s:13:\"Salva blocchi\";s:7:\"%region\";s:7:\"Regione\";s:5:\"Block\";s:6:\"Blocco\";s:9:\"Placement\";s:14:\"Posizionamento\";s:23:\"Block specific settings\";s:34:\"Impostazioni specifiche del blocco\";s:13:\"\'%name\' block\";s:14:\"blocco \'%name\'\";s:33:\"User specific visibility settings\";s:51:\"Impostazioni di visibilità specifiche per l\'utente\";s:26:\"Custom visibility settings\";s:42:\"Impostazioni di visibilità personalizzate\";s:56:\"Users cannot control whether or not they see this block.\";s:64:\"Gli utenti non possono controllare se vedono o no questo blocco.\";s:61:\"Show this block by default, but let individual users hide it.\";s:73:\"Mostra questo blocco per default, ma consente agli utenti di nasconderlo.\";s:60:\"Hide this block by default but let individual users show it.\";s:77:\"Nasconde questo blocco per default, ma consente agli utenti di visualizzarlo.\";s:33:\"Page specific visibility settings\";s:52:\"Impostazioni di visibilità specifiche per la pagina\";s:43:\"Show on every page except the listed pages.\";s:61:\"Mostra il blocco in tutte le pagine eccetto quelle in elenco.\";s:30:\"Show on only the listed pages.\";s:35:\"Mostra solo nelle pagine in elenco.\";s:28:\"Show block on specific pages\";s:41:\"Mostra il blocco nelle pagine specificate\";s:5:\"Pages\";s:6:\"Pagine\";s:10:\"Save block\";s:12:\"Salva blocco\";s:52:\"Please ensure that each block description is unique.\";s:65:\"Per favore assicurati che ogni descrizione del blocco sia univoca\";s:39:\"The block configuration has been saved.\";s:46:\"La configurazione del blocco è stata salvata.\";s:27:\"The block has been created.\";s:26:\"Il blocco è stato creato.\";s:48:\"Are you sure you want to delete the block %name?\";s:46:\"Sei sicuro di voler eliminare il blocco %name?\";s:33:\"The block %name has been removed.\";s:35:\"Il blocco %name è stato eliminato.\";s:17:\"Block description\";s:18:\"Descrizione blocco\";s:11:\"Block title\";s:13:\"Titolo blocco\";s:44:\"The title of the block as shown to the user.\";s:45:\"Il titolo del blocco, come visto dall\'utente.\";s:10:\"Block body\";s:12:\"Testo blocco\";s:46:\"The content of the block as shown to the user.\";s:48:\"Il contenuto del blocco, come visto dall\'utente.\";s:19:\"Block configuration\";s:21:\"Configurazione blocco\";s:17:\"administer blocks\";s:18:\"amministra blocchi\";s:28:\"use PHP for block visibility\";b:1;s:5:\"block\";s:6:\"blocco\";s:10:\"blog entry\";s:18:\"messaggio del blog\";s:4:\"Blog\";s:4:\"Blog\";s:24:\"view recent blog entries\";s:34:\"mostra i messaggi recenti del blog\";s:37:\"Read %username\'s latest blog entries.\";s:48:\"Leggi gli ultimi messaggi del blog di %username.\";s:67:\"Enables keeping an easily and regularly updated web page or a blog.\";s:71:\"Permette di mantenere un blog o una pagina web modificata regolarmente.\";s:12:\"%name\'s blog\";s:13:\"Blog di %name\";s:20:\"Post new blog entry.\";s:38:\"Inserisci un nuovo contenuto nel blog.\";s:45:\"You are not allowed to post a new blog entry.\";s:55:\"Non sei autorizzato a inserire nuovi messaggi del blog.\";s:12:\"RSS - %title\";s:12:\"RSS - %title\";s:11:\"RSS - blogs\";s:10:\"RSS - blog\";s:5:\"blogs\";s:4:\"blog\";s:16:\"%username\'s blog\";s:17:\"blog di %username\";s:7:\"my blog\";s:11:\"il mio blog\";s:17:\"Recent blog posts\";s:15:\"News dalla Rete\";s:29:\"Read the latest blog entries.\";s:35:\"Leggi gli ultimi messaggi del blog.\";s:13:\"edit own blog\";s:24:\"modifica il proprio blog\";s:68:\"Returns a list of weblogs to which an author has posting privileges.\";s:86:\"Restituisce un elenco di blog nei quali l\'autore ha i permessi per inserire contenuti.\";s:50:\"Returns information about an author in the system.\";s:50:\"Restituisce informazioni su un autore nel sistema.\";s:48:\"Creates a new post, and optionally publishes it.\";s:54:\"Crea un nuovo contenuto, ed eventualmente lo pubblica.\";s:47:\"Updates the information about an existing post.\";s:56:\"Aggiorna le informazioni su un contenuto già esistente.\";s:42:\"Returns information about a specific post.\";s:54:\"Restituisce informazioni su di un contenuto specifico.\";s:15:\"Deletes a post.\";s:22:\"Cancella un contenuto.\";s:54:\"Returns a list of the most recent posts in the system.\";s:61:\"Restituisce un elenco dei contenuti più recenti del sistema.\";s:43:\"Updates information about an existing post.\";s:48:\"Aggiorna informazioni su un contenuto esistente.\";s:33:\"Uploads a file to your webserver.\";s:30:\"Carica un file sul tuo server.\";s:63:\"Returns a list of all categories to which the post is assigned.\";s:82:\"Restituisce un elenco di tutte le categorie a cui il contenuto è stato assegnato.\";s:73:\"Returns a bandwidth-friendly list of the most recent posts in the system.\";s:89:\"Restituisce un elenco dei contenuti più recenti del sistema con scarso impegno di banda.\";s:55:\"Returns a list of all categories defined in the weblog.\";s:62:\"Restituisce una lista di tutte le categorie definite nel blog.\";s:31:\"Sets the categories for a post.\";s:38:\"Imposta le categorie per un contenuto.\";s:71:\"Retrieve information about the XML-RPC methods supported by the server.\";s:63:\"Recupera informazioni sui metodi XML-RPC supportati dal server.\";s:35:\"%type: added %title using blog API.\";s:43:\"%type: %title aggiunto utilizzando API blog\";s:19:\"Error storing post.\";s:35:\"Errore di memorizzazione contenuto.\";s:47:\"You do not have permission to update this post.\";s:57:\"Non hai l\'autorizzazione per aggiornare questo contenuto.\";s:37:\"%type: updated %title using blog API.\";s:47:\"%type: %title aggiornato utilizzando API blog. \";s:13:\"No file sent.\";s:20:\"Nessun file inviato.\";s:19:\"Error storing file.\";s:30:\"Errore di memorizzazione file.\";s:16:\"Not implemented.\";s:17:\"Non implementato.\";s:13:\"Invalid post.\";s:21:\"Messaggio non valido.\";s:27:\"Wrong username or password.\";s:30:\"Nome utente o password errati.\";s:14:\"XML-RPC Engine\";s:14:\"Motore XML-RPC\";s:10:\"Blog types\";s:12:\"Tipi di blog\";s:3:\"RSD\";s:3:\"RSD\";s:7:\"blogapi\";s:8:\"api blog\";s:9:\"book page\";s:16:\"pagina del libro\";s:14:\"add child page\";s:26:\"aggiungi una pagina figlio\";s:24:\"printer-friendly version\";s:27:\"versione adatta alla stampa\";s:68:\"Show a printer-friendly version of this book page and its sub-pages.\";s:87:\"Mostra versione adatta alla stampa di questa pagina del libro e delle sue sotto-pagine.\";s:5:\"books\";s:5:\"libri\";s:12:\"orphan pages\";s:13:\"pagine orfane\";s:7:\"outline\";s:9:\"struttura\";s:15:\"Book navigation\";s:17:\"Navigazione libro\";s:69:\"Pages at a given level are ordered first by weight and then by title.\";s:76:\"Le pagine ad un dato livello sono disposte prima per peso quindi per titolo.\";s:28:\"The parent page in the book.\";s:26:\"La pagina padre del libro.\";s:19:\"Update book outline\";s:31:\"Aggiorna la struttura del libro\";s:24:\"Remove from book outline\";s:33:\"Rimuovi dalla struttura del libro\";s:19:\"Add to book outline\";s:33:\"Aggiungi alla struttura del libro\";s:36:\"The post has been added to the book.\";s:40:\"Il contenuto è stato aggiunto al libro.\";s:34:\"The book outline has been updated.\";s:43:\"La struttura del libro è stata aggiornata.\";s:40:\"The post has been removed from the book.\";s:28:\"Contenuto rimosso dal libro.\";s:2:\"up\";s:4:\"sali\";s:9:\"top-level\";s:17:\"livello più alto\";s:22:\"Unknown export format.\";b:1;s:15:\"Save book pages\";s:25:\"Salva le pagine del libro\";s:26:\"There are no orphan pages.\";s:27:\"Non esistono pagine orfane.\";s:4:\"book\";s:5:\"libro\";s:20:\"Updated book %title.\";s:24:\"Libro %title aggiornato.\";s:26:\"Updated orphan book pages.\";s:35:\"Pagine orfane del libro aggiornate.\";s:4:\"Book\";s:5:\"Libro\";s:46:\"Allows users to collaboratively author a book.\";s:59:\"Permette agli utenti di pubblicare libri in collaborazione.\";s:17:\"create book pages\";s:21:\"crea pagine del libro\";s:19:\"edit own book pages\";s:36:\"modifica le proprie pagine del libro\";s:57:\"Allows users to comment on and discuss published content.\";s:70:\"Consente agli utenti di commentare e discutere i contenuti pubblicati.\";s:8:\"comments\";s:8:\"commenti\";s:18:\"published comments\";s:19:\"commenti pubblicati\";s:14:\"approval queue\";s:20:\"coda di approvazione\";s:14:\"delete comment\";s:16:\"elimina commento\";s:12:\"edit comment\";s:17:\"modifica commento\";s:16:\"reply to comment\";s:20:\"rispondi al commento\";s:15:\"Recent comments\";s:16:\"Commenti recenti\";s:42:\"Jump to the first comment of this posting.\";s:42:\"Vai al primo commento di questo argomento.\";s:46:\"Jump to the first new comment of this posting.\";s:48:\"Vai al primo nuovo commento di questo messaggio.\";s:15:\"add new comment\";s:23:\"aggiungi nuovo commento\";s:31:\"Add a new comment to this page.\";s:43:\"Aggiungi un nuovo commento a questa pagina.\";s:57:\"Share your thoughts and opinions related to this posting.\";s:58:\"Condividi i tuoi pensieri ed opinioni su questo messaggio.\";s:23:\"Default comment setting\";s:39:\"Impostazioni predefinite per i commenti\";s:9:\"Read only\";s:12:\"Sola lettura\";s:10:\"Read/Write\";s:17:\"Lettura/Scrittura\";s:16:\"Comment settings\";s:21:\"Impostazioni commento\";s:9:\"Signature\";s:5:\"Firma\";s:70:\"Your signature will be publicly displayed at the end of your comments.\";s:71:\"La tua firma verrà mostrata pubblicamente alla fine dei tuoi commenti.\";s:15:\"Viewing options\";s:26:\"Opzioni di visualizzazione\";s:20:\"Default display mode\";s:35:\"Modo di visualizzazione predefinito\";s:21:\"Default display order\";s:37:\"Ordine di visualizzazione predefinito\";s:25:\"Default comments per page\";s:41:\"Numero predefinito di commenti per pagina\";s:16:\"Comment controls\";s:18:\"Controlli commento\";s:26:\"Display above the comments\";s:24:\"Mostra sopra ai commenti\";s:26:\"Display below the comments\";s:24:\"Mostra sotto ai commenti\";s:36:\"Display above and below the comments\";s:33:\"Mostra sopra e sotto ai commenti.\";s:14:\"Do not display\";s:12:\"Non mostrare\";s:16:\"Posting settings\";s:27:\"Impostazioni invio commenti\";s:57:\"Anonymous posters may not enter their contact information\";s:58:\"Gli anonimi non possono inserire informazioni sul contatto\";s:53:\"Anonymous posters may leave their contact information\";s:54:\"Gli anonimi possono inserire informazioni sul contatto\";s:54:\"Anonymous posters must leave their contact information\";s:53:\"Gli anonimi devono inserire informazioni sul contatto\";s:21:\"Comment subject field\";s:26:\"Campo oggetto del commento\";s:54:\"Can users provide a unique subject for their comments?\";s:61:\"L\'utente può fornire un unico oggetto per i propri commenti?\";s:15:\"Preview comment\";s:18:\"Anteprima commento\";s:35:\"Location of comment submission form\";s:46:\"Posizione della scheda di inserimento commenti\";s:24:\"Display on separate page\";s:29:\"Mostra in una pagina separata\";s:30:\"Display below post or comments\";s:38:\"Mostra sotto il contenuto o i commenti\";s:40:\"You are not authorized to post comments.\";s:39:\"Non sei autorizzato a inviare commenti.\";s:55:\"This discussion is closed: you can\'t post new comments.\";s:58:\"La discussione è chiusa: non puoi inviare nuovi commenti.\";s:5:\"Reply\";s:8:\"Rispondi\";s:40:\"You are not authorized to view comments.\";s:40:\"Non sei autorizzato a vedere i commenti.\";s:28:\"Comment: duplicate %subject.\";s:29:\"Commento: %subject duplicato.\";s:26:\"Comment: updated %subject.\";s:30:\"Commento: %subject aggiornato.\";s:24:\"Comment: added %subject.\";s:28:\"Commento: %subject aggiunto.\";s:6:\"parent\";s:5:\"padre\";s:5:\"reply\";s:8:\"rispondi\";s:16:\"Post new comment\";s:20:\"Invia nuovo commento\";s:50:\"The comment and all its replies have been deleted.\";s:54:\"Il commento e tutte sue risposte sono stati eliminati.\";s:51:\"Are you sure you want to delete the comment %title?\";s:49:\"Sei sicuro di voler eliminare il commento %title?\";s:71:\"Any replies to this comment will be lost. This action cannot be undone.\";s:91:\"Tutte le risposte a questo commento andranno perse. Quest\'azione non può essere annullata.\";s:29:\"The comment no longer exists.\";s:28:\"Il commento non esiste più.\";s:29:\"Publish the selected comments\";s:31:\"Pubblica i commenti selezionati\";s:28:\"Delete the selected comments\";s:30:\"Elimina i commenti selezionati\";s:31:\"Unpublish the selected comments\";s:37:\"Non pubblicare i commenti selezionati\";s:60:\"Please select one or more comments to perform the update on.\";s:73:\"Per favore seleziona uno o più commenti a cui applicare l\'aggiornamento.\";s:22:\"No comments available.\";s:28:\"Nessun commento disponibile.\";s:70:\"Are you sure you want to delete these comments and all their children?\";s:55:\"Vuoi eliminare questo commento e tutte le sue risposte?\";s:15:\"Delete comments\";s:16:\"Elimina commenti\";s:31:\"The comments have been deleted.\";s:32:\"I commenti sono stati eliminati.\";s:35:\"You have to specify a valid author.\";s:34:\"Devi specificare un autore valido.\";s:47:\"The name you used belongs to a registered user.\";s:53:\"Il nome utilizzato appartiene a un utente registrato.\";s:28:\"You have to leave your name.\";s:26:\"Devi inserire il tuo nome.\";s:46:\"The e-mail address you specified is not valid.\";s:45:\"L\'indirizzo e-mail specificato non è valido.\";s:36:\"You have to leave an e-mail address.\";s:34:\"Devi inserire un indirizzo e-mail.\";s:14:\"Administration\";s:15:\"Amministrazione\";s:8:\"Homepage\";s:8:\"Homepage\";s:13:\"Not published\";s:14:\"Non pubblicato\";s:7:\"Comment\";s:8:\"Commento\";s:12:\"Post comment\";s:14:\"Invia commento\";s:20:\"%a comments per page\";s:22:\"%a commenti per pagina\";s:13:\"Save settings\";s:18:\"Salva impostazioni\";s:23:\"Comment viewing options\";s:32:\"Opzioni visualizzazione commenti\";s:11:\"by %a on %b\";s:11:\"da %a il %b\";s:2:\"by\";s:2:\"da\";s:23:\"you can\'t post comments\";s:26:\"non puoi inserire commenti\";s:43:\"login to post comments\";s:48:\"accedi per inviare commenti\";s:26:\"Comment: deleted %subject.\";s:29:\"Commento: %subject eliminato.\";s:21:\"Flat list - collapsed\";s:23:\"Lista semplice - chiusa\";s:20:\"Flat list - expanded\";s:23:\"Lista semplice - aperta\";s:25:\"Threaded list - collapsed\";s:24:\"Lista ad albero - chiusa\";s:24:\"Threaded list - expanded\";s:24:\"Lista ad albero - aperta\";s:13:\"1 new comment\";s:16:\"1 nuovo commento\";s:15:\"access comments\";s:18:\"accede ai commenti\";s:13:\"post comments\";s:18:\"inserisce commenti\";s:19:\"administer comments\";s:19:\"amministra commenti\";s:30:\"post comments without approval\";s:37:\"inserisce commenti senza approvazione\";s:7:\"comment\";s:8:\"commento\";s:16:\"%page not found.\";s:21:\"contenuto non trovato\";s:14:\"Page not found\";s:18:\"Pagina non trovata\";s:20:\"%page denied access.\";s:23:\"Accesso a %page negato.\";s:13:\"Access denied\";s:14:\"Accesso negato\";s:43:\"You are not authorized to access this page.\";s:48:\"Non sei autorizzato ad accedere a questa pagina.\";s:32:\"%message in %file on line %line.\";s:35:\"%message in %file nella riga %line.\";s:3:\"n/a\";s:3:\"n/a\";s:5:\"bytes\";s:4:\"byte\";s:2:\"KB\";s:2:\"KB\";s:2:\"MB\";s:2:\"MB\";s:13:\"%size %suffix\";s:13:\"%size %suffix\";s:5:\"0 sec\";s:5:\"0 sec\";s:14:\"page not found\";s:18:\"pagina non trovata\";s:13:\"access denied\";s:14:\"accesso negato\";s:6:\"1 year\";s:6:\"1 anno\";s:6:\"1 week\";s:11:\"1 settimana\";s:5:\"1 day\";s:8:\"1 giorno\";s:6:\"1 hour\";s:5:\"1 ora\";s:5:\"1 min\";s:5:\"1 min\";s:5:\"1 sec\";s:5:\"1 sec\";s:59:\"Default site-wide contact page.\";b:1;s:61:\"Enables the use of both personal and site-wide contact forms.\";s:71:\"Abilita l\'uso di moduli di contatto, sia personale che interno al sito.\";s:12:\"contact form\";s:18:\"modulo di contatto\";s:14:\"delete contact\";s:16:\"elimina contatto\";s:7:\"contact\";s:8:\"contatto\";s:16:\"Contact settings\";s:21:\"Impostazioni contatto\";s:21:\"Personal contact form\";s:28:\"Modulo di contatto personale\";s:10:\"Recipients\";s:11:\"Destinatari\";s:53:\"Example: \'website feedback\' or \'product information\'.\";s:60:\"Esempio: \'commento dal sito\' oppure \'informazione prodotto\'.\";s:10:\"Auto-reply\";s:19:\"Risposta automatica\";s:38:\"You must enter one or more recipients.\";s:37:\"Devi inserire uno o più destinatari.\";s:40:\"%recipient is an invalid e-mail address.\";b:1;s:36:\"Category %category has been updated.\";s:43:\"La categoria %category è stata aggiornata.\";s:42:\"Are you sure you want to delete %category?\";s:40:\"Sei sicuro di voler eliminare %category?\";s:19:\"Category not found.\";b:1;s:22:\"Additional information\";s:23:\"Informazioni aggiuntive\";s:16:\"Hourly threshold\";b:1;s:31:\"%name is not accepting e-mails.\";s:25:\"%name non accetta e-mail.\";s:4:\"From\";s:2:\"Da\";s:2:\"To\";s:1:\"A\";s:15:\"Send me a copy.\";s:18:\"Inviami una copia.\";s:11:\"Send e-mail\";s:12:\"Invia e-mail\";s:8:\"Message:\";s:10:\"Messaggio:\";s:35:\"%name-from sent %name-to an e-mail.\";s:44:\"%name-from ha spedito una e-mail a %name-to.\";s:26:\"The message has been sent.\";s:30:\"Il messaggio è stato spedito.\";s:56:\"You can leave us a message using the contact form below.\";s:67:\"Puoi lasciarci un messaggio usando il modulo di contatto qui sotto.\";s:19:\"Your e-mail address\";s:22:\"Il tuo indirizzo email\";s:2:\"--\";b:1;s:41:\"The contact form has not been configured.\";s:49:\"La maschera di contatto non è stata configurata.\";s:33:\"You must select a valid category.\";s:38:\"Devi selezionare una categoria valida.\";s:20:\"[%category] %subject\";b:1;s:46:\"%name-from sent an e-mail regarding %category.\";s:57:\"%name-from ha inviato una email a proposito di %category.\";s:27:\"Your message has been sent.\";s:34:\"Il tuo messaggio è stato spedito.\";s:4:\"mail\";s:6:\"E-mail\";s:25:\"Post data to another site\";b:1;s:29:\"Register with a Drupal server\";b:1;s:21:\"Drupal XML-RPC server\";s:24:\"Server SML-RPC di Drupal\";s:23:\"Send system information\";b:1;s:15:\"Send statistics\";b:1;s:29:\"Receive data from other sites\";b:1;s:36:\"Allow other Drupal sites to register\";b:1;s:22:\"Authentication service\";b:1;s:24:\"Ping from %name (%link).\";s:22:\"Ping da %name (%link).\";s:21:\"Handling ping request\";s:34:\"Sto trattando la richiesta di ping\";s:22:\"Error %code : %message\";s:23:\"Errore %code : %message\";s:11:\"client ping\";b:1;s:11:\"server ping\";b:1;s:6:\"drupal\";s:6:\"drupal\";s:42:\"The directory %directory has been created.\";s:44:\"La directory &directory è stata creata.\";s:40:\"The directory %directory does not exist.\";s:35:\"La directory %directory non esiste.\";s:40:\"The directory %directory is not writable\";s:56:\"La directory %directory non è accessibile in scrittura.\";s:71:\"The file %file could not be saved, because the upload did not complete.\";s:82:\"Impossibile salvare il file %file, perché non è stato completato il caricamento.\";s:65:\"The file %file could not be saved. An unknown error has occurred.\";s:67:\"Impossibile salvare il file %file a causa di un errore sconosciuto.\";s:48:\"File upload error. Could not move uploaded file.\";b:1;s:44:\"The selected file %file could not be copied.\";s:48:\"Impossibile copiare il file selezionato (%file).\";s:50:\"The removal of the original file %file has failed.\";s:48:\"Impossibile rimuovere il file originale (%file).\";s:30:\"The file could not be created.\";s:38:\"Non è stato possibile creare il file.\";s:11:\"file system\";s:11:\"file system\";s:4:\"file\";s:4:\"file\";s:60:\"Handles the filtering of content in preparation for display.\";s:65:\"Gestisce il filtraggio del contenuto prima della visualizzazione.\";s:13:\"input formats\";s:16:\"formati di input\";s:16:\"add input format\";s:28:\"aggiungi un formato di input\";s:19:\"delete input format\";s:24:\"elimina formato di input\";s:12:\"compose tips\";s:20:\"componi suggerimenti\";s:22:\"\'%format\' input format\";s:26:\"formato di input \'%format\'\";s:9:\"rearrange\";s:9:\"ridisponi\";s:46:\"Anchors are used to make links to other pages.\";s:56:\"Le ancore servono a creare collegamenti ad altre pagine.\";s:26:\"Text with
line break\";s:38:\"Testo con interruzione di linea
\";s:14:\"Paragraph one.\";s:14:\"Paragrafo uno.\";s:14:\"Paragraph two.\";s:14:\"Paragrafo due.\";s:6:\"Strong\";s:11:\"Evidenziato\";s:10:\"Emphasized\";s:11:\"Enfatizzato\";s:5:\"Cited\";s:9:\"Citazione\";s:47:\"Coded text used to show programming source code\";s:69:\"Testo codice utilizzato per mostrare il codice sorgente dei programmi\";s:5:\"Coded\";s:6:\"Codice\";s:6:\"Bolded\";s:9:\"Grassetto\";s:10:\"Underlined\";s:12:\"Sottolineato\";s:10:\"Italicized\";s:7:\"Corsivo\";s:13:\"Superscripted\";s:15:\"Scritto in alto\";s:24:\"Superscripted\";s:26:\"Scritto in alto\";s:11:\"Subscripted\";s:16:\"Scritto in basso\";s:22:\"Subscripted\";s:24:\"Scritto sotto\";s:12:\"Preformatted\";s:13:\"Preformattato\";s:12:\"Abbreviation\";b:1;s:41:\"Abbrev.\";b:1;s:7:\"Acronym\";b:1;s:51:\"TLA\";b:1;s:12:\"Block quoted\";s:19:\"Blocco testo citato\";s:13:\"Quoted inline\";s:21:\"Testo citato in linea\";s:5:\"Table\";s:7:\"Tabella\";s:12:\"Table header\";s:20:\"Intestazione tabella\";s:10:\"Table cell\";s:13:\"Cella tabella\";s:7:\"Deleted\";s:9:\"Eliminato\";s:8:\"Inserted\";s:8:\"Inserito\";s:57:\"Ordered list - use the <li> to begin each list item\";s:73:\"Elenco ordinato - utilizza <li> all\'inizio di ogni voce dell\'elenco\";s:10:\"First item\";s:10:\"Prima voce\";s:11:\"Second item\";s:12:\"Seconda voce\";s:59:\"Unordered list - use the <li> to begin each list item\";s:77:\"Elenco non ordinato - utilizza <li> all\'inizio di ogni voce dell\'elenco\";s:10:\"First term\";s:13:\"Primo termine\";s:16:\"First definition\";s:17:\"Prima definizione\";s:11:\"Second term\";s:15:\"Secondo termine\";s:17:\"Second definition\";s:19:\"Seconda definizione\";s:6:\"Header\";s:12:\"Intestazione\";s:8:\"Subtitle\";s:11:\"Sottotitolo\";s:14:\"Subtitle three\";s:15:\"Sottotitolo tre\";s:13:\"Subtitle four\";s:19:\"Sottotitolo quattro\";s:13:\"Subtitle five\";s:18:\"Sottotitolo cinque\";s:12:\"Subtitle six\";s:15:\"sottotitolo sei\";s:15:\"Tag Description\";s:15:\"Descrizione tag\";s:8:\"You Type\";s:11:\"Cosa scrivi\";s:7:\"You Get\";s:9:\"Cosa vedi\";s:30:\"No help provided for tag %tag.\";s:37:\"Aiuto non disponibile per il tag %tag\";s:9:\"Ampersand\";s:13:\"E commerciale\";s:12:\"Greater than\";s:11:\"Maggiore di\";s:9:\"Less than\";s:9:\"Minore di\";s:14:\"Quotation mark\";s:10:\"Virgolette\";s:21:\"Character Description\";s:21:\"Descrizione carattere\";s:20:\"No HTML tags allowed\";s:21:\"Tag HTML non permessi\";s:62:\"You may post PHP code. You should include <?php ?> tags.\";s:70:\"Potete pubblicare codice PHP. Dovreste includere i tag <?php ?>.\";s:41:\"Lines and paragraphs break automatically.\";s:47:\"Linee e paragrafi vanno a capo automaticamente.\";s:28:\"No roles may use this format\";s:38:\"Nessun ruolo può usare questo formato\";s:18:\"Set default format\";s:30:\"Imposta il formato predefinito\";s:23:\"Default format updated.\";s:31:\"Formato predefinito aggiornato.\";s:57:\"Are you sure you want to delete the input format %format?\";s:58:\"Sei sicuro di voler eliminare il formato di input %format?\";s:29:\"Deleted input format %format.\";s:35:\"Formato di input %format eliminato.\";s:71:\"All roles for the default format must be enabled and cannot be changed.\";s:95:\"Tutti i ruoli per il formato predefinito devono essere abilitati e non possono essere cambiati.\";s:7:\"Filters\";s:6:\"Filtri\";s:41:\"More information about formatting options\";s:53:\"Maggiori informazioni sulle opzioni di formattazione.\";s:31:\"No guidelines available.
\";s:39:\"Nessuna linea guida disponibile.
\";s:21:\"Formatting guidelines\";s:28:\"Linee guida di formattazione\";s:27:\"Added input format %format.\";s:34:\"Formato di input %format aggiunto.\";s:44:\"The input format settings have been updated.\";s:59:\"Le impostazioni del formato di input sono state aggiornate.\";s:35:\"The filter ordering has been saved.\";s:37:\"L\'ordine dei filtri è stato salvato.\";s:26:\"No settings are available.\";s:33:\"Nessuna impostazione disponibile.\";s:12:\"Input format\";s:13:\"Formato input\";s:11:\"HTML filter\";s:11:\"Filtro HTML\";s:13:\"PHP evaluator\";s:16:\"Analizzatore PHP\";s:20:\"Line break converter\";s:24:\"Conversione linea a capo\";s:68:\"Converts line breaks into HTML (i.e. <br> and <p> tags).\";s:66:\"Converte gli a capo in HTML (cioè in tag <br> e <p>).\";s:16:\"Filter HTML tags\";s:15:\"Filtra tag HTML\";s:21:\"Strip disallowed tags\";s:28:\"Rimuovi i tag non consentiti\";s:15:\"Escape all tags\";s:18:\"Ignora tutti i tag\";s:17:\"Display HTML help\";s:19:\"Mostra l\'aiuto HTML\";s:19:\"Spam link deterrent\";s:24:\"Deterrente spam sui link\";s:18:\"administer filters\";s:17:\"amministra filtri\";s:6:\"filter\";s:6:\"filtro\";s:50:\"Enables threaded discussions about general topics.\";s:54:\"Permette discussioni articolate su argomenti generici.\";s:48:\"Create a new topic for discussion in the forums.\";s:49:\"Crea un nuovo argomento di discussione nei forum.\";s:11:\"forum topic\";s:19:\"argomento del forum\";s:6:\"forums\";s:5:\"forum\";s:13:\"add container\";s:23:\"aggiungi un contenitore\";s:9:\"add forum\";s:17:\"aggiungi un forum\";s:14:\"edit container\";s:23:\"modifica il contenitore\";s:10:\"edit forum\";s:17:\"modifica il forum\";s:19:\"Hot topic threshold\";s:31:\"Soglia degli argomenti \'caldi\'.\";s:59:\"The number of posts a topic must have to be considered hot.\";s:54:\"Numero di contenuti di un argomento considerato caldo.\";s:15:\"Topics per page\";s:20:\"Argomenti per pagina\";s:25:\"Posts - most active first\";s:31:\"Contenuti - prima i più attivi\";s:26:\"Posts - least active first\";s:31:\"Contenuti - prima i meno attivi\";s:13:\"Default order\";s:18:\"Ordine predefinito\";s:37:\"The default display order for topics.\";s:56:\"L\'ordine di visualizzazione predefinito degli argomenti.\";s:47:\"forum topic is affixed to the forum vocabulary.\";b:1;s:19:\"Active forum topics\";s:26:\"Argomenti del forum attivi\";s:16:\"New forum topics\";s:25:\"Argomenti del forum nuovi\";s:16:\"Number of topics\";s:19:\"Numero di argomenti\";s:29:\"Read the latest forum topics.\";s:37:\"Leggi gli ultimi argomenti del forum.\";s:17:\"Leave shadow copy\";s:22:\"Lascia una copia ombra\";s:14:\"Container name\";s:20:\"Nome del contenitore\";s:54:\"The container name is used to identify related forums.\";s:71:\"Il nome del contenitore è utilizzato per identificare forum correlati.\";s:10:\"Forum name\";s:14:\"Nome del forum\";s:55:\"The forum name is used to identify related discussions.\";s:71:\"Il nome del forum è utilizzato per identificare discussioni correlate.\";s:5:\"forum\";s:5:\"forum\";s:48:\"Are you sure you want to delete the forum %name?\";s:45:\"Sei sicuro di voler eliminare il forum %name?\";s:74:\"The forum %term and all sub-forums and associated posts have been deleted.\";b:1;s:65:\"forum: deleted %term and all its sub-forums and associated posts.\";b:1;s:25:\"%time ago
by %author\";s:24:\"%time fa
da %author\";s:5:\"Topic\";s:9:\"Argomento\";s:7:\"Created\";s:6:\"Creato\";s:10:\"Last reply\";s:15:\"Ultima risposta\";s:21:\"Post new forum topic.\";s:36:\"Inserisci nuovo argomento nel forum.\";s:46:\"You are not allowed to post a new forum topic.\";s:57:\"Non sei autorizzato a inserire nuovi argomenti nel forum.\";s:53:\"Login to post a new forum topic.\";s:70:\"Accedi per inserire un nuovo argomento nel forum.\";s:17:\"No forums defined\";s:21:\"Nessun forum definito\";s:5:\"Forum\";s:5:\"Forum\";s:6:\"Topics\";s:9:\"Argomenti\";s:5:\"Posts\";s:9:\"Contenuti\";s:25:\"This topic has been moved\";s:26:\"Il topic è stato spostato\";s:19:\"create forum topics\";s:27:\"crea un argomento nel forum\";s:21:\"edit own forum topics\";s:37:\"modifica i propri argomenti del forum\";s:17:\"administer forums\";s:18:\"amministra i forum\";s:38:\"The language %locale has been created.\";s:34:\"La lingua %locale è stata creata.\";s:50:\"The %language language (%locale) has been created.\";s:46:\"La lingua %language (%locale) è stata creata.\";s:4:\"Code\";s:6:\"Codice\";s:12:\"English name\";s:12:\"Nome inglese\";s:10:\"Translated\";s:8:\"Tradotto\";s:20:\"Configuration saved.\";b:1;s:13:\"Language list\";s:13:\"Elenco lingue\";s:13:\"Language name\";s:11:\"Nome lingua\";s:73:\"Select your language here, or add it below, if you are unable to find it.\";s:77:\"Seleziona qui la tua lingua, o aggiungila sotto se non è possibile trovarla.\";s:15:\"Custom language\";s:21:\"Lingua personalizzata\";s:13:\"Language code\";s:13:\"Codice lingua\";s:24:\"Language name in English\";s:28:\"Nome della lingua in Inglese\";s:73:\"Name of the language. Will be available for translation in all languages.\";s:81:\"Nome della lingua. Sarà reso disponibile per essere tradotto in tutte le lingue.\";s:23:\"Already added languages\";s:20:\"Lingue già aggiunte\";s:23:\"Languages not yet added\";s:26:\"Lingue non ancora aggiunte\";s:13:\"Language file\";s:11:\"File lingua\";s:37:\"A gettext Portable Object (.po) file.\";s:41:\"Un file Portable Object (.po) di gettext.\";s:11:\"Import into\";s:10:\"Importa in\";s:4:\"Mode\";s:4:\"Modo\";s:70:\"Strings in the uploaded file replace existing ones, new ones are added\";s:85:\"Le frasi nel file caricato sostituiscono quelle esistenti, le nuove vengono aggiunte.\";s:53:\"Existing strings are kept, only new strings are added\";s:58:\"Conserva le frasi esistenti, aggiungi solo le nuove frasi.\";s:18:\"Export translation\";s:18:\"Esporta traduzione\";s:6:\"Export\";b:1;s:15:\"Export template\";s:16:\"Esporta template\";s:21:\"Strings to search for\";s:16:\"Frasi da cercare\";s:62:\"Leave blank to show all strings. The search is case sensitive.\";s:85:\"Lascia vuoto per mostrare tutte le frasi. La ricerca distingue maiuscole e minuscole.\";s:13:\"All languages\";s:15:\"Tutte le lingue\";s:28:\"English (provided by Drupal)\";s:28:\"Inglese (fornito con Drupal)\";s:9:\"Search in\";s:8:\"Cerca in\";s:28:\"All strings in that language\";s:31:\"Tutte le frasi in questa lingua\";s:23:\"Only translated strings\";s:19:\"Solo frasi tradotte\";s:25:\"Only untranslated strings\";s:23:\"Solo frasi non tradotte\";s:17:\"String not found.\";b:1;s:13:\"Original text\";s:15:\"Testo originale\";s:26:\"The string has been saved.\";s:26:\"La frase è stata salvata.\";s:28:\"The string has been removed.\";s:26:\"La frase è stata rimossa.\";s:50:\"The language selected for import is not supported.\";s:53:\"Lingua selezionata per l\'importazione non supportata.\";s:69:\"The translation file %filename contains a syntax error on line %line.\";s:80:\"Il file di traduzione %filename contiene un errore di sintassi alla linea %line.\";s:64:\"The translation file %filename ended unexpectedly at line %line.\";s:76:\"Il file di traduzione %filename inaspettatamente interrott alla linea %line.\";s:45:\"Exported %locale translation file: %filename.\";s:48:\"Esportato file di traduzione %locale: %filename.\";s:37:\"Exported translation file: %filename.\";s:40:\"Esportato file di traduzione: %filename.\";s:6:\"String\";s:5:\"Frase\";s:7:\"Locales\";s:6:\"Lingue\";s:4:\"Afar\";s:4:\"Afar\";s:9:\"Abkhazian\";s:9:\"Abkhazian\";s:7:\"Avestan\";s:7:\"Avestan\";s:9:\"Afrikaans\";s:11:\"Sudafricano\";s:4:\"Akan\";s:4:\"Akan\";s:7:\"Amharic\";s:7:\"Amarico\";s:6:\"Arabic\";s:5:\"Arabo\";s:8:\"Assamese\";s:8:\"Assamese\";s:4:\"Avar\";s:4:\"Avar\";s:6:\"Aymara\";s:6:\"Aymara\";s:11:\"Azerbaijani\";s:11:\"Azerbaijano\";s:7:\"Bashkir\";s:7:\"Bashkir\";s:10:\"Belarusian\";s:10:\"Bielorusso\";s:9:\"Bulgarian\";s:7:\"Bulgaro\";s:6:\"Bihari\";s:6:\"Bihari\";s:7:\"Bislama\";s:7:\"Bislama\";s:7:\"Bambara\";s:7:\"Bambara\";s:7:\"Bengali\";s:7:\"Bengali\";s:7:\"Tibetan\";s:8:\"Tibetano\";s:6:\"Breton\";s:7:\"Bretone\";s:7:\"Bosnian\";s:8:\"Bosniaco\";s:7:\"Catalan\";s:8:\"Catalano\";s:7:\"Chechen\";s:7:\"Chechen\";s:8:\"Chamorro\";s:8:\"Chamorro\";s:8:\"Corsican\";s:5:\"Corso\";s:4:\"Cree\";s:4:\"Cree\";s:5:\"Czech\";s:4:\"Ceco\";s:12:\"Old Slavonic\";s:12:\"Slavo Antico\";s:5:\"Welsh\";s:7:\"Gallese\";s:5:\"Welch\";s:5:\"Welch\";s:6:\"Danish\";s:6:\"Danese\";s:6:\"German\";s:7:\"Tedesco\";s:9:\"Maldivian\";s:10:\"Maldiviano\";s:7:\"Bhutani\";s:7:\"Bhutani\";s:3:\"Ewe\";s:3:\"Ewe\";s:5:\"Greek\";s:5:\"Greco\";s:7:\"English\";s:7:\"Inglese\";s:9:\"Esperanto\";s:9:\"Esperanto\";s:7:\"Spanish\";s:8:\"Spagnolo\";s:8:\"Estonian\";s:6:\"Estone\";s:6:\"Basque\";s:5:\"Basco\";s:7:\"Persian\";s:8:\"Persiano\";s:5:\"Fulah\";s:5:\"Fulah\";s:7:\"Finnish\";s:10:\"Finlandese\";s:4:\"Fiji\";s:4:\"Fiji\";s:8:\"Faeroese\";s:8:\"Faeroese\";s:6:\"French\";s:8:\"Francese\";s:7:\"Frisian\";s:6:\"Frigio\";s:5:\"Irish\";s:9:\"Irlandese\";s:12:\"Scots Gaelic\";s:17:\"Gaelico di Scozia\";s:8:\"Galician\";s:7:\"Gaelico\";s:7:\"Guarani\";s:7:\"Guarani\";s:8:\"Gujarati\";s:8:\"Gujarati\";s:4:\"Manx\";s:4:\"Manx\";s:5:\"Hausa\";s:5:\"Hausa\";s:6:\"Hebrew\";s:7:\"Ebraico\";s:5:\"Hindi\";s:5:\"Hindi\";s:9:\"Hiri Motu\";s:9:\"Hiri Motu\";s:8:\"Croatian\";s:6:\"Croato\";s:9:\"Hungarian\";s:9:\"Ungherese\";s:8:\"Armenian\";s:6:\"Armeno\";s:6:\"Herero\";s:6:\"Herero\";s:11:\"Interlingua\";s:11:\"Interlingua\";s:10:\"Indonesian\";s:11:\"Indonesiano\";s:11:\"Interlingue\";s:11:\"Interlingue\";s:4:\"Igbo\";s:4:\"Igbo\";s:7:\"Inupiak\";s:7:\"Inupiak\";s:9:\"Icelandic\";s:9:\"Islandese\";s:7:\"Italian\";s:8:\"Italiano\";s:9:\"Inuktitut\";s:9:\"Inuktitut\";s:8:\"Japanese\";s:10:\"Giapponese\";s:8:\"Javanese\";s:8:\"Javanese\";s:8:\"Georgian\";s:9:\"Georgiano\";s:5:\"Kongo\";s:9:\"Congolese\";s:6:\"Kikuyu\";s:6:\"Kikuyu\";s:8:\"Kwanyama\";s:8:\"Kwanyama\";s:6:\"Kazakh\";s:6:\"Kazako\";s:11:\"Greenlandic\";s:12:\"Groenlandese\";s:9:\"Cambodian\";s:10:\"Cambogiano\";s:7:\"Kannada\";s:7:\"Kannada\";s:6:\"Korean\";s:7:\"Coreano\";s:6:\"Kanuri\";s:6:\"Kanuri\";s:8:\"Kashmiri\";s:8:\"Kashmiri\";s:7:\"Kurdish\";s:5:\"Curdo\";s:4:\"Komi\";s:4:\"Komi\";s:7:\"Cornish\";s:7:\"Cornish\";s:7:\"Kirghiz\";s:7:\"Kirghiz\";s:5:\"Latin\";s:6:\"Latino\";s:13:\"Luxembourgish\";s:14:\"Lussemburghese\";s:7:\"Luganda\";s:7:\"Luganda\";s:7:\"Lingala\";s:7:\"Lingala\";s:8:\"Laothian\";s:8:\"Laothian\";s:10:\"Lithuanian\";s:7:\"Lituano\";s:7:\"Latvian\";s:7:\"Lettone\";s:8:\"Malagasy\";s:8:\"Malagasy\";s:11:\"Marshallese\";s:11:\"Marshallese\";s:5:\"Maori\";s:5:\"Maori\";s:10:\"Macedonian\";s:8:\"Macedone\";s:9:\"Malayalam\";s:9:\"Malayalam\";s:9:\"Mongolian\";s:7:\"Mongolo\";s:9:\"Moldavian\";s:7:\"Moldavo\";s:7:\"Marathi\";s:7:\"Marathi\";s:5:\"Malay\";s:5:\"Malay\";s:7:\"Maltese\";s:7:\"Maltese\";s:7:\"Burmese\";s:7:\"Burmese\";s:5:\"Nauru\";s:5:\"Nauru\";s:13:\"North Ndebele\";s:13:\"North Ndebele\";s:6:\"Nepali\";s:8:\"Nepalese\";s:6:\"Ndonga\";s:6:\"Ndonga\";s:5:\"Dutch\";s:8:\"Olandese\";s:9:\"Norwegian\";s:9:\"Norvegese\";s:13:\"South Ndebele\";s:13:\"South Ndebele\";s:6:\"Navajo\";s:6:\"Navajo\";s:8:\"Chichewa\";s:8:\"Chichewa\";s:7:\"Occitan\";s:8:\"Occitano\";s:5:\"Oromo\";s:5:\"Oromo\";s:5:\"Oriya\";s:5:\"Oriya\";s:8:\"Ossetian\";s:8:\"Ossetian\";s:7:\"Punjabi\";s:7:\"Punjabi\";s:4:\"Pali\";s:4:\"Pali\";s:6:\"Polish\";s:7:\"Polacco\";s:6:\"Pashto\";s:6:\"Pashto\";s:10:\"Portuguese\";s:10:\"Portoghese\";s:7:\"Quechua\";s:7:\"Quechua\";s:14:\"Rhaeto-Romance\";s:14:\"Rhaeto-Romance\";s:7:\"Kirundi\";s:7:\"Kirundi\";s:8:\"Romanian\";s:6:\"Rumeno\";s:7:\"Russian\";s:5:\"Russo\";s:11:\"Kinyarwanda\";s:11:\"Kinyarwanda\";s:8:\"Sanskrit\";s:9:\"Sanscrito\";s:9:\"Sardinian\";s:9:\"Sardinian\";s:6:\"Sindhi\";s:6:\"Sindhi\";s:13:\"Northern Sami\";s:13:\"Northern Sami\";s:5:\"Sango\";s:5:\"Sango\";s:14:\"Serbo-Croatian\";s:12:\"Serbo-Croato\";s:10:\"Singhalese\";s:9:\"Sinhalese\";s:6:\"Slovak\";s:8:\"Slovacco\";s:9:\"Slovenian\";s:7:\"Sloveno\";s:6:\"Samoan\";s:7:\"Samoano\";s:5:\"Shona\";s:5:\"Shona\";s:6:\"Somali\";s:6:\"Somalo\";s:8:\"Albanian\";s:8:\"Albanese\";s:7:\"Serbian\";s:5:\"Serbo\";s:7:\"Siswati\";s:7:\"Siswati\";s:7:\"Sesotho\";s:7:\"Sesotho\";s:8:\"Sudanese\";s:8:\"Sudanese\";s:7:\"Swedish\";s:7:\"Svedese\";s:7:\"Swahili\";s:7:\"Swahili\";s:5:\"Tamil\";s:5:\"Tamil\";s:6:\"Telugu\";s:6:\"Telugu\";s:5:\"Tajik\";s:5:\"Tajik\";s:4:\"Thai\";s:4:\"Thai\";s:8:\"Tigrinya\";s:8:\"Tigrinya\";s:7:\"Turkmen\";s:7:\"Turkmen\";s:7:\"Tagalog\";s:7:\"Tagalog\";s:8:\"Setswana\";s:8:\"Setswana\";s:5:\"Tonga\";s:5:\"Tonga\";s:7:\"Turkish\";s:5:\"Turco\";s:6:\"Tsonga\";s:6:\"Tsonga\";s:5:\"Tatar\";s:5:\"Tatar\";s:3:\"Twi\";s:3:\"Twi\";s:8:\"Tahitian\";s:9:\"Tahitiano\";s:6:\"Uighur\";s:6:\"Uighur\";s:9:\"Ukrainian\";s:7:\"Ucraino\";s:4:\"Urdu\";s:4:\"Urdu\";s:5:\"Uzbek\";s:6:\"Uzbeco\";s:5:\"Venda\";s:5:\"Venda\";s:10:\"Vietnamese\";s:10:\"Vietnamita\";s:5:\"Wolof\";s:5:\"Wolof\";s:5:\"Xhosa\";s:5:\"Xhosa\";s:7:\"Yiddish\";s:7:\"Yiddish\";s:6:\"Yoruba\";s:6:\"Yoruba\";s:6:\"Zhuang\";s:6:\"Zhuang\";s:19:\"Chinese, Simplified\";s:20:\"Cinese, Semplificato\";s:20:\"Chinese, Traditional\";s:20:\"Cinese, Tradizionale\";s:4:\"Zulu\";s:4:\"Zulu\";s:12:\"localization\";s:6:\"lingua\";s:16:\"manage languages\";s:15:\"gestisci lingue\";s:14:\"manage strings\";s:14:\"gestisci frasi\";s:12:\"add language\";s:15:\"aggiungi lingua\";s:6:\"import\";s:7:\"importa\";s:6:\"export\";s:7:\"esporta\";s:7:\"confirm\";s:8:\"conferma\";s:13:\"delete string\";b:1;s:27:\"Interface language settings\";s:31:\"Impostazioni lingua interfaccia\";s:51:\"Are you sure you want to delete the language %name?\";s:46:\"Sei sicuro di voler eliminare la lingua %name?\";s:38:\"The language %locale has been removed.\";s:35:\"La lingua %locale è stata rimossa.\";s:18:\"administer locales\";s:17:\"amministra lingue\";s:3:\"Jan\";s:3:\"Gen\";s:3:\"Feb\";s:3:\"Feb\";s:3:\"Mar\";s:3:\"Mar\";s:3:\"Apr\";s:3:\"Apr\";s:3:\"Jun\";s:3:\"Giu\";s:3:\"Jul\";s:3:\"Lug\";s:3:\"Aug\";s:3:\"Ago\";s:3:\"Sep\";s:3:\"Set\";s:3:\"Oct\";s:3:\"Ott\";s:3:\"Nov\";s:3:\"Nov\";s:3:\"Dec\";s:3:\"Dic\";s:3:\"Thu\";s:3:\"Gio\";s:3:\"Fri\";s:3:\"Ven\";s:3:\"Sat\";s:3:\"Sab\";s:3:\"Sun\";s:3:\"Dom\";s:3:\"Mon\";s:3:\"Lun\";s:3:\"Tue\";s:3:\"Mar\";s:3:\"Wed\";s:3:\"Mer\";s:60:\"Allows administrators to customize the site navigation menu.\";s:78:\"Permetti agli amministratori di personalizzare i menu di navigazione del sito.\";s:5:\"menus\";s:4:\"menu\";s:13:\"add menu item\";s:18:\"aggiungi voce menu\";s:14:\"edit menu item\";s:19:\"modifica voce menu\";s:15:\"reset menu item\";s:20:\"ripristina voce menu\";s:17:\"disable menu item\";s:19:\"disattiva voce menu\";s:16:\"delete menu item\";s:17:\"elimina voce menu\";s:8:\"add menu\";s:13:\"aggiungi menu\";s:13:\"Menu settings\";s:21:\"Impostazioni del menu\";s:34:\"The name to display for this link.\";s:40:\"Il nome da visualizzare per questo link.\";s:57:\"The description displayed when hovering over a menu item.\";s:58:\"Descrizione visualizzata passando sopra una voce del menu.\";s:11:\"Parent item\";s:10:\"Voce padre\";s:31:\"Check to delete this menu item.\";s:45:\"Seleziona per cancellare questa voce di menu.\";s:16:\"No primary links\";s:24:\"Non ci sono link primari\";s:29:\"Menu containing primary links\";s:32:\"menu che contiene i link primari\";s:18:\"No secondary links\";s:26:\"non ci sono link secondari\";s:31:\"Menu containing secondary links\";s:35:\"menu che contiene i link secondari.\";s:28:\"Post authoring form settings\";s:36:\"Parametri della maschera di modifica\";s:14:\"Show all menus\";s:19:\"Mostra tutti i menu\";s:24:\"Restrict parent items to\";s:26:\"Restringi le voci padre a \";s:21:\"The name of the menu.\";s:17:\"Il nome del menu.\";s:4:\"Path\";s:8:\"Percorso\";s:8:\"Expanded\";s:7:\"Espanso\";s:47:\"Are you sure you want to delete the menu %item?\";s:45:\"Sei sicuro di voler cancellare il menu %item?\";s:59:\"Are you sure you want to delete the custom menu item %item?\";s:68:\"Sei sicuro di voler eliminare la voce del menu personalizzata %item?\";s:68:\"Are you sure you want to reset the item %item to its default values?\";s:74:\"Sei sicuro di voler ripristinare la voce %item ai suoi valori predefiniti?\";s:62:\"Any customizations will be lost. This action cannot be undone.\";s:83:\"Qualsiasi personalizzazione sarà perduta. Questa azione non può essere annullata.\";s:48:\"The menu item was reset to its default settings.\";s:57:\"La voce di menu è stata riportata ai valori predefiniti.\";s:32:\"The menu item has been disabled.\";s:39:\"La voce del menu è stata disabilitata.\";s:38:\"The menu item %title has been updated.\";s:44:\"La voce del menu %title è stata aggiornata.\";s:9:\"Menu item\";s:9:\"Voce menu\";s:7:\"disable\";s:9:\"disattiva\";s:6:\"enable\";s:6:\"attiva\";s:5:\"reset\";s:10:\"ripristina\";s:8:\"disabled\";s:11:\"disattivato\";s:4:\"menu\";s:4:\"menu\";s:15:\"administer menu\";s:17:\"amministra i menu\";s:66:\"Allows content to be submitted to the site and displayed on pages.\";s:68:\"Consente di inserire contenuti nel sito e di mostrarli nelle pagine.\";s:3:\"Log\";s:3:\"Log\";s:15:\"Content ranking\";s:19:\"Punteggio contenuto\";s:17:\"Keyword relevance\";s:28:\"Importanza per parola chiave\";s:15:\"Recently posted\";s:19:\"Inserito di recente\";s:18:\"Number of comments\";s:18:\"Numero di commenti\";s:15:\"Number of views\";s:17:\"Numero di accessi\";s:6:\"Factor\";s:7:\"Fattore\";s:28:\"Number of posts on main page\";s:35:\"Numero di contenuti in prima pagina\";s:23:\"Length of trimmed posts\";s:29:\"Lunghezza dei contenuti brevi\";s:14:\"200 characters\";s:13:\"200 caratteri\";s:14:\"400 characters\";s:13:\"400 caratteri\";s:14:\"600 characters\";s:13:\"600 caratteri\";s:14:\"800 characters\";s:13:\"800 caratteri\";s:15:\"1000 characters\";s:14:\"1000 caratteri\";s:15:\"1200 characters\";s:14:\"1200 caratteri\";s:15:\"1400 characters\";s:14:\"1400 caratteri\";s:15:\"1600 characters\";s:14:\"1600 caratteri\";s:15:\"1800 characters\";s:14:\"1800 caratteri\";s:15:\"2000 characters\";s:14:\"2000 caratteri\";s:12:\"Preview post\";s:19:\"Anteprima contenuto\";s:43:\"Must users preview posts before submitting?\";s:54:\"L\'utente deve rivedere il contenuto prima di inviarlo?\";s:30:\"Read the rest of this posting.\";s:29:\"Leggi il resto del contenuto.\";s:5:\"posts\";s:9:\"contenuti\";s:13:\"content types\";s:17:\"tipi di contenuto\";s:14:\"create content\";s:17:\"crea un contenuto\";s:8:\"rss feed\";s:9:\"fonte RSS\";s:9:\"revisions\";s:9:\"revisioni\";s:20:\"\'%name\' content type\";s:25:\"tipo di contenuto \'%name\'\";s:26:\"Approve the selected posts\";s:31:\"Approva i contenuti selezionati\";s:26:\"Promote the selected posts\";s:32:\"Promuovi i contenuti selezionati\";s:30:\"Make the selected posts sticky\";s:43:\"Rendi fissi in cima i contenuti selezionati\";s:25:\"Demote the selected posts\";s:30:\"Boccia i contenuti selezionati\";s:28:\"Unpublish the selected posts\";s:38:\"Non pubblicare i contenuti selezionati\";s:25:\"Delete the selected posts\";s:31:\"Elimina i contenuti selezionati\";s:6:\"status\";s:5:\"stato\";s:9:\"published\";s:10:\"pubblicato\";s:13:\"not published\";s:14:\"non pubblicato\";s:13:\"in moderation\";s:14:\"in moderazione\";s:17:\"not in moderation\";s:18:\"non in moderazione\";s:8:\"promoted\";s:8:\"promosso\";s:12:\"not promoted\";s:12:\"non promosso\";s:6:\"sticky\";s:13:\"fisso in cima\";s:10:\"not sticky\";s:17:\"non fisso in cima\";s:4:\"type\";s:4:\"tipo\";s:8:\"category\";s:9:\"categoria\";s:21:\"Show only items where\";s:28:\"Mostra solo le voci del tipo\";s:6:\"Refine\";s:16:\"Definisci meglio\";s:4:\"Undo\";s:7:\"Annulla\";s:3:\"and\";b:1;s:5:\"where\";b:1;s:2:\"is\";b:1;s:50:\"Please select some items to perform the update on.\";s:32:\"Seleziona quali voci aggiornare.\";s:19:\"No posts available.\";s:29:\"Nessun contenuto disponibile.\";s:44:\"Are you sure you want to delete these items?\";s:42:\"Sei sicuro di voler eliminare queste voci?\";s:10:\"Delete all\";s:13:\"Elimina tutto\";s:28:\"The items have been deleted.\";s:29:\"Le voci sono state eliminate.\";s:15:\"Submission form\";s:14:\"Scheda d\'invio\";s:36:\"Explanation or submission guidelines\";s:46:\"Spiegazioni o linee guida per la pubblicazione\";s:23:\"Minimum number of words\";s:23:\"Numero minimo di parole\";s:8:\"Workflow\";s:8:\"Workflow\";s:20:\"Revisions for %title\";s:19:\"Revisioni di %title\";s:18:\"%date by %username\";b:1;s:6:\"revert\";b:1;s:32:\"Copy of the revision from %date.\";b:1;s:34:\"Deleted %title revision %revision.\";s:40:\"Revisione %revision di %title eliminata.\";s:41:\"%type: deleted %title revision %revision.\";s:50:\"%type: eliminata la revisione %revision di %title.\";s:58:\"Deletion failed. You tried to delete the current revision.\";s:73:\"Cancellazione impossibile. Hai cercato di eliminare la revisione attuale.\";s:9:\"Syndicate\";s:20:\"Scambia informazioni\";s:68:\"The body of your %type is too short. You need at least %words words.\";s:87:\"Il testo del tuo/della tua %type è troppo corto. Sono necessarie almeno %words parole.\";s:34:\"The username %name does not exist.\";s:32:\"Il nome utente %name non esiste.\";s:21:\"Authoring information\";s:24:\"Informazioni sull\'autore\";s:27:\"Leave blank for %anonymous.\";b:1;s:62:\"Format: %time. Leave blank to use the time of form submission.\";b:1;s:18:\"Publishing options\";s:24:\"Opzioni di pubblicazione\";s:19:\"In moderation queue\";s:25:\"Nella coda di moderazione\";s:22:\"Promoted to front page\";s:24:\"Promosso in prima pagina\";s:22:\"Sticky at top of lists\";s:24:\"Fisso in cima alla lista\";s:19:\"Create new revision\";s:24:\"Crea una nuova revisione\";s:12:\"Submit %name\";s:15:\"Inserisci %name\";s:13:\"Add a new %s.\";s:21:\"Aggiungi un nuovo %s.\";s:42:\"Choose the appropriate item from the list:\";s:39:\"Scegli dall\'elenco la voce appropriata:\";s:38:\"You are not allowed to create content.\";s:38:\"Non ti è consentito creare contenuti.\";s:23:\"Preview trimmed version\";s:24:\"Anteprima versione breve\";s:20:\"Preview full version\";s:27:\"Anteprima versione completa\";s:22:\"The %post was updated.\";s:33:\"Il contenuto è stato aggiornato.\";s:20:\"%type: added %title.\";s:23:\"%type: %title aggiunto.\";s:23:\"Your %post was created.\";s:33:\"Il tuo contenuto è stato creato.\";s:39:\"Are you sure you want to delete %title?\";s:37:\"Sei sicuro di voler eliminare %title?\";s:24:\"%title has been deleted.\";s:26:\"%title è stato eliminato.\";s:22:\"%type: deleted %title.\";s:24:\"%type: %title eliminato.\";s:3:\"RSS\";s:3:\"RSS\";s:15:\"Default options\";s:19:\"Opzioni predefinite\";s:15:\"Advanced search\";s:16:\"Ricerca avanzata\";s:27:\"Containing any of the words\";s:40:\"Che contiene almeno una di queste parole\";s:21:\"Containing the phrase\";s:21:\"Che contiene la frase\";s:28:\"Containing none of the words\";s:40:\"Che non contiene alcuna di queste parole\";s:16:\"administer nodes\";s:17:\"amministra i nodi\";s:14:\"access content\";s:19:\"accede ai contenuti\";s:4:\"node\";s:4:\"nodo\";s:73:\"Enables the creation of pages that can be added to the navigation system.\";s:86:\"Consente la creazione di pagine che possono essere aggiunte al sistema di navigazione.\";s:4:\"page\";s:6:\"pagina\";s:12:\"create pages\";s:11:\"crea pagine\";s:14:\"edit own pages\";s:26:\"modifica le proprie pagine\";s:28:\"Allows users to rename URLs.\";s:43:\"Consente agli utenti di rinominare gli URL.\";s:11:\"url aliases\";s:14:\"alias dell\'url\";s:10:\"edit alias\";s:14:\"modifica alias\";s:12:\"delete alias\";s:13:\"elimina alias\";s:9:\"add alias\";s:14:\"aggiungi alias\";s:50:\"Are you sure you want to delete path alias %title?\";b:1;s:27:\"The alias has been deleted.\";s:27:\"L\'alias è stato eliminato.\";s:20:\"Existing system path\";s:29:\"Percorso di sistema esistente\";s:12:\"Update alias\";s:14:\"Aggiorna alias\";s:16:\"Create new alias\";s:16:\"Crea nuovo alias\";s:20:\"The path is invalid.\";s:26:\"Il percorso non è valido.\";s:27:\"The path is already in use.\";s:31:\"Il percorso è già utilizzato.\";s:17:\"URL path settings\";s:25:\"Impostazioni percorso URL\";s:5:\"Alias\";s:5:\"Alias\";s:6:\"System\";s:7:\"Sistema\";s:25:\"No URL aliases available.\";s:35:\"Nessun alias disponibile per l\'URL.\";s:33:\"The system path %path is invalid.\";s:43:\"Il percorso di sistema %path non è valido.\";s:28:\"The alias %alias is invalid.\";s:29:\"L\'alias %alias non è valido.\";s:35:\"The alias %alias is already in use.\";s:30:\"L\'alias %alias è già in uso.\";s:25:\"The alias has been saved.\";s:25:\"L\'alias è stato salvato.\";s:18:\"create url aliases\";s:10:\"crea alias\";s:22:\"administer url aliases\";s:20:\"amministra gli alias\";s:4:\"path\";s:8:\"percorso\";s:32:\"XML-RPC interface of weblogs.com\";s:35:\"interfaccia XML-RPC per weblogs.com\";s:19:\"Weblogs.Com for RSS\";s:19:\"Weblogs.com per RSS\";s:23:\"the weblogs.com for RSS\";s:22:\"il weblogs.com per RSS\";s:27:\"XML-RPC interface of blo.gs\";s:30:\"interfaccia XML-RPC per blo.gs\";s:51:\"Alerts other sites that your site has been updated.\";s:55:\"Avverte altri siti che il tuo sito è stato aggiornato.\";s:36:\"Failed to notify weblogs.com (site).\";s:44:\"Impossibile norificare a weblogs.com (sito).\";s:35:\"Failed to notify weblogs.com (RSS).\";s:41:\"Impossibile noficare a weblogs.com (RSS).\";s:24:\"Failed to notify blo.gs.\";s:32:\"Impossibile norificare a blo.gs.\";s:32:\"Failed to notify technorati.com.\";s:40:\"Impossibile notificare a technorati.com.\";s:64:\"A poll is a multiple-choice question which visitors can vote on.\";s:82:\"Un sondaggio è una domanda a scelta multipla per cui i visitatori possono votare.\";s:16:\"Most recent poll\";s:21:\"Sondaggi più recenti\";s:4:\"Poll\";s:9:\"Sondaggio\";s:32:\"Negative values are not allowed.\";s:36:\"I valori negativi non sono permessi.\";s:38:\"You must fill in at least two choices.\";s:32:\"Devi riempire almeno due scelte.\";s:8:\"Question\";s:7:\"Domanda\";s:17:\"Need more choices\";s:26:\"Hai bisogno di più scelte\";s:7:\"Choices\";s:6:\"Scelte\";s:9:\"Choice %n\";s:9:\"Scelta %n\";s:19:\"Votes for choice %n\";s:21:\"Voti per la scelta %n\";s:6:\"Closed\";s:6:\"Chiuso\";s:8:\"Settings\";s:12:\"Impostazioni\";s:11:\"Poll status\";s:18:\"Stato dei sondaggi\";s:58:\"When a poll is closed, visitors can no longer vote for it.\";s:77:\"Quando un sondaggio è chiuso, i visitatori non possono più votare per esso.\";s:13:\"Poll duration\";s:20:\"Durata del sondaggio\";s:57:\"After this period, the poll will be closed automatically.\";s:63:\"Dopo questo periodo, il sondaggio sarà chiuso automaticamente.\";s:4:\"poll\";s:9:\"sondaggio\";s:5:\"polls\";s:8:\"sondaggi\";s:4:\"vote\";s:4:\"vota\";s:4:\"open\";s:6:\"aperto\";s:6:\"closed\";s:6:\"chiuso\";s:4:\"Vote\";s:4:\"Vota\";s:19:\"Total votes: %votes\";s:11:\"Voti totali\";s:23:\"Your vote was recorded.\";s:32:\"Il tuo voto è stato registrato.\";s:40:\"You\'re not allowed to vote on this poll.\";s:46:\"Non sei autorizzato a votare questo sondaggio.\";s:39:\"You didn\'t specify a valid poll choice.\";s:55:\"Non hai specificato una scelta valida per il sondaggio.\";s:11:\"older polls\";s:15:\"sondaggi vecchi\";s:36:\"View the list of polls on this site.\";s:42:\"Vedi la lista dei sondaggi su questo sito.\";s:30:\"View the current poll results.\";s:39:\"Vedi i risultati dei sondaggi correnti.\";s:6:\"1 vote\";s:6:\"1 voto\";s:12:\"create polls\";s:13:\"crea sondaggi\";s:13:\"vote on polls\";s:15:\"vota i sondaggi\";s:36:\"Supports configurable user profiles.\";s:42:\"Supporto per profili utenti configurabili.\";s:9:\"user list\";s:13:\"elenco utenti\";s:8:\"profiles\";s:7:\"profili\";s:9:\"add field\";s:17:\"aggiungi un campo\";s:10:\"edit field\";s:17:\"modifica il campo\";s:12:\"delete field\";s:16:\"elimina il campo\";s:18:\"Author information\";s:24:\"Informazioni sull\'autore\";s:25:\"Link to full user profile\";s:35:\"Link per il profilo utente completo\";s:25:\"Profile fields to display\";s:33:\"Campi del profilo da visualizzare\";s:22:\"View full user profile\";s:31:\"Vedi il profilo utente completo\";s:11:\"About %name\";s:23:\"Informazioni su \'%name\'\";s:14:\"Field settings\";s:18:\"Impostazioni campo\";s:9:\"Form name\";s:11:\"Nome scheda\";s:11:\"Explanation\";s:11:\"Spiegazione\";s:17:\"Selection options\";s:20:\"Opzioni di selezione\";s:10:\"Visibility\";s:11:\"Visibilità \";s:58:\"Private field, content only available to privileged users.\";s:64:\"Campo privato, contenuto visibile solo agli utenti privilegiati.\";s:69:\"Public field, content shown on profile page and on member list pages.\";s:95:\"Campo pubblico, contenuto mostrato nella pagina profilo e nelle pagine che elencano gli utenti.\";s:10:\"Page title\";b:1;s:28:\"The user must enter a value.\";s:33:\"L\'utente deve inserire un valore.\";s:34:\"Visible in user registration form.\";s:46:\"Visibile nella scheda di registrazione utente.\";s:10:\"Save field\";s:14:\"Salva il campo\";s:54:\"The specified form name is reserved for use by Drupal.\";s:57:\"Il nome scheda specificato è riservato ad uso di Drupal.\";s:38:\"The specified title is already in use.\";s:41:\"Il titolo specificato è già utilizzato.\";s:37:\"The specified name is already in use.\";s:39:\"Il nome specificato è già utilizzato.\";s:27:\"The field has been created.\";s:25:\"Il campo è stato creato.\";s:52:\"Profile field %field added under category %category.\";b:1;s:27:\"The field has been updated.\";s:29:\"Il campo è stato aggiornato.\";s:34:\"The field %field has been deleted.\";s:35:\"Il campo %field è stato eliminato.\";s:18:\"No fields defined.\";s:22:\"Nessun campo definito.\";s:13:\"Add new field\";s:23:\"Aggiungi un nuovo campo\";s:66:\"The content of this field is private and only visible to yourself.\";s:63:\"Il contenuto di questo campo è privato e solo tu puoi vederlo.\";s:49:\"The value provided for %field is not a valid URL.\";s:50:\"Il valore fornito per %field non è un URL valido.\";s:29:\"The field %field is required.\";s:32:\"Il campo %field è obbligatorio.\";s:21:\"single-line textfield\";s:22:\"testo su linea singola\";s:20:\"multi-line textfield\";s:19:\"testo su più linee\";s:8:\"checkbox\";s:9:\"casellina\";s:14:\"list selection\";s:18:\"elenco a selezione\";s:13:\"freeform list\";s:22:\"elenco a schema libero\";s:4:\"date\";s:4:\"data\";s:7:\"profile\";s:7:\"profilo\";s:36:\"Enables site-wide keyword searching.\";s:56:\"Consente una ricerca per parole chiave in tutto il sito.\";s:11:\"Search form\";s:19:\"Maschera di ricerca\";s:11:\"Clear index\";s:15:\"Cancella indice\";s:13:\"Re-index site\";s:19:\"Reindicizza il sito\";s:26:\"The index will be rebuilt.\";s:27:\"L\'indice sarà ricostruito.\";s:41:\"%percentage of the site has been indexed.\";s:42:\"%percentage del sito è stata indicizzata.\";s:15:\"Indexing status\";s:25:\"Stato dell\'indicizzazione\";s:17:\"Indexing throttle\";s:30:\"Limitatore dell\'indicizzazione\";s:27:\"Items to index per cron run\";s:42:\"Oggetti da indicizzare per operazione cron\";s:17:\"Indexing settings\";s:27:\"Impostazioni indicizzazione\";s:28:\"Minimum word length to index\";s:44:\"Lunghezza minima della parola da indicizzare\";s:19:\"Simple CJK handling\";s:21:\"Semplice gestione CJK\";s:43:\"Are you sure you want to re-index the site?\";s:44:\"Sei sicuro di volere reindicizzare il sito ?\";s:22:\"Search: %keys (%type).\";s:21:\"Cerca: %keys (%type).\";s:14:\"Search results\";s:23:\"Risultati della ricerca\";s:30:\"Your search yielded no results\";s:40:\"La tua ricerca non ha prodotto risultati\";s:19:\"Enter your keywords\";s:30:\"Inserisci le chiavi di ricerca\";s:27:\"Please enter some keywords.\";s:43:\"Devi inserire una o più chiavi di ricerca.\";s:39:\"Enter the terms you wish to search for.\";b:1;s:30:\"There is 1 item left to index.\";s:38:\"Manca un solo elemento da indicizzare.\";s:14:\"search content\";s:21:\"cerca tra i contenuti\";s:17:\"administer search\";s:18:\"amministra ricerca\";s:37:\"Logs access statistics for your site.\";s:47:\"Registra le statistiche di accesso al tuo sito.\";s:48:\"This page shows you the most recent hits.
\";s:51:\"Questa pagina mostra le visite più recenti.
\";s:11:\"recent hits\";s:14:\"visite recenti\";s:9:\"top pages\";s:17:\"pagine più viste\";s:12:\"top visitors\";s:17:\"livello più alto\";s:9:\"referrers\";s:8:\"referrer\";s:17:\"track page visits\";s:29:\"traccia le visite alla pagina\";s:9:\"Timestamp\";s:10:\"Data e ora\";s:4:\"Page\";s:6:\"Pagina\";s:4:\"Hits\";s:6:\"Visite\";s:28:\"Average page generation time\";s:39:\"Tempo medio di generazione della pagina\";s:26:\"Total page generation time\";s:40:\"Tempo totale di generazione della pagina\";s:8:\"%time ms\";s:13:\"%time rimasto\";s:31:\"Top pages in the past %interval\";s:40:\"Pagine più viste negli ultimi %interval\";s:7:\"Visitor\";s:10:\"Visitatore\";s:5:\"unban\";s:12:\"non proibire\";s:3:\"ban\";s:9:\"proibisci\";s:34:\"Top visitors in the past %interval\";s:40:\"Pagine più viste negli ultimi %interval\";s:35:\"Top referrers in the past %interval\";s:46:\"Referrer più frequenti negli ultimi %interval\";s:3:\"Url\";s:3:\"Url\";s:10:\"Last visit\";s:13:\"Ultima visita\";s:19:\"Access log settings\";s:27:\"Impostazioni log di accesso\";s:17:\"Enable access log\";s:24:\"Attiva il log di accesso\";s:56:\"Log each page access. Required for referrer statistics.\";s:79:\"Registra ogni accesso a una pagina. Necessario per le statistiche dei referrer.\";s:30:\"Discard access logs older than\";s:43:\"Elimina il log degli accessi più vecchi di\";s:32:\"Content viewing counter settings\";s:42:\"Impostazioni contatore visite al contenuto\";s:19:\"Count content views\";s:28:\"Conta le visite ai contenuti\";s:48:\"Increment a counter each time content is viewed.\";s:51:\"Incrementa un contatore a ogni visita al contenuto.\";s:15:\"Popular content\";s:20:\"Contenuti più visti\";s:36:\"Number of day\'s top views to display\";s:43:\"Numero di più visti del giorno da mostrare\";s:48:\"How many content items to display in \"day\" list.\";s:52:\"Quanti contenuti mostrare nell\'elenco \" per giorni\".\";s:35:\"Number of all time views to display\";s:32:\"Numero visite totali da mostrare\";s:53:\"How many content items to display in \"all time\" list.\";s:50:\"Quanti contenuti mostrare nell\'elenco \"in totale\".\";s:38:\"Number of most recent views to display\";s:41:\"Numero di visite più recenti da mostrare\";s:60:\"How many content items to display in \"recently viewed\" list.\";s:57:\"Quanti contenuti mostrare nell\'elenco \"visti di recente\".\";s:8:\"Today\'s:\";s:8:\"Di oggi:\";s:9:\"All time:\";s:10:\"In totale:\";s:12:\"Last viewed:\";s:14:\"Ultima visita:\";s:6:\"1 read\";s:13:\"letto 1 volta\";s:17:\"access statistics\";s:23:\"accede alle statistiche\";s:24:\"view post access counter\";b:1;s:10:\"statistics\";s:11:\"statistiche\";s:61:\"Enables users to submit stories, articles or similar content.\";s:71:\"Consente agli utenti di pubblicare storie, articoli o contenuti simili.\";s:15:\"edit this story\";s:15:\"modifica storia\";s:54:\"Handles general site configuration for administrators.\";s:68:\"Gestisce per gli amministratori la configurazione generale del sito.\";s:10:\"administer\";s:10:\"amministra\";s:6:\"themes\";s:4:\"temi\";s:15:\"global settings\";s:20:\"impostazioni globali\";s:7:\"modules\";s:6:\"moduli\";s:70:\"Selecting a different theme will change the look and feel of the site.\";s:58:\"Selezionando un tema diverso si cambia l\'aspetto del sito.\";s:15:\"Locale settings\";s:19:\"Impostazioni lingua\";s:9:\"Time zone\";s:11:\"Fuso orario\";s:19:\"Theme configuration\";s:19:\"Configurazione tema\";s:27:\"Screenshot for %theme theme\";s:25:\"Anteprima del tema %theme\";s:13:\"no screenshot\";s:16:\"nessun\'anteprima\";s:36:\"
(site default theme)\";b:1;s:10:\"Screenshot\";s:9:\"Anteprima\";s:26:\"The name of this web site.\";s:27:\"Il nome di questo sito Web.\";s:6:\"Slogan\";s:6:\"Slogan\";s:72:\"The slogan of this website. Some themes display a slogan when available.\";s:76:\"Lo slogan di questo sito Web. Alcuni temi mostrano lo slogan se disponibile.\";s:7:\"Mission\";s:8:\"Missione\";s:39:\"Your site\'s mission statement or focus.\";s:50:\"La dichiarazione della vostra mission o obiettivo.\";s:14:\"Footer message\";s:26:\"Messaggio a piè di pagina\";s:14:\"Anonymous user\";s:14:\"Utente anonimo\";s:42:\"The name used to indicate anonymous users.\";s:50:\"Il nome utilizzato per indicare gli utenti anonimi\";s:18:\"Default front page\";s:24:\"Prima pagina predefinita\";s:10:\"Clean URLs\";s:16:\"URL semplificati\";s:22:\"Run the clean URL test\";b:1;s:14:\"Error handling\";s:15:\"Gestione errore\";s:32:\"Default 403 (access denied) page\";s:39:\"Pagina 403 predefinita (accesso negato)\";s:28:\"Default 404 (not found) page\";s:36:\"Pagina 404 predefinita (non trovato)\";s:15:\"Error reporting\";s:16:\"Avviso di errore\";s:23:\"Write errors to the log\";s:25:\"Scrivi gli errori nel log\";s:41:\"Write errors to the log and to the screen\";s:37:\"Scrive gli errori nel log e a schermo\";s:5:\"Never\";s:3:\"Mai\";s:30:\"Discard log entries older than\";s:39:\"Elimina le voci del log più vecchie di\";s:14:\"Cache settings\";s:18:\"Impostazione cache\";s:10:\"Page cache\";s:12:\"Cache pagine\";s:22:\"Minimum cache lifetime\";s:19:\"Durata minima cache\";s:20:\"File system settings\";s:24:\"Impostazioni file system\";s:16:\"File system path\";s:19:\"Percorso di sistema\";s:19:\"Temporary directory\";s:20:\"Directory temporanea\";s:15:\"Download method\";s:18:\"Metodo di download\";s:49:\"Public - files are available using http directly.\";s:72:\"Pubblico - i file sono resi disponibili utilizzando direttamente l\'http.\";s:42:\"Private - files are transferred by Drupal.\";s:43:\"Privato - i file sono trasferiti da Drupal.\";s:34:\"Select an image processing toolkit\";b:1;s:17:\"RSS feed settings\";s:23:\"Impostazioni flusso RSS\";s:24:\"Number of items per feed\";s:21:\"N. elementi per fonte\";s:49:\"The default number of items to include in a feed.\";s:59:\"Il numero di default di elementi da includere in un flusso.\";s:25:\"Display of XML feed items\";s:29:\"Visualizza elementi fonte XML\";s:11:\"Titles only\";s:11:\"Solo titoli\";s:18:\"Titles plus teaser\";s:18:\"Titoli e anteprime\";s:9:\"Full text\";s:14:\"Testo completo\";s:13:\"Date settings\";s:17:\"Impostazioni data\";s:17:\"Default time zone\";s:23:\"Fuso orario predefinito\";s:34:\"Select the default site time zone.\";s:49:\"Seleziona il fuso orario predefinito per il sito.\";s:23:\"Configurable time zones\";s:24:\"Fusi orari configurabili\";s:17:\"Short date format\";s:18:\"Formato data breve\";s:33:\"The short format of date display.\";s:47:\"Il formato breve di visualizzazione della data.\";s:18:\"Medium date format\";s:18:\"Formato data medio\";s:30:\"The medium sized date display.\";s:47:\"Il formato medio di visualizzazione della data.\";s:16:\"Long date format\";s:18:\"Formato data lungo\";s:45:\"Longer date format used for detailed display.\";s:55:\"Il formato lungo per visualizzare la data nei dettagli.\";s:17:\"First day of week\";s:28:\"Primo giorno della settimana\";s:45:\"The first day of the week for calendar views.\";s:46:\"Il primo giorno della settimana nei calendari.\";s:16:\"Site maintenance\";s:21:\"Manutenzione del sito\";s:11:\"Site status\";s:14:\"Stato del sito\";s:6:\"Online\";s:6:\"Online\";s:15:\"String handling\";s:17:\"Gestione stringhe\";s:9:\"Cron jobs\";b:1;s:49:\"Cron is running. The last cron job ran %time ago.\";b:1;s:55:\"The settings have not been saved because of the errors.\";s:56:\"I parametri non sono stati salvati a causa degli errori.\";s:66:\"The configuration options have been reset to their default values.\";s:75:\"Le opzioni di configurazione sono state ripristinate ai valori predefiniti.\";s:42:\"The configuration options have been saved.\";s:48:\"Le opzioni di configurazione sono state salvate.\";s:8:\"required\";s:12:\"obbligatorio\";s:62:\"Only JPEG, PNG and GIF images are allowed to be used as logos.\";s:68:\"E\' possibile utilizzare come logo soltanto immagini JPEG, PNG e GIF.\";s:4:\"Logo\";b:1;s:9:\"Site name\";s:13:\"Nome del sito\";s:11:\"Site slogan\";s:15:\"Slogan del sito\";s:17:\"Mission statement\";s:25:\"Descrizione della mission\";s:22:\"User pictures in posts\";s:34:\"Ritratto dell\'utente nei contenuti\";s:25:\"User pictures in comments\";s:33:\"Ritratto dell\'utente nei commenti\";s:10:\"Search box\";s:22:\"Finestrella di ricerca\";s:13:\"Shortcut icon\";s:17:\"Icona predefinita\";s:14:\"Toggle display\";s:26:\"Commuta la visualizzazione\";s:55:\"Enable or disable the display of certain page elements.\";s:71:\"Attiva o disattiva la visualizzazione di un dato elemento di una pagina\";s:27:\"Display post information on\";s:39:\"Mostra le informazioni del contenuto su\";s:19:\"Logo image settings\";s:31:\"Impostazioni dell\'immagine logo\";s:52:\"If toggled on, the following logo will be displayed.\";b:1;s:20:\"Use the default logo\";s:23:\"Usa il logo predefinito\";s:66:\"Check here if you want the theme to use the logo supplied with it.\";s:74:\"Seleziona la casella se vuoi che il tema utilizzi il suo logo predefinito.\";s:19:\"Path to custom logo\";s:28:\"Path del logo personalizzato\";s:17:\"Upload logo image\";s:22:\"Carica l\'immagine logo\";s:22:\"Shortcut icon settings\";s:32:\"Impostazioni specifiche del logo\";s:30:\"Use the default shortcut icon.\";s:23:\"Usa l\'icona predefinita\";s:66:\"Check here if you want the theme to use the default shortcut icon.\";s:74:\"Seleziona la casella se vuoi che il tema utilizzi il suo logo predefinito.\";s:19:\"Path to custom icon\";s:30:\"Path dell\'icona personalizzata\";s:17:\"Upload icon image\";s:28:\"Carica l\'immagine dell\'icona\";s:24:\"Engine-specific settings\";s:43:\"Impostazioni specifiche del motore dei temi\";s:23:\"Theme-specific settings\";s:32:\"Impostazioni specifiche del tema\";s:7:\"Confirm\";s:8:\"Conferma\";s:29:\"administer site configuration\";s:37:\"amministra la configurazione del sito\";s:27:\"access administration pages\";s:37:\"accede alle pagine di amministrazione\";s:22:\"select different theme\";s:28:\"seleziona un tema differente\";s:6:\"system\";s:7:\"sistema\";s:14:\"add vocabulary\";s:23:\"aggiungi un vocabolario\";s:15:\"edit vocabulary\";s:23:\"modifica il vocabolario\";s:9:\"edit term\";s:19:\"modifica il termine\";s:13:\"taxonomy term\";s:18:\"termine tassonomia\";s:21:\"autocomplete taxonomy\";s:28:\"autocompletamento tassonomia\";s:8:\"add term\";s:19:\"aggiungi un termine\";s:24:\"No categories available.\";s:30:\"Nessuna categoria disponibile.\";s:19:\"No terms available.\";s:27:\"Nessun termine disponibile.\";s:15:\"Vocabulary name\";s:20:\"Nome del vocabolario\";s:48:\"The name for this vocabulary. Example: \"Topic\".\";s:57:\"Il nome di questo vocabolario. Ad esempio: \"Discussione\".\";s:54:\"Description of the vocabulary; can be used by modules.\";s:63:\"Descrizione del vocabolario; può essere utilizzata dai moduli.\";s:9:\"Help text\";s:14:\"Testo di aiuto\";s:57:\"Instructions to present to the user when choosing a term.\";s:62:\"Istruzioni da presentare all\'utente quando sceglie un termine.\";s:5:\"Types\";s:4:\"Tipi\";s:64:\"A list of node types you want to associate with this vocabulary.\";s:60:\"Una lista di tipi di nodo da associare a questo vocabolario.\";s:9:\"Hierarchy\";s:9:\"Gerarchia\";s:6:\"Single\";s:7:\"Singola\";s:8:\"Multiple\";s:8:\"Multipla\";s:13:\"Related terms\";s:17:\"Termini correlati\";s:64:\"Allows related terms in this vocabulary.\";s:82:\"Consente l\'uso di termini correlati in questo vocabolario.\";s:12:\"Free tagging\";s:23:\"Categorizzazione libera\";s:71:\"Content is categorized by typing terms instead of choosing from a list.\";s:87:\"Il contenuto viene categorizzato inserendo i termini invece d i scegliere da una lista.\";s:15:\"Multiple select\";s:18:\"Selezione multipla\";s:29:\"Created new vocabulary %name.\";s:31:\"Nuovo vocabolario %name creato.\";s:25:\"Updated vocabulary %name.\";s:29:\"Vocabolario %name aggiornato.\";s:54:\"Are you sure you want to delete the vocabulary %title?\";s:52:\"Sei sicuro di voler eliminare il vocabolario %title?\";s:25:\"Deleted vocabulary %name.\";s:28:\"vocabolario %name eliminato.\";s:9:\"Term name\";s:16:\"Nome del termine\";s:42:\"The name for this term. Example: \"Linux\".\";s:47:\"Il nome di questo termine. Ad esempio: \"Linux\".\";s:26:\"A description of the term.\";s:28:\"Una descrizione del termine.\";s:11:\"Parent term\";s:13:\"Termine padre\";s:7:\"Parents\";s:5:\"Padri\";s:12:\"Parent terms\";s:13:\"Termini padre\";s:8:\"Synonyms\";s:8:\"Sinonimi\";s:68:\"Synonyms of this term, one synonym per line.\";s:74:\"Sinonimi di questo termine, un sinonimo per linea.\";s:23:\"Created new term %term.\";s:27:\"Nuovo termine %term creato.\";s:32:\"The term %term has been updated.\";s:37:\"Il termine %term è stato aggiornato.\";s:48:\"Are you sure you want to delete the term %title?\";s:48:\"Sei sicuro di voler eliminare il termine %title?\";s:19:\"Deleted term %name.\";s:26:\"Termine \"%name\" eliminato.\";s:53:\"The %name vocabulary can not be modified in this way.\";s:63:\"Il vocabolario %name non può essere modificato in questo modo.\";s:46:\"There are currently no posts in this category.\";s:52:\"Questa categoria non contiene attualmente contenuti.\";s:38:\"Enables the categorization of content.\";s:53:\"Permette l\'organizzazione dei contenuti in categorie.\";s:19:\"administer taxonomy\";s:24:\"amministra la tassonomia\";s:66:\"Handles the auto-throttling mechanism, to control site congestion.\";s:91:\"Gestisce il meccanismo limitatore automatico, per controllare il congestionamento del sito.\";s:32:\"Auto-throttle on anonymous users\";s:44:\"Limitatore automatico per gli utenti anonimi\";s:36:\"Auto-throttle on authenticated users\";s:48:\"Limitatore automatico per gli utenti autenticati\";s:33:\"Auto-throttle probability limiter\";s:48:\"Soglia di probabilità del limitatore automatico\";s:8:\"throttle\";s:10:\"limitatore\";s:40:\"1 user accessing site; throttle enabled.\";s:62:\"Limitatore: 1 utente sta visitando il sito; limitatore attivo.\";s:41:\"1 guest accessing site; throttle enabled.\";s:62:\"Limitatore: 1 ospite sta visitando il sito; limitatore attivo.\";s:41:\"1 guest accessing site; throttle disabled\";s:67:\"Limitatore: 1 ospite sta visitando il sito; limitatore disattivato.\";s:43:\"Enables tracking of recent posts for users.\";s:55:\"Permette di tracciare i contenuti recenti degli utenti.\";s:12:\"recent posts\";s:17:\"contenuti recenti\";s:16:\"all recent posts\";s:25:\"tutti i contenuti recenti\";s:15:\"my recent posts\";s:22:\"miei contenuti recenti\";s:11:\"track posts\";s:19:\"traccia i contenuti\";s:4:\"Post\";s:9:\"Messaggio\";s:7:\"tracker\";s:12:\"tracciamento\";s:63:\"Invalid: the current configuration is incompatible with Drupal.\";s:69:\"Non valido: la configurazione corrente non è compatibile con Drupal.\";s:22:\"String handling method\";s:33:\"Metodo di gestione delle stringhe\";s:45:\"Could not convert XML encoding \'%s\' to UTF-8.\";s:64:\"Non è stato possibile convertire la codifica XML \'%s\' in UTF-8.\";s:51:\"Allows users to upload and attach files to content.\";s:62:\"Consente agli utenti di caricare e allegare file al contenuto.\";s:38:\"Read full article to view attachments.\";s:48:\"Leggi l\'intero articolo per vedere gli allegati.\";s:38:\"Maximum resolution for uploaded images\";s:43:\"Risoluzione massima delle immagini caricate\";s:21:\"List files by default\";b:1;s:18:\"Settings for %role\";s:22:\"Impostazioni per %role\";s:25:\"Permitted file extensions\";s:24:\"Estensioni file permesse\";s:28:\"Maximum file size per upload\";s:47:\"Dimensione massima file per singolo caricamento\";s:60:\"The maximum size of a file a user can upload (in megabytes).\";s:79:\"Dimensione massima di un singolo file che l\'utente può caricare (in megabyte).\";s:24:\"Total file size per user\";s:41:\"Dimensione totale file per singolo utente\";s:73:\"The maximum size of all files a user can have on the site (in megabytes).\";s:88:\"Dimensione massima di tutti i file che un utente può conservare nel sito (in megabyte).\";s:11:\"Attachments\";s:8:\"Allegati\";s:16:\"File attachments\";s:13:\"File allegati\";s:10:\"Attachment\";s:8:\"Allegato\";s:4:\"Size\";s:10:\"Dimensione\";s:57:\"Your filename has been renamed to conform to site policy.\";b:1;s:15:\"Attach new file\";s:20:\"Allega un nuovo file\";s:6:\"Attach\";s:6:\"Allega\";s:4:\"List\";s:6:\"Elenco\";s:12:\"1 attachment\";s:10:\"1 allegato\";s:12:\"upload files\";s:13:\"carica i file\";s:19:\"view uploaded files\";s:22:\"mostra i file caricati\";s:6:\"upload\";s:6:\"upload\";s:26:\"You must enter a username.\";s:29:\"Devi inserire un nome utente.\";s:39:\"The username cannot begin with a space.\";s:50:\"Il nome utente non può cominciare con uno spazio.\";s:37:\"The username cannot end with a space.\";s:49:\"Il nome utente non può terminare con uno spazio.\";s:53:\"The username cannot contain multiple spaces in a row.\";s:57:\"Il nome utente non può contenere più spazi consecutivi.\";s:43:\"The username contains an illegal character.\";s:47:\"Il nome utente contiene caratteri non permessi.\";s:46:\"The username is not a valid authentication ID.\";s:56:\"Il nome utente non è un ID valido per l\'autenticazione.\";s:67:\"The username %name is too long: it must be less than 56 characters.\";s:71:\"Il nome utente %name è troppo lungo: deve essere meno di 56 caratteri.\";s:33:\"You must enter an e-mail address.\";s:34:\"Devi inserire un indirizzo e-mail.\";s:38:\"The e-mail address %mail is not valid.\";s:39:\"L\'indirizzo e-mail %mail non è valido.\";s:35:\"The uploaded file was not an image.\";s:36:\"Il file caricato non è un immagine.\";s:67:\"The uploaded image is too large; the maximum file size is %size kB.\";s:81:\"L\'immagine caricata è troppo grande: la dimensione massima del file è %size kB.\";s:5:\"users\";s:6:\"utenti\";s:10:\"Member for\";s:9:\"Membro da\";s:16:\"account settings\";s:20:\"impostazioni profilo\";s:10:\"User login\";s:12:\"Login utente\";s:9:\"Who\'s new\";s:12:\"Nuovi utenti\";s:12:\"Who\'s online\";s:13:\"Utenti online\";s:13:\"User activity\";s:16:\"Attività utente\";s:16:\"User list length\";s:28:\"Lunghezza dell\'elenco utenti\";s:52:\"Maximum number of currently online users to display.\";s:44:\"Numero massimo di utenti online da mostrare.\";s:8:\"Username\";s:11:\"Nome utente\";s:8:\"Password\";s:8:\"Password\";s:6:\"Log in\";s:6:\"Accedi\";s:18:\"Create new account\";s:18:\"Crea nuovo profilo\";s:26:\"Create a new user account.\";s:29:\"Crea un nuovo profilo utente.\";s:20:\"Request new password\";s:23:\"Richiedi nuova password\";s:32:\"Request new password via e-mail.\";s:35:\"Richiedi nuova password via e-mail.\";s:49:\"There is currently %members and %visitors online.\";s:50:\"Ci sono attualmente %members e %visitors collegati\";s:50:\"There are currently %members and %visitors online.\";s:50:\"Ci sono attualmente %members e %visitors collegati\";s:12:\"Online users\";s:13:\"Utenti online\";s:15:\"%user\'s picture\";s:17:\"ritratto di %user\";s:12:\"user account\";s:14:\"profilo utente\";s:17:\"user autocomplete\";s:29:\"autocompletamento dell\'utente\";s:6:\"log in\";s:5:\"entra\";s:8:\"register\";s:8:\"registra\";s:20:\"request new password\";s:27:\"richiedi una nuova password\";s:14:\"reset password\";s:22:\"ripristina la password\";s:8:\"add user\";s:18:\"aggiungi un utente\";s:14:\"access control\";s:20:\"controlli di accesso\";s:11:\"permissions\";s:8:\"permessi\";s:5:\"roles\";s:5:\"ruoli\";s:9:\"edit role\";s:17:\"modifica il ruolo\";s:12:\"access rules\";s:17:\"regole di accesso\";s:8:\"add rule\";s:19:\"aggiungi una regola\";s:11:\"check rules\";s:18:\"verifica le regole\";s:9:\"edit rule\";s:18:\"modifica la regola\";s:11:\"delete rule\";s:17:\"elimina la regola\";s:10:\"my account\";s:14:\"il mio profilo\";s:7:\"log out\";s:4:\"esci\";s:4:\"user\";s:6:\"utente\";s:64:\"Enter your %s username, or an ID from one of our affiliates: %a.\";s:70:\"Inserisci il tuo %s nome utente, o un ID di uno dei siti affiliati: %a\";s:23:\"Enter your %s username.\";s:32:\"Inserisci il tuo nome utente %s.\";s:50:\"Enter the password that accompanies your username.\";s:51:\"Inserisci la password associata al tuo nome utente.\";s:38:\"The name %name is a reserved username.\";s:29:\" Il nome %name è riservato .\";s:41:\"Sorry. Unrecognized username or password.\";s:51:\"Spiacente. Nome utente o password non riconosciuti.\";s:33:\"Have you forgotten your password?\";s:29:\"Hai dimenticato la password ?\";s:25:\"Session opened for %name.\";s:26:\"Sessione aperta per %name.\";s:44:\"External load by %user using module %module.\";s:63:\"Carico generato dall\'utente esterno %user con il modulo %module\";s:24:\"Invalid password for %s.\";s:27:\"Password non valida per %s.\";s:46:\"New external user: %user using module %module.\";s:62:\"Nuovo utente esterno: %user sta utilizzando il modulo %module.\";s:25:\"Session closed for %name.\";s:26:\"Sessione chiusa per %name.\";s:19:\"E-mail new password\";s:35:\"Invia una nuova password via e-mail\";s:44:\"Sorry. The username %name is not recognized.\";s:51:\"Specente. Il nome utente %name non è riconosciuto.\";s:51:\"Sorry. The e-mail address %email is not recognized.\";s:57:\"Spiacente. L\'indirizzo e-mail %email non è riconosciuto.\";s:53:\"You must provide either a username or e-mail address.\";s:53:\"Devi inserire o un nome utente o un indirizzo e-mail.\";s:54:\"Password reset instructions mailed to %name at %email.\";s:97:\"Le istruzioni per il ripristino della password per %name sono state spedite all\'indirizzo %email.\";s:59:\"Further instructions have been sent to your e-mail address.\";s:66:\"Ulteriori informazioni sono state inviate al tuo indirizzo e-mail.\";s:61:\"Error mailing password reset instructions to %name at %email.\";s:64:\"Errore nell\'invio della password per %name all\'indirizzo %email.\";s:51:\"Unable to send mail. Please contact the site admin.\";s:66:\"Impossibile inviare la mail. Contattare l\'amministratore del sito.\";s:69:\"Enter your username or your e-mail address.\";s:81:\"Inserisci il tuo nome utente o il tuo indirizzo e-mail.\";s:55:\"User %name used one-time login link at time %timestamp.\";b:1;s:40:\"This login can be used only once.
\";b:1;s:39:\"Provide a password for the new account.\";s:44:\"Inserisci una password per il nuovo profilo.\";s:19:\"Account information\";s:20:\"Informazioni profilo\";s:58:\"Detected malicious attempt to alter protected user fields.\";s:73:\"Individuato un pericoloso tentativo di alterare un campo utente protetto.\";s:23:\"New user: %name %email.\";s:26:\"Nuovo utente: %name %email\";s:52:\"Created a new user account. No e-mail has been sent.\";s:77:\"Il nuovo profilo utente è stato creato. Non è stata spedita nessuna e-mail.\";s:36:\"%u has applied for an account.\n\n%uri\";s:33:\"%u ha richiesto un profilo.\n\n%uri\";s:7:\"Blocked\";s:8:\"Bloccato\";s:7:\"Picture\";s:8:\"Ritratto\";s:14:\"Delete picture\";s:16:\"Elimina ritratto\";s:46:\"Check this box to delete your current picture.\";s:63:\"Seleziona questa casella per eliminare il tuo attuale ritratto.\";s:14:\"Upload picture\";s:15:\"Carica ritratto\";s:32:\"The name %name is already taken.\";s:29:\"il nome %name è già in uso.\";s:38:\"The name %name has been denied access.\";s:37:\"L\'accesso è stato vietato per %name.\";s:43:\"The e-mail address %email is already taken.\";s:41:\"L\'indirizzo e-mail %email è già in uso.\";s:49:\"The e-mail address %email has been denied access.\";s:57:\"L\'accesso è stato vietato per l\'indirizzo e-mail %email.\";s:29:\"The account has been deleted.\";s:30:\"Il profilo è stato eliminato.\";s:50:\"Are you sure you want to delete the account %name?\";s:47:\"Sei sicuro di voler eliminare il profilo %name?\";s:28:\"The changes have been saved.\";s:33:\"I cambiamenti sono stati salvati.\";s:38:\"Account details for %username at %site\";s:43:\"Dettagli del profilo di %username su %site.\";s:63:\"Account details for %username at %site (pending admin approval)\";s:86:\"Dettagli del profilo di %username su %site (approvazione dell\'amministratore in corso)\";s:52:\"Replacement login information for %username at %site\";s:56:\"Informazioni di login sostitutive per %username su %site\";s:58:\"Enter a username to check if it will be denied or allowed.\";s:73:\"Inserisci un nome utente per verificare che venga rifiutato o consentito.\";s:14:\"Check username\";s:24:\"Controlla il nome utente\";s:65:\"Enter an e-mail address to check if it will be denied or allowed.\";s:76:\"Inserisci un indirizzo e-mail per verificare che venga rifiutato o permesso.\";s:12:\"Check e-mail\";s:28:\"Controlla l\'indirizzo e-mail\";s:72:\"Enter a hostname or IP address to check if it will be denied or allowed.\";s:83:\"Inserisci un hostname o un indirizzo IPl per far si che venga rifiutato o permesso.\";s:14:\"Check hostname\";s:19:\"verifica l\'hostname\";s:59:\"No value entered. Please enter a test string and try again.\";b:1;s:34:\"The username %name is not allowed.\";s:37:\"Il nome utente %name non è permesso.\";s:30:\"The username %name is allowed.\";s:33:\"Il nome utente %name è permesso.\";s:40:\"The e-mail address %mail is not allowed.\";s:41:\"L\'indirizzo e-mail %mail non è permesso.\";s:36:\"The e-mail address %mail is allowed.\";s:37:\"L\'indirizzo e-mail %mail è permesso.\";s:34:\"The hostname %host is not allowed.\";s:24:\"%host non è consentito.\";s:30:\"The hostname %host is allowed.\";s:20:\"%host è consentito.\";s:22:\"You must enter a mask.\";s:26:\"Devi inserire una maschera\";s:31:\"The access rule has been added.\";s:39:\"La regola di accesso è stata aggiunta.\";s:8:\"Add rule\";s:15:\"Aggiungi regola\";s:8:\"username\";s:11:\"nome utente\";s:6:\"e-mail\";s:6:\"e-mail\";s:57:\"Are you sure you want to delete the %type rule for %rule?\";s:56:\"Sei sicuro di voler eliminare la regola %type per %rule?\";s:33:\"The access rule has been deleted.\";s:40:\"La regola di accesso è stata eliminata.\";s:31:\"The access rule has been saved.\";s:38:\"La regola di accesso è stata salvata.\";s:9:\"Save rule\";s:12:\"Salva regola\";s:11:\"Access type\";s:15:\"Tipo di accesso\";s:5:\"Allow\";s:8:\"Consenti\";s:4:\"Deny\";s:9:\"Impedisci\";s:4:\"Host\";s:4:\"Host\";s:9:\"Rule type\";s:14:\"Tipo di regola\";s:4:\"Mask\";s:8:\"Maschera\";s:54:\"Matches any number of characters, even zero characters\";s:57:\"Trova qualsiasi numero di caratteri, anche zero caratteri\";s:30:\"Matches exactly one character.\";s:31:\"Trova esattamente un carattere.\";s:4:\"host\";s:4:\"host\";s:5:\"allow\";s:8:\"consenti\";s:4:\"deny\";s:9:\"impedisci\";s:36:\"There are currently no access rules.\";s:40:\"Non esistono regole di accesso definite.\";s:9:\"all roles\";s:13:\"tutti i ruoli\";s:14:\"%module module\";s:14:\"modulo %module\";s:16:\"Save permissions\";s:16:\"Salva i permessi\";s:10:\"Permission\";s:8:\"Permessi\";s:9:\"Save role\";s:18:\"Salva questo ruolo\";s:35:\"You must specify a valid role name.\";s:32:\"Devi specificare un nome valido.\";s:11:\"Delete role\";s:16:\"Elimina il ruolo\";s:26:\"The role has been deleted.\";s:27:\"Il ruolo è stato eliminato\";s:8:\"Add role\";s:14:\"Aggiungi ruolo\";s:24:\"The role has been added.\";s:26:\"Il ruolo è stato aggiunto\";s:9:\"Role name\";s:14:\"Nome del ruolo\";s:11:\"Last access\";s:14:\"Ultimo accesso\";s:7:\"blocked\";s:8:\"bloccato\";s:6:\"active\";s:6:\"attivo\";s:26:\"User registration settings\";s:33:\"Impostazioni registrazione utente\";s:20:\"Public registrations\";s:23:\"Registrazioni pubbliche\";s:54:\"Only site administrators can create new user accounts.\";s:63:\"Solo gli amministratori possono creare un nuovo profilo utente.\";s:71:\"Visitors can create accounts and no administrator approval is required.\";s:83:\"I visitatori possono creare un profilo senza conferma da parte dell\'amministratore.\";s:68:\"Visitors can create accounts but administrator approval is required.\";s:85:\"I visitatori possono creare un profilo, ma è richiesta conferma dell\'amministratore.\";s:28:\"User registration guidelines\";s:44:\"Linee guida per la registrazione dell\'utente\";s:25:\"Subject of welcome e-mail\";s:33:\"Soggetto dell\'e-mail di benvenuto\";s:24:\"Available variables are:\";s:30:\"Le variabili disponibili sono:\";s:22:\"Body of welcome e-mail\";s:30:\"Testo dell\'e-mail di benvenuto\";s:51:\"Subject of welcome e-mail (awaiting admin approval)\";s:81:\"Soggetto dell\'e-mail di benvenuto (in attesa di approvazione dell\'amministratore)\";s:48:\"Body of welcome e-mail (awaiting admin approval)\";s:78:\"Corpo dell\'e-mail di benvenuto (in attesa di approvazione dell\'amministratore)\";s:35:\"Subject of password recovery e-mail\";s:47:\"Soggetto dell\'e-mail di recupero della password\";s:56:\"Customize the Subject of your forgotten password e-mail.\";s:68:\"Personalizza il soggetto dell\'e-mail per il recupero della password.\";s:32:\"Body of password recovery e-mail\";s:48:\"Corpo dell\'e-mail per il recupero della password\";s:52:\"Customize the body of the forgotten password e-mail.\";s:65:\"Personalizza il corpo dell\'e-mail per il recupero della password.\";s:8:\"Pictures\";s:8:\"Ritratti\";s:15:\"Picture support\";s:17:\"Supporto ritratti\";s:23:\"Enable picture support.\";s:28:\"Attiva il supporto ritratti.\";s:18:\"Picture image path\";s:37:\"Percorso per le immagini dei ritratti\";s:67:\"Subdirectory in the directory \"%dir\" where pictures will be stored.\";s:61:\"Sottodirectory di \"%dir\" dove saranno conservati i ritratti.\";s:15:\"Default picture\";s:20:\"Ritratto predefinito\";s:26:\"Picture maximum dimensions\";s:27:\"Dimensioni massime ritratto\";s:32:\"Maximum dimensions for pictures.\";s:32:\"Dimensione massima dei ritratti.\";s:25:\"Picture maximum file size\";s:40:\"Dimensione massima del file del ritratto\";s:38:\"Maximum file size for pictures, in kB.\";s:48:\"Dimensione massima del file del ritratto, in kB.\";s:18:\"Picture guidelines\";s:42:\"Linee guida per l\'inserimento dei ritratti\";s:47:\"Manages the user registration and login system.\";s:62:\"Gestisce la registrazione degli utenti ed il sistema di login.\";s:7:\"1 guest\";s:8:\"1 ospite\";s:25:\"administer access control\";s:32:\"amministra i controlli d\'accesso\";s:16:\"administer users\";s:17:\"amministra utenti\";s:20:\"access user profiles\";s:24:\"accede ai profili utente\";s:19:\"change own username\";s:25:\"cambia il tuo nome utente\";s:31:\"Logs and records system events.\";s:47:\"Registra e crea un log degli eventi di sistema.\";s:4:\"logs\";s:3:\"log\";s:7:\"warning\";s:6:\"avviso\";s:12:\"all messages\";s:16:\"tutti i messaggi\";s:14:\"%type messages\";s:14:\"messaggi %type\";s:22:\"Filter by message type\";s:28:\"Filtra per tipo di messaggio\";s:26:\"No log messages available.\";s:36:\"Nessun messaggio di log disponibile.\";s:6:\"notice\";s:6:\"avviso\";s:8:\"Location\";s:5:\"Luogo\";s:8:\"Severity\";s:9:\"Rilevanza\";s:8:\"watchdog\";s:12:\"avvertimento\";s:6:\"blocks\";s:7:\"blocchi\";s:21:\"edit contact category\";b:1;s:9:\"edit menu\";b:1;s:11:\"delete menu\";b:1;s:18:\"Import translation\";b:1;s:6:\"Import\";b:1;s:17:\"%title: %required\";b:1;s:58:\"Below is a status of image module\'s current configuration.\";s:53:\"Stato della configurazione corrente del modulo image.\";s:62:\"An image you can insert into nodes, or see in image galleries.\";s:86:\"Una immagine che puoi inserire all\'interno di nodi, o vedere in gallerie fotografiche.\";s:13:\"Image Gallery\";s:17:\"Galleria immagini\";s:5:\"image\";s:8:\"immagine\";s:18:\"Default image path\";s:36:\"Percorso predefinito per le immagini\";s:18:\"Default thumb path\";s:37:\"Percorso predefinito per le miniature\";s:20:\"Temporary image path\";s:35:\"Percorso temporaneo per le immagini\";s:38:\"Maximum temporary image directory size\";s:60:\"Grandezza massima della directory temporanea per le immagini\";s:7:\"MBytes.\";s:6:\"MBytes\";s:23:\"Stored images filenames\";s:30:\"Nome file immagine memorizzate\";s:22:\"Default max image size\";s:45:\"Grandezza massima predefinita per le immagini\";s:7:\"KBytes.\";s:6:\"KBytes\";s:28:\"Default max image resolution\";s:47:\"Risoluzione massima predefinita per le immagini\";s:17:\"Example: 800x600.\";s:17:\"Esempio: 800x600.\";s:25:\"List of valid resolutions\";s:32:\"Lista delle risoluzioni permesse\";s:32:\"Default image display resolution\";s:37:\"Risoluzione predefinita dell\'immagine\";s:62:\"Specify resolutions that will be generated at time of editing.\";s:73:\"Specificare le risoluzioni che verranno generate all\'atto della modifica.\";s:28:\"Default thumbnail resolution\";s:39:\"Risoluzione predefinita delle miniature\";s:13:\"Image library\";s:17:\"Libreria immagini\";s:24:\"Imagemagick Convert path\";s:38:\"Percorso file \"Convert\" di Imagemagick\";s:16:\"Background Color\";s:16:\"Colore di sfondo\";s:54:\"Color used to fill in background when rotating images.\";s:72:\"Colore usato per riempire lo sfondo durante la rotazione delle immagini.\";s:10:\"jhead path\";s:17:\"percorso di jhead\";s:59:\"Absolute path of jhead, for EXIF parsing; blank to disable.\";s:95:\"Percorso assoluto per jhead, per analisi degli EXIF; lascia vuoto per disabilitare la funzione.\";s:6:\"\";b:1;s:29:\"Gallery Navigation Vocabulary\";s:45:\"Vocabolario per la navigazione nelle gallerie\";s:18:\"Gallery Thumbnails\";s:24:\"Miniature della galleria\";s:53:\"Set the thumbnail to be dislayed on the gallery page.\";s:77:\"Specifica la miniatura che verrà visualizzata in ogni pagina della galleria.\";s:64:\"Specify how many rows of thumbnails in each page of the gallery.\";s:89:\"Specificate quante righe di miniature saranno visualizzate in ogni pagina della galleria.\";s:15:\"Gallery Columns\";s:22:\"Colonne delle gallerie\";s:67:\"Specify how many columns of thumbnails in each page of the gallery.\";s:86:\"Specificate quante colonne di miniature dovranno essere in ogni pagina della galleria.\";s:13:\"Gallery Order\";s:21:\"Ordine delle gallerie\";s:24:\"Personal Image Galleries\";s:27:\"Gallerie immagini personali\";s:30:\"Personal Gallery Picture Limit\";s:41:\"Limite Immagini per la galleria personale\";s:40:\"Set how many pictures users are allowed.\";s:52:\"Imposta quante immagini possono caricare gli utenti.\";s:39:\"Personal Gallery Picture Limit Per Role\";s:44:\"Limite gallerie immagini personali per ruolo\";s:27:\"Personal Gallery Size Limit\";s:35:\"Limite grandezza galleria personale\";s:51:\"Set a maximum number of kilobytes allowed per user.\";s:59:\"Imposta il numero massimo di kilobytes permessi per utente.\";s:21:\"Disable Image Caching\";s:27:\"Disabilita caching immagini\";s:21:\"Title for image block\";s:29:\"Titolo per il blocco immagini\";s:51:\"The title to display in the image block, if enabled\";s:59:\"Il titolo per visualizzare il blocco immagini, se abilitato\";s:15:\"image galleries\";s:17:\"gallerie immagini\";s:14:\"original image\";s:18:\"immagine originale\";s:18:\"%u\'s image gallery\";s:23:\"Galleria immagini di %u\";s:24:\"View %u\'s image gallery.\";s:37:\"Visualizzala galleria immagini di %u.\";s:16:\"%t image gallery\";s:20:\"galleria immagini %t\";s:22:\"View %t image gallery.\";s:35:\"Visualizza la galleria immagini %t.\";s:14:\"previous image\";s:19:\"immagine precedente\";s:10:\"next image\";s:17:\"prossima immagine\";s:16:\"my image gallery\";s:15:\"le mie immagini\";s:13:\"display image\";s:19:\"visualizza immagine\";s:6:\"images\";s:8:\"immagini\";s:22:\"directory upload: slow\";s:23:\"upload directory: lento\";s:22:\"directory upload: fast\";s:24:\"upload directory: veloce\";s:13:\"Image gallery\";s:17:\"Galleria immagini\";s:18:\"view image gallery\";s:31:\"visualizza galleria di immagini\";s:9:\"Thumbnail\";s:9:\"Miniatura\";s:9:\"EXIF data\";s:9:\"Dati EXIF\";s:9:\"IPTC data\";s:9:\"Dati IPTC\";s:47:\"Click \"Browse...\" to select an image to upload.\";s:58:\"Click \"Browse...\" per selezionare un\'immagine da caricare.\";s:8:\"Personal\";s:9:\"Personale\";s:62:\"A personal image can only be seen in the user\'s image gallery.\";s:80:\"Una immagine personale può essere vista solo nella galleria immagini personale.\";s:51:\"The image file you are trying to upload is too big.\";s:59:\"L\'immagine che state cercando di caricare è troppo grande.\";s:61:\"The image file was only partially uploaded. Please try again.\";s:69:\"L\'immagine è stata caricata solo parzialmente. Per favore riprovare.\";s:36:\"You must select an image for upload.\";s:41:\"Devi selezionare un immagine da caricare.\";s:28:\"Error processing image file.\";s:42:\"Errore nell\'elaborazione del file immagine\";s:31:\"Uploaded file was not an image.\";s:35:\"Il file caricato non è un\'immagine\";s:36:\"image type \'%type\' is not supported.\";s:43:\"il tipo immagine \'%type\' non è supportato.\";s:51:\"The uploaded image(%ax%b) is too large (max %cx%d).\";s:58:\"L\'iimmagine caricata (%ax%b) è troppo grande (max %cx%d).\";s:27:\"Cannot save image to %path.\";s:38:\"Non posso salvare l\'immagine in %path.\";s:37:\"Cannot save thumbnail image to %path.\";s:40:\"Non posso salvare la miniatura in %path.\";s:35:\"Cannot save resized image to %path.\";s:53:\"Non posso salvare l\'immagine ridimensionata in %path.\";s:24:\"Cannot delete old image.\";s:41:\"Non posso cancellare la vecchia immagine.\";s:24:\"Cannot delete old thumb.\";s:42:\"Non posso cancellare la vecchia miniatura.\";s:27:\"Cannot delete static image.\";s:40:\"Non posso cancellare l\'immagine statica.\";s:25:\"unable to open image %img\";s:34:\"impossibile aprire l\'immagine %img\";s:47:\"You can have at most %a images in your gallery.\";s:56:\"Puoi avere al massimo %a immagini nella vostra galleria.\";s:32:\"You have %a kb for your gallery.\";s:33:\"Hai %a kb per la vostra galleria.\";s:31:\"File is too big (max %a kbytes)\";s:40:\"Il file è troppo grande (max %a kbytes)\";s:25:\"Upload directory is full.\";s:37:\"La directory di caricamento è piena.\";s:11:\"Resize/Crop\";s:21:\"Ridimensiona/Ritaglia\";s:9:\"keep prop\";s:20:\"mantieni proporzioni\";s:6:\"Rotate\";s:5:\"Ruota\";s:9:\"clockwise\";s:12:\"senso orario\";s:10:\"background\";s:6:\"sfondo\";s:5:\"white\";s:6:\"bianco\";s:5:\"black\";s:4:\"nero\";s:7:\"Convert\";s:8:\"Converti\";s:15:\"Quality (1-100)\";s:16:\"Qualità (1-100)\";s:18:\"%u\'s Image Gallery\";s:23:\"Galleria Immagini di %u\";s:15:\"Image galleries\";s:20:\"Gallerie di Immagini\";s:13:\"Access Denied\";s:14:\"Accesso negato\";s:31:\"There is 1 image in this album.\";s:32:\"C\'è 1 immagine in questo album.\";s:34:\"There are %a images in this album.\";s:36:\"Ci sono %a immagini in questo album.\";s:34:\"There are no images in this album.\";s:37:\"Non ci sono immagini in questo album.\";s:14:\"Last updated: \";s:22:\"Ultimo aggiornamento: \";s:17:\"Directory to scan\";s:23:\"Directory da analizzare\";s:57:\"Show resized image. Use only if you have large bandwidth.\";s:83:\"Mostra immagini ridimensionate. Usa questo parametro solo se avete una banda larga.\";s:26:\"Delete images after insert\";s:34:\"Cancella immagini dopo inserimento\";s:15:\"Add new gallery\";s:27:\"Aggiungi una nuova galleria\";s:16:\"Directory upload\";s:28:\"Caricamento di una directory\";s:18:\"is not a directory\";s:20:\"non è una directory\";s:45:\"is not writable. Change permissions on server\";s:47:\"non è scrivibile. Cambia i permessi sul server\";s:37:\"You may wish to view your new images:\";s:44:\"Potresti voler vedere le tue nuove immagini:\";s:7:\"gallery\";s:8:\"galleria\";s:16:\"is not an image.\";s:19:\"non è un\'immagine.\";s:28:\"image type is not supported.\";s:35:\"tipo di immagine non è supportato.\";s:4:\"Role\";s:5:\"Ruolo\";s:5:\"Limit\";s:6:\"Limite\";s:13:\"access images\";s:20:\"accede alle immagini\";s:26:\"has personal image gallery\";s:40:\"possiede una galleria immagini personale\";s:17:\"manipulate images\";s:17:\"manipola immagini\";s:13:\"create images\";s:13:\"crea immagini\";s:17:\"administer images\";s:19:\"amministra immagini\";s:34:\"[more help...]\";b:1;s:49:\"Enables the creation of forms and questionnaires.\";s:44:\"Permette la creazione di form e questionari.\";s:61:\"Available variables are: %username, %useremail, %site, %date.\";s:67:\"Le variabili disponibili sono: %username, %useremail, %site, %date.\";s:7:\"webform\";s:7:\"webform\";s:36:\"Update from version %a to version %b\";s:38:\"Update from version % alla versione %b\";s:24:\"Allow cross site posting\";s:30:\"Permetti il cross site posting\";s:14:\"Webforms Debug\";s:14:\"Webforms Debug\";s:28:\"DEBUG for the webform module\";s:27:\"DEBUG per il modulo webform\";s:39:\"You have to specify a form description.\";s:42:\"Devi specificare una descrizione del form.\";s:42:\"You have to specify a confimation message.\";s:42:\"Devi specificare il messaggio di conferma.\";s:20:\"Webform upgrade page\";s:20:\"Webform upgrade page\";s:9:\"view form\";s:15:\"Visualizza form\";s:15:\"View this form.\";s:22:\"Visualizza questo form\";s:19:\"Go back to the form\";s:13:\"Torna al form\";s:9:\"textfield\";s:9:\"textfield\";s:8:\"textarea\";s:13:\"area di testo\";s:6:\"select\";s:9:\"seleziona\";s:5:\"lable\";s:9:\"etichetta\";s:6:\"hidden\";s:8:\"nascosto\";s:14:\"e-mail address\";s:16:\"indirizzo e-mail\";s:10:\"Use access\";s:10:\"Use access\";s:57:\"Roles that should be able to submit data using this form.\";s:41:\"Ruoli che possono utilizzare questo form.\";s:47:\"Text to be shown as teaser and before the form.\";s:54:\"Aggiungi una descrizione che apparirà  sopra il form\";s:20:\"Confirmation message\";s:21:\"Messaggio di conferma\";s:48:\"Message to be shown upon successfull submission.\";s:32:\"Messaggio di conferma invio dati\";s:72:\"To edit a component, check its \"selected\" box and press \"Edit selected\".\";s:79:\"per modificare un campo, seleziona il \"selected\" box e click \"Edit selected\".\";s:37:\"Use \"value\" to enter a default value.\";s:51:\"Inserisci \"value\" per inserire un testo di default.\";s:55:\"Check \"mandatory\" box if the field should be mandatory.\";s:64:\"Seleziona \"mandatory\" box se deve essere un campo obbligatorio.\";s:15:\"Form components\";s:15:\"Campi del form.\";s:4:\"name\";s:4:\"nome\";s:5:\"value\";s:6:\"valore\";s:9:\"mandatory\";s:12:\"obbligatorio\";s:6:\"weight\";s:4:\"peso\";s:13:\"Edit selected\";s:20:\"Modifica selezionati\";s:15:\"Delete selected\";s:20:\"Cancella selezionati\";s:19:\"Add a new component\";s:24:\"Aggiungi un nuovo campo.\";s:31:\"Select a component type to add.\";s:33:\"Seleziona un campo da aggiungere.\";s:3:\"Add\";s:8:\"Aggiungi\";s:50:\"Form submissions will be e-mailed to this address.\";s:70:\"Le informazioni inserite nel form verranno inviate a questo indirizzo.\";s:24:\"Page called out of order\";s:23:\"Pagina non disponibile.\";s:13:\"Default value\";s:15:\"Valore default.\";s:5:\"Width\";s:9:\"Larghezza\";s:23:\"Width of the textfield.\";s:20:\"Larghezza del campo.\";s:31:\"The default value of the field.\";s:19:\"Valore predefinito.\";s:23:\"The value of the field.\";s:17:\"Valore del campo.\";s:30:\"The default value of the area.\";s:17:\"Valore dell\'area.\";s:22:\"Width of the textarea.\";s:29:\"Larghezza dell\'area di testo.\";s:6:\"Height\";s:7:\"Altezza\";s:23:\"Height of the textarea.\";s:27:\"Altezza dell\'area di testo.\";s:7:\"Options\";s:8:\"Checkbox\";s:26:\"Enter one option per line.\";s:37:\"Inserisci una checkbox per ogni riga.\";s:22:\"The preselected value.\";s:18:\"Valore di default.\";s:74:\"Check this option if the user should be allowed to choose multiple values.\";s:84:\"Seleziona questa casella se vuoi che gli utenti possano scegliere più di un valore.\";s:4:\"Done\";s:6:\"Fatto.\";s:47:\"Trying to post to webform from external domain.\";s:53:\"Stai cercando di inviare da un dominio non abilitato.\";s:13:\"Visit referer\";s:13:\"Visit referer\";s:65:\"You are not allowed to post to this form from an external domain.\";s:22:\"Dominio non abilitato.\";s:51:\"You are not allowed to submit data using this form.\";s:43:\"Utente non abilitato all\'utilizzo del form.\";s:20:\"Form submission from\";s:16:\"Form inviato da \";s:21:\"Submission posted to \";s:15:\"Form inviato a \";s:9:\"view node\";s:15:\"Visualizza nodo\";s:57:\"You have not completed the form. %s is a mandatory field.\";s:63:\"Form non correttamente completata. %s è un campo obbligatorio.\";s:11:\"Submited on\";s:10:\"Inviato il\";s:16:\"Submited by user\";s:15:\"Inviato da user\";s:26:\"Submited by anonymous user\";s:25:\"Inviato da utente anonimo\";s:20:\"Submited values are:\";s:24:\"I messaggi inviati sono:\";s:7:\"Go back\";s:8:\"Indietro\";s:17:\"maintain webforms\";s:17:\"modifica webforms\";s:15:\"create webforms\";s:12:\"Crea webform\";s:16:\"use all webforms\";s:20:\"Usa tutti i webforms\";s:57:\"Aggregates syndicated content (RSS, RDF, and Atom feeds).\";b:1;s:56:\"Allows administrators to define their own content types.\";b:1;s:70:\"A filter to insert automatically numbered footnotes into Drupal texts.\";b:1;s:42:\"Enables users to forward pages to friends.\";b:1;s:35:\"Prevent your site from being framed\";b:1;s:27:\"Allows uploading of images.\";b:1;s:60:\"Allows easy attaching of image nodes to other content types.\";b:1;s:68:\"Allows sorting and displaying of image galleries based on categories\";b:1;s:58:\"Allows users to add meta tags, eg keywords or description.\";b:1;s:60:\"Enhanced control over the page title (in the <head> tag).\";b:1;s:43:\"The TinyMCE Javascript HTML WYSIWYG editor.\";b:1;s:5:\"email\";b:1;s:5:\"label\";b:1;s:7:\"captcha\";b:1;s:4:\"time\";b:1;s:39:\"Nodewords module installed succesfully.\";b:1;s:41:\"Page title module installed successfully.\";b:1;s:52:\"Webform module installed module tables successfully.\";b:1;s:13:\"image_gallery\";b:1;s:10:\"page_title\";b:1;s:8:\"pathauto\";b:1;s:9:\"nodewords\";b:1;s:11:\"add gallery\";b:1;s:9:\"meta tags\";b:1;s:10:\"front page\";b:1;s:47:\"Flexinode module installed tables successfully.\";b:1;s:45:\"Forward module installed tables successfully.\";b:1;s:9:\"flexinode\";b:1;s:7:\"forward\";b:1;s:15:\"frameprevention\";b:1;s:9:\"footnotes\";b:1;s:9:\"list view\";b:1;s:12:\"tabular view\";b:1;s:16:\"add content type\";b:1;s:19:\"delete content type\";b:1;s:11:\"edit fields\";b:1;s:6:\"update\";b:1;s:17:\"forward this page\";b:1;s:18:\"Send an e-Postcard\";b:1;s:16:\"forward tracking\";b:1;s:9:\"sort icon\";b:1;s:14:\"sort ascending\";b:1;s:72:\"When you leave this field empty, the teaser will be used as description.\";b:1;s:9:\"Meta tags\";b:1;s:23:\"This field is required.\";b:1;s:10:\"list terms\";b:1;s:9:\"add terms\";b:1;s:11:\"edit string\";b:1;s:8:\"Keywords\";b:1;s:7:\"[vocab]\";b:1;s:5:\"[cat]\";b:1;s:5:\"[tid]\";b:1;s:9:\"[catpath]\";b:1;s:7:\"[title]\";b:1;s:6:\"[yyyy]\";b:1;s:4:\"[mm]\";b:1;s:5:\"[mon]\";b:1;s:4:\"[dd]\";b:1;s:5:\"[day]\";b:1;s:6:\"[hour]\";b:1;s:5:\"[min]\";b:1;s:5:\"[sec]\";b:1;s:6:\"[week]\";b:1;s:5:\"[nid]\";b:1;s:6:\"[type]\";b:1;s:6:\"[user]\";b:1;s:6:\"[book]\";b:1;s:10:\"[bookpath]\";b:1;s:10:\"[catalias]\";b:1;s:6:\"[menu]\";b:1;s:10:\"[menupath]\";b:1;s:16:\"email this %type\";b:1;s:29:\"Forward this page to a friend\";b:1;s:8:\"add item\";b:1;s:36:\"The menu item %title has been added.\";b:1;s:23:\"Added menu item %title.\";b:1;s:7:\"updated\";b:1;s:2:\"pm\";b:1;s:8:\"Off-line\";b:1;s:21:\"Site off-line message\";b:1;s:16:\"This Drupal site\";b:1;s:59:\"Message to show visitors when the site is in off-line mode.\";b:1;s:25:\"Show forwarding link/form\";b:1;s:13:\"settings page\";b:1;s:7:\"Verbose\";b:1;s:51:\"Display alias changes (except during bulk updates).\";b:1;s:9:\"Separator\";b:1;s:20:\"Maximum alias length\";b:1;s:24:\"Maximum component length\";b:1;s:20:\"Create index aliases\";b:1;s:27:\"Bulk generate index aliases\";b:1;s:57:\"Generate index aliases based on all pre-existing aliases.\";b:1;s:13:\"Update action\";b:1;s:40:\"Do nothing, leaving the old alias intact\";b:1;s:47:\"Create a new alias in addition to the old alias\";b:1;s:41:\"Create a new alias, replacing the old one\";b:1;s:18:\"Node path settings\";b:1;s:74:\"Default path pattern (applies to all node types with blank patterns below)\";b:1;s:22:\"Bulk update node paths\";b:1;s:74:\"Generate aliases for all existing nodes which do not already have aliases.\";b:1;s:26:\"The id number of the node.\";b:1;s:42:\"The name of the user who created the node.\";b:1;s:44:\"The node type (e.g., \"page\", \"story\", etc.).\";b:1;s:30:\"The year the node was created.\";b:1;s:49:\"The two-digit month (01-12) the node was created.\";b:1;s:54:\"The three-letter month (jan-dec) the node was created.\";b:1;s:60:\"The two-digit day of the month (00-31) the node was created.\";b:1;s:69:\"The three-letter day of the week (sun-sat) that the node was created.\";b:1;s:48:\"The two-digit hour (00-23) the node was created.\";b:1;s:50:\"The two-digit minute (00-59) the node was created.\";b:1;s:50:\"The two-digit second (00-59) the node was created.\";b:1;s:56:\"The week number (1-52) of the year the node was created.\";b:1;s:57:\"The vocabulary that the page\'s first category belongs to.\";b:1;s:64:\"The name of the lowest-weight category that the page belongs to.\";b:1;s:44:\"As [cat], but including its supercategories.\";b:1;s:41:\"The name of the menu the node belongs to.\";b:1;s:40:\"Pattern for all messaggio del blog paths\";b:1;s:28:\"Pattern for all pagina paths\";b:1;s:28:\"Pattern for all storia paths\";b:1;s:30:\"Pattern for all immagine paths\";b:1;s:29:\"Pattern for all webform paths\";b:1;s:18:\"User path settings\";b:1;s:35:\"Pattern for user account page paths\";b:1;s:11:\"user/[user]\";b:1;s:21:\"The name of the user.\";b:1;s:5:\"[uid]\";b:1;s:26:\"The id number of the user.\";b:1;s:22:\"Bulk update user paths\";b:1;s:18:\"Blog path settings\";b:1;s:27:\"Pattern for blog page paths\";b:1;s:11:\"blog/[user]\";b:1;s:22:\"Bulk update blog paths\";b:1;s:22:\"Category path settings\";b:1;s:17:\"[vocab]/[catpath]\";b:1;s:25:\"The name of the category.\";b:1;s:30:\"The id number of the category.\";b:1;s:26:\"Bulk update category paths\";b:1;s:35:\"Pattern for all Progettazione paths\";b:1;s:30:\"Pattern for all Sviluppo paths\";b:1;s:36:\"Pattern for all Ottimizzazione paths\";b:1;s:29:\"Pattern for all Servizi paths\";b:1;s:40:\"Pattern for all Trucchi e consigli paths\";b:1;s:19:\"Create feed aliases\";b:1;s:36:\"Also generate aliases for RSS feeds.\";b:1;s:8:\"Pathauto\";b:1;s:32:\"All roles may use default format\";b:1;s:12:\"Most Emailed\";b:1;s:12:\"Latest image\";b:1;s:12:\"Random image\";s:17:\"galleria progetti\";s:19:\"Shows the meta tags\";b:1;s:37:\"The block settings have been updated.\";b:1;s:17:\"Syndicate content\";b:1;s:66:\"Assign themes to pages by mapping taxonomy vocabs/terms to themes.\";b:1;s:14:\"taxonomy_theme\";b:1;s:7:\"tinymce\";b:1;s:24:\"administer content types\";b:1;s:14:\"access forward\";b:1;s:18:\"administer forward\";b:1;s:15:\"edit own images\";b:1;s:20:\"view original images\";b:1;s:16:\"revert revisions\";b:1;s:14:\"view revisions\";b:1;s:20:\"administer meta tags\";b:1;s:14:\"set page title\";b:1;s:19:\"administer pathauto\";b:1;s:25:\"administer taxonomy_theme\";b:1;s:18:\"assign node themes\";b:1;s:14:\"access tinymce\";b:1;s:18:\"administer tinymce\";b:1;s:22:\"access webform results\";b:1;s:21:\"clear webform results\";b:1;s:17:\"edit own webforms\";b:1;s:13:\"edit webforms\";b:1;s:28:\"No one has used Forward yet.\";b:1;s:16:\"Forward Tracking\";b:1;s:16:\"enable rich-text\";b:1;s:17:\"disable rich-text\";b:1;s:58:\"Your current web browser does not support WYSIWYG editing.\";b:1;s:14:\"Create profile\";b:1;s:14:\"Update profile\";b:1;s:16:\"TinyMCE settings\";b:1;s:23:\"Add new TinyMCE profile\";b:1;s:11:\"Basic setup\";b:1;s:12:\"Profile name\";b:1;s:33:\"Roles allowed to use this profile\";b:1;s:13:\"Default state\";b:1;s:29:\"Allow users to choose default\";b:1;s:43:\"Show disable/enable rich text editor toggle\";b:1;s:22:\"Safari browser warning\";b:1;s:30:\"Show tinymce on specific pages\";b:1;s:19:\"Buttons and plugins\";b:1;s:17:\"Editor appearance\";b:1;s:16:\"Toolbar location\";b:1;s:53:\"Show toolbar at the top or bottom of the editor area?\";b:1;s:17:\"Toolbar alignment\";b:1;s:59:\"Align tool icons left, center, or right within the toolbar.\";b:1;s:13:\"Path location\";b:1;s:22:\"Enable resizing button\";b:1;s:13:\"Block formats\";b:1;s:18:\"Cleanup and output\";b:1;s:11:\"Verify HTML\";b:1;s:35:\"Convert <font> tags to styles\";b:1;s:3:\"CSS\";b:1;s:10:\"Editor CSS\";b:1;s:8:\"CSS path\";b:1;s:11:\"CSS classes\";b:1;s:38:\"Your TinyMCE profile has been created.\";b:1;s:7:\"Profile\";b:1;s:59:\"Create new profile
\";b:1;s:20:\"Edit tinymce profile\";b:1;s:18:\"authenticated user\";b:1;s:12:\"‹ previous\";b:1;s:16:\"Go to first page\";b:1;s:19:\"Go to previous page\";s:26:\"Vai alla pagina precedente\";s:15:\"Go to next page\";s:24:\"Vai alla pagina seguente\";s:7:\"last »\";s:9:\"ultima »\";s:15:\"Go to last page\";b:1;s:2:\"am\";b:1;s:38:\"Your TinyMCE profile has been updated.\";b:1;s:59:\"Enables users easily upload and insert images into content.\";b:1;s:26:\"img_assist has been setup.\";b:1;s:10:\"img_assist\";b:1;s:12:\"Image Assist\";b:1;s:19:\"Image Assist Header\";b:1;s:23:\"Image Assist Thumbnails\";b:1;s:19:\"Image Assist Upload\";b:1;s:24:\"Image Assist Propperties\";b:1;s:11:\"Popup Image\";b:1;s:15:\"Insert Callback\";b:1;s:45:\"Specify a unique name for this filter format.\";b:1;s:20:\"Footnotes <fn>\";b:1;s:23:\"Footnotes Textile style\";b:1;s:13:\"Inline images\";b:1;s:59:\"Choose the filters that will be used in this filter format.\";b:1;s:72:\"Use <fn>...</fn> to insert automatically numbered footnotes.\";b:1;s:73:\"Use [# ...] to insert automatically numbered footnotes in Textile markup.\";b:1;s:41:\"Add images to your posts with img_assist.\";b:1;s:33:\"Images can be added to this post.\";b:1;s:23:\"access advanced options\";b:1;s:17:\"access all images\";b:1;s:17:\"access img_assist\";b:1;s:24:\"Click here to add images\";b:1;s:15:\"Access settings\";b:1;s:21:\"Display img_assist on\";b:1;s:17:\"on specific pages\";b:1;s:16:\"on all textareas\";b:1;s:19:\"Textarea Image link\";b:1;s:9:\"Show icon\";b:1;s:14:\"Show text link\";b:1;s:18:\"Do not show a link\";b:1;s:72:\"Choose what to show under the textareas for which img_assist is enabled.\";b:1;s:45:\"Select the vocabularies to use for img_assist\";b:1;s:14:\"Image settings\";b:1;s:33:\"Max number of thumbnails per page\";s:38:\"Numero massimo di miniature per pagina\";s:29:\"Max inline image size allowed\";b:1;s:30:\"Default size for inline images\";b:1;s:60:\"Select a derivative to be used by default for inline images.\";b:1;s:54:\"Allow img_assist to create its\' own image derivatives?\";b:1;s:67:\"Yes, allow all img_assist users to create custom size inline images\";b:1;s:64:\"Yes, allow priviledged users to create custom size inline images\";b:1;s:16:\"Other Properties\";b:1;s:21:\"Default link behavior\";b:1;s:10:\"Not a link\";b:1;s:18:\"Link to image page\";b:1;s:20:\"Open in popup window\";b:1;s:9:\"Go to URL\";b:1;s:11:\"Default URL\";b:1;s:71:\"The default URL is used when Go to URL is choosen as the link behavior.\";b:1;s:19:\"Default insert mode\";b:1;s:10:\"Filter Tag\";b:1;s:9:\"HTML Code\";b:1;s:16:\"Display settings\";b:1;s:62:\"Include img_assist.css on all pages for styling inline images?\";b:1;s:3:\"yes\";b:1;s:2:\"no\";b:1;s:9:\"add image\";b:1;s:15:\"Browse Images: \";b:1;s:9:\"My Images\";b:1;s:10:\"All Images\";b:1;s:2:\"or\";b:1;s:6:\"Upload\";b:1;s:11:\"a new image\";b:1;s:5:\"Image\";b:1;s:8:\"Upload: \";b:1;s:45:\"Fill in the form below to upload a new image.\";b:1;s:10:\"Start Over\";b:1;s:5:\"other\";b:1;s:16:\"Title (optional)\";b:1;s:22:\"Description (optional)\";b:1;s:9:\"Alignment\";b:1;s:4:\"Link\";b:1;s:11:\"Insert Mode\";b:1;s:6:\"Insert\";b:1;s:12:\"Properties: \";b:1;s:34:\"Change how the image is displayed.\";b:1;s:15:\"Image Galleries\";b:1;s:22:\"No galleries available\";b:1;s:15:\"Delete Selected\";b:1;s:16:\"Webform Settings\";b:1;s:36:\"Confirmation message or redirect URL\";b:1;s:10:\"Components\";b:1;s:5:\"Value\";b:1;s:9:\"Mandatory\";b:1;s:13:\"Mail Settings\";b:1;s:17:\"E-mail to address\";b:1;s:72:\"Form submissions will be e-mailed to this address. Leave blank for none.\";b:1;s:19:\"E-mail from address\";b:1;s:14:\"E-mail subject\";b:1;s:17:\"Advanced Settings\";b:1;s:9:\"Limit to \";b:1;s:13:\"submission(s)\";b:1;s:4:\"ever\";b:1;s:10:\"every hour\";b:1;s:9:\"every day\";b:1;s:10:\"every week\";b:1;s:20:\"Redirect POST Values\";b:1;s:24:\"%name field is required.\";b:1;s:13:\"Edit Selected\";b:1;s:13:\"Field Details\";b:1;s:49:\"Check this option if the user must enter a value.\";b:1;s:50:\"A list of selectable options. One option per line.\";b:1;s:7:\"Listbox\";b:1;s:24:\"Height of the textfield.\";b:1;s:11:\"submissions\";b:1;s:8:\"analysis\";b:1;s:5:\"table\";b:1;s:8:\"download\";b:1;s:5:\"clear\";b:1;s:4:\"View\";b:1;s:1:\"#\";b:1;s:9:\"Submitted\";b:1;s:53:\"Field deleted, form must be submitted to save changes\";b:1;s:17:\"Save translations\";b:1;s:38:\"Provides an image browser for tinyMCE.\";b:1;s:4:\"imce\";b:1;s:16:\"Image dimensions\";b:1;s:58:\"Define the maximum dimensions for an image to be uploaded.\";b:1;s:9:\"File size\";b:1;s:61:\"Define the maximum file size(KB) for an image to be uploaded.\";b:1;s:12:\"Upload quota\";b:1;s:43:\"Define the total upload quota(KB) per user.\";b:1;s:32:\"Prefix for personal folder names\";b:1;s:19:\"Use a shared folder\";b:1;s:22:\"Non-image file support\";b:1;s:8:\"filename\";b:1;s:4:\"size\";b:1;s:10:\"dimensions\";b:1;s:10:\"operations\";b:1;s:19:\"Directory is empty.\";b:1;s:11:\"Upload File\";b:1;s:6:\"Limits\";b:1;s:10:\"Dimensions\";b:1;s:5:\"Quota\";b:1;s:18:\"No limits for you!\";b:1;s:13:\"Image Browser\";b:1;s:31:\"This is not an image! Continue?\";b:1;s:18:\"Upload successful.\";b:1;s:3:\"add\";b:1;s:26:\"File deleted successfully.\";b:1;s:22:\"Enable Frameprevention\";b:1;s:31:\"Enable Taxonomy-based templates\";b:1;s:19:\"Global Module Setup\";b:1;s:58:\"You must check this to activate the taxonomy_theme module.\";b:1;s:16:\"Allow all themes\";b:1;s:65:\"Offers all installed themes for selection, not enabled ones only.\";b:1;s:38:\"Enable \'Extended\' assignment of themes\";b:1;s:54:\"Enables you to assign themes to pathes (e.g. node/21).\";b:1;s:43:\"Show theme option in create/edit node forms\";b:1;s:51:\"Show theme option on term/vocab/content-types pages\";b:1;s:20:\"\'Admin Area\' - Theme\";b:1;s:13:\"Choose method\";b:1;s:10:\"Term-based\";b:1;s:11:\"Vocab-based\";b:1;s:12:\"All Taxonomy\";b:1;s:14:\"NodeType-based\";b:1;s:25:\"Template selection method\";b:1;s:61:\"This value determines the method used for template selection.\";b:1;s:46:\"Select one method from above.\";b:1;s:18:\"NodeType => Themes\";b:1;s:8:\"NodeType\";b:1;s:17:\"Assigned to Theme\";b:1;s:17:\"Choose a template\";b:1;s:8:\"Extended\";b:1;s:22:\"Show for Nodes of Type\";b:1;s:11:\"use default\";b:1;s:5:\"Theme\";b:1;s:61:\"Theme to be assigned to current path/node (by taxonomy_theme)\";b:1;s:37:\"Number of posts in flexinode listings\";b:1;s:51:\"Number of posts to show on flexinode listing pages.\";b:1;s:26:\"The name of the menu item.\";b:1;s:26:\"Notify user of new account\";b:1;s:52:\"An administrator created an account for you at %site\";b:1;s:23:\"No files were uploaded.\";b:1;s:1:\"Q\";b:1;s:9:\"responses\";b:1;s:10:\"Left Blank\";b:1;s:18:\"User entered value\";b:1;s:46:\"Average submission length in words (ex blanks)\";b:1;s:20:\"Anonymous commenting\";b:1;s:12:\"Gallery name\";b:1;s:41:\"The name is used to identify the gallery.\";b:1;s:52:\"Image galleries may be nested below other galleries.\";b:1;s:26:\"Created new gallery %term.\";b:1;s:12:\"edit gallery\";b:1;s:61:\"Theme to be assigned to current node type (by taxonomy_theme)\";b:1;s:10:\"File paths\";b:1;s:11:\"Image sizes\";b:1;s:72:\"Select various pixel dimensions, \"thumbnail\" and \"preview\" are required.\";s:103:\"Definisci varie dimensioni in pixel, \"miniature\" (thumbnail) e \"anteprima\" (preview) sono obbligatorie.\";s:5:\"Label\";b:1;s:16:\"Gallery settings\";b:1;s:15:\"Images per page\";b:1;s:60:\"Sets the number of images to be displayed in a gallery page.\";b:1;s:29:\"Unable to create %label image\";b:1;s:8:\"original\";b:1;s:35:\"The gallery %term has been updated.\";b:1;s:22:\"Administrative Options\";b:1;s:21:\"Use Node Type in Link\";b:1;s:22:\"Show link on main page\";b:1;s:50:\"If checked, the link will appear on your home page\";b:1;s:9:\"Form Type\";b:1;s:19:\"Flood Control Limit\";b:1;s:19:\"Flood Control Error\";b:1;s:16:\"Page Text Values\";b:1;s:20:\"Forward Instructions\";b:1;s:52:\"Thank you for your interest in spreading the word on\";b:1;s:46:\"This message will be displayed above the form.\";b:1;s:17:\"Thank You Message\";b:1;s:51:\"Thank you for your help in spreading the word about\";b:1;s:24:\"We appreciate your help.\";b:1;s:27:\"Forward Form Default Values\";b:1;s:12:\"From Address\";b:1;s:65:\"The address to send from. Should be a functioning email address.\";b:1;s:22:\"Header Image for Email\";b:1;s:70:\"Enter the URL of the image to as a logo at the top of forwarded pages.\";b:1;s:23:\"Forward Message Subject\";b:1;s:44:\"%name has forwarded a page to you from %site\";b:1;s:20:\"Forward Message Body\";b:1;s:70:\"%name thought you would like to see this page from the %site web site.\";b:1;s:26:\"e-Postcard Message Subject\";b:1;s:43:\"%name has sent you an e-postcard from %site\";b:1;s:23:\"e-Postcard Message Body\";b:1;s:14:\"Oranization Ad\";b:1;s:64:\"This message will be just above the footer message in the email.\";b:1;s:14:\"Footer Message\";b:1;s:65:\"This message will be postpended as a footer message to the email.\";b:1;s:20:\"Latest Blog Articles\";b:1;s:12:\"Latest Users\";b:1;s:15:\"Latest Comments\";b:1;s:20:\"Most Popular Content\";b:1;s:4:\"None\";b:1;s:13:\"Dynamic Block\";b:1;s:50:\"Choose the dynamic block to send with these emails\";b:1;s:23:\"Only in the category(s)\";b:1;s:19:\"Only of the type(s)\";b:1;s:15:\"%count comments\";b:1;s:12:\"%count users\";b:1;s:12:\"%count items\";b:1;s:12:\"%count posts\";b:1;s:19:\"%count new comments\";b:1;s:12:\"%count years\";b:1;s:12:\"%count weeks\";b:1;s:11:\"%count days\";b:1;s:12:\"%count hours\";b:1;s:10:\"%count min\";b:1;s:10:\"%count sec\";b:1;s:12:\"%count votes\";b:1;s:37:\"There are %count items left to index.\";b:1;s:12:\"%count reads\";b:1;s:46:\"%count users accessing site; throttle enabled.\";b:1;s:47:\"%count guests accessing site; throttle enabled.\";b:1;s:47:\"%count guests accessing site; throttle disabled\";b:1;s:18:\"%count attachments\";b:1;s:13:\"%count guests\";b:1;s:12:\"delete files\";b:1;s:16:\"limitless upload\";b:1;s:10:\"view files\";b:1;s:31:\"Login attempt failed for %user.\";b:1;s:70:\"Enter the title, path, position and the weight for your new menu item.\";b:1;s:21:\"Contact module links:\";b:1;s:53:\"You can leave a message using the contact form below.\";b:1;s:38:\"The menu item %title has been deleted.\";b:1;s:25:\"Deleted menu item %title.\";b:1;s:26:\"TinyMCE rich-text settings\";b:1;s:15:\"sort descending\";b:1;s:16:\"Global copyright\";b:1;s:15:\"Global keywords\";b:1;s:62:\"Use the teaser of the page if the meta description is not set.\";b:1;s:23:\"Default robots meta tag\";b:1;s:11:\"Text length\";b:1;s:71:\"The maximum number of characters the content of a meta tag can contain.\";b:1;s:25:\"Tags to show on edit form\";b:1;s:27:\"Tags to output in html head\";b:1;s:73:\"On this page you can enter the meta tags for the front page of your site.\";b:1;s:28:\"Development helper functions\";b:1;s:40:\"Development helper for node_access table\";b:1;s:53:\"Filter to allow insertion of a google map into a node\";b:1;s:70:\"Display location.module information on Google Maps (needs gmap.module)\";b:1;s:56:\"The views module creates customized views of node lists.\";b:1;s:48:\"RSS plugin for the views feed selector argument.\";b:1;s:59:\"The views theme wizard helps create stub theming for views.\";b:1;s:43:\"Views module installed tables successfully.\";b:1;s:5:\"views\";b:1;s:18:\"views_theme_wizard\";b:1;s:8:\"views_ui\";b:1;s:11:\"Node: Title\";b:1;s:6:\"Normal\";b:1;s:17:\"With updated mark\";b:1;s:30:\"Display the title of the node.\";b:1;s:18:\"Node: Created Time\";b:1;s:13:\"As Short Date\";b:1;s:14:\"As Medium Date\";b:1;s:12:\"As Long Date\";b:1;s:14:\"As Custom Date\";b:1;s:11:\"As Time Ago\";b:1;s:34:\"Display the post time of the node.\";b:1;s:18:\"Node: Updated Time\";b:1;s:43:\"Display the last time the node was updated.\";b:1;s:10:\"Node: Type\";b:1;s:18:\"Node: Link to node\";b:1;s:10:\"Node: Body\";b:1;s:9:\"Full Text\";b:1;s:6:\"Teaser\";b:1;s:25:\"Display the Main Content.\";b:1;s:8:\"Node: ID\";b:1;s:36:\"Sort by the database ID of the node.\";b:1;s:40:\"Sort by the submission date of the node.\";b:1;s:23:\"Node: Last Updated Time\";b:1;s:41:\"Sort by the last update date of the node.\";b:1;s:12:\"Node: Sticky\";b:1;s:38:\"Sort by the node title, alphabetically\";b:1;s:6:\"Random\";b:1;s:15:\"Node: Published\";b:1;s:6:\"Equals\";b:1;s:16:\"Node: Front Page\";b:1;s:66:\"Filter by whether or not the node has been promoted to Front Page.\";b:1;s:48:\"Filter by whether or not the node is set sticky.\";b:1;s:15:\"Node: Moderated\";b:1;s:47:\"Filter by whether or not the node is moderated.\";b:1;s:47:\"Include or exclude nodes of the selected types.\";b:1;s:25:\"Node: Author is Anonymous\";b:1;s:73:\"This allows you to filter by whether or not the node author is anonymous.\";b:1;s:28:\"Node: Author is Current User\";b:1;s:40:\"Node: Current User Authored or Commented\";b:1;s:14:\"Node: Distinct\";b:1;s:55:\"This filter allows nodes to be filtered by their title.\";b:1;s:54:\"This filter allows nodes to be filtered by their body.\";b:1;s:21:\"Node: Has New Content\";b:1;s:17:\"Node: Author Name\";b:1;s:41:\"This will display the author of the node.\";b:1;s:20:\"User: Author Picture\";b:1;s:39:\"Display the user picture of the author.\";b:1;s:49:\"This allows you to sort alphabetically by author.\";b:1;s:17:\"Role: Author Role\";b:1;s:69:\"Include the node only if the author is a member of the selected role.\";b:1;s:11:\"User: Email\";b:1;s:40:\"This will display the email of the user.\";b:1;s:9:\"User: Uid\";b:1;s:35:\"This allows you to sort by user id.\";b:1;s:48:\"This allows you to sort alphabetically by email.\";b:1;s:17:\"Profile: Distinct\";b:1;s:56:\"This allows you to filter by a particular email address.\";b:1;s:16:\"Node: Total Hits\";b:1;s:59:\"This will display the number of times a node has been read.\";b:1;s:17:\"Node: Recent Hits\";b:1;s:68:\"This will display the number of times a node has been read recently.\";b:1;s:19:\"Node: Last Hit Time\";b:1;s:40:\"Display the time the node was last read.\";b:1;s:68:\"This allows you to sort by the number of times a node has been read.\";b:1;s:57:\"This allows you to sort by the time a node was last read.\";b:1;s:14:\"Taxonomy: Term\";b:1;s:26:\"Taxonomy: Term Description\";b:1;s:66:\"This will display the description associated with a taxonomy term.\";b:1;s:19:\"Taxonomy: Term Name\";b:1;s:25:\"Taxonomy: Vocabulary Name\";b:1;s:8:\"File: Id\";b:1;s:34:\"File Id which represents the file.\";b:1;s:15:\"Sort by File Id\";b:1;s:24:\"File: Has file downloads\";b:1;s:6:\"Exists\";b:1;s:46:\"Filter weather the node has files for download\";b:1;s:30:\"File: Listed in file downloads\";b:1;s:46:\"Filter weather the file is listed in downloads\";b:1;s:10:\"File: Name\";b:1;s:5:\"Plain\";b:1;s:18:\"With download link\";b:1;s:17:\"Display file name\";b:1;s:10:\"File: Path\";b:1;s:21:\"Display Path to File.\";b:1;s:10:\"File: Size\";b:1;s:40:\"Display the size of the associated file.\";b:1;s:15:\"File: Mime type\";b:1;s:53:\"This filter allows nodes to be filtered by mime type.\";b:1;s:14:\"File: Filename\";b:1;s:70:\"This filter allows nodes to be filtered by the name of attached files.\";b:1;s:53:\"This filter allows nodes to be filtered by file size.\";b:1;s:22:\"File: Sort by Filename\";b:1;s:17:\"Sort by file name\";b:1;s:15:\"File: File size\";b:1;s:18:\"Sort by file size.\";b:1;s:18:\"Sort by mime type.\";b:1;s:26:\"The basic front page view.\";b:1;s:33:\"Shows all new activity on system.\";b:1;s:9:\"Last Post\";b:1;s:19:\"recent posts for %1\";b:1;s:33:\"Nodes sorted by recent page-views\";b:1;s:22:\"recent popular content\";b:1;s:32:\"Nodes sorted by total page-views\";b:1;s:24:\"all-time popular content\";b:1;s:5:\"title\";b:1;s:6:\"author\";b:1;s:7:\"created\";b:1;s:5:\"reads\";b:1;s:36:\"The taxonomy view with a depth of 0.\";b:1;s:17:\"Node: Posted Year\";b:1;s:18:\"Node: Posted Month\";b:1;s:17:\"Node: Posted Week\";b:1;s:25:\"Node: Posted Month + Year\";b:1;s:22:\"Node: Posted Full Date\";b:1;s:57:\"This argument is a complete date in the form of CCYYMMDD.\";b:1;s:34:\"This argument is a single Node ID.\";b:1;s:19:\"Node: Feed Selector\";b:1;s:19:\"User: UID is Author\";b:1;s:31:\"User: UID Authored or Commented\";b:1;s:24:\"User: Username is Author\";b:1;s:26:\"views_handler_arg_username\";b:1;s:17:\"Taxonomy: Term ID\";b:1;s:23:\"Taxonomy: Vocabulary ID\";b:1;s:61:\"The argument will filter to nodes with terms in a vocabulary.\";b:1;s:12:\"theme wizard\";b:1;s:5:\"clone\";b:1;s:9:\"edit view\";b:1;s:11:\"export view\";b:1;s:16:\"administer views\";b:1;s:44:\"No views have currently been defined.
\";b:1;s:4:\"Menu\";b:1;s:12:\"Default View\";b:1;s:8:\"Provides\";b:1;s:7:\"Actions\";b:1;s:13:\"Default Views\";b:1;s:10:\"Add a View\";b:1;s:9:\"Add Field\";b:1;s:12:\"Add Argument\";b:1;s:10:\"Add Filter\";b:1;s:12:\"Add Criteria\";b:1;s:13:\"Expose Filter\";b:1;s:17:\"Basic Information\";b:1;s:6:\"Access\";b:1;s:45:\"A description of the view for the admin list.\";b:1;s:17:\"Provide Page View\";b:1;s:9:\"View Type\";b:1;s:9:\"List View\";b:1;s:10:\"Table View\";b:1;s:11:\"Teaser List\";b:1;s:10:\"Full Nodes\";b:1;s:46:\"How the nodes should be displayed to the user.\";b:1;s:9:\"Use Pager\";b:1;s:42:\"Breadcrumb trail should not include \"Home\"\";b:1;s:14:\"Nodes per Page\";b:1;s:6:\"Footer\";b:1;s:10:\"Empty Text\";b:1;s:53:\"Text to display if a view returns no nodes. Optional.\";b:1;s:12:\"Provide Menu\";b:1;s:19:\"Provide Menu as Tab\";b:1;s:21:\"Make Default Menu Tab\";b:1;s:10:\"Tab Weight\";b:1;s:10:\"Menu Title\";b:1;s:13:\"Provide Block\";b:1;s:67:\"The title that will be shown at the top of the block. May be blank.\";b:1;s:15:\"Nodes per Block\";b:1;s:12:\"[More] Link?\";b:1;s:15:\"Use Page Header\";b:1;s:15:\"Use Page Footer\";b:1;s:10:\"Empty text\";b:1;s:14:\"Use Page empty\";b:1;s:56:\"Text to display if a view results in no nodes. Optional.\";b:1;s:22:\"Argument Handling Code\";b:1;s:13:\"Argument Code\";b:1;s:4:\"Save\";b:1;s:7:\"Handler\";b:1;s:6:\"Option\";b:1;s:8:\"Sortable\";b:1;s:12:\"Default Sort\";b:1;s:38:\"This view currently has no %s defined.\";b:1;s:3:\"Ops\";b:1;s:6:\"Fields\";b:1;s:13:\"Argument Type\";b:1;s:8:\"Wildcard\";b:1;s:12:\"Wildcard Sub\";b:1;s:9:\"Arguments\";b:1;s:5:\"Field\";b:1;s:8:\"Operator\";b:1;s:23:\"Filter settings Default\";b:1;s:12:\"Force Single\";b:1;s:13:\"Lock Operator\";b:1;s:15:\"Exposed Filters\";b:1;s:5:\"Order\";b:1;s:12:\"Add criteria\";b:1;s:13:\"Sort Criteria\";b:1;s:19:\"the views help page\";b:1;s:69:\"Please see %s or the views documentation on drupal.org for help here.\";b:1;s:17:\"Delete this item.\";b:1;s:2:\"Up\";b:1;s:18:\"Move this item up.\";b:1;s:4:\"Down\";b:1;s:20:\"Move this item down.\";b:1;s:3:\"Top\";b:1;s:26:\"Move this item to the top.\";b:1;s:6:\"Bottom\";b:1;s:29:\"Move this item to the bottom.\";b:1;s:9:\"Ascending\";b:1;s:10:\"Descending\";b:1;s:9:\"Is One Of\";b:1;s:10:\"Is None Of\";b:1;s:6:\"Expose\";b:1;s:24:\"View successfully added.\";b:1;s:14:\"Existing Views\";b:1;s:12:\"Edit view %n\";b:1;s:24:\"View successfully saved.\";b:1;s:12:\"No Page View\";b:1;s:42:\"Supports site internationalization (i18n).\";s:50:\"Supporta l\'internazionalizzazione del sito (i18n).\";s:14:\"edit %language\";s:18:\"modifica %language\";s:21:\"Interface translation\";s:27:\"traduzione dell\'interfaccia\";s:19:\"Content translation\";s:24:\"Traduzione del contenuto\";s:19:\"Synchronize content\";s:24:\"Sincronizza il contenuto\";s:5:\"Nodes\";s:4:\"Nodi\";s:8:\"Taxonomy\";s:10:\"Tassonomia\";s:10:\"Front page\";s:15:\"Pagina iniziale\";s:18:\"Language dependant\";s:23:\"Dependente dalla lingua\";s:13:\"Keep Language\";s:16:\"Scegli la lingua\";s:13:\"URL rewriting\";s:20:\"riscrittura dell\'url\";s:7:\"Session\";s:8:\"Sessione\";s:6:\"Cookie\";s:6:\"Cookie\";s:23:\"Detect browser language\";s:34:\"Individua la lingua del navigatore\";s:15:\"Flags directory\";s:23:\"Cartella delle bandiere\";s:9:\"Languages\";s:6:\"Lingue\";s:4:\"i18n\";s:4:\"i18n\";s:72:\"Manages multilingual meta-blocks. Requires i18n and locale module\";b:1;s:11:\"translation\";b:1;s:10:\"i18nblocks\";b:1;s:8:\"i18nmenu\";b:1;s:22:\"add multilingual block\";b:1;s:13:\"Primary links\";b:1;s:7:\"Azienda\";s:7:\"Azienda\";s:7:\"Servizi\";b:1;s:7:\"Clienti\";b:1;s:14:\"HRCapital news\";b:1;s:8:\"Contatti\";b:1;s:5:\"Press\";b:1;s:10:\"Dove siamo\";b:1;s:14:\"Lavora con noi\";b:1;s:7:\"Privacy\";b:1;s:26:\"Browser language detection\";b:1;s:30:\"A description of this setting.\";b:1;s:23:\"Language icons settings\";b:1;s:19:\"Language icons path\";b:1;s:19:\"Language icons size\";b:1;s:60:\"Image size for language icons, in the form \"width x height\".\";b:1;s:17:\"Advanced settings\";b:1;s:22:\"Content selection mode\";b:1;s:37:\"Only current language and no language\";b:1;s:50:\"Only current and default languages and no language\";b:1;s:37:\"Only default language and no language\";b:1;s:21:\"Only current language\";b:1;s:41:\"All content. No language conditions apply\";b:1;s:55:\"Determines which content to show depending on language.\";b:1;s:19:\"Language Management\";b:1;s:38:\"Interface language depends on content.\";b:1;s:33:\"Interface language is independent\";b:1;s:56:\"How interface language and content language are managed.\";b:1;s:26:\"Links to node translations\";b:1;s:5:\"None.\";b:1;s:14:\"Main page only\";b:1;s:20:\"Teaser and Main page\";b:1;s:6:\"[lang]\";b:1;s:20:\"Multilingual support\";b:1;s:70:\"Enables language field and multilingual support for this content type.\";b:1;s:6:\"Remove\";b:1;s:29:\"Current translations
\";b:1;s:14:\"Not translated\";b:1;s:18:\"create translation\";b:1;s:11:\"select node\";b:1;s:17:\"Language switcher\";b:1;s:12:\"Translations\";b:1;s:19:\"Multilingual block \";b:1;s:4:\" -- \";b:1;s:50:\"Select the block to be displayed for each language\";b:1;s:44:\"The new multilingual block has been created.\";b:1;s:15:\"translate nodes\";b:1;s:10:\"front_page\";b:1;s:0:\"\";b:1;s:64:\"Front Page settings for Anonymous Users (visitors not logged in)\";b:1;s:11:\"Select type\";b:1;s:6:\"themed\";b:1;s:4:\"full\";b:1;s:8:\"redirect\";b:1;s:11:\"Redirect to\";b:1;s:57:\"Allow embedded PHP code in front page for anonymous users\";b:1;s:72:\"Front Page settings for Authenticated Users (visitors already logged in)\";b:1;s:4:\"same\";b:1;s:61:\"Allow embedded PHP code in front page for authenticated users\";b:1;s:35:\"Override your HOME breadcrumb links\";b:1;s:29:\"Redirect your site HOME links\";b:1;s:32:\"Redirect your site HOME links to\";b:1;s:33:\"Activate your front_page settings\";b:1;s:18:\"Default Front page\";b:1;s:25:\"Language and translations\";b:1;s:36:\"Primary and secondary links settings\";b:1;s:16:\"Primary_links_en\";b:1;s:7:\"Factory\";b:1;s:8:\"Services\";b:1;s:4:\"News\";b:1;s:24:\"Network e corrispondenti\";b:1;s:42:\"%a is %b\";b:1;s:16:\"Lavorare con noi\";b:1;}',0,1158767602,''),('views_tables:en','a:4:{s:6:\"tables\";a:12:{s:4:\"node\";a:5:{s:4:\"name\";s:4:\"node\";s:8:\"provider\";s:8:\"internal\";s:6:\"fields\";a:6:{s:5:\"title\";a:6:{s:4:\"name\";s:11:\"Node: Title\";s:7:\"handler\";a:2:{s:28:\"views_handler_field_nodelink\";s:6:\"Normal\";s:38:\"views_handler_field_nodelink_with_mark\";s:17:\"With updated mark\";}s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:7:\"As link\";s:6:\"nolink\";s:12:\"Without link\";}}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:7:\"changed\";}s:4:\"help\";s:30:\"Display the title of the node.\";}s:7:\"created\";a:5:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:34:\"Display the post time of the node.\";}s:7:\"changed\";a:5:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:43:\"Display the last time the node was updated.\";}s:4:\"type\";a:4:{s:4:\"name\";s:10:\"Node: Type\";s:7:\"handler\";s:22:\"views_handler_nodetype\";s:8:\"sortable\";b:1;s:4:\"help\";s:107:\"The Node Type field will display the type of a node (for example, \'blog entry\', \'forum post\', \'story\', etc)\";}s:4:\"link\";a:6:{s:4:\"name\";s:18:\"Node: Link to node\";s:7:\"handler\";s:29:\"views_handler_field_node_link\";s:8:\"sortable\";b:0;s:6:\"option\";s:6:\"string\";s:9:\"notafield\";s:4:\"true\";s:4:\"help\";s:153:\"This will create a link to the node; fill the option field with the text for the link. If you want titles that link to the node, use Node: Title instead.\";}s:4:\"body\";a:5:{s:4:\"name\";s:10:\"Node: Body\";s:7:\"handler\";a:2:{s:24:\"views_handler_field_body\";s:9:\"Full Text\";s:26:\"views_handler_field_teaser\";s:6:\"Teaser\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"nid\";}s:9:\"notafield\";b:1;s:4:\"help\";s:25:\"Display the Main Content.\";}}s:5:\"sorts\";a:6:{s:3:\"nid\";a:2:{s:4:\"name\";s:8:\"Node: ID\";s:4:\"help\";s:36:\"Sort by the database ID of the node.\";}s:7:\"created\";a:2:{s:4:\"name\";s:18:\"Node: Created Time\";s:4:\"help\";s:40:\"Sort by the submission date of the node.\";}s:7:\"changed\";a:2:{s:4:\"name\";s:23:\"Node: Last Updated Time\";s:4:\"help\";s:41:\"Sort by the last update date of the node.\";}s:6:\"sticky\";a:2:{s:4:\"name\";s:12:\"Node: Sticky\";s:4:\"help\";s:92:\"Sort by whether or not the node is sticky. Choose descending to put sticky nodes at the top.\";}s:5:\"title\";a:2:{s:4:\"name\";s:11:\"Node: Title\";s:4:\"help\";s:38:\"Sort by the node title, alphabetically\";}s:6:\"random\";a:3:{s:4:\"name\";s:6:\"Random\";s:7:\"handler\";s:25:\"views_handler_sort_random\";s:4:\"help\";s:129:\"By choosing random, nodes will be ordered completely randomly. This is a good way to choose X random nodes from a group of nodes.\";}}s:7:\"filters\";a:13:{s:6:\"status\";a:5:{s:4:\"name\";s:15:\"Node: Published\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:83:\"Filter by whether or not the node is published. This is recommended for most Views!\";}s:7:\"promote\";a:5:{s:4:\"name\";s:16:\"Node: Front Page\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:66:\"Filter by whether or not the node has been promoted to Front Page.\";}s:6:\"sticky\";a:5:{s:4:\"name\";s:12:\"Node: Sticky\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:48:\"Filter by whether or not the node is set sticky.\";}s:8:\"moderate\";a:5:{s:4:\"name\";s:15:\"Node: Moderated\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:47:\"Filter by whether or not the node is moderated.\";}s:4:\"type\";a:6:{s:4:\"name\";s:10:\"Node: Type\";s:4:\"list\";s:29:\"views_handler_filter_nodetype\";s:9:\"list-type\";s:4:\"list\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:47:\"Include or exclude nodes of the selected types.\";}s:4:\"anon\";a:6:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:25:\"Node: Author is Anonymous\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:29:\"views_handler_filter_useranon\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:73:\"This allows you to filter by whether or not the node author is anonymous.\";}s:10:\"currentuid\";a:6:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:28:\"Node: Author is Current User\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:100:\"This allows you to filter by whether or not the node was authored by the logged in user of the view.\";}s:17:\"currentuidtouched\";a:7:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:40:\"Node: Current User Authored or Commented\";s:8:\"operator\";a:1:{s:1:\"=\";s:10:\"touched by\";}s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:32:\"views_handler_filter_uid_touched\";s:4:\"help\";s:97:\"This allows you to filter by whether or not the logged in user authored or commented on the node.\";}s:8:\"distinct\";a:6:{s:4:\"name\";s:14:\"Node: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:29:\"views_handler_filter_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:160:\"This filter ensures that each node may only be listed once, even if it matches multiple criteria. Use this if multiple taxonomy matches return duplicated nodes.\";}s:5:\"title\";a:4:{s:4:\"name\";s:11:\"Node: Title\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:55:\"This filter allows nodes to be filtered by their title.\";}s:7:\"created\";a:6:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";s:6:\"string\";s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";}s:7:\"changed\";a:6:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";s:6:\"string\";s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";}s:4:\"body\";a:4:{s:4:\"name\";s:10:\"Node: Body\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_body\";s:4:\"help\";s:54:\"This filter allows nodes to be filtered by their body.\";}}}s:7:\"history\";a:4:{s:4:\"name\";s:7:\"history\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:3:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"nid\";}s:5:\"extra\";a:1:{s:3:\"uid\";s:18:\"***CURRENT_USER***\";}}s:7:\"filters\";a:1:{s:9:\"timestamp\";a:6:{s:4:\"name\";s:21:\"Node: Has New Content\";s:8:\"operator\";a:1:{i:0;s:3:\"Has\";}s:4:\"list\";a:1:{i:0;s:11:\"New Content\";}s:7:\"handler\";s:26:\"views_handler_filter_isnew\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:158:\"Including this filter will reduce the node set to nodes that have been updated or have new content since the user last read the node, as well as unread nodes.\";}}}s:5:\"users\";a:6:{s:4:\"name\";s:5:\"users\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"uid\";}}s:6:\"fields\";a:2:{s:4:\"name\";a:6:{s:4:\"name\";s:17:\"Node: Author Name\";s:7:\"handler\";s:28:\"views_handler_field_username\";s:8:\"sortable\";b:1;s:3:\"uid\";s:3:\"uid\";s:10:\"addlfields\";a:1:{i:0;s:3:\"uid\";}s:4:\"help\";s:41:\"This will display the author of the node.\";}s:3:\"uid\";a:4:{s:4:\"name\";s:20:\"User: Author Picture\";s:7:\"handler\";s:27:\"views_handler_field_userpic\";s:8:\"sortable\";b:0;s:4:\"help\";s:39:\"Display the user picture of the author.\";}}s:5:\"sorts\";a:1:{s:4:\"name\";a:2:{s:4:\"name\";s:17:\"Node: Author Name\";s:4:\"help\";s:49:\"This allows you to sort alphabetically by author.\";}}s:7:\"filters\";a:1:{s:3:\"uid\";a:5:{s:4:\"name\";s:17:\"Node: Author Name\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:4:\"list\";s:29:\"views_handler_filter_username\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:106:\"This allows you to filter by a particular user. You might not find this useful if you have a lot of users.\";}}}s:11:\"users_roles\";a:4:{s:4:\"name\";s:11:\"users_roles\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"uid\";}}s:7:\"filters\";a:1:{s:3:\"rid\";a:5:{s:4:\"name\";s:17:\"Role: Author Role\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:4:\"list\";s:25:\"views_handler_filter_role\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:69:\"Include the node only if the author is a member of the selected role.\";}}}s:16:\"profile_distinct\";a:6:{s:4:\"name\";s:5:\"users\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"uid\";}}s:6:\"fields\";a:1:{s:4:\"mail\";a:4:{s:4:\"name\";s:11:\"User: Email\";s:7:\"handler\";s:25:\"views_handler_field_email\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"This will display the email of the user.\";}}s:5:\"sorts\";a:2:{s:3:\"uid\";a:2:{s:4:\"name\";s:9:\"User: Uid\";s:4:\"help\";s:35:\"This allows you to sort by user id.\";}s:4:\"mail\";a:2:{s:4:\"name\";s:11:\"User: Email\";s:4:\"help\";s:48:\"This allows you to sort alphabetically by email.\";}}s:7:\"filters\";a:2:{s:8:\"distinct\";a:6:{s:4:\"name\";s:17:\"Profile: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:37:\"views_handler_filter_profile_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:105:\"This filter ensures that each user profile may only be listed once, even if it matches multiple criteria.\";}s:4:\"mail\";a:4:{s:4:\"name\";s:11:\"User: Email\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:56:\"This allows you to filter by a particular email address.\";}}}s:12:\"node_counter\";a:5:{s:4:\"name\";s:12:\"node_counter\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"nid\";}}s:6:\"fields\";a:3:{s:10:\"totalcount\";a:3:{s:4:\"name\";s:16:\"Node: Total Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:59:\"This will display the number of times a node has been read.\";}s:8:\"daycount\";a:3:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:68:\"This will display the number of times a node has been read recently.\";}s:9:\"timestamp\";a:5:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:40:\"Display the time the node was last read.\";}}s:5:\"sorts\";a:3:{s:10:\"totalcount\";a:2:{s:4:\"name\";s:16:\"Node: Total Hits\";s:4:\"help\";s:68:\"This allows you to sort by the number of times a node has been read.\";}s:8:\"daycount\";a:2:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:4:\"help\";s:77:\"This allows you to sort by the number of times a node has been read recently.\";}s:9:\"timestamp\";a:2:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:4:\"help\";s:57:\"This allows you to sort by the time a node was last read.\";}}}s:9:\"term_node\";a:5:{s:4:\"name\";s:9:\"term_node\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"nid\";}}s:6:\"fields\";a:1:{s:4:\"name\";a:6:{s:4:\"name\";s:19:\"Taxonomy: All Terms\";s:4:\"help\";s:162:\"This will display all taxonomy terms associated with the node. Note that this causes one extra query per row displayed, and might have a minor performance impact.\";s:8:\"sortable\";b:0;s:7:\"handler\";s:28:\"views_handler_field_allterms\";s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:8:\"As links\";s:6:\"nolink\";s:13:\"Without links\";}}s:9:\"notafield\";b:1;}}s:7:\"filters\";a:1:{s:3:\"tid\";a:7:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:4:\"help\";s:124:\"When filtering by taxonomy term you may specify the \"depth\" as an option. Please see the taxonomy help for more information.\";s:4:\"list\";s:24:\"views_handler_filter_tid\";s:6:\"option\";s:6:\"string\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:31:\"views_handler_filter_tid_custom\";s:10:\"value-type\";s:5:\"array\";}}}s:14:\"term_hierarchy\";a:3:{s:4:\"name\";s:14:\"term_hierarchy\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:9:\"term_node\";s:5:\"field\";s:3:\"tid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"tid\";}}}s:9:\"term_data\";a:6:{s:4:\"name\";s:9:\"term_data\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:9:\"term_node\";s:5:\"field\";s:3:\"tid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"tid\";}}s:6:\"fields\";a:2:{s:4:\"name\";a:5:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:8:\"sortable\";b:1;s:7:\"handler\";a:2:{s:23:\"views_handler_field_tid\";s:7:\"No link\";s:28:\"views_handler_field_tid_link\";s:9:\"With link\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"tid\";}s:4:\"help\";s:170:\"This will display one of the taxonomy terms associated with the node; if taxonomy terms were used to filter or sort, it will be the one that triggered the sort or filter.\";}s:11:\"description\";a:3:{s:4:\"name\";s:26:\"Taxonomy: Term Description\";s:8:\"sortable\";b:0;s:4:\"help\";s:66:\"This will display the description associated with a taxonomy term.\";}}s:5:\"sorts\";a:1:{s:6:\"weight\";a:3:{s:4:\"name\";s:19:\"Taxonomy: Term Name\";s:5:\"field\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}s:4:\"help\";s:92:\"This will sort nodes by taxonomy weight and name, as defined in the category administration.\";}}s:7:\"filters\";a:1:{s:3:\"vid\";a:6:{s:4:\"name\";s:25:\"Taxonomy: Vocabulary Name\";s:4:\"list\";s:24:\"views_handler_filter_vid\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:24:\"views_handler_filter_voc\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:87:\"This will filter a view to only nodes that contain a term in the associated vocabulary.\";}}}s:10:\"vocabulary\";a:3:{s:4:\"name\";s:10:\"vocabulary\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:9:\"term_data\";s:5:\"field\";s:3:\"vid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"vid\";}}}s:14:\"file_revisions\";a:5:{s:4:\"name\";s:14:\"file_revisions\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"vid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"vid\";}}s:6:\"fields\";a:1:{s:3:\"fid\";a:3:{s:4:\"name\";s:8:\"File: Id\";s:8:\"sortable\";b:1;s:4:\"help\";s:34:\"File Id which represents the file.\";}}s:5:\"sorts\";a:1:{s:3:\"fid\";a:1:{s:4:\"name\";s:15:\"Sort by File Id\";}}s:7:\"filters\";a:2:{s:3:\"fid\";a:6:{s:4:\"name\";s:24:\"File: Has file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Exists\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:35:\"views_handler_file_filter_fid_exist\";s:4:\"help\";s:46:\"Filter weather the node has files for download\";}s:4:\"list\";a:5:{s:4:\"name\";s:30:\"File: Listed in file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:46:\"Filter weather the file is listed in downloads\";}}}s:5:\"files\";a:5:{s:4:\"name\";s:5:\"files\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:14:\"file_revisions\";s:5:\"field\";s:3:\"fid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"fid\";}}s:6:\"fields\";a:4:{s:8:\"filename\";a:6:{s:4:\"name\";s:10:\"File: Name\";s:7:\"handler\";a:2:{s:27:\"views_handler_file_filename\";s:5:\"Plain\";s:36:\"views_handler_file_filename_download\";s:18:\"With download link\";}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:8:\"filepath\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:17:\"Display file name\";}s:8:\"filepath\";a:3:{s:4:\"name\";s:10:\"File: Path\";s:8:\"sortable\";b:0;s:4:\"help\";s:21:\"Display Path to File.\";}s:8:\"filesize\";a:4:{s:4:\"name\";s:10:\"File: Size\";s:7:\"handler\";s:23:\"views_handler_file_size\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"Display the size of the associated file.\";}s:8:\"filemime\";a:3:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"sortable\";b:1;s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";}}s:7:\"filters\";a:3:{s:8:\"filename\";a:4:{s:4:\"name\";s:14:\"File: Filename\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:70:\"This filter allows nodes to be filtered by the name of attached files.\";}s:8:\"filesize\";a:3:{s:4:\"name\";s:10:\"File: Size\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by file size.\";}s:8:\"filemime\";a:4:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";}}s:5:\"sorts\";a:3:{s:8:\"filename\";a:2:{s:4:\"name\";s:22:\"File: Sort by Filename\";s:4:\"help\";s:17:\"Sort by file name\";}s:8:\"filesize\";a:2:{s:4:\"name\";s:15:\"File: File size\";s:4:\"help\";s:18:\"Sort by file size.\";}s:8:\"filemime\";a:2:{s:4:\"name\";s:15:\"File: Mime type\";s:4:\"help\";s:18:\"Sort by mime type.\";}}}}s:7:\"filters\";a:2:{s:6:\"titles\";a:25:{s:11:\"node.status\";s:15:\"Node: Published\";s:12:\"node.promote\";s:16:\"Node: Front Page\";s:11:\"node.sticky\";s:12:\"Node: Sticky\";s:13:\"node.moderate\";s:15:\"Node: Moderated\";s:9:\"node.type\";s:10:\"Node: Type\";s:9:\"node.anon\";s:25:\"Node: Author is Anonymous\";s:15:\"node.currentuid\";s:28:\"Node: Author is Current User\";s:22:\"node.currentuidtouched\";s:40:\"Node: Current User Authored or Commented\";s:13:\"node.distinct\";s:14:\"Node: Distinct\";s:10:\"node.title\";s:11:\"Node: Title\";s:12:\"node.created\";s:18:\"Node: Created Time\";s:12:\"node.changed\";s:18:\"Node: Updated Time\";s:9:\"node.body\";s:10:\"Node: Body\";s:17:\"history.timestamp\";s:21:\"Node: Has New Content\";s:9:\"users.uid\";s:17:\"Node: Author Name\";s:15:\"users_roles.rid\";s:17:\"Role: Author Role\";s:25:\"profile_distinct.distinct\";s:17:\"Profile: Distinct\";s:21:\"profile_distinct.mail\";s:11:\"User: Email\";s:13:\"term_node.tid\";s:14:\"Taxonomy: Term\";s:13:\"term_data.vid\";s:25:\"Taxonomy: Vocabulary Name\";s:18:\"file_revisions.fid\";s:24:\"File: Has file downloads\";s:19:\"file_revisions.list\";s:30:\"File: Listed in file downloads\";s:14:\"files.filename\";s:14:\"File: Filename\";s:14:\"files.filesize\";s:10:\"File: Size\";s:14:\"files.filemime\";s:15:\"File: Mime type\";}s:4:\"base\";a:25:{s:11:\"node.status\";a:7:{s:4:\"name\";s:15:\"Node: Published\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:83:\"Filter by whether or not the node is published. This is recommended for most Views!\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:12:\"node.promote\";a:7:{s:4:\"name\";s:16:\"Node: Front Page\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:66:\"Filter by whether or not the node has been promoted to Front Page.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:11:\"node.sticky\";a:7:{s:4:\"name\";s:12:\"Node: Sticky\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:48:\"Filter by whether or not the node is set sticky.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:13:\"node.moderate\";a:7:{s:4:\"name\";s:15:\"Node: Moderated\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:47:\"Filter by whether or not the node is moderated.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:9:\"node.type\";a:8:{s:4:\"name\";s:10:\"Node: Type\";s:4:\"list\";s:29:\"views_handler_filter_nodetype\";s:9:\"list-type\";s:4:\"list\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:47:\"Include or exclude nodes of the selected types.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:29:\"views_handler_filter_nodetype\";s:9:\"#multiple\";b:1;}}s:9:\"node.anon\";a:8:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:25:\"Node: Author is Anonymous\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:29:\"views_handler_filter_useranon\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:73:\"This allows you to filter by whether or not the node author is anonymous.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:29:\"views_handler_filter_useranon\";s:9:\"#multiple\";b:1;}}s:15:\"node.currentuid\";a:8:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:28:\"Node: Author is Current User\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:100:\"This allows you to filter by whether or not the node was authored by the logged in user of the view.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:32:\"views_handler_filter_usercurrent\";}}s:22:\"node.currentuidtouched\";a:9:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:40:\"Node: Current User Authored or Commented\";s:8:\"operator\";a:1:{s:1:\"=\";s:10:\"touched by\";}s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:32:\"views_handler_filter_uid_touched\";s:4:\"help\";s:97:\"This allows you to filter by whether or not the logged in user authored or commented on the node.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:32:\"views_handler_filter_usercurrent\";}}s:13:\"node.distinct\";a:8:{s:4:\"name\";s:14:\"Node: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:29:\"views_handler_filter_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:160:\"This filter ensures that each node may only be listed once, even if it matches multiple criteria. Use this if multiple taxonomy matches return duplicated nodes.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:9:\"#multiple\";b:1;}}s:10:\"node.title\";a:6:{s:4:\"name\";s:11:\"Node: Title\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:55:\"This filter allows nodes to be filtered by their title.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:12:\"node.created\";a:7:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.changed\";a:7:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";s:5:\"table\";s:4:\"node\";}s:9:\"node.body\";a:6:{s:4:\"name\";s:10:\"Node: Body\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_body\";s:4:\"help\";s:54:\"This filter allows nodes to be filtered by their body.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:17:\"history.timestamp\";a:8:{s:4:\"name\";s:21:\"Node: Has New Content\";s:8:\"operator\";a:1:{i:0;s:3:\"Has\";}s:4:\"list\";a:1:{i:0;s:11:\"New Content\";}s:7:\"handler\";s:26:\"views_handler_filter_isnew\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:158:\"Including this filter will reduce the node set to nodes that have been updated or have new content since the user last read the node, as well as unread nodes.\";s:5:\"table\";s:7:\"history\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:1:{i:0;s:11:\"New Content\";}s:9:\"#multiple\";b:1;}}s:9:\"users.uid\";a:7:{s:4:\"name\";s:17:\"Node: Author Name\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:4:\"list\";s:29:\"views_handler_filter_username\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:106:\"This allows you to filter by a particular user. You might not find this useful if you have a lot of users.\";s:5:\"table\";s:5:\"users\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:29:\"views_handler_filter_username\";s:9:\"#multiple\";b:1;}}s:15:\"users_roles.rid\";a:7:{s:4:\"name\";s:17:\"Role: Author Role\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:4:\"list\";s:25:\"views_handler_filter_role\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:69:\"Include the node only if the author is a member of the selected role.\";s:5:\"table\";s:11:\"users_roles\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:25:\"views_handler_filter_role\";s:9:\"#multiple\";b:1;}}s:25:\"profile_distinct.distinct\";a:8:{s:4:\"name\";s:17:\"Profile: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:37:\"views_handler_filter_profile_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:105:\"This filter ensures that each user profile may only be listed once, even if it matches multiple criteria.\";s:5:\"table\";s:16:\"profile_distinct\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:9:\"#multiple\";b:1;}}s:21:\"profile_distinct.mail\";a:6:{s:4:\"name\";s:11:\"User: Email\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:56:\"This allows you to filter by a particular email address.\";s:5:\"table\";s:16:\"profile_distinct\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:13:\"term_node.tid\";a:9:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:4:\"help\";s:124:\"When filtering by taxonomy term you may specify the \"depth\" as an option. Please see the taxonomy help for more information.\";s:4:\"list\";s:24:\"views_handler_filter_tid\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:31:\"views_handler_filter_tid_custom\";s:10:\"value-type\";s:5:\"array\";s:5:\"table\";s:9:\"term_node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:24:\"views_handler_filter_tid\";s:9:\"#multiple\";b:1;}}s:13:\"term_data.vid\";a:8:{s:4:\"name\";s:25:\"Taxonomy: Vocabulary Name\";s:4:\"list\";s:24:\"views_handler_filter_vid\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:24:\"views_handler_filter_voc\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:87:\"This will filter a view to only nodes that contain a term in the associated vocabulary.\";s:5:\"table\";s:9:\"term_data\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:24:\"views_handler_filter_vid\";s:9:\"#multiple\";b:1;}}s:18:\"file_revisions.fid\";a:8:{s:4:\"name\";s:24:\"File: Has file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Exists\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:35:\"views_handler_file_filter_fid_exist\";s:4:\"help\";s:46:\"Filter weather the node has files for download\";s:5:\"table\";s:14:\"file_revisions\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:19:\"file_revisions.list\";a:7:{s:4:\"name\";s:30:\"File: Listed in file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:46:\"Filter weather the file is listed in downloads\";s:5:\"table\";s:14:\"file_revisions\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:14:\"files.filename\";a:6:{s:4:\"name\";s:14:\"File: Filename\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:70:\"This filter allows nodes to be filtered by the name of attached files.\";s:5:\"table\";s:5:\"files\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:14:\"files.filesize\";a:5:{s:4:\"name\";s:10:\"File: Size\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by file size.\";s:5:\"table\";s:5:\"files\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:14:\"files.filemime\";a:6:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";s:5:\"table\";s:5:\"files\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}}}s:6:\"fields\";a:2:{s:6:\"titles\";a:20:{s:10:\"node.title\";s:11:\"Node: Title\";s:12:\"node.created\";s:18:\"Node: Created Time\";s:12:\"node.changed\";s:18:\"Node: Updated Time\";s:9:\"node.type\";s:10:\"Node: Type\";s:9:\"node.link\";s:18:\"Node: Link to node\";s:9:\"node.body\";s:10:\"Node: Body\";s:10:\"users.name\";s:17:\"Node: Author Name\";s:9:\"users.uid\";s:20:\"User: Author Picture\";s:21:\"profile_distinct.mail\";s:11:\"User: Email\";s:23:\"node_counter.totalcount\";s:16:\"Node: Total Hits\";s:21:\"node_counter.daycount\";s:17:\"Node: Recent Hits\";s:22:\"node_counter.timestamp\";s:19:\"Node: Last Hit Time\";s:14:\"term_node.name\";s:19:\"Taxonomy: All Terms\";s:14:\"term_data.name\";s:14:\"Taxonomy: Term\";s:21:\"term_data.description\";s:26:\"Taxonomy: Term Description\";s:18:\"file_revisions.fid\";s:8:\"File: Id\";s:14:\"files.filename\";s:10:\"File: Name\";s:14:\"files.filepath\";s:10:\"File: Path\";s:14:\"files.filesize\";s:10:\"File: Size\";s:14:\"files.filemime\";s:15:\"File: Mime type\";}s:4:\"base\";a:20:{s:10:\"node.title\";a:7:{s:4:\"name\";s:11:\"Node: Title\";s:7:\"handler\";a:2:{s:28:\"views_handler_field_nodelink\";s:6:\"Normal\";s:38:\"views_handler_field_nodelink_with_mark\";s:17:\"With updated mark\";}s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:7:\"As link\";s:6:\"nolink\";s:12:\"Without link\";}}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:7:\"changed\";}s:4:\"help\";s:30:\"Display the title of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.created\";a:6:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:34:\"Display the post time of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.changed\";a:6:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:43:\"Display the last time the node was updated.\";s:5:\"table\";s:4:\"node\";}s:9:\"node.type\";a:5:{s:4:\"name\";s:10:\"Node: Type\";s:7:\"handler\";s:22:\"views_handler_nodetype\";s:8:\"sortable\";b:1;s:4:\"help\";s:107:\"The Node Type field will display the type of a node (for example, \'blog entry\', \'forum post\', \'story\', etc)\";s:5:\"table\";s:4:\"node\";}s:9:\"node.link\";a:7:{s:4:\"name\";s:18:\"Node: Link to node\";s:7:\"handler\";s:29:\"views_handler_field_node_link\";s:8:\"sortable\";b:0;s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:9:\"notafield\";s:4:\"true\";s:4:\"help\";s:153:\"This will create a link to the node; fill the option field with the text for the link. If you want titles that link to the node, use Node: Title instead.\";s:5:\"table\";s:4:\"node\";}s:9:\"node.body\";a:6:{s:4:\"name\";s:10:\"Node: Body\";s:7:\"handler\";a:2:{s:24:\"views_handler_field_body\";s:9:\"Full Text\";s:26:\"views_handler_field_teaser\";s:6:\"Teaser\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"nid\";}s:9:\"notafield\";b:1;s:4:\"help\";s:25:\"Display the Main Content.\";s:5:\"table\";s:4:\"node\";}s:10:\"users.name\";a:7:{s:4:\"name\";s:17:\"Node: Author Name\";s:7:\"handler\";s:28:\"views_handler_field_username\";s:8:\"sortable\";b:1;s:3:\"uid\";s:3:\"uid\";s:10:\"addlfields\";a:1:{i:0;s:3:\"uid\";}s:4:\"help\";s:41:\"This will display the author of the node.\";s:5:\"table\";s:5:\"users\";}s:9:\"users.uid\";a:5:{s:4:\"name\";s:20:\"User: Author Picture\";s:7:\"handler\";s:27:\"views_handler_field_userpic\";s:8:\"sortable\";b:0;s:4:\"help\";s:39:\"Display the user picture of the author.\";s:5:\"table\";s:5:\"users\";}s:21:\"profile_distinct.mail\";a:5:{s:4:\"name\";s:11:\"User: Email\";s:7:\"handler\";s:25:\"views_handler_field_email\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"This will display the email of the user.\";s:5:\"table\";s:16:\"profile_distinct\";}s:23:\"node_counter.totalcount\";a:4:{s:4:\"name\";s:16:\"Node: Total Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:59:\"This will display the number of times a node has been read.\";s:5:\"table\";s:12:\"node_counter\";}s:21:\"node_counter.daycount\";a:4:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:68:\"This will display the number of times a node has been read recently.\";s:5:\"table\";s:12:\"node_counter\";}s:22:\"node_counter.timestamp\";a:6:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:40:\"Display the time the node was last read.\";s:5:\"table\";s:12:\"node_counter\";}s:14:\"term_node.name\";a:7:{s:4:\"name\";s:19:\"Taxonomy: All Terms\";s:4:\"help\";s:162:\"This will display all taxonomy terms associated with the node. Note that this causes one extra query per row displayed, and might have a minor performance impact.\";s:8:\"sortable\";b:0;s:7:\"handler\";s:28:\"views_handler_field_allterms\";s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:8:\"As links\";s:6:\"nolink\";s:13:\"Without links\";}}s:9:\"notafield\";b:1;s:5:\"table\";s:9:\"term_node\";}s:14:\"term_data.name\";a:6:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:8:\"sortable\";b:1;s:7:\"handler\";a:2:{s:23:\"views_handler_field_tid\";s:7:\"No link\";s:28:\"views_handler_field_tid_link\";s:9:\"With link\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"tid\";}s:4:\"help\";s:170:\"This will display one of the taxonomy terms associated with the node; if taxonomy terms were used to filter or sort, it will be the one that triggered the sort or filter.\";s:5:\"table\";s:9:\"term_data\";}s:21:\"term_data.description\";a:4:{s:4:\"name\";s:26:\"Taxonomy: Term Description\";s:8:\"sortable\";b:0;s:4:\"help\";s:66:\"This will display the description associated with a taxonomy term.\";s:5:\"table\";s:9:\"term_data\";}s:18:\"file_revisions.fid\";a:4:{s:4:\"name\";s:8:\"File: Id\";s:8:\"sortable\";b:1;s:4:\"help\";s:34:\"File Id which represents the file.\";s:5:\"table\";s:14:\"file_revisions\";}s:14:\"files.filename\";a:7:{s:4:\"name\";s:10:\"File: Name\";s:7:\"handler\";a:2:{s:27:\"views_handler_file_filename\";s:5:\"Plain\";s:36:\"views_handler_file_filename_download\";s:18:\"With download link\";}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:8:\"filepath\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:17:\"Display file name\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filepath\";a:4:{s:4:\"name\";s:10:\"File: Path\";s:8:\"sortable\";b:0;s:4:\"help\";s:21:\"Display Path to File.\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filesize\";a:5:{s:4:\"name\";s:10:\"File: Size\";s:7:\"handler\";s:23:\"views_handler_file_size\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"Display the size of the associated file.\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filemime\";a:4:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"sortable\";b:1;s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";s:5:\"table\";s:5:\"files\";}}}s:5:\"sorts\";a:2:{s:6:\"titles\";a:17:{s:8:\"node.nid\";s:8:\"Node: ID\";s:12:\"node.created\";s:18:\"Node: Created Time\";s:12:\"node.changed\";s:23:\"Node: Last Updated Time\";s:11:\"node.sticky\";s:12:\"Node: Sticky\";s:10:\"node.title\";s:11:\"Node: Title\";s:11:\"node.random\";s:6:\"Random\";s:10:\"users.name\";s:17:\"Node: Author Name\";s:20:\"profile_distinct.uid\";s:9:\"User: Uid\";s:21:\"profile_distinct.mail\";s:11:\"User: Email\";s:23:\"node_counter.totalcount\";s:16:\"Node: Total Hits\";s:21:\"node_counter.daycount\";s:17:\"Node: Recent Hits\";s:22:\"node_counter.timestamp\";s:19:\"Node: Last Hit Time\";s:16:\"term_data.weight\";s:19:\"Taxonomy: Term Name\";s:18:\"file_revisions.fid\";s:15:\"Sort by File Id\";s:14:\"files.filename\";s:22:\"File: Sort by Filename\";s:14:\"files.filesize\";s:15:\"File: File size\";s:14:\"files.filemime\";s:15:\"File: Mime type\";}s:4:\"base\";a:17:{s:8:\"node.nid\";a:3:{s:4:\"name\";s:8:\"Node: ID\";s:4:\"help\";s:36:\"Sort by the database ID of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.created\";a:3:{s:4:\"name\";s:18:\"Node: Created Time\";s:4:\"help\";s:40:\"Sort by the submission date of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.changed\";a:3:{s:4:\"name\";s:23:\"Node: Last Updated Time\";s:4:\"help\";s:41:\"Sort by the last update date of the node.\";s:5:\"table\";s:4:\"node\";}s:11:\"node.sticky\";a:3:{s:4:\"name\";s:12:\"Node: Sticky\";s:4:\"help\";s:92:\"Sort by whether or not the node is sticky. Choose descending to put sticky nodes at the top.\";s:5:\"table\";s:4:\"node\";}s:10:\"node.title\";a:3:{s:4:\"name\";s:11:\"Node: Title\";s:4:\"help\";s:38:\"Sort by the node title, alphabetically\";s:5:\"table\";s:4:\"node\";}s:11:\"node.random\";a:4:{s:4:\"name\";s:6:\"Random\";s:7:\"handler\";s:25:\"views_handler_sort_random\";s:4:\"help\";s:129:\"By choosing random, nodes will be ordered completely randomly. This is a good way to choose X random nodes from a group of nodes.\";s:5:\"table\";s:4:\"node\";}s:10:\"users.name\";a:3:{s:4:\"name\";s:17:\"Node: Author Name\";s:4:\"help\";s:49:\"This allows you to sort alphabetically by author.\";s:5:\"table\";s:5:\"users\";}s:20:\"profile_distinct.uid\";a:3:{s:4:\"name\";s:9:\"User: Uid\";s:4:\"help\";s:35:\"This allows you to sort by user id.\";s:5:\"table\";s:16:\"profile_distinct\";}s:21:\"profile_distinct.mail\";a:3:{s:4:\"name\";s:11:\"User: Email\";s:4:\"help\";s:48:\"This allows you to sort alphabetically by email.\";s:5:\"table\";s:16:\"profile_distinct\";}s:23:\"node_counter.totalcount\";a:3:{s:4:\"name\";s:16:\"Node: Total Hits\";s:4:\"help\";s:68:\"This allows you to sort by the number of times a node has been read.\";s:5:\"table\";s:12:\"node_counter\";}s:21:\"node_counter.daycount\";a:3:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:4:\"help\";s:77:\"This allows you to sort by the number of times a node has been read recently.\";s:5:\"table\";s:12:\"node_counter\";}s:22:\"node_counter.timestamp\";a:3:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:4:\"help\";s:57:\"This allows you to sort by the time a node was last read.\";s:5:\"table\";s:12:\"node_counter\";}s:16:\"term_data.weight\";a:4:{s:4:\"name\";s:19:\"Taxonomy: Term Name\";s:5:\"field\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}s:4:\"help\";s:92:\"This will sort nodes by taxonomy weight and name, as defined in the category administration.\";s:5:\"table\";s:9:\"term_data\";}s:18:\"file_revisions.fid\";a:2:{s:4:\"name\";s:15:\"Sort by File Id\";s:5:\"table\";s:14:\"file_revisions\";}s:14:\"files.filename\";a:3:{s:4:\"name\";s:22:\"File: Sort by Filename\";s:4:\"help\";s:17:\"Sort by file name\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filesize\";a:3:{s:4:\"name\";s:15:\"File: File size\";s:4:\"help\";s:18:\"Sort by file size.\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filemime\";a:3:{s:4:\"name\";s:15:\"File: Mime type\";s:4:\"help\";s:18:\"Sort by mime type.\";s:5:\"table\";s:5:\"files\";}}}}',0,1158605676,''),('menu:1:it','a:4:{s:10:\"path index\";a:185:{s:13:\"admin/filters\";s:1:\"7\";s:18:\"admin/filters/list\";i:-2;s:17:\"admin/filters/add\";i:-3;s:20:\"admin/filters/delete\";i:-4;s:11:\"filter/tips\";s:1:\"3\";s:10:\"admin/node\";s:1:\"8\";s:19:\"admin/node/overview\";i:-7;s:17:\"admin/node/search\";i:-8;s:19:\"admin/settings/node\";s:2:\"21\";s:28:\"admin/settings/content-types\";s:2:\"22\";s:4:\"node\";s:1:\"4\";s:8:\"node/add\";s:1:\"9\";s:7:\"rss.xml\";i:-13;s:12:\"system/files\";i:-14;s:5:\"admin\";s:1:\"5\";s:12:\"admin/themes\";s:2:\"10\";s:19:\"admin/themes/select\";i:-17;s:21:\"admin/themes/settings\";i:-18;s:28:\"admin/themes/settings/global\";i:-19;s:31:\"admin/themes/settings/HRCapital\";i:-20;s:32:\"admin/themes/settings/bluemarine\";i:-21;s:14:\"admin/settings\";s:2:\"11\";s:21:\"admin/settings/search\";s:2:\"23\";s:25:\"admin/settings/statistics\";s:2:\"24\";s:21:\"admin/settings/upload\";s:2:\"25\";s:30:\"admin/settings/frameprevention\";s:2:\"26\";s:25:\"admin/settings/front_page\";s:2:\"66\";s:19:\"admin/settings/i18n\";s:2:\"64\";s:26:\"admin/settings/translation\";s:2:\"65\";s:19:\"admin/settings/imce\";s:2:\"27\";s:23:\"admin/settings/pathauto\";s:2:\"29\";s:13:\"admin/modules\";s:2:\"12\";s:4:\"user\";i:-33;s:17:\"user/autocomplete\";i:-34;s:10:\"user/login\";i:-35;s:13:\"user/register\";i:-36;s:13:\"user/password\";i:-37;s:10:\"user/reset\";i:-38;s:9:\"user/help\";i:-39;s:10:\"admin/user\";s:2:\"13\";s:15:\"admin/user/list\";i:-41;s:17:\"admin/user/create\";i:-42;s:19:\"admin/settings/user\";s:2:\"30\";s:12:\"admin/access\";s:2:\"14\";s:24:\"admin/access/permissions\";i:-45;s:18:\"admin/access/roles\";i:-46;s:23:\"admin/access/roles/edit\";i:-47;s:18:\"admin/access/rules\";i:-48;s:23:\"admin/access/rules/list\";i:-49;s:22:\"admin/access/rules/add\";i:-50;s:24:\"admin/access/rules/check\";i:-51;s:23:\"admin/access/rules/edit\";i:-52;s:25:\"admin/access/rules/delete\";i:-53;s:17:\"admin/user/search\";i:-54;s:6:\"user/1\";i:-55;s:6:\"logout\";s:1:\"6\";s:10:\"admin/logs\";s:2:\"15\";s:16:\"admin/logs/event\";i:-58;s:11:\"admin/block\";s:2:\"16\";s:16:\"admin/block/list\";i:-60;s:21:\"admin/block/configure\";i:-61;s:18:\"admin/block/delete\";i:-62;s:15:\"admin/block/add\";i:-63;s:26:\"admin/block/list/HRCapital\";i:-64;s:27:\"admin/block/list/bluemarine\";i:-65;s:13:\"admin/contact\";s:2:\"34\";s:22:\"admin/contact/category\";i:-67;s:27:\"admin/contact/category/list\";i:-68;s:26:\"admin/contact/category/add\";i:-69;s:27:\"admin/contact/category/edit\";i:-70;s:29:\"admin/contact/category/delete\";i:-71;s:22:\"admin/contact/settings\";i:-72;s:7:\"contact\";s:2:\"35\";s:10:\"admin/help\";s:2:\"18\";s:16:\"admin/help/block\";i:-75;s:18:\"admin/help/contact\";i:-76;s:17:\"admin/help/filter\";i:-77;s:26:\"admin/help/frameprevention\";i:-78;s:21:\"admin/help/front_page\";i:-79;s:15:\"admin/help/help\";i:-80;s:15:\"admin/help/i18n\";i:-81;s:19:\"admin/help/i18nmenu\";i:-82;s:15:\"admin/help/imce\";i:-83;s:17:\"admin/help/locale\";i:-84;s:15:\"admin/help/menu\";i:-85;s:15:\"admin/help/node\";i:-86;s:20:\"admin/help/nodewords\";i:-87;s:15:\"admin/help/page\";i:-88;s:15:\"admin/help/path\";i:-89;s:19:\"admin/help/pathauto\";i:-90;s:18:\"admin/help/profile\";i:-91;s:17:\"admin/help/search\";i:-92;s:21:\"admin/help/statistics\";i:-93;s:16:\"admin/help/story\";i:-94;s:17:\"admin/help/system\";i:-95;s:19:\"admin/help/taxonomy\";i:-96;s:18:\"admin/help/tinymce\";i:-97;s:22:\"admin/help/translation\";i:-98;s:17:\"admin/help/upload\";i:-99;s:15:\"admin/help/user\";i:-100;s:16:\"admin/help/views\";i:-101;s:29:\"admin/help/views_theme_wizard\";i:-102;s:19:\"admin/help/views_ui\";i:-103;s:19:\"admin/help/watchdog\";i:-104;s:12:\"admin/locale\";s:2:\"36\";s:21:\"admin/locale/language\";i:-106;s:26:\"admin/locale/string/search\";i:-107;s:30:\"admin/locale/language/overview\";i:-108;s:25:\"admin/locale/language/add\";i:-109;s:28:\"admin/locale/language/import\";i:-110;s:28:\"admin/locale/language/export\";i:-111;s:28:\"admin/locale/language/delete\";i:-112;s:10:\"admin/menu\";s:2:\"19\";s:15:\"admin/menu/list\";i:-114;s:19:\"admin/menu/item/add\";i:-115;s:20:\"admin/menu/item/edit\";i:-116;s:21:\"admin/menu/item/reset\";i:-117;s:23:\"admin/menu/item/disable\";i:-118;s:22:\"admin/menu/item/delete\";i:-119;s:19:\"admin/menu/menu/add\";i:-120;s:20:\"admin/menu/menu/edit\";i:-121;s:22:\"admin/menu/menu/delete\";i:-122;s:19:\"admin/settings/menu\";s:2:\"31\";s:13:\"node/add/page\";s:2:\"32\";s:10:\"admin/path\";s:2:\"37\";s:15:\"admin/path/edit\";i:-126;s:17:\"admin/path/delete\";i:-127;s:15:\"admin/path/list\";i:-128;s:14:\"admin/path/add\";i:-129;s:7:\"profile\";s:2:\"38\";s:22:\"admin/settings/profile\";s:2:\"39\";s:26:\"admin/settings/profile/add\";i:-132;s:27:\"admin/settings/profile/edit\";i:-133;s:29:\"admin/settings/profile/delete\";i:-134;s:6:\"search\";s:2:\"40\";s:26:\"admin/settings/search/wipe\";i:-136;s:15:\"admin/logs/hits\";s:2:\"41\";s:16:\"admin/logs/pages\";s:2:\"42\";s:19:\"admin/logs/visitors\";s:2:\"43\";s:20:\"admin/logs/referrers\";s:2:\"44\";s:17:\"admin/logs/access\";i:-141;s:14:\"node/add/story\";s:2:\"33\";s:14:\"admin/taxonomy\";s:2:\"20\";s:19:\"admin/taxonomy/list\";i:-144;s:29:\"admin/taxonomy/add/vocabulary\";i:-145;s:30:\"admin/taxonomy/edit/vocabulary\";i:-146;s:24:\"admin/taxonomy/edit/term\";i:-147;s:13:\"taxonomy/term\";i:-148;s:21:\"taxonomy/autocomplete\";i:-149;s:9:\"upload/js\";i:-150;s:10:\"front_page\";s:2:\"67\";s:11:\"imce/browse\";i:-152;s:13:\"pathauto/node\";i:-153;s:22:\"admin/settings/tinymce\";s:2:\"45\";s:14:\"hrcapital_news\";s:2:\"52\";s:9:\"frontpage\";i:-156;s:14:\"popular/latest\";i:-157;s:7:\"popular\";s:2:\"62\";s:15:\"popular/alltime\";i:-159;s:18:\"admin/views/wizard\";i:-160;s:11:\"admin/views\";s:2:\"63\";s:16:\"admin/views/list\";i:-162;s:15:\"admin/views/add\";i:-163;s:17:\"admin/views/clone\";i:-164;s:16:\"admin/views/edit\";i:-165;s:18:\"admin/views/import\";i:-166;s:18:\"admin/views/export\";i:-167;s:18:\"admin/views/delete\";i:-168;s:18:\"admin/views/enable\";i:-169;s:19:\"admin/views/disable\";i:-170;s:24:\"admin/settings/nodewords\";s:2:\"46\";s:31:\"admin/settings/nodewords/global\";i:-172;s:34:\"admin/settings/nodewords/frontpage\";i:-173;s:6:\"node/1\";s:2:\"47\";s:6:\"node/2\";s:2:\"48\";s:6:\"node/3\";s:2:\"49\";s:6:\"node/7\";s:2:\"53\";s:7:\"node/11\";s:2:\"56\";s:6:\"node/9\";s:2:\"57\";s:6:\"node/4\";s:2:\"58\";s:7:\"node/12\";s:2:\"60\";s:7:\"node/14\";s:2:\"61\";s:7:\"node/17\";s:2:\"69\";s:7:\"node/18\";s:2:\"70\";s:7:\"node/19\";s:2:\"71\";}s:5:\"items\";a:189:{i:0;a:5:{s:4:\"path\";s:0:\"\";s:5:\"title\";s:0:\"\";s:4:\"type\";i:1;s:3:\"pid\";i:1;s:8:\"children\";a:3:{i:0;i:1;i:1;i:2;i:2;i:68;}}i:1;a:7:{s:3:\"pid\";i:0;s:4:\"path\";s:0:\"\";s:5:\"title\";s:11:\"Navigazione\";s:6:\"weight\";i:-50;s:6:\"access\";b:1;s:4:\"type\";i:3;s:8:\"children\";a:18:{i:0;i:-13;i:1;i:-14;i:2;i:-33;i:3;i:-148;i:4;i:-149;i:5;i:-150;i:6;i:-152;i:7;i:-153;i:8;i:-156;i:9;i:3;i:10;i:4;i:11;i:5;i:12;i:6;i:13;i:35;i:14;i:38;i:15;i:40;i:16;i:62;i:17;i:67;}}i:-2;a:6:{s:4:\"path\";s:18:\"admin/filters/list\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"7\";}i:-3;a:6:{s:4:\"path\";s:17:\"admin/filters/add\";s:5:\"title\";s:28:\"aggiungi un formato di input\";s:4:\"type\";i:128;s:6:\"weight\";i:1;s:6:\"access\";b:1;s:3:\"pid\";s:1:\"7\";}i:-4;a:6:{s:4:\"path\";s:20:\"admin/filters/delete\";s:5:\"title\";s:24:\"elimina formato di input\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"7\";}i:-7;a:5:{s:4:\"path\";s:19:\"admin/node/overview\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:1:\"8\";}i:-8;a:6:{s:4:\"path\";s:17:\"admin/node/search\";s:5:\"title\";s:5:\"cerca\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"8\";}i:-13;a:6:{s:4:\"path\";s:7:\"rss.xml\";s:5:\"title\";s:9:\"fonte RSS\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-14;a:6:{s:4:\"path\";s:12:\"system/files\";s:5:\"title\";s:17:\"download del file\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-17;a:6:{s:4:\"path\";s:19:\"admin/themes/select\";s:5:\"title\";s:6:\"elenco\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:-1;s:3:\"pid\";s:2:\"10\";}i:-18;a:7:{s:4:\"path\";s:21:\"admin/themes/settings\";s:5:\"title\";s:9:\"configura\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"10\";s:8:\"children\";a:3:{i:0;i:-19;i:1;i:-20;i:2;i:-21;}}i:-19;a:6:{s:4:\"path\";s:28:\"admin/themes/settings/global\";s:5:\"title\";s:20:\"impostazioni globali\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:-1;s:3:\"pid\";i:-18;}i:-20;a:6:{s:4:\"path\";s:31:\"admin/themes/settings/HRCapital\";s:5:\"title\";s:9:\"HRCapital\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-18;}i:-21;a:6:{s:4:\"path\";s:32:\"admin/themes/settings/bluemarine\";s:5:\"title\";s:10:\"bluemarine\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-18;}i:-33;a:7:{s:4:\"path\";s:4:\"user\";s:5:\"title\";s:14:\"profilo utente\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;s:8:\"children\";a:7:{i:0;i:-34;i:1;i:-35;i:2;i:-36;i:3;i:-37;i:4;i:-38;i:5;i:-39;i:6;i:-55;}}i:-34;a:6:{s:4:\"path\";s:17:\"user/autocomplete\";s:5:\"title\";s:29:\"autocompletamento dell\'utente\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-35;a:5:{s:4:\"path\";s:10:\"user/login\";s:5:\"title\";s:5:\"entra\";s:4:\"type\";i:640;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-36;a:6:{s:4:\"path\";s:13:\"user/register\";s:5:\"title\";s:8:\"registra\";s:6:\"access\";b:0;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-37;a:6:{s:4:\"path\";s:13:\"user/password\";s:5:\"title\";s:27:\"richiedi una nuova password\";s:6:\"access\";b:0;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-38;a:6:{s:4:\"path\";s:10:\"user/reset\";s:5:\"title\";s:22:\"ripristina la password\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-39;a:5:{s:4:\"path\";s:9:\"user/help\";s:5:\"title\";s:5:\"aiuto\";s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-41;a:5:{s:4:\"path\";s:15:\"admin/user/list\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"13\";}i:-42;a:6:{s:4:\"path\";s:17:\"admin/user/create\";s:5:\"title\";s:18:\"aggiungi un utente\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"13\";}i:-45;a:6:{s:4:\"path\";s:24:\"admin/access/permissions\";s:5:\"title\";s:8:\"permessi\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"14\";}i:-46;a:7:{s:4:\"path\";s:18:\"admin/access/roles\";s:5:\"title\";s:5:\"ruoli\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"14\";s:8:\"children\";a:1:{i:0;i:-47;}}i:-47;a:6:{s:4:\"path\";s:23:\"admin/access/roles/edit\";s:5:\"title\";s:17:\"modifica il ruolo\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-46;}i:-48;a:7:{s:4:\"path\";s:18:\"admin/access/rules\";s:5:\"title\";s:17:\"regole di accesso\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:10;s:3:\"pid\";s:2:\"14\";s:8:\"children\";a:5:{i:0;i:-49;i:1;i:-50;i:2;i:-51;i:3;i:-52;i:4;i:-53;}}i:-49;a:6:{s:4:\"path\";s:23:\"admin/access/rules/list\";s:5:\"title\";s:6:\"elenco\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";i:-48;}i:-50;a:6:{s:4:\"path\";s:22:\"admin/access/rules/add\";s:5:\"title\";s:19:\"aggiungi una regola\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-48;}i:-51;a:6:{s:4:\"path\";s:24:\"admin/access/rules/check\";s:5:\"title\";s:18:\"verifica le regole\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-48;}i:-52;a:6:{s:4:\"path\";s:23:\"admin/access/rules/edit\";s:5:\"title\";s:18:\"modifica la regola\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-48;}i:-53;a:6:{s:4:\"path\";s:25:\"admin/access/rules/delete\";s:5:\"title\";s:17:\"elimina la regola\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-48;}i:-54;a:6:{s:4:\"path\";s:17:\"admin/user/search\";s:5:\"title\";s:5:\"cerca\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"13\";}i:-55;a:6:{s:4:\"path\";s:6:\"user/1\";s:5:\"title\";s:14:\"il mio profilo\";s:6:\"access\";b:1;s:4:\"type\";i:6;s:6:\"weight\";i:0;s:3:\"pid\";i:-33;}i:-58;a:5:{s:4:\"path\";s:16:\"admin/logs/event\";s:5:\"title\";s:8:\"dettagli\";s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"15\";}i:-60;a:6:{s:4:\"path\";s:16:\"admin/block/list\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"16\";s:8:\"children\";a:2:{i:0;i:-64;i:1;i:-65;}}i:-61;a:6:{s:4:\"path\";s:21:\"admin/block/configure\";s:5:\"title\";s:19:\"configura il blocco\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"16\";}i:-62;a:6:{s:4:\"path\";s:18:\"admin/block/delete\";s:5:\"title\";s:17:\"elimina il blocco\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"16\";}i:-63;a:6:{s:4:\"path\";s:15:\"admin/block/add\";s:5:\"title\";s:18:\"aggiungi un blocco\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"16\";}i:-64;a:6:{s:4:\"path\";s:26:\"admin/block/list/HRCapital\";s:5:\"title\";s:22:\"Impostazioni HRCapital\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";i:-60;}i:-65;a:6:{s:4:\"path\";s:27:\"admin/block/list/bluemarine\";s:5:\"title\";s:23:\"Impostazioni bluemarine\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";i:-60;}i:-67;a:7:{s:4:\"path\";s:22:\"admin/contact/category\";s:5:\"title\";s:9:\"categorie\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"34\";s:8:\"children\";a:4:{i:0;i:-68;i:1;i:-69;i:2;i:-70;i:3;i:-71;}}i:-68;a:6:{s:4:\"path\";s:27:\"admin/contact/category/list\";s:5:\"title\";s:6:\"elenco\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:0;s:3:\"pid\";i:-67;}i:-69;a:6:{s:4:\"path\";s:26:\"admin/contact/category/add\";s:5:\"title\";s:18:\"aggiungi categoria\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:1;s:3:\"pid\";i:-67;}i:-70;a:6:{s:4:\"path\";s:27:\"admin/contact/category/edit\";s:5:\"title\";s:21:\"edit contact category\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-67;}i:-71;a:6:{s:4:\"path\";s:29:\"admin/contact/category/delete\";s:5:\"title\";s:16:\"elimina contatto\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-67;}i:-72;a:6:{s:4:\"path\";s:22:\"admin/contact/settings\";s:5:\"title\";s:12:\"impostazioni\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:1;s:3:\"pid\";s:2:\"34\";}i:-75;a:6:{s:4:\"path\";s:16:\"admin/help/block\";s:5:\"title\";s:6:\"blocco\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-76;a:6:{s:4:\"path\";s:18:\"admin/help/contact\";s:5:\"title\";s:8:\"contatto\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-77;a:6:{s:4:\"path\";s:17:\"admin/help/filter\";s:5:\"title\";s:6:\"filtro\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-78;a:6:{s:4:\"path\";s:26:\"admin/help/frameprevention\";s:5:\"title\";s:15:\"frameprevention\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-79;a:6:{s:4:\"path\";s:21:\"admin/help/front_page\";s:5:\"title\";s:10:\"front_page\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-80;a:6:{s:4:\"path\";s:15:\"admin/help/help\";s:5:\"title\";s:5:\"aiuto\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-81;a:6:{s:4:\"path\";s:15:\"admin/help/i18n\";s:5:\"title\";s:4:\"i18n\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-82;a:6:{s:4:\"path\";s:19:\"admin/help/i18nmenu\";s:5:\"title\";s:8:\"i18nmenu\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-83;a:6:{s:4:\"path\";s:15:\"admin/help/imce\";s:5:\"title\";s:4:\"imce\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-84;a:6:{s:4:\"path\";s:17:\"admin/help/locale\";s:5:\"title\";s:6:\"lingua\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-85;a:6:{s:4:\"path\";s:15:\"admin/help/menu\";s:5:\"title\";s:4:\"menu\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-86;a:6:{s:4:\"path\";s:15:\"admin/help/node\";s:5:\"title\";s:4:\"nodo\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-87;a:6:{s:4:\"path\";s:20:\"admin/help/nodewords\";s:5:\"title\";s:9:\"nodewords\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-88;a:6:{s:4:\"path\";s:15:\"admin/help/page\";s:5:\"title\";s:6:\"pagina\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-89;a:6:{s:4:\"path\";s:15:\"admin/help/path\";s:5:\"title\";s:8:\"percorso\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-90;a:6:{s:4:\"path\";s:19:\"admin/help/pathauto\";s:5:\"title\";s:8:\"pathauto\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-91;a:6:{s:4:\"path\";s:18:\"admin/help/profile\";s:5:\"title\";s:7:\"profilo\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-92;a:6:{s:4:\"path\";s:17:\"admin/help/search\";s:5:\"title\";s:5:\"cerca\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-93;a:6:{s:4:\"path\";s:21:\"admin/help/statistics\";s:5:\"title\";s:11:\"statistiche\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-94;a:6:{s:4:\"path\";s:16:\"admin/help/story\";s:5:\"title\";s:6:\"storia\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-95;a:6:{s:4:\"path\";s:17:\"admin/help/system\";s:5:\"title\";s:7:\"sistema\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-96;a:6:{s:4:\"path\";s:19:\"admin/help/taxonomy\";s:5:\"title\";s:10:\"tassonomia\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-97;a:6:{s:4:\"path\";s:18:\"admin/help/tinymce\";s:5:\"title\";s:7:\"tinymce\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-98;a:6:{s:4:\"path\";s:22:\"admin/help/translation\";s:5:\"title\";s:11:\"translation\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-99;a:6:{s:4:\"path\";s:17:\"admin/help/upload\";s:5:\"title\";s:6:\"upload\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-100;a:6:{s:4:\"path\";s:15:\"admin/help/user\";s:5:\"title\";s:6:\"utente\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-101;a:6:{s:4:\"path\";s:16:\"admin/help/views\";s:5:\"title\";s:5:\"views\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-102;a:6:{s:4:\"path\";s:29:\"admin/help/views_theme_wizard\";s:5:\"title\";s:18:\"views_theme_wizard\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-103;a:6:{s:4:\"path\";s:19:\"admin/help/views_ui\";s:5:\"title\";s:8:\"views_ui\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-104;a:6:{s:4:\"path\";s:19:\"admin/help/watchdog\";s:5:\"title\";s:12:\"avvertimento\";s:4:\"type\";i:4;s:6:\"access\";b:1;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"18\";}i:-106;a:7:{s:4:\"path\";s:21:\"admin/locale/language\";s:5:\"title\";s:15:\"gestisci lingue\";s:6:\"access\";b:1;s:6:\"weight\";i:-10;s:4:\"type\";i:640;s:3:\"pid\";s:2:\"36\";s:8:\"children\";a:5:{i:0;i:-108;i:1;i:-109;i:2;i:-110;i:3;i:-111;i:4;i:-112;}}i:-107;a:6:{s:4:\"path\";s:26:\"admin/locale/string/search\";s:5:\"title\";s:14:\"gestisci frasi\";s:6:\"access\";b:1;s:6:\"weight\";i:10;s:4:\"type\";i:128;s:3:\"pid\";s:2:\"36\";}i:-108;a:6:{s:4:\"path\";s:30:\"admin/locale/language/overview\";s:5:\"title\";s:6:\"elenco\";s:6:\"access\";b:1;s:6:\"weight\";i:0;s:4:\"type\";i:640;s:3:\"pid\";i:-106;}i:-109;a:6:{s:4:\"path\";s:25:\"admin/locale/language/add\";s:5:\"title\";s:15:\"aggiungi lingua\";s:6:\"access\";b:1;s:6:\"weight\";i:5;s:4:\"type\";i:128;s:3:\"pid\";i:-106;}i:-110;a:6:{s:4:\"path\";s:28:\"admin/locale/language/import\";s:5:\"title\";s:7:\"importa\";s:6:\"access\";b:1;s:6:\"weight\";i:10;s:4:\"type\";i:128;s:3:\"pid\";i:-106;}i:-111;a:6:{s:4:\"path\";s:28:\"admin/locale/language/export\";s:5:\"title\";s:7:\"esporta\";s:6:\"access\";b:1;s:6:\"weight\";i:20;s:4:\"type\";i:128;s:3:\"pid\";i:-106;}i:-112;a:6:{s:4:\"path\";s:28:\"admin/locale/language/delete\";s:5:\"title\";s:8:\"conferma\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:-106;}i:-114;a:5:{s:4:\"path\";s:15:\"admin/menu/list\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"19\";}i:-115;a:6:{s:4:\"path\";s:19:\"admin/menu/item/add\";s:5:\"title\";s:18:\"aggiungi voce menu\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-116;a:6:{s:4:\"path\";s:20:\"admin/menu/item/edit\";s:5:\"title\";s:19:\"modifica voce menu\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-117;a:6:{s:4:\"path\";s:21:\"admin/menu/item/reset\";s:5:\"title\";s:20:\"ripristina voce menu\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-118;a:6:{s:4:\"path\";s:23:\"admin/menu/item/disable\";s:5:\"title\";s:19:\"disattiva voce menu\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-119;a:6:{s:4:\"path\";s:22:\"admin/menu/item/delete\";s:5:\"title\";s:17:\"elimina voce menu\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-120;a:6:{s:4:\"path\";s:19:\"admin/menu/menu/add\";s:5:\"title\";s:13:\"aggiungi menu\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-121;a:6:{s:4:\"path\";s:20:\"admin/menu/menu/edit\";s:5:\"title\";s:9:\"edit menu\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-122;a:6:{s:4:\"path\";s:22:\"admin/menu/menu/delete\";s:5:\"title\";s:11:\"delete menu\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"19\";}i:-126;a:6:{s:4:\"path\";s:15:\"admin/path/edit\";s:5:\"title\";s:14:\"modifica alias\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"37\";}i:-127;a:6:{s:4:\"path\";s:17:\"admin/path/delete\";s:5:\"title\";s:13:\"elimina alias\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"37\";}i:-128;a:5:{s:4:\"path\";s:15:\"admin/path/list\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"37\";}i:-129;a:6:{s:4:\"path\";s:14:\"admin/path/add\";s:5:\"title\";s:14:\"aggiungi alias\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"37\";}i:-132;a:5:{s:4:\"path\";s:26:\"admin/settings/profile/add\";s:5:\"title\";s:17:\"aggiungi un campo\";s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"39\";}i:-133;a:5:{s:4:\"path\";s:27:\"admin/settings/profile/edit\";s:5:\"title\";s:17:\"modifica il campo\";s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"39\";}i:-134;a:5:{s:4:\"path\";s:29:\"admin/settings/profile/delete\";s:5:\"title\";s:16:\"elimina il campo\";s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"39\";}i:-136;a:6:{s:4:\"path\";s:26:\"admin/settings/search/wipe\";s:5:\"title\";s:15:\"Cancella indice\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"23\";}i:-141;a:6:{s:4:\"path\";s:17:\"admin/logs/access\";s:5:\"title\";s:8:\"dettagli\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"15\";}i:-144;a:5:{s:4:\"path\";s:19:\"admin/taxonomy/list\";s:5:\"title\";s:6:\"elenco\";s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"20\";}i:-145;a:6:{s:4:\"path\";s:29:\"admin/taxonomy/add/vocabulary\";s:5:\"title\";s:23:\"aggiungi un vocabolario\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"20\";}i:-146;a:6:{s:4:\"path\";s:30:\"admin/taxonomy/edit/vocabulary\";s:5:\"title\";s:23:\"modifica il vocabolario\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"20\";}i:-147;a:6:{s:4:\"path\";s:24:\"admin/taxonomy/edit/term\";s:5:\"title\";s:19:\"modifica il termine\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"20\";}i:-148;a:6:{s:4:\"path\";s:13:\"taxonomy/term\";s:5:\"title\";s:18:\"termine tassonomia\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-149;a:6:{s:4:\"path\";s:21:\"taxonomy/autocomplete\";s:5:\"title\";s:28:\"autocompletamento tassonomia\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-150;a:5:{s:4:\"path\";s:9:\"upload/js\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-152;a:6:{s:4:\"path\";s:11:\"imce/browse\";s:5:\"title\";s:13:\"imce settings\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-153;a:6:{s:4:\"path\";s:13:\"pathauto/node\";s:5:\"title\";s:8:\"Pathauto\";s:6:\"access\";i:1;s:4:\"type\";s:9:\"MENU_HIDE\";s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-156;a:6:{s:4:\"path\";s:9:\"frontpage\";s:5:\"title\";N;s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:-157;a:6:{s:4:\"path\";s:14:\"popular/latest\";s:5:\"title\";s:22:\"recent popular content\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"62\";}i:-159;a:6:{s:4:\"path\";s:15:\"popular/alltime\";s:5:\"title\";s:24:\"all-time popular content\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"62\";}i:-160;a:6:{s:4:\"path\";s:18:\"admin/views/wizard\";s:6:\"access\";b:1;s:5:\"title\";s:12:\"theme wizard\";s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-162;a:6:{s:4:\"path\";s:16:\"admin/views/list\";s:5:\"title\";s:6:\"elenco\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";s:2:\"-1\";s:3:\"pid\";s:2:\"63\";}i:-163;a:6:{s:4:\"path\";s:15:\"admin/views/add\";s:5:\"title\";s:3:\"add\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-164;a:6:{s:4:\"path\";s:17:\"admin/views/clone\";s:5:\"title\";s:5:\"clone\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-165;a:6:{s:4:\"path\";s:16:\"admin/views/edit\";s:5:\"title\";s:9:\"edit view\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-166;a:6:{s:4:\"path\";s:18:\"admin/views/import\";s:5:\"title\";s:7:\"importa\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-167;a:6:{s:4:\"path\";s:18:\"admin/views/export\";s:5:\"title\";s:11:\"export view\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-168;a:6:{s:4:\"path\";s:18:\"admin/views/delete\";s:5:\"title\";s:9:\"edit view\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-169;a:5:{s:4:\"path\";s:18:\"admin/views/enable\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-170;a:5:{s:4:\"path\";s:19:\"admin/views/disable\";s:6:\"access\";b:1;s:4:\"type\";i:4;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"63\";}i:-172;a:6:{s:4:\"path\";s:31:\"admin/settings/nodewords/global\";s:5:\"title\";s:12:\"impostazioni\";s:6:\"access\";b:1;s:4:\"type\";i:640;s:6:\"weight\";i:-10;s:3:\"pid\";s:2:\"46\";}i:-173;a:6:{s:4:\"path\";s:34:\"admin/settings/nodewords/frontpage\";s:5:\"title\";s:10:\"front page\";s:6:\"access\";b:1;s:4:\"type\";i:128;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"46\";}i:2;a:7:{s:4:\"path\";s:0:\"\";s:5:\"title\";s:13:\"Primary links\";s:11:\"description\";s:0:\"\";s:3:\"pid\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"type\";s:3:\"115\";s:8:\"children\";a:11:{i:0;i:47;i:1;i:48;i:2;i:49;i:3;i:52;i:4;i:53;i:5;i:56;i:6;i:57;i:7;i:58;i:8;i:60;i:9;i:61;i:10;i:71;}}i:3;a:6:{s:4:\"path\";s:11:\"filter/tips\";s:5:\"title\";s:20:\"componi suggerimenti\";s:6:\"access\";b:1;s:4:\"type\";i:20;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:4;a:7:{s:4:\"path\";s:4:\"node\";s:5:\"title\";s:9:\"contenuto\";s:6:\"access\";b:1;s:4:\"type\";i:16;s:6:\"weight\";i:0;s:3:\"pid\";i:1;s:8:\"children\";a:1:{i:0;i:9;}}i:5;a:7:{s:4:\"path\";s:5:\"admin\";s:5:\"title\";s:10:\"amministra\";s:6:\"access\";b:1;s:6:\"weight\";i:9;s:4:\"type\";i:22;s:3:\"pid\";i:1;s:8:\"children\";a:16:{i:0;i:7;i:1;i:8;i:2;i:10;i:3;i:11;i:4;i:12;i:5;i:13;i:6;i:14;i:7;i:15;i:8;i:16;i:9;i:18;i:10;i:19;i:11;i:20;i:12;i:34;i:13;i:36;i:14;i:37;i:15;i:63;}}i:6;a:6:{s:4:\"path\";s:6:\"logout\";s:5:\"title\";s:4:\"esci\";s:6:\"access\";b:1;s:6:\"weight\";i:10;s:4:\"type\";i:22;s:3:\"pid\";i:1;}i:7;a:7:{s:4:\"path\";s:13:\"admin/filters\";s:5:\"title\";s:16:\"formati di input\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:3:{i:0;i:-2;i:1;i:-3;i:2;i:-4;}s:3:\"pid\";s:1:\"5\";}i:8;a:7:{s:4:\"path\";s:10:\"admin/node\";s:5:\"title\";s:9:\"contenuto\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:2:{i:0;i:-7;i:1;i:-8;}s:3:\"pid\";s:1:\"5\";}i:9;a:7:{s:4:\"path\";s:8:\"node/add\";s:5:\"title\";s:17:\"crea un contenuto\";s:6:\"access\";b:1;s:4:\"type\";i:28;s:6:\"weight\";i:1;s:3:\"pid\";s:1:\"4\";s:8:\"children\";a:2:{i:0;i:32;i:1;i:33;}}i:10;a:7:{s:4:\"path\";s:12:\"admin/themes\";s:5:\"title\";s:4:\"temi\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:2:{i:0;i:-17;i:1;i:-18;}s:3:\"pid\";s:1:\"5\";}i:11;a:7:{s:4:\"path\";s:14:\"admin/settings\";s:5:\"title\";s:12:\"impostazioni\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"5\";s:8:\"children\";a:16:{i:0;i:21;i:1;i:22;i:2;i:23;i:3;i:24;i:4;i:25;i:5;i:26;i:6;i:27;i:7;i:29;i:8;i:30;i:9;i:31;i:10;i:39;i:11;i:45;i:12;i:46;i:13;i:64;i:14;i:65;i:15;i:66;}}i:12;a:6:{s:4:\"path\";s:13:\"admin/modules\";s:5:\"title\";s:6:\"moduli\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"5\";}i:13;a:7:{s:4:\"path\";s:10:\"admin/user\";s:5:\"title\";s:6:\"utenti\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:3:{i:0;i:-41;i:1;i:-42;i:2;i:-54;}s:3:\"pid\";s:1:\"5\";}i:14;a:7:{s:4:\"path\";s:12:\"admin/access\";s:5:\"title\";s:20:\"controlli di accesso\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:3:{i:0;i:-45;i:1;i:-46;i:2;i:-48;}s:3:\"pid\";s:1:\"5\";}i:15;a:6:{s:4:\"path\";s:10:\"admin/logs\";s:5:\"title\";s:3:\"log\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:6:{i:0;i:-58;i:1;i:-141;i:2;i:41;i:3;i:42;i:4;i:43;i:5;i:44;}s:3:\"pid\";s:1:\"5\";}i:16;a:7:{s:4:\"path\";s:11:\"admin/block\";s:5:\"title\";s:7:\"blocchi\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:4:{i:0;i:-60;i:1;i:-61;i:2;i:-62;i:3;i:-63;}s:3:\"pid\";s:1:\"5\";}i:18;a:7:{s:4:\"path\";s:10:\"admin/help\";s:5:\"title\";s:5:\"aiuto\";s:6:\"access\";b:1;s:6:\"weight\";i:9;s:4:\"type\";i:22;s:8:\"children\";a:30:{i:0;i:-75;i:1;i:-76;i:2;i:-77;i:3;i:-78;i:4;i:-79;i:5;i:-80;i:6;i:-81;i:7;i:-82;i:8;i:-83;i:9;i:-84;i:10;i:-85;i:11;i:-86;i:12;i:-87;i:13;i:-88;i:14;i:-89;i:15;i:-90;i:16;i:-91;i:17;i:-92;i:18;i:-93;i:19;i:-94;i:20;i:-95;i:21;i:-96;i:22;i:-97;i:23;i:-98;i:24;i:-99;i:25;i:-100;i:26;i:-101;i:27;i:-102;i:28;i:-103;i:29;i:-104;}s:3:\"pid\";s:1:\"5\";}i:19;a:7:{s:4:\"path\";s:10:\"admin/menu\";s:5:\"title\";s:4:\"menu\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:9:{i:0;i:-114;i:1;i:-115;i:2;i:-116;i:3;i:-117;i:4;i:-118;i:5;i:-119;i:6;i:-120;i:7;i:-121;i:8;i:-122;}s:3:\"pid\";s:1:\"5\";}i:20;a:7:{s:4:\"path\";s:14:\"admin/taxonomy\";s:5:\"title\";s:9:\"categorie\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:4:{i:0;i:-144;i:1;i:-145;i:2;i:-146;i:3;i:-147;}s:3:\"pid\";s:1:\"5\";}i:21;a:6:{s:4:\"path\";s:19:\"admin/settings/node\";s:5:\"title\";s:9:\"contenuti\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:22;a:6:{s:4:\"path\";s:28:\"admin/settings/content-types\";s:5:\"title\";s:17:\"tipi di contenuto\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:23;a:6:{s:4:\"path\";s:21:\"admin/settings/search\";s:5:\"title\";s:5:\"cerca\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:1:{i:0;i:-136;}s:3:\"pid\";s:2:\"11\";}i:24;a:5:{s:4:\"path\";s:25:\"admin/settings/statistics\";s:5:\"title\";s:11:\"statistiche\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:25;a:5:{s:4:\"path\";s:21:\"admin/settings/upload\";s:5:\"title\";s:6:\"upload\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:26;a:5:{s:4:\"path\";s:30:\"admin/settings/frameprevention\";s:5:\"title\";s:15:\"frameprevention\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:27;a:5:{s:4:\"path\";s:19:\"admin/settings/imce\";s:5:\"title\";s:4:\"imce\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:29;a:5:{s:4:\"path\";s:23:\"admin/settings/pathauto\";s:5:\"title\";s:8:\"pathauto\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:30;a:5:{s:4:\"path\";s:19:\"admin/settings/user\";s:5:\"title\";s:6:\"utenti\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:31;a:5:{s:4:\"path\";s:19:\"admin/settings/menu\";s:5:\"title\";s:4:\"menu\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:32;a:6:{s:4:\"path\";s:13:\"node/add/page\";s:5:\"title\";s:6:\"pagina\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"9\";}i:33;a:6:{s:4:\"path\";s:14:\"node/add/story\";s:5:\"title\";s:6:\"storia\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:1:\"9\";}i:34;a:7:{s:4:\"path\";s:13:\"admin/contact\";s:5:\"title\";s:18:\"modulo di contatto\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:2:{i:0;i:-67;i:1;i:-72;}s:3:\"pid\";s:1:\"5\";}i:35;a:6:{s:4:\"path\";s:7:\"contact\";s:5:\"title\";s:8:\"contatto\";s:6:\"access\";b:1;s:4:\"type\";i:20;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:36;a:7:{s:4:\"path\";s:12:\"admin/locale\";s:5:\"title\";s:6:\"lingua\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:2:{i:0;i:-106;i:1;i:-107;}s:3:\"pid\";s:1:\"5\";}i:37;a:7:{s:4:\"path\";s:10:\"admin/path\";s:5:\"title\";s:14:\"alias dell\'url\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:4:{i:0;i:-126;i:1;i:-127;i:2;i:-128;i:3;i:-129;}s:3:\"pid\";s:1:\"5\";}i:38;a:6:{s:4:\"path\";s:7:\"profile\";s:5:\"title\";s:13:\"elenco utenti\";s:6:\"access\";b:1;s:4:\"type\";i:20;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:39;a:6:{s:4:\"path\";s:22:\"admin/settings/profile\";s:5:\"title\";s:7:\"profili\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:3:{i:0;i:-132;i:1;i:-133;i:2;i:-134;}s:3:\"pid\";s:2:\"11\";}i:40;a:6:{s:4:\"path\";s:6:\"search\";s:5:\"title\";s:5:\"cerca\";s:6:\"access\";b:1;s:4:\"type\";i:20;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:41;a:6:{s:4:\"path\";s:15:\"admin/logs/hits\";s:5:\"title\";s:14:\"visite recenti\";s:6:\"access\";b:1;s:6:\"weight\";i:3;s:4:\"type\";i:22;s:3:\"pid\";s:2:\"15\";}i:42;a:6:{s:4:\"path\";s:16:\"admin/logs/pages\";s:5:\"title\";s:17:\"pagine più viste\";s:6:\"access\";b:1;s:6:\"weight\";i:1;s:4:\"type\";i:22;s:3:\"pid\";s:2:\"15\";}i:43;a:6:{s:4:\"path\";s:19:\"admin/logs/visitors\";s:5:\"title\";s:17:\"livello più alto\";s:6:\"access\";b:1;s:6:\"weight\";i:2;s:4:\"type\";i:22;s:3:\"pid\";s:2:\"15\";}i:44;a:6:{s:4:\"path\";s:20:\"admin/logs/referrers\";s:5:\"title\";s:8:\"referrer\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"15\";}i:45;a:6:{s:4:\"path\";s:22:\"admin/settings/tinymce\";s:5:\"title\";s:7:\"tinymce\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:46;a:7:{s:4:\"path\";s:24:\"admin/settings/nodewords\";s:5:\"title\";s:9:\"meta tags\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:2:{i:0;i:-172;i:1;i:-173;}s:3:\"pid\";s:2:\"11\";}i:47;a:6:{s:4:\"path\";s:6:\"node/1\";s:5:\"title\";s:7:\"Azienda\";s:11:\"description\";s:9:\"Chi siamo\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:2:\"-9\";s:4:\"type\";s:3:\"118\";}i:48;a:6:{s:4:\"path\";s:6:\"node/2\";s:5:\"title\";s:7:\"Servizi\";s:11:\"description\";s:16:\"I nostri servizi\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:2:\"-7\";s:4:\"type\";s:3:\"118\";}i:49;a:6:{s:4:\"path\";s:6:\"node/3\";s:5:\"title\";s:7:\"Clienti\";s:11:\"description\";s:16:\"I nostri clienti\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:2:\"-5\";s:4:\"type\";s:3:\"118\";}i:52;a:7:{s:4:\"path\";s:14:\"hrcapital_news\";s:5:\"title\";s:4:\"News\";s:6:\"access\";b:1;s:4:\"type\";s:3:\"118\";s:6:\"weight\";s:2:\"-1\";s:11:\"description\";s:14:\"Le nostre news\";s:3:\"pid\";s:1:\"2\";}i:53;a:6:{s:4:\"path\";s:6:\"node/7\";s:5:\"title\";s:4:\"Link\";s:11:\"description\";s:16:\"Altri siti utili\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:3:\"118\";}i:56;a:6:{s:4:\"path\";s:7:\"node/11\";s:5:\"title\";s:8:\"Contatti\";s:11:\"description\";s:27:\"Per contattarci agevolmente\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:1:\"5\";s:4:\"type\";s:3:\"118\";}i:57;a:6:{s:4:\"path\";s:6:\"node/9\";s:5:\"title\";s:5:\"Press\";s:11:\"description\";s:19:\"Cosa dice la stampa\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:2:\"-3\";s:4:\"type\";s:3:\"118\";}i:58;a:6:{s:4:\"path\";s:6:\"node/4\";s:5:\"title\";s:10:\"Dove siamo\";s:11:\"description\";s:67:\"La mappa e i riferimenti per arrivare velocemente nei nostri uffici\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:1:\"3\";s:4:\"type\";s:3:\"118\";}i:60;a:6:{s:4:\"path\";s:7:\"node/12\";s:5:\"title\";s:14:\"Lavora con noi\";s:11:\"description\";s:24:\"Collabora con HR Capital\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:1:\"5\";s:4:\"type\";s:3:\"118\";}i:61;a:6:{s:4:\"path\";s:7:\"node/14\";s:5:\"title\";s:7:\"Privacy\";s:11:\"description\";s:35:\"La nostra informativa sulla privacy\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:1:\"9\";s:4:\"type\";s:3:\"118\";}i:62;a:8:{s:4:\"path\";s:7:\"popular\";s:5:\"title\";s:22:\"recent popular content\";s:6:\"access\";b:1;s:4:\"type\";s:2:\"48\";s:6:\"weight\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:3:\"pid\";s:1:\"1\";s:8:\"children\";a:2:{i:0;i:-157;i:1;i:-159;}}i:63;a:7:{s:4:\"path\";s:11:\"admin/views\";s:5:\"title\";s:5:\"views\";s:6:\"access\";b:1;s:4:\"type\";i:22;s:6:\"weight\";i:0;s:8:\"children\";a:10:{i:0;i:-160;i:1;i:-162;i:2;i:-163;i:3;i:-164;i:4;i:-165;i:5;i:-166;i:6;i:-167;i:7;i:-168;i:8;i:-169;i:9;i:-170;}s:3:\"pid\";s:1:\"5\";}i:64;a:5:{s:4:\"path\";s:19:\"admin/settings/i18n\";s:5:\"title\";s:4:\"i18n\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:65;a:5:{s:4:\"path\";s:26:\"admin/settings/translation\";s:5:\"title\";s:11:\"translation\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:66;a:5:{s:4:\"path\";s:25:\"admin/settings/front_page\";s:5:\"title\";s:10:\"front_page\";s:4:\"type\";i:22;s:6:\"weight\";i:0;s:3:\"pid\";s:2:\"11\";}i:67;a:6:{s:4:\"path\";s:10:\"front_page\";s:5:\"title\";s:0:\"\";s:6:\"access\";b:1;s:4:\"type\";i:20;s:6:\"weight\";i:0;s:3:\"pid\";i:1;}i:68;a:7:{s:4:\"path\";s:0:\"\";s:5:\"title\";s:16:\"Primary_links_en\";s:11:\"description\";s:0:\"\";s:3:\"pid\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"type\";s:3:\"115\";s:8:\"children\";a:2:{i:0;i:69;i:1;i:70;}}i:69;a:6:{s:4:\"path\";s:7:\"node/17\";s:5:\"title\";s:7:\"Factory\";s:11:\"description\";s:0:\"\";s:3:\"pid\";s:2:\"68\";s:6:\"weight\";s:2:\"-9\";s:4:\"type\";s:3:\"118\";}i:70;a:6:{s:4:\"path\";s:7:\"node/18\";s:5:\"title\";s:8:\"Services\";s:11:\"description\";s:0:\"\";s:3:\"pid\";s:2:\"68\";s:6:\"weight\";s:2:\"-7\";s:4:\"type\";s:3:\"118\";}i:71;a:6:{s:4:\"path\";s:7:\"node/19\";s:5:\"title\";s:24:\"Network e corrispondenti\";s:11:\"description\";s:24:\"Network e corrispondenti\";s:3:\"pid\";s:1:\"2\";s:6:\"weight\";s:2:\"-4\";s:4:\"type\";s:3:\"118\";}}s:9:\"callbacks\";a:151:{s:13:\"admin/filters\";a:1:{s:8:\"callback\";s:21:\"filter_admin_overview\";}s:18:\"admin/filters/list\";a:1:{s:8:\"callback\";s:21:\"filter_admin_overview\";}s:17:\"admin/filters/add\";a:1:{s:8:\"callback\";s:24:\"filter_admin_format_form\";}s:20:\"admin/filters/delete\";a:1:{s:8:\"callback\";s:19:\"filter_admin_delete\";}s:11:\"filter/tips\";a:1:{s:8:\"callback\";s:16:\"filter_tips_long\";}s:10:\"admin/node\";a:1:{s:8:\"callback\";s:16:\"node_admin_nodes\";}s:17:\"admin/node/search\";a:1:{s:8:\"callback\";s:17:\"node_admin_search\";}s:19:\"admin/settings/node\";a:1:{s:8:\"callback\";s:14:\"node_configure\";}s:28:\"admin/settings/content-types\";a:1:{s:8:\"callback\";s:20:\"node_types_configure\";}s:4:\"node\";a:1:{s:8:\"callback\";s:9:\"node_page\";}s:8:\"node/add\";a:1:{s:8:\"callback\";s:9:\"node_page\";}s:7:\"rss.xml\";a:1:{s:8:\"callback\";s:9:\"node_feed\";}s:12:\"system/files\";a:1:{s:8:\"callback\";s:13:\"file_download\";}s:5:\"admin\";a:1:{s:8:\"callback\";s:17:\"watchdog_overview\";}s:12:\"admin/themes\";a:1:{s:8:\"callback\";s:13:\"system_themes\";}s:19:\"admin/themes/select\";a:1:{s:8:\"callback\";s:13:\"system_themes\";}s:21:\"admin/themes/settings\";a:1:{s:8:\"callback\";s:21:\"system_theme_settings\";}s:28:\"admin/themes/settings/global\";a:1:{s:8:\"callback\";s:21:\"system_theme_settings\";}s:31:\"admin/themes/settings/HRCapital\";a:2:{s:8:\"callback\";s:21:\"system_theme_settings\";s:18:\"callback arguments\";a:1:{i:0;s:9:\"HRCapital\";}}s:32:\"admin/themes/settings/bluemarine\";a:2:{s:8:\"callback\";s:21:\"system_theme_settings\";s:18:\"callback arguments\";a:1:{i:0;s:10:\"bluemarine\";}}s:14:\"admin/settings\";a:1:{s:8:\"callback\";s:20:\"system_site_settings\";}s:13:\"admin/modules\";a:1:{s:8:\"callback\";s:14:\"system_modules\";}s:4:\"user\";a:1:{s:8:\"callback\";s:10:\"user_login\";}s:17:\"user/autocomplete\";a:1:{s:8:\"callback\";s:17:\"user_autocomplete\";}s:10:\"user/login\";a:1:{s:8:\"callback\";s:10:\"user_login\";}s:13:\"user/register\";a:1:{s:8:\"callback\";s:13:\"user_register\";}s:13:\"user/password\";a:1:{s:8:\"callback\";s:9:\"user_pass\";}s:10:\"user/reset\";a:1:{s:8:\"callback\";s:15:\"user_pass_reset\";}s:9:\"user/help\";a:1:{s:8:\"callback\";s:14:\"user_help_page\";}s:10:\"admin/user\";a:1:{s:8:\"callback\";s:10:\"user_admin\";}s:17:\"admin/user/create\";a:1:{s:8:\"callback\";s:10:\"user_admin\";}s:19:\"admin/settings/user\";a:1:{s:8:\"callback\";s:14:\"user_configure\";}s:12:\"admin/access\";a:1:{s:8:\"callback\";s:15:\"user_admin_perm\";}s:24:\"admin/access/permissions\";a:1:{s:8:\"callback\";s:15:\"user_admin_perm\";}s:18:\"admin/access/roles\";a:1:{s:8:\"callback\";s:15:\"user_admin_role\";}s:23:\"admin/access/roles/edit\";a:1:{s:8:\"callback\";s:15:\"user_admin_role\";}s:18:\"admin/access/rules\";a:1:{s:8:\"callback\";s:17:\"user_admin_access\";}s:22:\"admin/access/rules/add\";a:1:{s:8:\"callback\";s:21:\"user_admin_access_add\";}s:24:\"admin/access/rules/check\";a:1:{s:8:\"callback\";s:23:\"user_admin_access_check\";}s:23:\"admin/access/rules/edit\";a:1:{s:8:\"callback\";s:22:\"user_admin_access_edit\";}s:25:\"admin/access/rules/delete\";a:1:{s:8:\"callback\";s:24:\"user_admin_access_delete\";}s:17:\"admin/user/search\";a:1:{s:8:\"callback\";s:10:\"user_admin\";}s:6:\"user/1\";a:2:{s:8:\"callback\";s:9:\"user_view\";s:18:\"callback arguments\";a:1:{i:0;s:8:\"settings\";}}s:6:\"logout\";a:1:{s:8:\"callback\";s:11:\"user_logout\";}s:10:\"admin/logs\";a:1:{s:8:\"callback\";s:17:\"watchdog_overview\";}s:16:\"admin/logs/event\";a:1:{s:8:\"callback\";s:14:\"watchdog_event\";}s:11:\"admin/block\";a:1:{s:8:\"callback\";s:19:\"block_admin_display\";}s:21:\"admin/block/configure\";a:1:{s:8:\"callback\";s:21:\"block_admin_configure\";}s:18:\"admin/block/delete\";a:1:{s:8:\"callback\";s:16:\"block_box_delete\";}s:15:\"admin/block/add\";a:1:{s:8:\"callback\";s:13:\"block_box_add\";}s:13:\"admin/contact\";a:1:{s:8:\"callback\";s:24:\"contact_admin_categories\";}s:22:\"admin/contact/category\";a:1:{s:8:\"callback\";s:24:\"contact_admin_categories\";}s:27:\"admin/contact/category/list\";a:1:{s:8:\"callback\";s:24:\"contact_admin_categories\";}s:26:\"admin/contact/category/add\";a:1:{s:8:\"callback\";s:18:\"contact_admin_edit\";}s:27:\"admin/contact/category/edit\";a:1:{s:8:\"callback\";s:18:\"contact_admin_edit\";}s:29:\"admin/contact/category/delete\";a:1:{s:8:\"callback\";s:20:\"contact_admin_delete\";}s:22:\"admin/contact/settings\";a:1:{s:8:\"callback\";s:22:\"contact_admin_settings\";}s:7:\"contact\";a:1:{s:8:\"callback\";s:17:\"contact_mail_page\";}s:10:\"admin/help\";a:1:{s:8:\"callback\";s:9:\"help_main\";}s:16:\"admin/help/block\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:18:\"admin/help/contact\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:17:\"admin/help/filter\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:26:\"admin/help/frameprevention\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:21:\"admin/help/front_page\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/help\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/i18n\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:19:\"admin/help/i18nmenu\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/imce\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:17:\"admin/help/locale\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/menu\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/node\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:20:\"admin/help/nodewords\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/page\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/path\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:19:\"admin/help/pathauto\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:18:\"admin/help/profile\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:17:\"admin/help/search\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:21:\"admin/help/statistics\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:16:\"admin/help/story\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:17:\"admin/help/system\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:19:\"admin/help/taxonomy\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:18:\"admin/help/tinymce\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:22:\"admin/help/translation\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:17:\"admin/help/upload\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:15:\"admin/help/user\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:16:\"admin/help/views\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:29:\"admin/help/views_theme_wizard\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:19:\"admin/help/views_ui\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:19:\"admin/help/watchdog\";a:1:{s:8:\"callback\";s:9:\"help_page\";}s:12:\"admin/locale\";a:1:{s:8:\"callback\";s:19:\"locale_admin_manage\";}s:26:\"admin/locale/string/search\";a:1:{s:8:\"callback\";s:20:\"locale_string_search\";}s:30:\"admin/locale/language/overview\";a:1:{s:8:\"callback\";s:19:\"locale_admin_manage\";}s:25:\"admin/locale/language/add\";a:1:{s:8:\"callback\";s:23:\"locale_admin_manage_add\";}s:28:\"admin/locale/language/import\";a:1:{s:8:\"callback\";s:19:\"locale_admin_import\";}s:28:\"admin/locale/language/export\";a:1:{s:8:\"callback\";s:19:\"locale_admin_export\";}s:28:\"admin/locale/language/delete\";a:1:{s:8:\"callback\";s:31:\"locale_admin_manage_delete_form\";}s:10:\"admin/menu\";a:1:{s:8:\"callback\";s:13:\"menu_overview\";}s:19:\"admin/menu/item/add\";a:1:{s:8:\"callback\";s:19:\"menu_edit_item_form\";}s:20:\"admin/menu/item/edit\";a:1:{s:8:\"callback\";s:19:\"menu_edit_item_form\";}s:21:\"admin/menu/item/reset\";a:1:{s:8:\"callback\";s:15:\"menu_reset_item\";}s:23:\"admin/menu/item/disable\";a:1:{s:8:\"callback\";s:17:\"menu_disable_item\";}s:22:\"admin/menu/item/delete\";a:1:{s:8:\"callback\";s:21:\"menu_item_delete_form\";}s:19:\"admin/menu/menu/add\";a:1:{s:8:\"callback\";s:19:\"menu_edit_menu_form\";}s:20:\"admin/menu/menu/edit\";a:1:{s:8:\"callback\";s:19:\"menu_edit_menu_form\";}s:22:\"admin/menu/menu/delete\";a:1:{s:8:\"callback\";s:21:\"menu_item_delete_form\";}s:19:\"admin/settings/menu\";a:1:{s:8:\"callback\";s:14:\"menu_configure\";}s:10:\"admin/path\";a:1:{s:8:\"callback\";s:10:\"path_admin\";}s:15:\"admin/path/edit\";a:1:{s:8:\"callback\";s:15:\"path_admin_edit\";}s:17:\"admin/path/delete\";a:1:{s:8:\"callback\";s:25:\"path_admin_delete_confirm\";}s:14:\"admin/path/add\";a:1:{s:8:\"callback\";s:15:\"path_admin_edit\";}s:7:\"profile\";a:1:{s:8:\"callback\";s:14:\"profile_browse\";}s:22:\"admin/settings/profile\";a:1:{s:8:\"callback\";s:22:\"profile_admin_overview\";}s:26:\"admin/settings/profile/add\";a:1:{s:8:\"callback\";s:18:\"profile_field_form\";}s:27:\"admin/settings/profile/edit\";a:1:{s:8:\"callback\";s:18:\"profile_field_form\";}s:29:\"admin/settings/profile/delete\";a:1:{s:8:\"callback\";s:20:\"profile_field_delete\";}s:6:\"search\";a:1:{s:8:\"callback\";s:11:\"search_view\";}s:26:\"admin/settings/search/wipe\";a:1:{s:8:\"callback\";s:19:\"search_wipe_confirm\";}s:15:\"admin/logs/hits\";a:1:{s:8:\"callback\";s:22:\"statistics_recent_hits\";}s:16:\"admin/logs/pages\";a:1:{s:8:\"callback\";s:20:\"statistics_top_pages\";}s:19:\"admin/logs/visitors\";a:1:{s:8:\"callback\";s:23:\"statistics_top_visitors\";}s:20:\"admin/logs/referrers\";a:1:{s:8:\"callback\";s:24:\"statistics_top_referrers\";}s:17:\"admin/logs/access\";a:1:{s:8:\"callback\";s:21:\"statistics_access_log\";}s:14:\"admin/taxonomy\";a:1:{s:8:\"callback\";s:30:\"taxonomy_overview_vocabularies\";}s:29:\"admin/taxonomy/add/vocabulary\";a:1:{s:8:\"callback\";s:30:\"taxonomy_admin_vocabulary_edit\";}s:30:\"admin/taxonomy/edit/vocabulary\";a:1:{s:8:\"callback\";s:30:\"taxonomy_admin_vocabulary_edit\";}s:24:\"admin/taxonomy/edit/term\";a:1:{s:8:\"callback\";s:24:\"taxonomy_admin_term_edit\";}s:13:\"taxonomy/term\";a:1:{s:8:\"callback\";s:18:\"taxonomy_term_page\";}s:21:\"taxonomy/autocomplete\";a:1:{s:8:\"callback\";s:21:\"taxonomy_autocomplete\";}s:9:\"upload/js\";a:1:{s:8:\"callback\";s:9:\"upload_js\";}s:10:\"front_page\";a:1:{s:8:\"callback\";s:10:\"front_page\";}s:11:\"imce/browse\";a:1:{s:8:\"callback\";s:11:\"imce_browse\";}s:13:\"pathauto/node\";a:1:{s:8:\"callback\";s:18:\"node_pathauto_page\";}s:22:\"admin/settings/tinymce\";a:1:{s:8:\"callback\";s:13:\"tinymce_admin\";}s:14:\"hrcapital_news\";a:2:{s:8:\"callback\";s:15:\"views_view_page\";s:18:\"callback arguments\";a:1:{i:0;s:11:\"elenco_news\";}}s:9:\"frontpage\";a:2:{s:8:\"callback\";s:15:\"views_view_page\";s:18:\"callback arguments\";a:1:{i:0;s:9:\"frontpage\";}}s:14:\"popular/latest\";a:2:{s:8:\"callback\";s:15:\"views_view_page\";s:18:\"callback arguments\";a:1:{i:0;s:14:\"popular_recent\";}}s:7:\"popular\";a:2:{s:8:\"callback\";s:15:\"views_view_page\";s:18:\"callback arguments\";a:1:{i:0;s:14:\"popular_recent\";}}s:15:\"popular/alltime\";a:2:{s:8:\"callback\";s:15:\"views_view_page\";s:18:\"callback arguments\";a:1:{i:0;s:15:\"popular_alltime\";}}s:18:\"admin/views/wizard\";a:1:{s:8:\"callback\";s:23:\"views_theme_wizard_page\";}s:11:\"admin/views\";a:1:{s:8:\"callback\";s:19:\"views_ui_admin_page\";}s:16:\"admin/views/list\";a:1:{s:8:\"callback\";s:19:\"views_ui_admin_page\";}s:15:\"admin/views/add\";a:1:{s:8:\"callback\";s:23:\"views_ui_admin_add_page\";}s:17:\"admin/views/clone\";a:1:{s:8:\"callback\";s:25:\"views_ui_admin_clone_page\";}s:16:\"admin/views/edit\";a:1:{s:8:\"callback\";s:24:\"views_ui_admin_edit_page\";}s:18:\"admin/views/import\";a:1:{s:8:\"callback\";s:26:\"views_ui_admin_import_page\";}s:18:\"admin/views/export\";a:1:{s:8:\"callback\";s:26:\"views_ui_admin_export_page\";}s:18:\"admin/views/delete\";a:1:{s:8:\"callback\";s:26:\"views_ui_admin_delete_page\";}s:18:\"admin/views/enable\";a:1:{s:8:\"callback\";s:26:\"views_ui_admin_enable_page\";}s:19:\"admin/views/disable\";a:1:{s:8:\"callback\";s:27:\"views_ui_admin_disable_page\";}s:24:\"admin/settings/nodewords\";a:1:{s:8:\"callback\";s:23:\"nodewords_settings_page\";}s:34:\"admin/settings/nodewords/frontpage\";a:1:{s:8:\"callback\";s:33:\"nodewords_frontpage_settings_page\";}}s:7:\"visible\";a:59:{i:32;a:5:{s:5:\"title\";s:6:\"pagina\";s:4:\"path\";s:13:\"node/add/page\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:9;}i:33;a:5:{s:5:\"title\";s:6:\"storia\";s:4:\"path\";s:14:\"node/add/story\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:9;}i:9;a:5:{s:5:\"title\";s:17:\"crea un contenuto\";s:4:\"path\";s:8:\"node/add\";s:8:\"children\";a:2:{i:0;i:32;i:1;i:33;}s:4:\"type\";i:28;s:3:\"pid\";i:1;}i:-55;a:5:{s:5:\"title\";s:14:\"il mio profilo\";s:4:\"path\";s:6:\"user/1\";s:8:\"children\";a:0:{}s:4:\"type\";i:6;s:3:\"pid\";i:1;}i:37;a:5:{s:5:\"title\";s:14:\"alias dell\'url\";s:4:\"path\";s:10:\"admin/path\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:16;a:5:{s:5:\"title\";s:7:\"blocchi\";s:4:\"path\";s:11:\"admin/block\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:20;a:5:{s:5:\"title\";s:9:\"categorie\";s:4:\"path\";s:14:\"admin/taxonomy\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:8;a:5:{s:5:\"title\";s:9:\"contenuto\";s:4:\"path\";s:10:\"admin/node\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:14;a:5:{s:5:\"title\";s:20:\"controlli di accesso\";s:4:\"path\";s:12:\"admin/access\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:7;a:5:{s:5:\"title\";s:16:\"formati di input\";s:4:\"path\";s:13:\"admin/filters\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:23;a:5:{s:5:\"title\";s:5:\"cerca\";s:4:\"path\";s:21:\"admin/settings/search\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:21;a:5:{s:5:\"title\";s:9:\"contenuti\";s:4:\"path\";s:19:\"admin/settings/node\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:26;a:5:{s:5:\"title\";s:15:\"frameprevention\";s:4:\"path\";s:30:\"admin/settings/frameprevention\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:66;a:5:{s:5:\"title\";s:10:\"front_page\";s:4:\"path\";s:25:\"admin/settings/front_page\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:64;a:5:{s:5:\"title\";s:4:\"i18n\";s:4:\"path\";s:19:\"admin/settings/i18n\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:27;a:5:{s:5:\"title\";s:4:\"imce\";s:4:\"path\";s:19:\"admin/settings/imce\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:31;a:5:{s:5:\"title\";s:4:\"menu\";s:4:\"path\";s:19:\"admin/settings/menu\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:46;a:5:{s:5:\"title\";s:9:\"meta tags\";s:4:\"path\";s:24:\"admin/settings/nodewords\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:29;a:5:{s:5:\"title\";s:8:\"pathauto\";s:4:\"path\";s:23:\"admin/settings/pathauto\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:39;a:5:{s:5:\"title\";s:7:\"profili\";s:4:\"path\";s:22:\"admin/settings/profile\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:24;a:5:{s:5:\"title\";s:11:\"statistiche\";s:4:\"path\";s:25:\"admin/settings/statistics\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:45;a:5:{s:5:\"title\";s:7:\"tinymce\";s:4:\"path\";s:22:\"admin/settings/tinymce\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:22;a:5:{s:5:\"title\";s:17:\"tipi di contenuto\";s:4:\"path\";s:28:\"admin/settings/content-types\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:65;a:5:{s:5:\"title\";s:11:\"translation\";s:4:\"path\";s:26:\"admin/settings/translation\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:25;a:5:{s:5:\"title\";s:6:\"upload\";s:4:\"path\";s:21:\"admin/settings/upload\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:30;a:5:{s:5:\"title\";s:6:\"utenti\";s:4:\"path\";s:19:\"admin/settings/user\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:11;}i:11;a:5:{s:5:\"title\";s:12:\"impostazioni\";s:4:\"path\";s:14:\"admin/settings\";s:8:\"children\";a:16:{i:0;i:23;i:1;i:21;i:2;i:26;i:3;i:66;i:4;i:64;i:5;i:27;i:6;i:31;i:7;i:46;i:8;i:29;i:9;i:39;i:10;i:24;i:11;i:45;i:12;i:22;i:13;i:65;i:14;i:25;i:15;i:30;}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:36;a:5:{s:5:\"title\";s:6:\"lingua\";s:4:\"path\";s:12:\"admin/locale\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:44;a:5:{s:5:\"title\";s:8:\"referrer\";s:4:\"path\";s:20:\"admin/logs/referrers\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:15;}i:42;a:5:{s:5:\"title\";s:17:\"pagine più viste\";s:4:\"path\";s:16:\"admin/logs/pages\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:15;}i:43;a:5:{s:5:\"title\";s:17:\"livello più alto\";s:4:\"path\";s:19:\"admin/logs/visitors\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:15;}i:41;a:5:{s:5:\"title\";s:14:\"visite recenti\";s:4:\"path\";s:15:\"admin/logs/hits\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:15;}i:15;a:5:{s:5:\"title\";s:3:\"log\";s:4:\"path\";s:10:\"admin/logs\";s:8:\"children\";a:4:{i:0;i:44;i:1;i:42;i:2;i:43;i:3;i:41;}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:19;a:5:{s:5:\"title\";s:4:\"menu\";s:4:\"path\";s:10:\"admin/menu\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:12;a:5:{s:5:\"title\";s:6:\"moduli\";s:4:\"path\";s:13:\"admin/modules\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:34;a:5:{s:5:\"title\";s:18:\"modulo di contatto\";s:4:\"path\";s:13:\"admin/contact\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:10;a:5:{s:5:\"title\";s:4:\"temi\";s:4:\"path\";s:12:\"admin/themes\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:13;a:5:{s:5:\"title\";s:6:\"utenti\";s:4:\"path\";s:10:\"admin/user\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:63;a:5:{s:5:\"title\";s:5:\"views\";s:4:\"path\";s:11:\"admin/views\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:18;a:5:{s:5:\"title\";s:5:\"aiuto\";s:4:\"path\";s:10:\"admin/help\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:5;}i:5;a:5:{s:5:\"title\";s:10:\"amministra\";s:4:\"path\";s:5:\"admin\";s:8:\"children\";a:16:{i:0;i:37;i:1;i:16;i:2;i:20;i:3;i:8;i:4;i:14;i:5;i:7;i:6;i:11;i:7;i:36;i:8;i:15;i:9;i:19;i:10;i:12;i:11;i:34;i:12;i:10;i:13;i:13;i:14;i:63;i:15;i:18;}s:4:\"type\";i:22;s:3:\"pid\";i:1;}i:6;a:5:{s:5:\"title\";s:4:\"esci\";s:4:\"path\";s:6:\"logout\";s:8:\"children\";a:0:{}s:4:\"type\";i:22;s:3:\"pid\";i:1;}i:1;a:5:{s:5:\"title\";s:11:\"Navigazione\";s:4:\"path\";s:0:\"\";s:8:\"children\";a:4:{i:0;i:9;i:1;i:-55;i:2;i:5;i:3;i:6;}s:4:\"type\";i:3;s:3:\"pid\";i:0;}i:47;a:5:{s:5:\"title\";s:7:\"Azienda\";s:4:\"path\";s:6:\"node/1\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:48;a:5:{s:5:\"title\";s:7:\"Servizi\";s:4:\"path\";s:6:\"node/2\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:49;a:5:{s:5:\"title\";s:7:\"Clienti\";s:4:\"path\";s:6:\"node/3\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:71;a:5:{s:5:\"title\";s:24:\"Network e corrispondenti\";s:4:\"path\";s:7:\"node/19\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:57;a:5:{s:5:\"title\";s:5:\"Press\";s:4:\"path\";s:6:\"node/9\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:52;a:5:{s:5:\"title\";s:4:\"News\";s:4:\"path\";s:14:\"hrcapital_news\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:53;a:5:{s:5:\"title\";s:4:\"Link\";s:4:\"path\";s:6:\"node/7\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:58;a:5:{s:5:\"title\";s:10:\"Dove siamo\";s:4:\"path\";s:6:\"node/4\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:56;a:5:{s:5:\"title\";s:8:\"Contatti\";s:4:\"path\";s:7:\"node/11\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:60;a:5:{s:5:\"title\";s:14:\"Lavora con noi\";s:4:\"path\";s:7:\"node/12\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:61;a:5:{s:5:\"title\";s:7:\"Privacy\";s:4:\"path\";s:7:\"node/14\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:2;}i:2;a:5:{s:5:\"title\";s:13:\"Primary links\";s:4:\"path\";s:0:\"\";s:8:\"children\";a:11:{i:0;i:47;i:1;i:48;i:2;i:49;i:3;i:71;i:4;i:57;i:5;i:52;i:6;i:53;i:7;i:58;i:8;i:56;i:9;i:60;i:10;i:61;}s:4:\"type\";s:3:\"115\";s:3:\"pid\";i:0;}i:69;a:5:{s:5:\"title\";s:7:\"Factory\";s:4:\"path\";s:7:\"node/17\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:68;}i:70;a:5:{s:5:\"title\";s:8:\"Services\";s:4:\"path\";s:7:\"node/18\";s:8:\"children\";a:0:{}s:4:\"type\";s:3:\"118\";s:3:\"pid\";i:68;}i:68;a:5:{s:5:\"title\";s:16:\"Primary_links_en\";s:4:\"path\";s:0:\"\";s:8:\"children\";a:2:{i:0;i:69;i:1;i:70;}s:4:\"type\";s:3:\"115\";s:3:\"pid\";i:0;}i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"children\";a:3:{i:0;i:1;i:1;i:2;i:2;i:68;}s:4:\"type\";i:1;}}}',1158936863,1158850463,''),('variables:it','a:17:{s:9:\"site_name\";s:10:\"HR Capital\";s:11:\"site_slogan\";s:21:\"Corporate HR Services\";s:12:\"site_mission\";s:0:\"\";s:11:\"site_footer\";s:106:\"Galleria Passarella 2, 20122 Milano – Tel.\r\n+39.02.365.930.1 Fax +39.02.365.930.00 – info@hrcapital.it\";s:9:\"anonymous\";s:9:\"Anonymous\";s:9:\"blog_help\";s:0:\"\";s:10:\"story_help\";s:0:\"\";s:22:\"user_registration_help\";s:0:\"\";s:25:\"user_mail_welcome_subject\";s:0:\"\";s:22:\"user_mail_welcome_body\";s:0:\"\";s:26:\"user_mail_approval_subject\";s:0:\"\";s:23:\"user_mail_approval_body\";s:0:\"\";s:22:\"user_mail_pass_subject\";s:0:\"\";s:19:\"user_mail_pass_body\";s:0:\"\";s:14:\"theme_settings\";s:0:\"\";s:17:\"menu_primary_menu\";i:2;s:19:\"menu_secondary_menu\";s:1:\"0\";}',0,1158661027,''),('variables:en','a:17:{s:9:\"site_name\";s:10:\"HR Capital\";s:11:\"site_slogan\";s:21:\"Corporate HR Services\";s:12:\"site_mission\";s:0:\"\";s:11:\"site_footer\";s:105:\"Galleria Passarella 2, 20122 Milan – Tel.\r\n+39.02.365.930.1 Fax +39.02.365.930.00 – info@hrcapital.it\";s:9:\"anonymous\";s:9:\"Anonymous\";s:9:\"blog_help\";s:0:\"\";s:10:\"story_help\";s:0:\"\";s:22:\"user_registration_help\";s:0:\"\";s:25:\"user_mail_welcome_subject\";s:0:\"\";s:22:\"user_mail_welcome_body\";s:0:\"\";s:26:\"user_mail_approval_subject\";s:0:\"\";s:23:\"user_mail_approval_body\";s:0:\"\";s:22:\"user_mail_pass_subject\";s:0:\"\";s:19:\"user_mail_pass_body\";s:0:\"\";s:14:\"theme_settings\";s:0:\"\";s:17:\"menu_primary_menu\";s:2:\"68\";s:19:\"menu_secondary_menu\";s:1:\"0\";}',0,1158661083,''),('views_style_plugins:en','a:2:{s:5:\"title\";a:4:{s:4:\"list\";s:9:\"List View\";s:5:\"table\";s:10:\"Table View\";s:6:\"teaser\";s:11:\"Teaser List\";s:4:\"node\";s:10:\"Full Nodes\";}s:4:\"base\";a:4:{s:4:\"list\";a:5:{s:4:\"name\";s:9:\"List View\";s:5:\"theme\";s:15:\"views_view_list\";s:8:\"validate\";s:29:\"views_ui_plugin_validate_list\";s:12:\"needs_fields\";b:1;s:13:\"summary_theme\";s:13:\"views_summary\";}s:5:\"table\";a:6:{s:4:\"name\";s:10:\"Table View\";s:5:\"theme\";s:16:\"views_view_table\";s:8:\"validate\";s:30:\"views_ui_plugin_validate_table\";s:12:\"needs_fields\";b:1;s:18:\"needs_table_header\";b:1;s:13:\"summary_theme\";s:13:\"views_summary\";}s:6:\"teaser\";a:3:{s:4:\"name\";s:11:\"Teaser List\";s:5:\"theme\";s:18:\"views_view_teasers\";s:13:\"summary_theme\";s:13:\"views_summary\";}s:4:\"node\";a:3:{s:4:\"name\";s:10:\"Full Nodes\";s:5:\"theme\";s:16:\"views_view_nodes\";s:13:\"summary_theme\";s:13:\"views_summary\";}}}',0,1158605676,''),('views_tables:it','a:4:{s:6:\"tables\";a:12:{s:4:\"node\";a:5:{s:4:\"name\";s:4:\"node\";s:8:\"provider\";s:8:\"internal\";s:6:\"fields\";a:6:{s:5:\"title\";a:6:{s:4:\"name\";s:11:\"Node: Title\";s:7:\"handler\";a:2:{s:28:\"views_handler_field_nodelink\";s:6:\"Normal\";s:38:\"views_handler_field_nodelink_with_mark\";s:17:\"With updated mark\";}s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:7:\"As link\";s:6:\"nolink\";s:12:\"Without link\";}}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:7:\"changed\";}s:4:\"help\";s:30:\"Display the title of the node.\";}s:7:\"created\";a:5:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:34:\"Display the post time of the node.\";}s:7:\"changed\";a:5:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:43:\"Display the last time the node was updated.\";}s:4:\"type\";a:4:{s:4:\"name\";s:10:\"Node: Type\";s:7:\"handler\";s:22:\"views_handler_nodetype\";s:8:\"sortable\";b:1;s:4:\"help\";s:107:\"The Node Type field will display the type of a node (for example, \'blog entry\', \'forum post\', \'story\', etc)\";}s:4:\"link\";a:6:{s:4:\"name\";s:18:\"Node: Link to node\";s:7:\"handler\";s:29:\"views_handler_field_node_link\";s:8:\"sortable\";b:0;s:6:\"option\";s:6:\"string\";s:9:\"notafield\";s:4:\"true\";s:4:\"help\";s:153:\"This will create a link to the node; fill the option field with the text for the link. If you want titles that link to the node, use Node: Title instead.\";}s:4:\"body\";a:5:{s:4:\"name\";s:10:\"Node: Body\";s:7:\"handler\";a:2:{s:24:\"views_handler_field_body\";s:9:\"Full Text\";s:26:\"views_handler_field_teaser\";s:6:\"Teaser\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"nid\";}s:9:\"notafield\";b:1;s:4:\"help\";s:25:\"Display the Main Content.\";}}s:5:\"sorts\";a:6:{s:3:\"nid\";a:2:{s:4:\"name\";s:8:\"Node: ID\";s:4:\"help\";s:36:\"Sort by the database ID of the node.\";}s:7:\"created\";a:2:{s:4:\"name\";s:18:\"Node: Created Time\";s:4:\"help\";s:40:\"Sort by the submission date of the node.\";}s:7:\"changed\";a:2:{s:4:\"name\";s:23:\"Node: Last Updated Time\";s:4:\"help\";s:41:\"Sort by the last update date of the node.\";}s:6:\"sticky\";a:2:{s:4:\"name\";s:12:\"Node: Sticky\";s:4:\"help\";s:92:\"Sort by whether or not the node is sticky. Choose descending to put sticky nodes at the top.\";}s:5:\"title\";a:2:{s:4:\"name\";s:11:\"Node: Title\";s:4:\"help\";s:38:\"Sort by the node title, alphabetically\";}s:6:\"random\";a:3:{s:4:\"name\";s:6:\"Random\";s:7:\"handler\";s:25:\"views_handler_sort_random\";s:4:\"help\";s:129:\"By choosing random, nodes will be ordered completely randomly. This is a good way to choose X random nodes from a group of nodes.\";}}s:7:\"filters\";a:13:{s:6:\"status\";a:5:{s:4:\"name\";s:15:\"Node: Published\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:83:\"Filter by whether or not the node is published. This is recommended for most Views!\";}s:7:\"promote\";a:5:{s:4:\"name\";s:16:\"Node: Front Page\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:66:\"Filter by whether or not the node has been promoted to Front Page.\";}s:6:\"sticky\";a:5:{s:4:\"name\";s:12:\"Node: Sticky\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:48:\"Filter by whether or not the node is set sticky.\";}s:8:\"moderate\";a:5:{s:4:\"name\";s:15:\"Node: Moderated\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:47:\"Filter by whether or not the node is moderated.\";}s:4:\"type\";a:6:{s:4:\"name\";s:10:\"Node: Type\";s:4:\"list\";s:29:\"views_handler_filter_nodetype\";s:9:\"list-type\";s:4:\"list\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:47:\"Include or exclude nodes of the selected types.\";}s:4:\"anon\";a:6:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:25:\"Node: Author is Anonymous\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:29:\"views_handler_filter_useranon\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:73:\"This allows you to filter by whether or not the node author is anonymous.\";}s:10:\"currentuid\";a:6:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:28:\"Node: Author is Current User\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:100:\"This allows you to filter by whether or not the node was authored by the logged in user of the view.\";}s:17:\"currentuidtouched\";a:7:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:40:\"Node: Current User Authored or Commented\";s:8:\"operator\";a:1:{s:1:\"=\";s:10:\"touched by\";}s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:32:\"views_handler_filter_uid_touched\";s:4:\"help\";s:97:\"This allows you to filter by whether or not the logged in user authored or commented on the node.\";}s:8:\"distinct\";a:6:{s:4:\"name\";s:14:\"Node: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:29:\"views_handler_filter_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:160:\"This filter ensures that each node may only be listed once, even if it matches multiple criteria. Use this if multiple taxonomy matches return duplicated nodes.\";}s:5:\"title\";a:4:{s:4:\"name\";s:11:\"Node: Title\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:55:\"This filter allows nodes to be filtered by their title.\";}s:7:\"created\";a:6:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";s:6:\"string\";s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";}s:7:\"changed\";a:6:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";s:6:\"string\";s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";}s:4:\"body\";a:4:{s:4:\"name\";s:10:\"Node: Body\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_body\";s:4:\"help\";s:54:\"This filter allows nodes to be filtered by their body.\";}}}s:7:\"history\";a:4:{s:4:\"name\";s:7:\"history\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:3:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"nid\";}s:5:\"extra\";a:1:{s:3:\"uid\";s:18:\"***CURRENT_USER***\";}}s:7:\"filters\";a:1:{s:9:\"timestamp\";a:6:{s:4:\"name\";s:21:\"Node: Has New Content\";s:8:\"operator\";a:1:{i:0;s:3:\"Has\";}s:4:\"list\";a:1:{i:0;s:11:\"New Content\";}s:7:\"handler\";s:26:\"views_handler_filter_isnew\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:158:\"Including this filter will reduce the node set to nodes that have been updated or have new content since the user last read the node, as well as unread nodes.\";}}}s:5:\"users\";a:6:{s:4:\"name\";s:5:\"users\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"uid\";}}s:6:\"fields\";a:2:{s:4:\"name\";a:6:{s:4:\"name\";s:17:\"Node: Author Name\";s:7:\"handler\";s:28:\"views_handler_field_username\";s:8:\"sortable\";b:1;s:3:\"uid\";s:3:\"uid\";s:10:\"addlfields\";a:1:{i:0;s:3:\"uid\";}s:4:\"help\";s:41:\"This will display the author of the node.\";}s:3:\"uid\";a:4:{s:4:\"name\";s:20:\"User: Author Picture\";s:7:\"handler\";s:27:\"views_handler_field_userpic\";s:8:\"sortable\";b:0;s:4:\"help\";s:39:\"Display the user picture of the author.\";}}s:5:\"sorts\";a:1:{s:4:\"name\";a:2:{s:4:\"name\";s:17:\"Node: Author Name\";s:4:\"help\";s:49:\"This allows you to sort alphabetically by author.\";}}s:7:\"filters\";a:1:{s:3:\"uid\";a:5:{s:4:\"name\";s:17:\"Node: Author Name\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:4:\"list\";s:29:\"views_handler_filter_username\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:106:\"This allows you to filter by a particular user. You might not find this useful if you have a lot of users.\";}}}s:11:\"users_roles\";a:4:{s:4:\"name\";s:11:\"users_roles\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"uid\";}}s:7:\"filters\";a:1:{s:3:\"rid\";a:5:{s:4:\"name\";s:17:\"Role: Author Role\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:4:\"list\";s:25:\"views_handler_filter_role\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:69:\"Include the node only if the author is a member of the selected role.\";}}}s:16:\"profile_distinct\";a:6:{s:4:\"name\";s:5:\"users\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"uid\";}}s:6:\"fields\";a:1:{s:4:\"mail\";a:4:{s:4:\"name\";s:11:\"User: Email\";s:7:\"handler\";s:25:\"views_handler_field_email\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"This will display the email of the user.\";}}s:5:\"sorts\";a:2:{s:3:\"uid\";a:2:{s:4:\"name\";s:9:\"User: Uid\";s:4:\"help\";s:35:\"This allows you to sort by user id.\";}s:4:\"mail\";a:2:{s:4:\"name\";s:11:\"User: Email\";s:4:\"help\";s:48:\"This allows you to sort alphabetically by email.\";}}s:7:\"filters\";a:2:{s:8:\"distinct\";a:6:{s:4:\"name\";s:17:\"Profile: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:37:\"views_handler_filter_profile_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:105:\"This filter ensures that each user profile may only be listed once, even if it matches multiple criteria.\";}s:4:\"mail\";a:4:{s:4:\"name\";s:11:\"User: Email\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:56:\"This allows you to filter by a particular email address.\";}}}s:12:\"node_counter\";a:5:{s:4:\"name\";s:12:\"node_counter\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"nid\";}}s:6:\"fields\";a:3:{s:10:\"totalcount\";a:3:{s:4:\"name\";s:16:\"Node: Total Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:59:\"This will display the number of times a node has been read.\";}s:8:\"daycount\";a:3:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:68:\"This will display the number of times a node has been read recently.\";}s:9:\"timestamp\";a:5:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:40:\"Display the time the node was last read.\";}}s:5:\"sorts\";a:3:{s:10:\"totalcount\";a:2:{s:4:\"name\";s:16:\"Node: Total Hits\";s:4:\"help\";s:68:\"This allows you to sort by the number of times a node has been read.\";}s:8:\"daycount\";a:2:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:4:\"help\";s:77:\"This allows you to sort by the number of times a node has been read recently.\";}s:9:\"timestamp\";a:2:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:4:\"help\";s:57:\"This allows you to sort by the time a node was last read.\";}}}s:9:\"term_node\";a:5:{s:4:\"name\";s:9:\"term_node\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"nid\";}}s:6:\"fields\";a:1:{s:4:\"name\";a:6:{s:4:\"name\";s:19:\"Taxonomy: All Terms\";s:4:\"help\";s:162:\"This will display all taxonomy terms associated with the node. Note that this causes one extra query per row displayed, and might have a minor performance impact.\";s:8:\"sortable\";b:0;s:7:\"handler\";s:28:\"views_handler_field_allterms\";s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:8:\"As links\";s:6:\"nolink\";s:13:\"Without links\";}}s:9:\"notafield\";b:1;}}s:7:\"filters\";a:1:{s:3:\"tid\";a:7:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:4:\"help\";s:124:\"When filtering by taxonomy term you may specify the \"depth\" as an option. Please see the taxonomy help for more information.\";s:4:\"list\";s:24:\"views_handler_filter_tid\";s:6:\"option\";s:6:\"string\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:31:\"views_handler_filter_tid_custom\";s:10:\"value-type\";s:5:\"array\";}}}s:14:\"term_hierarchy\";a:3:{s:4:\"name\";s:14:\"term_hierarchy\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:9:\"term_node\";s:5:\"field\";s:3:\"tid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"tid\";}}}s:9:\"term_data\";a:6:{s:4:\"name\";s:9:\"term_data\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:9:\"term_node\";s:5:\"field\";s:3:\"tid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"tid\";}}s:6:\"fields\";a:2:{s:4:\"name\";a:5:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:8:\"sortable\";b:1;s:7:\"handler\";a:2:{s:23:\"views_handler_field_tid\";s:7:\"No link\";s:28:\"views_handler_field_tid_link\";s:9:\"With link\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"tid\";}s:4:\"help\";s:170:\"This will display one of the taxonomy terms associated with the node; if taxonomy terms were used to filter or sort, it will be the one that triggered the sort or filter.\";}s:11:\"description\";a:3:{s:4:\"name\";s:26:\"Taxonomy: Term Description\";s:8:\"sortable\";b:0;s:4:\"help\";s:66:\"This will display the description associated with a taxonomy term.\";}}s:5:\"sorts\";a:1:{s:6:\"weight\";a:3:{s:4:\"name\";s:19:\"Taxonomy: Term Name\";s:5:\"field\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}s:4:\"help\";s:92:\"This will sort nodes by taxonomy weight and name, as defined in the category administration.\";}}s:7:\"filters\";a:1:{s:3:\"vid\";a:6:{s:4:\"name\";s:25:\"Taxonomy: Vocabulary Name\";s:4:\"list\";s:24:\"views_handler_filter_vid\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:24:\"views_handler_filter_voc\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:87:\"This will filter a view to only nodes that contain a term in the associated vocabulary.\";}}}s:10:\"vocabulary\";a:3:{s:4:\"name\";s:10:\"vocabulary\";s:8:\"provider\";s:8:\"internal\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:9:\"term_data\";s:5:\"field\";s:3:\"vid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"vid\";}}}s:14:\"file_revisions\";a:5:{s:4:\"name\";s:14:\"file_revisions\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"vid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"vid\";}}s:6:\"fields\";a:1:{s:3:\"fid\";a:3:{s:4:\"name\";s:8:\"File: Id\";s:8:\"sortable\";b:1;s:4:\"help\";s:34:\"File Id which represents the file.\";}}s:5:\"sorts\";a:1:{s:3:\"fid\";a:1:{s:4:\"name\";s:15:\"Sort by File Id\";}}s:7:\"filters\";a:2:{s:3:\"fid\";a:6:{s:4:\"name\";s:24:\"File: Has file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Exists\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:35:\"views_handler_file_filter_fid_exist\";s:4:\"help\";s:46:\"Filter weather the node has files for download\";}s:4:\"list\";a:5:{s:4:\"name\";s:30:\"File: Listed in file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:46:\"Filter weather the file is listed in downloads\";}}}s:5:\"files\";a:5:{s:4:\"name\";s:5:\"files\";s:4:\"join\";a:2:{s:4:\"left\";a:2:{s:5:\"table\";s:14:\"file_revisions\";s:5:\"field\";s:3:\"fid\";}s:5:\"right\";a:1:{s:5:\"field\";s:3:\"fid\";}}s:6:\"fields\";a:4:{s:8:\"filename\";a:6:{s:4:\"name\";s:10:\"File: Name\";s:7:\"handler\";a:2:{s:27:\"views_handler_file_filename\";s:5:\"Plain\";s:36:\"views_handler_file_filename_download\";s:18:\"With download link\";}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:8:\"filepath\";}s:6:\"option\";s:6:\"string\";s:4:\"help\";s:17:\"Display file name\";}s:8:\"filepath\";a:3:{s:4:\"name\";s:10:\"File: Path\";s:8:\"sortable\";b:0;s:4:\"help\";s:21:\"Display Path to File.\";}s:8:\"filesize\";a:4:{s:4:\"name\";s:10:\"File: Size\";s:7:\"handler\";s:23:\"views_handler_file_size\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"Display the size of the associated file.\";}s:8:\"filemime\";a:3:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"sortable\";b:1;s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";}}s:7:\"filters\";a:3:{s:8:\"filename\";a:4:{s:4:\"name\";s:14:\"File: Filename\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:70:\"This filter allows nodes to be filtered by the name of attached files.\";}s:8:\"filesize\";a:3:{s:4:\"name\";s:10:\"File: Size\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by file size.\";}s:8:\"filemime\";a:4:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";}}s:5:\"sorts\";a:3:{s:8:\"filename\";a:2:{s:4:\"name\";s:22:\"File: Sort by Filename\";s:4:\"help\";s:17:\"Sort by file name\";}s:8:\"filesize\";a:2:{s:4:\"name\";s:15:\"File: File size\";s:4:\"help\";s:18:\"Sort by file size.\";}s:8:\"filemime\";a:2:{s:4:\"name\";s:15:\"File: Mime type\";s:4:\"help\";s:18:\"Sort by mime type.\";}}}}s:7:\"filters\";a:2:{s:6:\"titles\";a:25:{s:11:\"node.status\";s:15:\"Node: Published\";s:12:\"node.promote\";s:16:\"Node: Front Page\";s:11:\"node.sticky\";s:12:\"Node: Sticky\";s:13:\"node.moderate\";s:15:\"Node: Moderated\";s:9:\"node.type\";s:10:\"Node: Type\";s:9:\"node.anon\";s:25:\"Node: Author is Anonymous\";s:15:\"node.currentuid\";s:28:\"Node: Author is Current User\";s:22:\"node.currentuidtouched\";s:40:\"Node: Current User Authored or Commented\";s:13:\"node.distinct\";s:14:\"Node: Distinct\";s:10:\"node.title\";s:11:\"Node: Title\";s:12:\"node.created\";s:18:\"Node: Created Time\";s:12:\"node.changed\";s:18:\"Node: Updated Time\";s:9:\"node.body\";s:10:\"Node: Body\";s:17:\"history.timestamp\";s:21:\"Node: Has New Content\";s:9:\"users.uid\";s:17:\"Node: Author Name\";s:15:\"users_roles.rid\";s:17:\"Role: Author Role\";s:25:\"profile_distinct.distinct\";s:17:\"Profile: Distinct\";s:21:\"profile_distinct.mail\";s:11:\"User: Email\";s:13:\"term_node.tid\";s:14:\"Taxonomy: Term\";s:13:\"term_data.vid\";s:25:\"Taxonomy: Vocabulary Name\";s:18:\"file_revisions.fid\";s:24:\"File: Has file downloads\";s:19:\"file_revisions.list\";s:30:\"File: Listed in file downloads\";s:14:\"files.filename\";s:14:\"File: Filename\";s:14:\"files.filesize\";s:10:\"File: Size\";s:14:\"files.filemime\";s:15:\"File: Mime type\";}s:4:\"base\";a:25:{s:11:\"node.status\";a:7:{s:4:\"name\";s:15:\"Node: Published\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:83:\"Filter by whether or not the node is published. This is recommended for most Views!\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:12:\"node.promote\";a:7:{s:4:\"name\";s:16:\"Node: Front Page\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:66:\"Filter by whether or not the node has been promoted to Front Page.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:11:\"node.sticky\";a:7:{s:4:\"name\";s:12:\"Node: Sticky\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:48:\"Filter by whether or not the node is set sticky.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:13:\"node.moderate\";a:7:{s:4:\"name\";s:15:\"Node: Moderated\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:47:\"Filter by whether or not the node is moderated.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:9:\"node.type\";a:8:{s:4:\"name\";s:10:\"Node: Type\";s:4:\"list\";s:29:\"views_handler_filter_nodetype\";s:9:\"list-type\";s:4:\"list\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:47:\"Include or exclude nodes of the selected types.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:29:\"views_handler_filter_nodetype\";s:9:\"#multiple\";b:1;}}s:9:\"node.anon\";a:8:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:25:\"Node: Author is Anonymous\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:29:\"views_handler_filter_useranon\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:73:\"This allows you to filter by whether or not the node author is anonymous.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:29:\"views_handler_filter_useranon\";s:9:\"#multiple\";b:1;}}s:15:\"node.currentuid\";a:8:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:28:\"Node: Author is Current User\";s:8:\"operator\";s:28:\"views_handler_operator_eqneq\";s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:100:\"This allows you to filter by whether or not the node was authored by the logged in user of the view.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:32:\"views_handler_filter_usercurrent\";}}s:22:\"node.currentuidtouched\";a:9:{s:5:\"field\";s:3:\"uid\";s:4:\"name\";s:40:\"Node: Current User Authored or Commented\";s:8:\"operator\";a:1:{s:1:\"=\";s:10:\"touched by\";}s:4:\"list\";s:32:\"views_handler_filter_usercurrent\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:32:\"views_handler_filter_uid_touched\";s:4:\"help\";s:97:\"This allows you to filter by whether or not the logged in user authored or commented on the node.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:32:\"views_handler_filter_usercurrent\";}}s:13:\"node.distinct\";a:8:{s:4:\"name\";s:14:\"Node: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:29:\"views_handler_filter_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:160:\"This filter ensures that each node may only be listed once, even if it matches multiple criteria. Use this if multiple taxonomy matches return duplicated nodes.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:9:\"#multiple\";b:1;}}s:10:\"node.title\";a:6:{s:4:\"name\";s:11:\"Node: Title\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:55:\"This filter allows nodes to be filtered by their title.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:12:\"node.created\";a:7:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.changed\";a:7:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:5:\"value\";a:2:{s:5:\"#type\";s:9:\"textfield\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:10:\"jscalendar\";}}s:7:\"handler\";s:30:\"views_handler_filter_timestamp\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:369:\"This filter allows nodes to be filtered by their creation date. Enter dates in the format: CCYY-MM-DD HH:MM:SS. Enter \'now\' to use the current time. You may enter a delta (in seconds) to the option that will be added to the time; this is most useful when combined with now. If you have the jscalendar module from jstools installed, you can use a popup date picker here.\";s:5:\"table\";s:4:\"node\";}s:9:\"node.body\";a:6:{s:4:\"name\";s:10:\"Node: Body\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_body\";s:4:\"help\";s:54:\"This filter allows nodes to be filtered by their body.\";s:5:\"table\";s:4:\"node\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:17:\"history.timestamp\";a:8:{s:4:\"name\";s:21:\"Node: Has New Content\";s:8:\"operator\";a:1:{i:0;s:3:\"Has\";}s:4:\"list\";a:1:{i:0;s:11:\"New Content\";}s:7:\"handler\";s:26:\"views_handler_filter_isnew\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:158:\"Including this filter will reduce the node set to nodes that have been updated or have new content since the user last read the node, as well as unread nodes.\";s:5:\"table\";s:7:\"history\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:1:{i:0;s:11:\"New Content\";}s:9:\"#multiple\";b:1;}}s:9:\"users.uid\";a:7:{s:4:\"name\";s:17:\"Node: Author Name\";s:8:\"operator\";s:25:\"views_handler_operator_or\";s:4:\"list\";s:29:\"views_handler_filter_username\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:106:\"This allows you to filter by a particular user. You might not find this useful if you have a lot of users.\";s:5:\"table\";s:5:\"users\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:29:\"views_handler_filter_username\";s:9:\"#multiple\";b:1;}}s:15:\"users_roles.rid\";a:7:{s:4:\"name\";s:17:\"Role: Author Role\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:4:\"list\";s:25:\"views_handler_filter_role\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:69:\"Include the node only if the author is a member of the selected role.\";s:5:\"table\";s:11:\"users_roles\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:25:\"views_handler_filter_role\";s:9:\"#multiple\";b:1;}}s:25:\"profile_distinct.distinct\";a:8:{s:4:\"name\";s:17:\"Profile: Distinct\";s:8:\"operator\";a:1:{s:1:\"=\";s:2:\"is\";}s:4:\"list\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:7:\"handler\";s:37:\"views_handler_filter_profile_distinct\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:105:\"This filter ensures that each user profile may only be listed once, even if it matches multiple criteria.\";s:5:\"table\";s:16:\"profile_distinct\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:1:{s:8:\"distinct\";s:8:\"distinct\";}s:9:\"#multiple\";b:1;}}s:21:\"profile_distinct.mail\";a:6:{s:4:\"name\";s:11:\"User: Email\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:56:\"This allows you to filter by a particular email address.\";s:5:\"table\";s:16:\"profile_distinct\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:13:\"term_node.tid\";a:9:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:4:\"help\";s:124:\"When filtering by taxonomy term you may specify the \"depth\" as an option. Please see the taxonomy help for more information.\";s:4:\"list\";s:24:\"views_handler_filter_tid\";s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:31:\"views_handler_filter_tid_custom\";s:10:\"value-type\";s:5:\"array\";s:5:\"table\";s:9:\"term_node\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:24:\"views_handler_filter_tid\";s:9:\"#multiple\";b:1;}}s:13:\"term_data.vid\";a:8:{s:4:\"name\";s:25:\"Taxonomy: Vocabulary Name\";s:4:\"list\";s:24:\"views_handler_filter_vid\";s:8:\"operator\";s:28:\"views_handler_operator_andor\";s:7:\"handler\";s:24:\"views_handler_filter_voc\";s:10:\"value-type\";s:5:\"array\";s:4:\"help\";s:87:\"This will filter a view to only nodes that contain a term in the associated vocabulary.\";s:5:\"table\";s:9:\"term_data\";s:5:\"value\";a:3:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:24:\"views_handler_filter_vid\";s:9:\"#multiple\";b:1;}}s:18:\"file_revisions.fid\";a:8:{s:4:\"name\";s:24:\"File: Has file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Exists\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:7:\"handler\";s:35:\"views_handler_file_filter_fid_exist\";s:4:\"help\";s:46:\"Filter weather the node has files for download\";s:5:\"table\";s:14:\"file_revisions\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:19:\"file_revisions.list\";a:7:{s:4:\"name\";s:30:\"File: Listed in file downloads\";s:8:\"operator\";a:1:{s:1:\"=\";s:6:\"Equals\";}s:4:\"list\";s:28:\"views_handler_operator_yesno\";s:9:\"list-type\";s:6:\"select\";s:4:\"help\";s:46:\"Filter weather the file is listed in downloads\";s:5:\"table\";s:14:\"file_revisions\";s:5:\"value\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";s:28:\"views_handler_operator_yesno\";}}s:14:\"files.filename\";a:6:{s:4:\"name\";s:14:\"File: Filename\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:70:\"This filter allows nodes to be filtered by the name of attached files.\";s:5:\"table\";s:5:\"files\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:14:\"files.filesize\";a:5:{s:4:\"name\";s:10:\"File: Size\";s:8:\"operator\";s:27:\"views_handler_operator_gtlt\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by file size.\";s:5:\"table\";s:5:\"files\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}s:14:\"files.filemime\";a:6:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"operator\";s:27:\"views_handler_operator_like\";s:7:\"handler\";s:25:\"views_handler_filter_like\";s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";s:5:\"table\";s:5:\"files\";s:5:\"value\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}}}}s:6:\"fields\";a:2:{s:6:\"titles\";a:20:{s:10:\"node.title\";s:11:\"Node: Title\";s:12:\"node.created\";s:18:\"Node: Created Time\";s:12:\"node.changed\";s:18:\"Node: Updated Time\";s:9:\"node.type\";s:10:\"Node: Type\";s:9:\"node.link\";s:18:\"Node: Link to node\";s:9:\"node.body\";s:10:\"Node: Body\";s:10:\"users.name\";s:17:\"Node: Author Name\";s:9:\"users.uid\";s:20:\"User: Author Picture\";s:21:\"profile_distinct.mail\";s:11:\"User: Email\";s:23:\"node_counter.totalcount\";s:16:\"Node: Total Hits\";s:21:\"node_counter.daycount\";s:17:\"Node: Recent Hits\";s:22:\"node_counter.timestamp\";s:19:\"Node: Last Hit Time\";s:14:\"term_node.name\";s:19:\"Taxonomy: All Terms\";s:14:\"term_data.name\";s:14:\"Taxonomy: Term\";s:21:\"term_data.description\";s:26:\"Taxonomy: Term Description\";s:18:\"file_revisions.fid\";s:8:\"File: Id\";s:14:\"files.filename\";s:10:\"File: Name\";s:14:\"files.filepath\";s:10:\"File: Path\";s:14:\"files.filesize\";s:10:\"File: Size\";s:14:\"files.filemime\";s:15:\"File: Mime type\";}s:4:\"base\";a:20:{s:10:\"node.title\";a:7:{s:4:\"name\";s:11:\"Node: Title\";s:7:\"handler\";a:2:{s:28:\"views_handler_field_nodelink\";s:6:\"Normal\";s:38:\"views_handler_field_nodelink_with_mark\";s:17:\"With updated mark\";}s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:7:\"As link\";s:6:\"nolink\";s:12:\"Without link\";}}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:7:\"changed\";}s:4:\"help\";s:30:\"Display the title of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.created\";a:6:{s:4:\"name\";s:18:\"Node: Created Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:34:\"Display the post time of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.changed\";a:6:{s:4:\"name\";s:18:\"Node: Updated Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:43:\"Display the last time the node was updated.\";s:5:\"table\";s:4:\"node\";}s:9:\"node.type\";a:5:{s:4:\"name\";s:10:\"Node: Type\";s:7:\"handler\";s:22:\"views_handler_nodetype\";s:8:\"sortable\";b:1;s:4:\"help\";s:107:\"The Node Type field will display the type of a node (for example, \'blog entry\', \'forum post\', \'story\', etc)\";s:5:\"table\";s:4:\"node\";}s:9:\"node.link\";a:7:{s:4:\"name\";s:18:\"Node: Link to node\";s:7:\"handler\";s:29:\"views_handler_field_node_link\";s:8:\"sortable\";b:0;s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:9:\"notafield\";s:4:\"true\";s:4:\"help\";s:153:\"This will create a link to the node; fill the option field with the text for the link. If you want titles that link to the node, use Node: Title instead.\";s:5:\"table\";s:4:\"node\";}s:9:\"node.body\";a:6:{s:4:\"name\";s:10:\"Node: Body\";s:7:\"handler\";a:2:{s:24:\"views_handler_field_body\";s:9:\"Full Text\";s:26:\"views_handler_field_teaser\";s:6:\"Teaser\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"nid\";}s:9:\"notafield\";b:1;s:4:\"help\";s:25:\"Display the Main Content.\";s:5:\"table\";s:4:\"node\";}s:10:\"users.name\";a:7:{s:4:\"name\";s:17:\"Node: Author Name\";s:7:\"handler\";s:28:\"views_handler_field_username\";s:8:\"sortable\";b:1;s:3:\"uid\";s:3:\"uid\";s:10:\"addlfields\";a:1:{i:0;s:3:\"uid\";}s:4:\"help\";s:41:\"This will display the author of the node.\";s:5:\"table\";s:5:\"users\";}s:9:\"users.uid\";a:5:{s:4:\"name\";s:20:\"User: Author Picture\";s:7:\"handler\";s:27:\"views_handler_field_userpic\";s:8:\"sortable\";b:0;s:4:\"help\";s:39:\"Display the user picture of the author.\";s:5:\"table\";s:5:\"users\";}s:21:\"profile_distinct.mail\";a:5:{s:4:\"name\";s:11:\"User: Email\";s:7:\"handler\";s:25:\"views_handler_field_email\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"This will display the email of the user.\";s:5:\"table\";s:16:\"profile_distinct\";}s:23:\"node_counter.totalcount\";a:4:{s:4:\"name\";s:16:\"Node: Total Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:59:\"This will display the number of times a node has been read.\";s:5:\"table\";s:12:\"node_counter\";}s:21:\"node_counter.daycount\";a:4:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:8:\"sortable\";b:1;s:4:\"help\";s:68:\"This will display the number of times a node has been read recently.\";s:5:\"table\";s:12:\"node_counter\";}s:22:\"node_counter.timestamp\";a:6:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:8:\"sortable\";b:1;s:7:\"handler\";a:5:{s:30:\"views_handler_field_date_small\";s:13:\"As Short Date\";s:24:\"views_handler_field_date\";s:14:\"As Medium Date\";s:30:\"views_handler_field_date_large\";s:12:\"As Long Date\";s:31:\"views_handler_field_date_custom\";s:14:\"As Custom Date\";s:25:\"views_handler_field_since\";s:11:\"As Time Ago\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:40:\"Display the time the node was last read.\";s:5:\"table\";s:12:\"node_counter\";}s:14:\"term_node.name\";a:7:{s:4:\"name\";s:19:\"Taxonomy: All Terms\";s:4:\"help\";s:162:\"This will display all taxonomy terms associated with the node. Note that this causes one extra query per row displayed, and might have a minor performance impact.\";s:8:\"sortable\";b:0;s:7:\"handler\";s:28:\"views_handler_field_allterms\";s:6:\"option\";a:2:{s:5:\"#type\";s:6:\"select\";s:8:\"#options\";a:2:{s:4:\"link\";s:8:\"As links\";s:6:\"nolink\";s:13:\"Without links\";}}s:9:\"notafield\";b:1;s:5:\"table\";s:9:\"term_node\";}s:14:\"term_data.name\";a:6:{s:4:\"name\";s:14:\"Taxonomy: Term\";s:8:\"sortable\";b:1;s:7:\"handler\";a:2:{s:23:\"views_handler_field_tid\";s:7:\"No link\";s:28:\"views_handler_field_tid_link\";s:9:\"With link\";}s:10:\"addlfields\";a:1:{i:0;s:3:\"tid\";}s:4:\"help\";s:170:\"This will display one of the taxonomy terms associated with the node; if taxonomy terms were used to filter or sort, it will be the one that triggered the sort or filter.\";s:5:\"table\";s:9:\"term_data\";}s:21:\"term_data.description\";a:4:{s:4:\"name\";s:26:\"Taxonomy: Term Description\";s:8:\"sortable\";b:0;s:4:\"help\";s:66:\"This will display the description associated with a taxonomy term.\";s:5:\"table\";s:9:\"term_data\";}s:18:\"file_revisions.fid\";a:4:{s:4:\"name\";s:8:\"File: Id\";s:8:\"sortable\";b:1;s:4:\"help\";s:34:\"File Id which represents the file.\";s:5:\"table\";s:14:\"file_revisions\";}s:14:\"files.filename\";a:7:{s:4:\"name\";s:10:\"File: Name\";s:7:\"handler\";a:2:{s:27:\"views_handler_file_filename\";s:5:\"Plain\";s:36:\"views_handler_file_filename_download\";s:18:\"With download link\";}s:8:\"sortable\";b:1;s:10:\"addlfields\";a:1:{i:0;s:8:\"filepath\";}s:6:\"option\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:10;s:10:\"#maxlength\";i:255;}s:4:\"help\";s:17:\"Display file name\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filepath\";a:4:{s:4:\"name\";s:10:\"File: Path\";s:8:\"sortable\";b:0;s:4:\"help\";s:21:\"Display Path to File.\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filesize\";a:5:{s:4:\"name\";s:10:\"File: Size\";s:7:\"handler\";s:23:\"views_handler_file_size\";s:8:\"sortable\";b:1;s:4:\"help\";s:40:\"Display the size of the associated file.\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filemime\";a:4:{s:4:\"name\";s:15:\"File: Mime type\";s:8:\"sortable\";b:1;s:4:\"help\";s:53:\"This filter allows nodes to be filtered by mime type.\";s:5:\"table\";s:5:\"files\";}}}s:5:\"sorts\";a:2:{s:6:\"titles\";a:17:{s:8:\"node.nid\";s:8:\"Node: ID\";s:12:\"node.created\";s:18:\"Node: Created Time\";s:12:\"node.changed\";s:23:\"Node: Last Updated Time\";s:11:\"node.sticky\";s:12:\"Node: Sticky\";s:10:\"node.title\";s:11:\"Node: Title\";s:11:\"node.random\";s:6:\"Random\";s:10:\"users.name\";s:17:\"Node: Author Name\";s:20:\"profile_distinct.uid\";s:9:\"User: Uid\";s:21:\"profile_distinct.mail\";s:11:\"User: Email\";s:23:\"node_counter.totalcount\";s:16:\"Node: Total Hits\";s:21:\"node_counter.daycount\";s:17:\"Node: Recent Hits\";s:22:\"node_counter.timestamp\";s:19:\"Node: Last Hit Time\";s:16:\"term_data.weight\";s:19:\"Taxonomy: Term Name\";s:18:\"file_revisions.fid\";s:15:\"Sort by File Id\";s:14:\"files.filename\";s:22:\"File: Sort by Filename\";s:14:\"files.filesize\";s:15:\"File: File size\";s:14:\"files.filemime\";s:15:\"File: Mime type\";}s:4:\"base\";a:17:{s:8:\"node.nid\";a:3:{s:4:\"name\";s:8:\"Node: ID\";s:4:\"help\";s:36:\"Sort by the database ID of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.created\";a:3:{s:4:\"name\";s:18:\"Node: Created Time\";s:4:\"help\";s:40:\"Sort by the submission date of the node.\";s:5:\"table\";s:4:\"node\";}s:12:\"node.changed\";a:3:{s:4:\"name\";s:23:\"Node: Last Updated Time\";s:4:\"help\";s:41:\"Sort by the last update date of the node.\";s:5:\"table\";s:4:\"node\";}s:11:\"node.sticky\";a:3:{s:4:\"name\";s:12:\"Node: Sticky\";s:4:\"help\";s:92:\"Sort by whether or not the node is sticky. Choose descending to put sticky nodes at the top.\";s:5:\"table\";s:4:\"node\";}s:10:\"node.title\";a:3:{s:4:\"name\";s:11:\"Node: Title\";s:4:\"help\";s:38:\"Sort by the node title, alphabetically\";s:5:\"table\";s:4:\"node\";}s:11:\"node.random\";a:4:{s:4:\"name\";s:6:\"Random\";s:7:\"handler\";s:25:\"views_handler_sort_random\";s:4:\"help\";s:129:\"By choosing random, nodes will be ordered completely randomly. This is a good way to choose X random nodes from a group of nodes.\";s:5:\"table\";s:4:\"node\";}s:10:\"users.name\";a:3:{s:4:\"name\";s:17:\"Node: Author Name\";s:4:\"help\";s:49:\"This allows you to sort alphabetically by author.\";s:5:\"table\";s:5:\"users\";}s:20:\"profile_distinct.uid\";a:3:{s:4:\"name\";s:9:\"User: Uid\";s:4:\"help\";s:35:\"This allows you to sort by user id.\";s:5:\"table\";s:16:\"profile_distinct\";}s:21:\"profile_distinct.mail\";a:3:{s:4:\"name\";s:11:\"User: Email\";s:4:\"help\";s:48:\"This allows you to sort alphabetically by email.\";s:5:\"table\";s:16:\"profile_distinct\";}s:23:\"node_counter.totalcount\";a:3:{s:4:\"name\";s:16:\"Node: Total Hits\";s:4:\"help\";s:68:\"This allows you to sort by the number of times a node has been read.\";s:5:\"table\";s:12:\"node_counter\";}s:21:\"node_counter.daycount\";a:3:{s:4:\"name\";s:17:\"Node: Recent Hits\";s:4:\"help\";s:77:\"This allows you to sort by the number of times a node has been read recently.\";s:5:\"table\";s:12:\"node_counter\";}s:22:\"node_counter.timestamp\";a:3:{s:4:\"name\";s:19:\"Node: Last Hit Time\";s:4:\"help\";s:57:\"This allows you to sort by the time a node was last read.\";s:5:\"table\";s:12:\"node_counter\";}s:16:\"term_data.weight\";a:4:{s:4:\"name\";s:19:\"Taxonomy: Term Name\";s:5:\"field\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}s:4:\"help\";s:92:\"This will sort nodes by taxonomy weight and name, as defined in the category administration.\";s:5:\"table\";s:9:\"term_data\";}s:18:\"file_revisions.fid\";a:2:{s:4:\"name\";s:15:\"Sort by File Id\";s:5:\"table\";s:14:\"file_revisions\";}s:14:\"files.filename\";a:3:{s:4:\"name\";s:22:\"File: Sort by Filename\";s:4:\"help\";s:17:\"Sort by file name\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filesize\";a:3:{s:4:\"name\";s:15:\"File: File size\";s:4:\"help\";s:18:\"Sort by file size.\";s:5:\"table\";s:5:\"files\";}s:14:\"files.filemime\";a:3:{s:4:\"name\";s:15:\"File: Mime type\";s:4:\"help\";s:18:\"Sort by mime type.\";s:5:\"table\";s:5:\"files\";}}}}',0,1158604900,''),('filter:3:6f7c5a34293af1639d3ebf7bcc8609cb','La sede di HR Capital si trova nel centro di Milano, in Galleria Passarella n. 2, nei pressi di Piazza San Babila, a due passi dal Duomo.
\n\nCome raggiungerci:
\nIn Metropolitana:
HR Capital si trova in corrispondenza della fermata San Babila della linea MM1. E’ comunque facilmente raggiungibile anche con la Linea MM3 (fermata Duomo).
\n In Auto:
La zona è servita da numerosi parcheggi a pagamento. Segnaliamo i seguenti:
Via San Pietro al’Orto, 17 – tel: 02 76021538
Via Mascagni Pietro, tel: 02 794600
Corso Europa, 2 – tel: 02 76022220
\nIn Aereo:
HR Capital, avendo la propria sede nel cuore di Milano, è ben collegata ai principali due Aeroporti di Malpensa e Linate.
Da Malpensa: Malpensa Express: il treno, che collega l’aeroporto direttamente con il centro di Milano, parte ogni 30 minuti a partire dalle 6.45, fino alle 21.45. La stazione di destinazione è quella di Cadorna (Ferrovie Nord). Da Cadorna, si può raggiungere facilmente HR Capital prendendo la metropolitana MM1 in direzione Sesto F.S. fino alla fermata di San Babila. Navetta dall’Aeroporto: partenze ogni 10 minuti dalle 6:30 alle 2:00, la Navetta collega l’aeroporto con la Stazione Centrale di Milano Central, presso la quale c’è una stazione della metropolitana MM3, utile per raggiungere il centro (fermata Duomo) e la sede di HR Capital.
Da Linate: Autobus: Dall’aeroporto di Linate prendere l’ autobus linea 73 fino a Piazza San Babila (capolinea), durata del trasferimento 20-30 minuti. Taxi: in condizioni di traffico normale, la durata del trasferimento da Linate è di circa 15 minuti e costa circa 20 Euro. Giunti in Piazza San Babila, attraversare la Piazza in direzione della fontana e girare a sinistra in Corso Vittorio Emanuele (direzione Duomo). Subito dopo il primo Grande Magazzino svoltare a sinistra in Galleria Passerella, il civico nr.2 si trova sulla destra.
\n',1158853785,1158767385,''),('filter:3:7a041a2f41f32b0bc68cb2b857f9e78f','HR Capital S.r.l
Galleria Passarella, 2
20122 Milan, Italy
tel. +39.02.365.930.1 fax +39.02.365.930.00
www.hrcapital.it
info@hrcapital.it
\n',1158853789,1158767389,''),('filter:3:ea4ff5e34fd6ad29537d0633f86d88bd','HR Capital S.r.l
Galleria Passarella, 2
20122 Milano
tel. +39.02.365.930.1
fax +39.02.365.930.00
www.hrcapital.it
info@hrcapital.it
\n',1158853891,1158767491,''),('filter:3:5b80e6de99f989f7153f751e69ee4974','Grazie ad una fitta rete di corrispondenti, HR Capital è in grado di fornire assistenza ai propri Clienti in tutta Italia. Per informazioni sulla rete di corrispondenti sia in Italia che all’estero
\n',1158853735,1158767335,''),('filter:3:a41de60e52694a92f2546364f2909eb6','Grazie ad una fitta rete di corrispondenti, HR Capital è in grado di fornire assistenza ai propri Clienti in tutta Italia. Per informazioni sulla rete di corrispondenti sia in Italia che all’estero, o per richiedere di poter entrare a farne parte: info@hrcapital.it
\n',1158853735,1158767335,''),('filter:3:62d5999fb4639a25d46354681e9dd1bb','Ufficio stampa [under construction]
\nDicono di noi [under construction]
\n',1158853764,1158767364,''),('filter:3:6df49fd62856324ef0dcf9ef9a3f9da9','Previdenza
\n\nPatronati
\n\n- ACAI (Associazione Cristiana Artigiani Italiani promossa dal Centro Nazionale)
\n- ACLI (Associazione Cristiana Lavoratori Italiani)
\n- ENAS (Ente Nazionale di Assistenza Sociale dell' Unione Generale del Lavoro (UGL)
\n- ENASCO (Ente Nazionale di Assistenza Sociale per gli Esercenti Attività Commerciali)
\n- EPACA (Ente di Patronato ed Assistenza per i Coltivatori Agricoli promosso dalla Confederazione Nazionale Coltivatori Diretti)
\n- E.P.A.S.A. (Ente Privato di Attività Sociali ed Assistenziali promosso dalla C.N.A. (Confederazione Nazionale dell'Artigianato e della piccola e media impresa)
\n- INAPA (Istituto Nazionale di Assistenza e di Patronato per l'Artigianato)
\n- INAS (Istituto Nazionale di Assistenza Sociale promosso dalla Confederazione Italiana Sindacati Lavoratori (CISL)
\n- INCA (Istituto Nazionale Confederale di Assistenza promosso dalla Confederazione Generale Italiana del Lavoro (CGIL)
\n- ITAL (Istituto di Tutela ed Assistenza Lavoratori promosso dalla Unione Italiana del Lavoro)
\n
\n',1158853782,1158767382,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
--
-- Table structure for table `client`
--
DROP TABLE IF EXISTS `client`;
CREATE TABLE `client` (
`cid` int(10) unsigned NOT NULL auto_increment,
`link` varchar(255) NOT NULL default '',
`name` varchar(128) NOT NULL default '',
`mail` varchar(128) NOT NULL default '',
`slogan` longtext NOT NULL,
`mission` longtext NOT NULL,
`users` int(10) NOT NULL default '0',
`nodes` int(10) NOT NULL default '0',
`version` varchar(35) NOT NULL default '',
`created` int(11) NOT NULL default '0',
`changed` int(11) NOT NULL default '0',
PRIMARY KEY (`cid`)
) TYPE=MyISAM;
--
-- Dumping data for table `client`
--
/*!40000 ALTER TABLE `client` DISABLE KEYS */;
LOCK TABLES `client` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `client` ENABLE KEYS */;
--
-- Table structure for table `client_system`
--
DROP TABLE IF EXISTS `client_system`;
CREATE TABLE `client_system` (
`cid` int(10) NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
PRIMARY KEY (`cid`,`name`)
) TYPE=MyISAM;
--
-- Dumping data for table `client_system`
--
/*!40000 ALTER TABLE `client_system` DISABLE KEYS */;
LOCK TABLES `client_system` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `client_system` ENABLE KEYS */;
--
-- Table structure for table `comments`
--
DROP TABLE IF EXISTS `comments`;
CREATE TABLE `comments` (
`cid` int(10) NOT NULL auto_increment,
`pid` int(10) NOT NULL default '0',
`nid` int(10) NOT NULL default '0',
`uid` int(10) NOT NULL default '0',
`subject` varchar(64) NOT NULL default '',
`comment` longtext NOT NULL,
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0',
`score` mediumint(9) NOT NULL default '0',
`status` tinyint(3) unsigned NOT NULL default '0',
`format` int(4) NOT NULL default '0',
`thread` varchar(255) NOT NULL default '',
`users` longtext,
`name` varchar(60) default NULL,
`mail` varchar(64) default NULL,
`homepage` varchar(255) default NULL,
PRIMARY KEY (`cid`),
KEY `lid` (`nid`)
) TYPE=MyISAM;
--
-- Dumping data for table `comments`
--
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
LOCK TABLES `comments` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
--
-- Table structure for table `contact`
--
DROP TABLE IF EXISTS `contact`;
CREATE TABLE `contact` (
`cid` int(10) unsigned NOT NULL auto_increment,
`category` varchar(255) NOT NULL default '',
`recipients` longtext NOT NULL,
`reply` longtext NOT NULL,
`weight` tinyint(3) NOT NULL default '0',
`selected` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`cid`),
UNIQUE KEY `category` (`category`)
) TYPE=MyISAM;
--
-- Dumping data for table `contact`
--
/*!40000 ALTER TABLE `contact` DISABLE KEYS */;
LOCK TABLES `contact` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `contact` ENABLE KEYS */;
--
-- Table structure for table `file_revisions`
--
DROP TABLE IF EXISTS `file_revisions`;
CREATE TABLE `file_revisions` (
`fid` int(10) unsigned NOT NULL default '0',
`vid` int(10) unsigned NOT NULL default '0',
`description` varchar(255) NOT NULL default '',
`list` tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (`fid`,`vid`)
) TYPE=MyISAM;
--
-- Dumping data for table `file_revisions`
--
/*!40000 ALTER TABLE `file_revisions` DISABLE KEYS */;
LOCK TABLES `file_revisions` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `file_revisions` ENABLE KEYS */;
--
-- Table structure for table `files`
--
DROP TABLE IF EXISTS `files`;
CREATE TABLE `files` (
`fid` int(10) unsigned NOT NULL default '0',
`nid` int(10) unsigned NOT NULL default '0',
`filename` varchar(255) NOT NULL default '',
`filepath` varchar(255) NOT NULL default '',
`filemime` varchar(255) NOT NULL default '',
`filesize` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`fid`)
) TYPE=MyISAM;
--
-- Dumping data for table `files`
--
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
LOCK TABLES `files` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
--
-- Table structure for table `filter_formats`
--
DROP TABLE IF EXISTS `filter_formats`;
CREATE TABLE `filter_formats` (
`format` int(4) NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`roles` varchar(255) NOT NULL default '',
`cache` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`format`),
UNIQUE KEY `name` (`name`)
) TYPE=MyISAM;
--
-- Dumping data for table `filter_formats`
--
/*!40000 ALTER TABLE `filter_formats` DISABLE KEYS */;
LOCK TABLES `filter_formats` WRITE;
INSERT INTO `filter_formats` VALUES (1,'Filtered HTML',',1,2,',1),(2,'PHP code','',0),(3,'Full HTML','',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `filter_formats` ENABLE KEYS */;
--
-- Table structure for table `filters`
--
DROP TABLE IF EXISTS `filters`;
CREATE TABLE `filters` (
`format` int(4) NOT NULL default '0',
`module` varchar(64) NOT NULL default '',
`delta` tinyint(2) NOT NULL default '0',
`weight` tinyint(2) NOT NULL default '0',
KEY `weight` (`weight`)
) TYPE=MyISAM;
--
-- Dumping data for table `filters`
--
/*!40000 ALTER TABLE `filters` DISABLE KEYS */;
LOCK TABLES `filters` WRITE;
INSERT INTO `filters` VALUES (1,'filter',0,0),(1,'filter',2,1),(2,'filter',1,0),(3,'filter',2,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `filters` ENABLE KEYS */;
--
-- Table structure for table `flood`
--
DROP TABLE IF EXISTS `flood`;
CREATE TABLE `flood` (
`event` varchar(64) NOT NULL default '',
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0'
) TYPE=MyISAM;
--
-- Dumping data for table `flood`
--
/*!40000 ALTER TABLE `flood` DISABLE KEYS */;
LOCK TABLES `flood` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `flood` ENABLE KEYS */;
--
-- Table structure for table `forum`
--
DROP TABLE IF EXISTS `forum`;
CREATE TABLE `forum` (
`nid` int(10) unsigned NOT NULL default '0',
`vid` int(10) unsigned NOT NULL default '0',
`tid` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`vid`),
KEY `nid` (`nid`),
KEY `tid` (`tid`)
) TYPE=MyISAM;
--
-- Dumping data for table `forum`
--
/*!40000 ALTER TABLE `forum` DISABLE KEYS */;
LOCK TABLES `forum` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `forum` ENABLE KEYS */;
--
-- Table structure for table `history`
--
DROP TABLE IF EXISTS `history`;
CREATE TABLE `history` (
`uid` int(10) NOT NULL default '0',
`nid` int(10) NOT NULL default '0',
`timestamp` int(11) NOT NULL default '0',
PRIMARY KEY (`uid`,`nid`)
) TYPE=MyISAM;
--
-- Dumping data for table `history`
--
/*!40000 ALTER TABLE `history` DISABLE KEYS */;
LOCK TABLES `history` WRITE;
INSERT INTO `history` VALUES (1,1,1158680601),(1,2,1158685310),(1,3,1158601784),(1,4,1158603549),(1,5,1157466258),(1,6,1158579262),(1,7,1158603058),(1,8,1157466705),(1,9,1158664929),(1,10,1158573429),(1,11,1158599835),(1,12,1158659674),(2,10,1158148867),(3,9,1158149256),(3,10,1158149410),(3,4,1158255242),(1,13,1158599750),(2,1,1158572743),(1,14,1158599883),(3,1,1158577876),(1,15,1158599725),(1,16,1158600710),(4,1,1158767920),(4,3,1158767911),(4,2,1158767914),(4,9,1158767883),(4,7,1158767904),(4,11,1158767907),(4,14,1158767652),(4,12,1158767638),(4,4,1158767894),(1,17,1158624021),(1,18,1158664918),(1,19,1158680732),(1,20,1158747398),(4,19,1158767881),(4,20,1158767370);
UNLOCK TABLES;
/*!40000 ALTER TABLE `history` ENABLE KEYS */;
--
-- Table structure for table `i18n_node`
--
DROP TABLE IF EXISTS `i18n_node`;
CREATE TABLE `i18n_node` (
`nid` int(11) unsigned NOT NULL default '0',
`trid` int(10) unsigned NOT NULL default '0',
`language` varchar(12) NOT NULL default '',
`status` smallint(6) NOT NULL default '0',
PRIMARY KEY (`nid`)
) TYPE=MyISAM;
--
-- Dumping data for table `i18n_node`
--
/*!40000 ALTER TABLE `i18n_node` DISABLE KEYS */;
LOCK TABLES `i18n_node` WRITE;
INSERT INTO `i18n_node` VALUES (12,0,'it',0),(1,1,'it',0),(3,0,'it',0),(9,0,'it',0),(20,0,'it',0),(7,0,'it',0),(4,0,'it',0),(11,0,'it',0),(14,0,'it',0),(17,1,'en',0),(2,2,'it',0),(18,2,'en',0),(19,0,'it',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `i18n_node` ENABLE KEYS */;
--
-- Table structure for table `i18n_variable`
--
DROP TABLE IF EXISTS `i18n_variable`;
CREATE TABLE `i18n_variable` (
`name` varchar(48) NOT NULL default '',
`language` varchar(12) NOT NULL default '',
`value` longtext NOT NULL,
PRIMARY KEY (`name`,`language`)
) TYPE=MyISAM;
--
-- Dumping data for table `i18n_variable`
--
/*!40000 ALTER TABLE `i18n_variable` DISABLE KEYS */;
LOCK TABLES `i18n_variable` WRITE;
INSERT INTO `i18n_variable` VALUES ('menu_secondary_menu','it','s:1:\"0\";'),('menu_primary_menu','en','s:2:\"68\";'),('site_footer','it','s:106:\"Galleria Passarella 2, 20122 Milano – Tel.\r\n+39.02.365.930.1 Fax +39.02.365.930.00 – info@hrcapital.it\";'),('site_footer','en','s:105:\"Galleria Passarella 2, 20122 Milan – Tel.\r\n+39.02.365.930.1 Fax +39.02.365.930.00 – info@hrcapital.it\";');
UNLOCK TABLES;
/*!40000 ALTER TABLE `i18n_variable` ENABLE KEYS */;
--
-- Table structure for table `locales_meta`
--
DROP TABLE IF EXISTS `locales_meta`;
CREATE TABLE `locales_meta` (
`locale` varchar(12) NOT NULL default '',
`name` varchar(64) NOT NULL default '',
`enabled` int(2) NOT NULL default '0',
`isdefault` int(2) NOT NULL default '0',
`plurals` int(1) NOT NULL default '0',
`formula` varchar(128) NOT NULL default '',
PRIMARY KEY (`locale`)
) TYPE=MyISAM;
--
-- Dumping data for table `locales_meta`
--
/*!40000 ALTER TABLE `locales_meta` DISABLE KEYS */;
LOCK TABLES `locales_meta` WRITE;
INSERT INTO `locales_meta` VALUES ('en','English',1,0,0,''),('it','Italian',1,1,2,'($n!=1)');
UNLOCK TABLES;
/*!40000 ALTER TABLE `locales_meta` ENABLE KEYS */;
--
-- Table structure for table `locales_source`
--
DROP TABLE IF EXISTS `locales_source`;
CREATE TABLE `locales_source` (
`lid` int(11) NOT NULL auto_increment,
`location` varchar(255) NOT NULL default '',
`source` blob NOT NULL,
PRIMARY KEY (`lid`)
) TYPE=MyISAM;
--
-- Dumping data for table `locales_source`
--
/*!40000 ALTER TABLE `locales_source` DISABLE KEYS */;
LOCK TABLES `locales_source` WRITE;
INSERT INTO `locales_source` VALUES (1,' database/updates.inc:1229 ;1459 includes/common.inc:503, includes/image.inc:61 includes/unicode.inc:131 ;164','php'),(2,' database/updates.inc:1729 modules/legacy.module:0','legacy'),(3,' includes/common.inc:281 modules/system.module:475','%site is currently under maintenance. We should be back shortly. Thank you for your patience.'),(4,' includes/common.inc:317 modules/aggregator.module:123 ;144;385;518, modules/blogapi.module:233 ;287 modules/book.module:892 ;968','view'),(5,' includes/file.inc:123 modules/user.module:1223 ;1425','security'),(6,' includes/form.inc:229 ;235 modules/filter.module:847','Illegal choice %choice in %name element.'),(7,' includes/form.inc:229 ;235 modules/filter.module:847','form'),(8,' includes/locale.inc:77 modules/contact.module:287 modules/filter.module:442, ;549 modules/system.module:745 ;833;865;957','Save configuration'),(9,' includes/locale.inc:89 ;1313 modules/block.module:234, modules/book.module:894 modules/comment.module:676, modules/contact.module:141 modules/filter.module:314','delete'),(10,' i18n.module:97, ;98;111','Enabled'),(3092,' i18n.module:97, fuzzy','If disabled, uses Drupal\'s default. If enabled, translates the interface to selected language'),(11,' i18n.module:104','Default'),(3100,' i18n.module:104','Language dependant'),(12,' includes/locale.inc:92 ;1305 modules/aggregator.module:967 ;978, modules/block.module:338 modules/book.module:879 ;1003, modules/comment.module:966 modules/contact.module:143','Operations'),(13,' includes/locale.inc:327 ;346 modules/search.module:142 ;997;1040, modules/user.module:1978','Search'),(14,' includes/locale.inc:337 modules/locale.module:156','Language'),(15,' includes/locale.inc:1313 modules/aggregator.module:970 ;981, modules/book.module:893 modules/comment.module:677 ;682;978, modules/contact.module:141 modules/menu.module:604 ;649','edit'),(16,' includes/locale.inc:32 ;264;478;1082;1103 modules/locale.module:351 ;0','locale'),(17,' d:\\drupal-cvs\\modules\\image.module:1293;1328, image.module:1290, ;1325','Home'),(18,' includes/menu.inc:1026 modules/user.module:510 ;564','Navigation'),(19,' includes/theme.inc:832 themes/engines/phptemplate/phptemplate.engine:268','new'),(20,' includes/theme.inc:969 modules/user.module:634','View user profile.'),(21,' modules/aggregator.module:60 modules/contact.module:64','add category'),(22,' modules/aggregator.module:75 modules/block.module:71 modules/book.module:94, modules/comment.module:108 modules/contact.module:58','list'),(23,' modules/aggregator.module:89 modules/contact.module:52, modules/taxonomy.module:55','categories'),(24,' modules/aggregator.module:132 ;153 modules/block.module:232, modules/comment.module:110 modules/filter.module:118 ;313, modules/forum.module:79 modules/node.module:1247 modules/system.module:117','configure'),(25,' modules/aggregator.module:195 modules/system.module:341, modules/taxonomy.module:375 ;545','none'),(26,' modules/aggregator.module:199 modules/filter.module:157 ;159;1018','Allowed HTML tags'),(27,' modules/aggregator.module:287 ;295;1148;1248 modules/blog.module:297, modules/forum.module:283','more'),(28,' modules/aggregator.module:314 ;418;967;978 modules/blog.module:224, modules/book.module:251 ;879 modules/filter.module:197, modules/menu.module:195 ;316;351 modules/node.module:1163','Title'),(29,' webform.module:349;488','Description'),(30,' webform.module:434','Submit'),(31,' modules/aggregator.module:326 ;356;457;489 modules/block.module:487, modules/comment.module:900 modules/contact.module:252, modules/filter.module:361 modules/forum.module:432 ;466;480;507;555','Delete'),(32,' modules/aggregator.module:425 modules/profile.module:781, modules/statistics.module:161','URL'),(33,' modules/aggregator.module:970 ;1268 modules/comment.module:177, modules/statistics.module:328 modules/tracker.module:117, modules/user.module:1925','%time ago'),(34,' modules/aggregator.module:970 ;970;1271 modules/user.module:1925','never'),(35,' modules/aggregator.module:1181 modules/node.module:813 ;1441','read more'),(36,' modules/aggregator.module:1194 ;1194 modules/drupal.module:332','Drupal'),(37,' c:\\moduli-core\\aggregator.module:1128, modules/aggregator.module:1247','Categories'),(38,' modules/archive.module:143 modules/locale.module:0, modules/system.module:452','Sunday'),(39,' modules/archive.module:143 modules/locale.module:0, modules/system.module:452','Monday'),(40,' modules/archive.module:143 modules/locale.module:0, modules/system.module:452','Tuesday'),(41,' modules/archive.module:143 modules/locale.module:0, modules/system.module:452','Wednesday'),(42,' modules/archive.module:143 modules/locale.module:0 ;0, modules/system.module:452','Thursday'),(43,' modules/archive.module:143 modules/locale.module:0, modules/system.module:452','Friday'),(44,' modules/archive.module:143 modules/locale.module:0, modules/system.module:452','Saturday'),(45,' modules/archive.module:256 modules/locale.module:0','January'),(46,' modules/archive.module:256 modules/locale.module:0','February'),(47,' modules/archive.module:256 modules/locale.module:0','March'),(48,' modules/archive.module:256 modules/locale.module:0','April'),(49,' modules/archive.module:256 modules/locale.module:0 ;0','May'),(50,' modules/archive.module:256 modules/locale.module:0','June'),(51,' modules/archive.module:256 modules/locale.module:0','July'),(52,' modules/archive.module:256 modules/locale.module:0','August'),(53,' modules/archive.module:256 modules/locale.module:0','September'),(54,' modules/archive.module:256 modules/locale.module:0','October'),(55,' modules/archive.module:256 modules/locale.module:0','November'),(56,' modules/archive.module:256 modules/locale.module:0','December'),(57,' i18n.module:97, ;98;106;111','Disabled'),(3093,' i18n.module:98','Content translation'),(58,' d:\\drupal-cvs\\modules\\image.module:420, image.module:417','Weight'),(59,' modules/block.module:336 modules/system.module:977, modules/throttle.module:88','Throttle'),(60,' modules/block.module:487 modules/comment.module:901 ;1068, modules/contact.module:252 modules/filter.module:361, modules/forum.module:555 modules/locale.module:337 modules/node.module:1207','Cancel'),(61,' modules/blog.module:49 modules/user.module:483','History'),(62,' modules/blog.module:225 modules/book.module:257 modules/forum.module:394, modules/page.module:89 modules/story.module:82, c:\\moduli-core\\story.module:125','Body'),(63,' modules/blog.module:0 modules/legacy.module:55','blog'),(64,' modules/blogapi.module:233 ;287 modules/book.module:968, modules/comment.module:552 ;566;639;658;1014;1605 modules/forum.module:564','content'),(65,' modules/book.module:242 ;299 modules/forum.module:452 ;497, modules/taxonomy.module:367','Parent'),(66,' modules/book.module:266 ;311 modules/page.module:93','Log message'),(67,' modules/book.module:269 modules/page.module:94','An explanation of the additions or updates being made to help other authors understand your motivations.'),(68,' modules/book.module:517 modules/forum.module:1075','‹ '),(69,' modules/book.module:525 modules/forum.module:1078',' ›'),(70,' modules/book.module:968 modules/node.module:1838','%type: updated %title.'),(71,' modules/comment.module:121 modules/contact.module:83, modules/system.module:135','settings'),(72,' modules/comment.module:421 modules/node.module:784','Optional'),(73,' modules/comment.module:421 modules/node.module:784, modules/taxonomy.module:236','Required'),(74,' modules/comment.module:949 modules/node.module:1129','Update options'),(75,' modules/comment.module:957 modules/node.module:1138','Update'),(76,' modules/comment.module:963 ;1314 modules/contact.module:332 ;444, modules/forum.module:385','Subject'),(77,' modules/comment.module:964 modules/node.module:1163, modules/tracker.module:121','Author'),(78,' modules/comment.module:965 modules/statistics.module:179','Time'),(79,' modules/comment.module:1018 modules/node.module:1097','The update has been performed.'),(80,' modules/comment.module:1067 modules/contact.module:252, modules/menu.module:438 modules/node.module:1206 ;1875, modules/path.module:107 modules/system.module:1262 modules/user.module:1603','This action cannot be undone.'),(81,' modules/comment.module:1155 modules/node.module:1550','You have to specify a valid date.'),(82,' modules/comment.module:1245 ;1261 modules/node.module:1628','Authored by'),(83,' modules/comment.module:1269 ;1300;1308 modules/user.module:1511 ;1645','E-mail'),(84,' modules/comment.module:1273 ;1300;1308 modules/profile.module:601','The content of this field is kept private and will not be shown publicly.'),(85,' modules/comment.module:1285 modules/node.module:1629','Authored on'),(86,' modules/comment.module:1287 modules/node.module:1163, modules/user.module:1305 ;1911','Status'),(87,' modules/comment.module:1287 modules/node.module:1637 ;2138','Published'),(88,' modules/comment.module:1291 ;1297;1306 modules/contact.module:432','Your name'),(89,' modules/comment.module:1640 modules/forum.module:195','Date - newest first'),(90,' modules/comment.module:1641 modules/forum.module:195','Date - oldest first'),(91,' modules/comment.module:198 ;307 modules/node.module:75','1 comment'),(92,' webform.module:221','Yes'),(93,' webform.module:221','No'),(94,' modules/contact.module:143 ;156;455 modules/profile.module:213 ;382','Category'),(95,' modules/contact.module:143 ;179 modules/system.module:232','Selected'),(96,' modules/contact.module:199 modules/profile.module:296','You must enter a category.'),(97,' modules/contact.module:290 modules/system.module:746 ;762;786;796;834','Reset to defaults'),(98,' modules/contact.module:337 ;469 modules/watchdog.module:106 ;164','Message'),(99,' webform.module:486','Name'),(100,' modules/filter.module:342 ;411 modules/user.module:1311','Roles'),(101,' modules/forum.module:620 modules/taxonomy.module:367 ;370','root'),(102,' modules/forum.module:754 modules/tracker.module:121','Replies'),(103,' modules/forum.module:931 modules/tracker.module:121','Last post'),(104,' modules/help.module:18 ;0 modules/user.module:717','help'),(105,' modules/legacy.module:45 ;50 modules/taxonomy.module:0','taxonomy'),(106,' webform.module:433','Preview'),(107,' modules/menu.module:466 modules/node.module:1006 ;1078','Reset'),(108,' modules/menu.module:644 modules/user.module:1900','locked'),(109,' modules/node.module:776 modules/poll.module:155','Unlimited'),(110,' modules/node.module:834 modules/search.module:154 ;906;0, modules/user.module:762','search'),(111,' modules/node.module:1003 ;1062 modules/watchdog.module:99','Filter'),(112,' modules/node.module:1163 ;1243 modules/profile.module:382, modules/taxonomy.module:142 modules/tracker.module:121, modules/watchdog.module:104 ;164','Type'),(113,' modules/poll.module:156 modules/user.module:1305','Active'),(114,' modules/poll.module:211 ;460 modules/search.module:906','results'),(115,' modules/statistics.module:128 ;190;216;248 modules/watchdog.module:47','details'),(116,' modules/statistics.module:139 modules/tracker.module:52','track'),(117,' modules/statistics.module:163 ;180 modules/watchdog.module:164','Referrer'),(118,' modules/statistics.module:164 modules/watchdog.module:105 ;164','Date'),(119,' modules/statistics.module:165 ;181;236 modules/watchdog.module:107 ;164','User'),(120,' modules/statistics.module:166 modules/user.module:1518, modules/watchdog.module:164','Hostname'),(121,' modules/system.module:97 modules/upload.module:91','file download'),(122,' modules/system.module:251 modules/upload.module:105','General settings'),(123,' webform.module:402','E-mail address'),(124,' modules/throttle.module:82 modules/user.module:595 ;598','1 user'),(125,' image.module:502, ;507','error'),(126,' themes/chameleon/chameleon.theme:19, themes/engines/phptemplate/phptemplate.engine:28','left sidebar'),(127,' themes/chameleon/chameleon.theme:20, themes/engines/phptemplate/phptemplate.engine:29','right sidebar'),(128,' cron.php:19','Last cron run did not complete.'),(129,' cron.php:31','Cron run completed'),(130,' cron.php:19 ;31','cron'),(131,' includes/database.pgsql.inc:351','Your PostgreSQL database is set up with the wrong character encoding (%encoding). It is possible it will not work as expected. It is advised to recreate it with UTF-8/Unicode encoding. More information can be found in the PostgreSQL documentation.'),(132,' includes/form.inc:172','Validation error, please try again. If this error persists, please contact the site administrator.'),(133,' includes/form.inc:757','The specified passwords do not match.'),(134,' includes/image.inc:21','Built-in GD2 toolkit'),(135,' includes/image.inc:61','The selected image handling toolkit \'%toolkit\' can not correctly process \'%function\'.'),(136,' includes/image.inc:184','The built-in GD2 toolkit is installed and working properly.'),(137,' includes/image.inc:187','The built-in GD image toolkit requires that the GD module for PHP be installed and configured properly. For more information see %url.'),(138,' includes/menu.inc:856','edit primary links'),(139,' includes/menu.inc:1350','Operating in off-line mode.'),(140,' includes/pager.inc:126 ;389','« first'),(141,' includes/pager.inc:129 ;391','next ›'),(142,' includes/pager.inc:399','Go to page %number'),(143,' includes/tablesort.inc:66','sort by %s'),(144,' includes/xmlrpcs.inc:53','parse error. not well formed'),(145,' includes/xmlrpcs.inc:56','server error. invalid xml-rpc. not conforming to spec. Request must be a method_call'),(146,' includes/xmlrpcs.inc:126','Recursive calls to system.multicall are forbidden'),(147,' includes/xmlrpcs.inc:174 ;247','server error. requested method %methodname not specified.'),(148,' includes/xmlrpcs.inc:184','server error. wrong number of method parameters'),(149,' includes/xmlrpcs.inc:221','server error. invalid method parameters'),(150,' includes/xmlrpcs.inc:227','server error. requested method %methodname does not exist.'),(151,' includes/xmlrpcs.inc:239','server error. requested function %method does not exist.'),(152,' includes/xmlrpcs.inc:250','server error. requested method %methodname signature not specified.'),(153,' modules/help.module:96','This guide explains what the various modules in Drupal do and how to configure them.
\nIt is not a substitute for the Drupal handbook available online and should be used in conjunction with it. The online reference handbook might be more up-to-date and has helpful user-contributed comments. It is your definitive reference point for all Drupal documentation.
\n'),(154,' modules/help.module:101','The help module displays context sensitive help information. Users can learn how to use modules and accomplish tasks quicker with less errors by clicking on links in provided by the help module.'),(155,' modules/help.module:102','Modules can make documentation available to other modules with this module. All user help should be presented using this module. Some examples of help:
\n\n- The name of a module (unused, but there).
\n- The description found on the admin/system/modules page.
\n- The module\'s help text, displayed on the admin/help page and through the module\'s individual help link.
\n- The help for a distributed authorization module (if applicable).
\n- The description of a post type (if applicable).
\n
\n'),(156,' modules/help.module:111','You can not administer the help system.'),(157,' modules/help.module:112','For more information please read the configuration and customization handbook Help page.'),(158,' modules/help.module:115','Manages the display of online help.'),(159,' modules/help.module:128','No help is available for module %module.'),(160,' modules/legacy.module:15','The legacy module provides legacy handlers for upgrades from older installations. These handlers help automatically redirect references to pages from old installations and prevent page not found errors for your site.'),(161,' modules/legacy.module:16','The legacy module handles legacy style taxonomy page, taxonomy feed, and blog feed paths. It also handles URL upgrades from Drupal 4.1. It rewrites old-style URLs to new-style URLs (clean URLs). '),(162,' modules/legacy.module:17','Example Mappings:
\n\n- taxonomy/page/or/52,97 to taxonomy/term/52+97.
\n- taxonomy/feed/or/52,97 to taxonomy/term/52+97/0/feed.
\n- blog/feed/52 to blog/52/feed.
\n- node/view/52 to node/52.
\n- book/view/52 to node/52.
\n- user/view/52 to user/52.
\n
\n'),(163,' modules/legacy.module:27','Legacy module has no configurable options.'),(164,' modules/legacy.module:28','For more information please read the configuration and customization handbook Legacy page.'),(165,' modules/legacy.module:31','Provides legacy handlers for upgrades from older Drupal installations.'),(166,' modules/legacy.module:122','Legacy filter'),(167,' modules/legacy.module:125','Replaces URLs from Drupal 4.1 (and lower) with updated equivalents.'),(168,' modules/ping.module:15','The ping module is useful for notifying interested sites that your site has changed. It automatically sends notifications (called \"pings\") to the pingomatic service to tell it that your site has changed. In turn pingomatic will ping other services such as weblogs.com, Technorati, blo.gs, BlogRolling, Feedster.com, Moreover, etc.'),(169,' modules/ping.module:16','The ping module requires cron or a similar periodic job scheduler to be enabled.'),(170,' modules/ping.module:17','You can:
\n\n'),(171,' modules/ping.module:24','For more information please read the configuration and customization handbook Ping page.'),(172,' modules/ping.module:27','Alerts other sites when your site has been updated.'),(173,' modules/ping.module:64','Failed to notify pingomatic.com (site).'),(174,' modules/ping.module:64','directory ping'),(175,' modules/ping.module:0 c:\\moduli-core\\ping.module:0','ping'),(176,' modules/story.module:15','The story module is used to create a content post type called stories. Stories are articles in their simplest form: they have a title, a teaser and a body. Stories are typically used to post news articles or as a group blog. '),(177,' modules/story.module:16','The story administration interface allows for complex configuration. It provides a submission form, workflow, default view permission, default edit permission, permissions for permission, and attachments. Trackbacks can also be enabled.'),(178,' modules/story.module:23','For more information please read the configuration and customization handbook Story page.'),(179,' modules/story.module:26','Allows users to submit stories, articles or similar content.'),(180,' modules/story.module:28','Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'),(181,' modules/story.module:36 ;70;0 c:\\moduli-core\\story.module:47;97;0','story'),(182,' modules/story.module:43 c:\\moduli-core\\story.module:54','create stories'),(183,' modules/story.module:43 c:\\moduli-core\\story.module:54','edit own stories'),(184,' themes/chameleon/chameleon.theme:134 ;155','By %author at %date'),(185,' themes/chameleon/chameleon.theme:0','chameleon'),(186,' themes/engines/phptemplate/phptemplate.engine:31','header'),(187,' themes/engines/phptemplate/phptemplate.engine:32','footer'),(188,' themes/engines/phptemplate/phptemplate.engine:247 ;270','Submitted by %a on %b.'),(189,' themes/engines/phptemplate/phptemplate.engine:326','PHPTemplate was instructed to override the %name theme function, but no valid template file was found.'),(190,' c:\\moduli-core\\aggregator.module:69, modules/aggregator.module:37','Categories provide a way to group items from different news feeds together. Each news category has its own feed page and block. For example, you could tag various sport-related feeds as belonging to a category called Sports. News items can be added to a category automatically by setting a feed to automatically place its item into that category, or by using the categorize items link in any listing of news items.
'),(191,' c:\\moduli-core\\aggregator.module:129;0, modules/aggregator.module:51 ;1194;374;385;507;518;707;756;761;818;0, modules/aggregator.module:94 ;1085;396;444;449;506;0','aggregator'),(192,' c:\\moduli-core\\aggregator.module:146, modules/aggregator.module:55 modules/aggregator.module:111','add feed'),(193,' c:\\moduli-core\\aggregator.module:140;713, modules/aggregator.module:70 ;970 modules/aggregator.module:105 ;755','update items'),(194,' c:\\moduli-core\\aggregator.module:156, modules/aggregator.module:80 modules/aggregator.module:118','news aggregator'),(195,' c:\\moduli-core\\aggregator.module:159, modules/aggregator.module:85 modules/aggregator.module:121','sources'),(196,' c:\\moduli-core\\aggregator.module:146, modules/aggregator.module:94','RSS feed'),(197,' c:\\moduli-core\\aggregator.module:172;188, modules/aggregator.module:127 ;148 modules/aggregator.module:142 ;158','categorize'),(198,' c:\\moduli-core\\aggregator.module:131, modules/aggregator.module:167 modules/aggregator.module:96','edit feed'),(199,' c:\\moduli-core\\aggregator.module:134, modules/aggregator.module:178 modules/aggregator.module:99','edit category'),(200,' c:\\moduli-core\\aggregator.module:90, modules/aggregator.module:205 modules/aggregator.module:52','Items shown in sources and categories pages'),(201,' c:\\moduli-core\\aggregator.module:90, modules/aggregator.module:207 modules/aggregator.module:54','The number of items which will be shown with each feed or category in the feed and category summary pages.'),(202,' modules/aggregator.module:211','Discard news items older than'),(203,' c:\\moduli-core\\aggregator.module:91, modules/aggregator.module:217 modules/aggregator.module:64','Category selection type'),(204,' c:\\moduli-core\\aggregator.module:91, modules/aggregator.module:218 modules/aggregator.module:65','checkboxes'),(205,' c:\\moduli-core\\aggregator.module:91, modules/aggregator.module:218 modules/aggregator.module:65','multiple selector'),(206,' c:\\moduli-core\\aggregator.module:91, modules/aggregator.module:219 modules/aggregator.module:66','The type of category selection widget which is shown on categorization pages. Checkboxes are easier to use; a multiple selector is good for working with large numbers of categories.'),(207,' c:\\moduli-core\\aggregator.module:227, modules/aggregator.module:253 modules/aggregator.module:195','%title category latest items'),(208,' c:\\moduli-core\\aggregator.module:231, modules/aggregator.module:257 modules/aggregator.module:199','%title feed latest items'),(209,' modules/aggregator.module:268','Number of news items in block'),(210,' c:\\moduli-core\\aggregator.module:241, modules/aggregator.module:287 modules/aggregator.module:229','View this feed\'s recent news.'),(211,' c:\\moduli-core\\aggregator.module:247, modules/aggregator.module:295 modules/aggregator.module:237','View this category\'s recent news.'),(212,' modules/aggregator.module:346','A category named %category already exists. Please enter a unique title.'),(213,' modules/aggregator.module:385','Category %category added.'),(214,' c:\\moduli-core\\aggregator.module:639, modules/aggregator.module:421 modules/aggregator.module:680','The name of the feed; typically the name of the web site you syndicate content from.'),(215,' c:\\moduli-core\\aggregator.module:640, modules/aggregator.module:428 modules/aggregator.module:681','The fully-qualified URL of the feed.'),(216,' c:\\moduli-core\\aggregator.module:641, modules/aggregator.module:432 modules/aggregator.module:682','Update interval'),(217,' c:\\moduli-core\\aggregator.module:946, modules/aggregator.module:448','Categorize news items'),(218,' c:\\moduli-core\\aggregator.module:648, modules/aggregator.module:451','New items in this feed will be automatically filed in the checked categories as they are received.'),(219,' modules/aggregator.module:478','A feed named %feed already exists. Please enter a unique title.'),(220,' modules/aggregator.module:518','Feed %feed added.'),(221,' c:\\moduli-core\\aggregator.module:270, modules/aggregator.module:572','The news items from %site have been removed.'),(222,' c:\\moduli-core\\aggregator.module:350, modules/aggregator.module:703','There is no new syndicated content from %site.'),(223,' c:\\moduli-core\\aggregator.module:354, modules/aggregator.module:707','Updated URL for feed %title to %url.'),(224,' c:\\moduli-core\\aggregator.module:350, modules/aggregator.module:756 ;757','There is new syndicated content from %site.'),(225,' c:\\moduli-core\\aggregator.module:708, modules/aggregator.module:965 modules/aggregator.module:750','Feed overview'),(226,' c:\\moduli-core\\aggregator.module:710;721, modules/aggregator.module:967 ;978 modules/aggregator.module:752 ;763','Items'),(227,' c:\\moduli-core\\aggregator.module:710;1047, modules/aggregator.module:967 modules/aggregator.module:752 ;1162','Last update'),(228,' c:\\moduli-core\\aggregator.module:710, modules/aggregator.module:967 modules/aggregator.module:752','Next update'),(229,' c:\\moduli-core\\aggregator.module:713, modules/aggregator.module:970 modules/aggregator.module:755','%time left'),(230,' c:\\moduli-core\\aggregator.module:719, modules/aggregator.module:976 modules/aggregator.module:761','Category overview'),(231,' c:\\moduli-core\\aggregator.module:946, modules/aggregator.module:1077 modules/aggregator.module:963','Save categories'),(232,' c:\\moduli-core\\aggregator.module:946, modules/aggregator.module:1105 modules/aggregator.module:991','Categorize'),(233,' c:\\moduli-core\\aggregator.module:897, modules/aggregator.module:1127 modules/aggregator.module:1014','The categories have been saved.'),(234,' c:\\moduli-core\\aggregator.module:134, modules/aggregator.module:1166 modules/aggregator.module:1056','in category'),(235,' c:\\moduli-core\\aggregator.module:129;0, modules/aggregator.module:1194','aggregated feeds'),(236,' modules/aggregator.module:1265','URL:'),(237,' modules/aggregator.module:1278','Updated:'),(238,' c:\\moduli-core\\aggregator.module:1069;1069, modules/aggregator.module:1293 ;1293 modules/aggregator.module:1184 ;1184','blog it'),(239,' c:\\moduli-core\\aggregator.module:1070, modules/aggregator.module:1294 modules/aggregator.module:1185','Comment on this news item in your personal blog.'),(240,' c:\\moduli-core\\aggregator.module:1090, modules/aggregator.module:1314 modules/aggregator.module:1205','%age old'),(241,' c:\\moduli-core\\aggregator.module:100;713;724, modules/aggregator.module:970 ;981;1373 modules/aggregator.module:75, ;755;766','1 item'),(242,' c:\\moduli-core\\aggregator.module:107, modules/aggregator.module:228 modules/aggregator.module:82','administer news feeds'),(243,' c:\\moduli-core\\aggregator.module:67, modules/aggregator.module:35','Add a site that has an RSS/RDF feed. The URL is the full path to the RSS feed file. For the feed to update automatically you must run \"cron.php\" on a regular basis. If you already have a feed with the URL you are planning to use, the system will not accept another feed with the same URL.
'),(244,' c:\\moduli-core\\aggregator.module:641, modules/aggregator.module:682','The refresh interval indicating how often you want to update this feed. Requires crontab.'),(245,' c:\\moduli-core\\aggregator.module:736;788, modules/aggregator.module:777 ;829','The category has been updated.'),(246,' c:\\moduli-core\\aggregator.module:740;818, modules/aggregator.module:781 ;859','The feed has been updated.'),(247,' c:\\moduli-core\\aggregator.module:752;788, modules/aggregator.module:793','The category has been deleted.'),(248,' c:\\moduli-core\\aggregator.module:756;818, modules/aggregator.module:797','The feed has been deleted.'),(249,' modules/archive.module:15','The archive page allows content to be viewed by date. It also provides a monthly calendar view that users can use to navigate through content.'),(250,' modules/archive.module:16','To view the archive by date, select the date in the calendar. Administrators can enable the browse archives block in block administration to allow users to browse by calendar. Clicking on a date in the monthly calendar view shows the content for that date. Users can navigate to different months using arrows beside the month\'s name in the calendar display. The current date will be highlighted in the calendar.'),(251,' modules/archive.module:17','You can
\n\n'),(252,' modules/archive.module:23','For more information please read the configuration and customization handbook Archive page.'),(253,' c:\\moduli-core\\archive.module:15, modules/archive.module:26','Displays a calendar for navigating older content.'),(254,' c:\\moduli-core\\archive.module:198;210, modules/archive.module:38','archives'),(255,' c:\\moduli-core\\archive.module:181, modules/archive.module:54','Calendar to browse archives'),(256,' c:\\moduli-core\\archive.module:185, modules/archive.module:58','Browse archives'),(257,' c:\\moduli-core\\archive.module:86, modules/archive.module:130','A calendar to browse the archives'),(258,' c:\\moduli-core\\archive.module:87, modules/archive.module:131','Previous month'),(259,' c:\\moduli-core\\archive.module:87, modules/archive.module:131','Next month'),(260,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','Su'),(261,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','Mo'),(262,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','Tu'),(263,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','We'),(264,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','Th'),(265,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','Fr'),(266,' c:\\moduli-core\\archive.module:99, modules/archive.module:143','Sa'),(267,' modules/archive.module:240 ;244','No posts found.'),(268,' c:\\moduli-core\\archive.module:228;243, modules/archive.module:272','Show'),(269,' modules/archive.module:173','1 post'),(270,' c:\\moduli-core\\archive.module:0, modules/archive.module:0','archive'),(271,' modules/block.module:28','Module blocks'),(272,' c:\\moduli-core\\block.module:45, modules/block.module:30','Administrator defined blocks'),(273,' modules/block.module:38','For more information please read the configuration and customization handbook Block page.'),(274,' c:\\moduli-core\\block.module:26, modules/block.module:41','Controls the boxes that are displayed around the main content.'),(275,' c:\\moduli-core\\block.module:30, modules/block.module:50','Here you can create a new block. Once you have created this block you must make it active and give it a place on the page using blocks. The title is used when displaying the block. The description is used in the \"block\" column on the blocks page.
'),(276,' modules/block.module:73','configure block'),(277,' c:\\moduli-core\\block.module:212;248, modules/block.module:77','delete block'),(278,' c:\\moduli-core\\block.module:60;178, modules/block.module:81','add block'),(279,' modules/block.module:88 ;92','%key settings'),(280,' c:\\moduli-core\\block.module:188;276, modules/block.module:237','Save blocks'),(281,' c:\\moduli-core\\block.module:174, modules/block.module:307','%region'),(282,' c:\\moduli-core\\block.module:174, modules/block.module:334','Block'),(283,' modules/block.module:334','Placement'),(284,' modules/block.module:367','Block specific settings'),(285,' c:\\moduli-core\\block.module:207;246, modules/block.module:378','\'%name\' block'),(286,' modules/block.module:384','User specific visibility settings'),(287,' modules/block.module:389','Custom visibility settings'),(288,' modules/block.module:390','Users cannot control whether or not they see this block.'),(289,' modules/block.module:390','Show this block by default, but let individual users hide it.'),(290,' modules/block.module:390','Hide this block by default but let individual users show it.'),(291,' modules/block.module:391','Allow individual users to customize the visibility of this block in their account settings.'),(292,' modules/block.module:396','Page specific visibility settings'),(293,' modules/block.module:407','Show on every page except the listed pages.'),(294,' modules/block.module:407','Show on only the listed pages.'),(295,' modules/block.module:411','Show if the following PHP code returns TRUE (PHP-mode, experts only).'),(296,' modules/block.module:412','If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site.'),(297,' modules/block.module:416','Show block on specific pages'),(298,' modules/block.module:422','Pages'),(299,' c:\\moduli-core\\block.module:207;246, modules/block.module:430 ;459','Save block'),(300,' modules/block.module:439 ;466','Please ensure that each block description is unique.'),(301,' c:\\moduli-core\\block.module:261, modules/block.module:448','The block configuration has been saved.'),(302,' c:\\moduli-core\\block.module:220, modules/block.module:473','The block has been created.'),(303,' c:\\moduli-core\\block.module:213, modules/block.module:487','Are you sure you want to delete the block %name?'),(304,' c:\\moduli-core\\block.module:220, modules/block.module:495','The block %name has been removed.'),(305,' c:\\moduli-core\\block.module:240, modules/block.module:503','Block description'),(306,' c:\\moduli-core\\block.module:240, modules/block.module:506','A brief description of your block. Used on the block overview page.'),(307,' c:\\moduli-core\\block.module:237, modules/block.module:512','Block title'),(308,' c:\\moduli-core\\block.module:237, modules/block.module:515','The title of the block as shown to the user.'),(309,' c:\\moduli-core\\block.module:239, modules/block.module:521','Block body'),(310,' c:\\moduli-core\\block.module:239, modules/block.module:524','The content of the block as shown to the user.'),(311,' c:\\moduli-core\\block.module:304, modules/block.module:557','Block configuration'),(312,' c:\\moduli-core\\block.module:45, modules/block.module:58','administer blocks'),(313,' modules/block.module:58','use PHP for block visibility'),(314,' c:\\moduli-core\\block.module:0, modules/block.module:0','block'),(315,' modules/blog.module:13 ;267','blog entry'),(316,' modules/blog.module:45','Blog'),(317,' c:\\moduli-core\\blog.module:54, modules/blog.module:46','view recent blog entries'),(318,' modules/blog.module:46 ;252','Read %username\'s latest blog entries.'),(319,' modules/blog.module:59','The blog module allows registered users to maintain an online weblog (commonly known as a blog), often referred to as an online journal or diary. Blogs are made up of individual posts that are time stamped and are typically viewed by date as you would a diary. Blogs often contain links to webpages users have read and/or agree/disagree with.'),(320,' modules/blog.module:60','The blog module adds a user blogs navigation link to the site, which takes any visitor to a page that displays the most recent blog entries from all the users on the site. The navigation menu has a create a blog entry link (which takes you to a submission form) and a view personal blog link (which displays your blog entries as other people will see them). The blog module also creates a recent blog posts block that can be enabled.'),(321,' modules/blog.module:61','If a user has the ability to post blogs, then the import module (news aggregator) will display a blog-it link next to each news item in its lists. Clicking on this takes the user to the blog submission form, with the title, a link to the item, and a link to the source into the body text already in the text box, ready for the user to add a comment or explanation. This actively encourages people to add blog entries about things they see and hear elsewhere in the website and from your syndicated partner sites.'),(322,' modules/blog.module:71','For more information please read the configuration and customization handbook Blog page.'),(323,' c:\\moduli-core\\blog.module:70, modules/blog.module:74','Enables keeping an easily and regularly updated web page or a blog.'),(324,' modules/blog.module:76','A blog is a regularly updated journal or diary made up of individual posts shown in reversed chronological order. A blog is tightly coupled to the author so each user will have his \'own\' blog.'),(325,' c:\\moduli-core\\blog.module:142;238, modules/blog.module:141 ;237','%name\'s blog'),(326,' modules/blog.module:144','Post new blog entry.'),(327,' modules/blog.module:147','You are not allowed to post a new blog entry.'),(328,' modules/blog.module:166','RSS - %title'),(329,' modules/blog.module:193','RSS - blogs'),(330,' c:\\moduli-core\\blog.module:237;253;275, modules/blog.module:236 ;269','blogs'),(331,' c:\\moduli-core\\blog.module:258, modules/blog.module:252','%username\'s blog'),(332,' c:\\moduli-core\\blog.module:283, modules/blog.module:273','my blog'),(333,' c:\\moduli-core\\blog.module:299;306, modules/blog.module:289 ;298','Recent blog posts'),(334,' c:\\moduli-core\\blog.module:253;305, modules/blog.module:297','Read the latest blog entries.'),(335,' c:\\moduli-core\\blog.module:29, modules/blog.module:20','edit own blog'),(336,' modules/blogapi.module:16','When this module is enabled and configured you can use programs like Ecto to create and publish posts from your desktop. Blog API module supports several XML-RPC based blogging APIs such as the Blogger API, MetaWeblog API, and most of the Movable Type API. Any desktop blogging tools or other services (e.g. Flickr\'s \"post to blog\") that support these APIs should work with this site.'),(337,' modules/blogapi.module:17','This module also allows site administrators to configure which content types can be posted via the external applications. So, for instance, users can post forum topics as well as blog posts. Where supported, the external applications will display each content type as a separate \"blog\".'),(338,' modules/blogapi.module:18','You can
\n\n'),(339,' modules/blogapi.module:24','For more information please read the configuration and customization handbook BlogApi page.'),(340,' c:\\moduli-core\\blogapi.module:17, modules/blogapi.module:27','Allows users to post content using applications that support XML-RPC blog APIs.'),(341,' modules/blogapi.module:40','Returns a list of weblogs to which an author has posting privileges.'),(342,' modules/blogapi.module:45','Returns information about an author in the system.'),(343,' modules/blogapi.module:50 ;75','Creates a new post, and optionally publishes it.'),(344,' modules/blogapi.module:55','Updates the information about an existing post.'),(345,' modules/blogapi.module:60 ;85','Returns information about a specific post.'),(346,' modules/blogapi.module:65','Deletes a post.'),(347,' modules/blogapi.module:70 ;100','Returns a list of the most recent posts in the system.'),(348,' modules/blogapi.module:80','Updates information about an existing post.'),(349,' modules/blogapi.module:90','Uploads a file to your webserver.'),(350,' modules/blogapi.module:95 ;115','Returns a list of all categories to which the post is assigned.'),(351,' modules/blogapi.module:105','Returns a bandwidth-friendly list of the most recent posts in the system.'),(352,' modules/blogapi.module:110','Returns a list of all categories defined in the weblog.'),(353,' modules/blogapi.module:120','Sets the categories for a post.'),(354,' modules/blogapi.module:125','Retrieve information about the XML-RPC methods supported by the server.'),(355,' modules/blogapi.module:130','Retrieve information about the text formatting plugins supported by the server.'),(356,' modules/blogapi.module:135','Retrieve the list of TrackBack pings posted to a particular entry. This could be used to programmatically retrieve the list of pings for a particular entry, then iterate through each of those pings doing the same, until one has built up a graph of the web of entries referencing one another on a particular topic.'),(357,' modules/blogapi.module:140','Publish (rebuild) all of the static files related to an entry from your weblog. Equivalent to saving an entry in the system (but without the ping).'),(358,' modules/blogapi.module:218','You do not have permission to create the type of post you wanted to create.'),(359,' c:\\moduli-core\\blogapi.module:152, modules/blogapi.module:233','%type: added %title using blog API.'),(360,' c:\\moduli-core\\blogapi.module:156;216, modules/blogapi.module:238 ;291','Error storing post.'),(361,' modules/blogapi.module:260 ;500','You do not have permission to update this post.'),(362,' c:\\moduli-core\\blogapi.module:212, modules/blogapi.module:287','%type: updated %title using blog API.'),(363,' c:\\moduli-core\\blogapi.module:266, modules/blogapi.module:372','No file sent.'),(364,' c:\\moduli-core\\blogapi.module:270, modules/blogapi.module:376','Error storing file.'),(365,' c:\\moduli-core\\blogapi.module:415, modules/blogapi.module:482','Not implemented.'),(366,' c:\\moduli-core\\blogapi.module:427, modules/blogapi.module:495','Invalid post.'),(367,' modules/blogapi.module:535','You either tried to edit somebody else\'s blog or you don\'t have permission to edit your own blog.'),(368,' c:\\moduli-core\\blogapi.module:488, modules/blogapi.module:539','Wrong username or password.'),(369,' c:\\moduli-core\\blogapi.module:507, modules/blogapi.module:559','XML-RPC Engine'),(370,' c:\\moduli-core\\blogapi.module:507, modules/blogapi.module:561','RSD or Really-Simple-Discovery is a mechanism which allows external blogger tools to discover the APIs they can use to interact with Drupal. Here you can set the preferred method for blogger tools to interact with your site. The common XML-RPC engines are Blogger, MetaWeblog and Movabletype. If you are not sure which is the correct setting, choose Blogger.'),(371,' modules/blogapi.module:567','Blog types'),(372,' modules/blogapi.module:569','Select the content types for which you wish to enable posting via blogapi. Each type will appear as a different \"blog\" in the client application (if supported).'),(373,' c:\\moduli-core\\blogapi.module:519, modules/blogapi.module:581 ;586','RSD'),(374,' c:\\moduli-core\\blogapi.module:0, modules/blogapi.module:0','blogapi'),(375,' c:\\moduli-core\\book.module:13;74, modules/book.module:13 ;83','book page'),(376,' modules/book.module:61','add child page'),(377,' c:\\moduli-core\\book.module:60;88, modules/book.module:64','printer-friendly version'),(378,' c:\\moduli-core\\book.module:60, modules/book.module:66','Show a printer-friendly version of this book page and its sub-pages.'),(379,' c:\\moduli-core\\book.module:55;76;84, modules/book.module:87 ;104','books'),(380,' c:\\moduli-core\\book.module:80, modules/book.module:98','orphan pages'),(381,' c:\\moduli-core\\book.module:100, modules/book.module:123 ;1001','outline'),(382,' c:\\moduli-core\\book.module:128, modules/book.module:145','Book navigation'),(383,' c:\\moduli-core\\book.module:228;273, modules/book.module:278 ;308','Pages at a given level are ordered first by weight and then by title.'),(384,' c:\\moduli-core\\book.module:272, modules/book.module:302','The parent page in the book.'),(385,' c:\\moduli-core\\book.module:225, modules/book.module:313','An explanation to help other authors understand your motivations to put this post into the book.'),(386,' c:\\moduli-core\\book.module:257;276, modules/book.module:319 ;346','Update book outline'),(387,' c:\\moduli-core\\book.module:263;277, modules/book.module:322 ;351','Remove from book outline'),(388,' c:\\moduli-core\\book.module:251;280, modules/book.module:326 ;341','Add to book outline'),(389,' c:\\moduli-core\\book.module:272, modules/book.module:344','The post has been added to the book.'),(390,' modules/book.module:349','The book outline has been updated.'),(391,' c:\\moduli-core\\book.module:265, modules/book.module:353','The post has been removed from the book.'),(392,' modules/book.module:471','The post has been submitted for moderation and won\'t be accessible until it has been approved.'),(393,' c:\\moduli-core\\book.module:486, modules/book.module:521','up'),(394,' c:\\moduli-core\\book.module:530, modules/book.module:575','top-level'),(395,' modules/book.module:679','Unknown export format.'),(396,' c:\\moduli-core\\book.module:701;765, modules/book.module:913 ;949','Save book pages'),(397,' c:\\moduli-core\\book.module:80, modules/book.module:955','There are no orphan pages.'),(398,' c:\\moduli-core\\book.module:0, modules/book.module:968 ;0','book'),(399,' c:\\moduli-core\\book.module:725, modules/book.module:975','Updated book %title.'),(400,' c:\\moduli-core\\book.module:20, modules/book.module:979','Updated orphan book pages.'),(401,' c:\\moduli-core\\book.module:603, modules/book.module:1003','Book'),(402,' modules/book.module:1014','The book content type is suited for creating structured, multi-page hypertexts such as site resource guides, manuals, and Frequently Asked Questions (FAQs). It permits a document to have chapters, sections, subsections, etc. Authors with suitable permissions can add pages to a collaborative book, placing them into the existing document by adding them to a table of contents menu. '),(403,' modules/book.module:1015','Books have additional previous, up, and next navigation elements at the bottom of each page for moving through the text. Additional navigation may be provided by enabling the book navigation block on the block administration page.'),(404,' modules/book.module:1016','Users can select the printer-friendly version link visible at the bottom of a book page to generate a printer-friendly display of the page and all of its subsections. '),(405,' modules/book.module:1017','Administrators can view a book outline, from which is it possible to change the titles of sections, and their weight (thus reordering sections). From this outline, it is also possible to edit and/or delete book pages. Many content types besides pages (for example, blog entries, stories, and polls) can be added to a collaborative book by choosing the outline tab when viewing the post.'),(406,' modules/book.module:1027','For more information please read the configuration and customization handbook Book page.'),(407,' c:\\moduli-core\\book.module:793, modules/book.module:1030','Allows users to collaboratively author a book.'),(408,' c:\\moduli-core\\book.module:795, modules/book.module:1032','The book module offers a means to organize content, authored by many users, in an online manual, outline or FAQ.
'),(409,' c:\\moduli-core\\book.module:797, modules/book.module:1034','Pages in a book are like a tree. As pages are edited, reorganized and removed, child pages might be left with no link to the rest of the book. Such pages are referred to as \"orphan pages\". On this page, administrators can review their books for orphans and reattach those pages as desired.
'),(410,' c:\\moduli-core\\book.module:799, modules/book.module:1036','A book is a collaborative writing effort: users can collaborate writing the pages of the book, positioning the pages in the right order, and reviewing or modifying pages previously written. So when you have some information to share or when you read a page of the book and you didn\'t like it, or if you think a certain page could have been written better, you can do something about it.'),(411,' c:\\moduli-core\\book.module:803, modules/book.module:1040','The outline feature allows you to include posts in the book hierarchy.'),(412,' c:\\moduli-core\\book.module:701;765, modules/book.module:20','create book pages'),(413,' c:\\moduli-core\\book.module:20, modules/book.module:20','edit own book pages'),(414,' modules/comment.module:75','You can
\n\n'),(415,' modules/comment.module:81','For more information please read the configuration and customization handbook Comment page.'),(416,' c:\\moduli-core\\comment.module:80, modules/comment.module:84','Allows users to comment on and discuss published content.'),(417,' c:\\moduli-core\\comment.module:63, modules/comment.module:87','Below is a list of the latest comments posted to your site. Click on a subject to see the comment, the author\'s name to edit the author\'s user information , \"edit\" to modify the text, and \"delete\" to remove their submission.
'),(418,' c:\\moduli-core\\comment.module:65, modules/comment.module:89','Below is a list of the comments posted to your site that need approval. To approve a comment, click on \"edit\" and then change its \"moderation status\" to Approved. Click on a subject to see the comment, the author\'s name to edit the author\'s user information, \"edit\" to modify the text, and \"delete\" to remove their submission.
'),(419,' c:\\moduli-core\\comment.module:68, modules/comment.module:92','Comments can be attached to any node, and their settings are below. The display comes in two types: a \"flat list\" where everything is flush to the left side, and comments come in chronological order, and a \"threaded list\" where replies to other comments are placed immediately below and slightly indented, forming an outline. They also come in two styles: \"expanded\", where you see both the title and the contents, and \"collapsed\" where you only see the title. Preview comment forces a user to look at their comment by clicking on a \"Preview\" button before they can actually add the comment.
'),(420,' c:\\moduli-core\\comment.module:92, modules/comment.module:104','comments'),(421,' c:\\moduli-core\\comment.module:249, modules/comment.module:114','published comments'),(422,' c:\\moduli-core\\comment.module:112, modules/comment.module:116','approval queue'),(423,' c:\\moduli-core\\comment.module:96, modules/comment.module:124','delete comment'),(424,' c:\\moduli-core\\comment.module:94, modules/comment.module:128','edit comment'),(425,' c:\\moduli-core\\comment.module:131;136, modules/comment.module:135','reply to comment'),(426,' c:\\moduli-core\\comment.module:162;172, modules/comment.module:163 ;167','Recent comments'),(427,' c:\\moduli-core\\comment.module:194, modules/comment.module:198','Jump to the first comment of this posting.'),(428,' c:\\moduli-core\\comment.module:197, modules/comment.module:201','Jump to the first new comment of this posting.'),(429,' c:\\moduli-core\\comment.module:203;218, modules/comment.module:207 ;223','add new comment'),(430,' c:\\moduli-core\\comment.module:203, modules/comment.module:207','Add a new comment to this page.'),(431,' c:\\moduli-core\\comment.module:218, modules/comment.module:223','Share your thoughts and opinions related to this posting.'),(432,' c:\\moduli-core\\comment.module:327, modules/comment.module:243','Default comment setting'),(433,' c:\\moduli-core\\comment.module:241;248, modules/comment.module:243 ;259','Read only'),(434,' c:\\moduli-core\\comment.module:241, modules/comment.module:243 ;259','Read/Write'),(435,' modules/comment.module:243','Users with the administer comments permission will be able to override this setting.'),(436,' c:\\moduli-core\\comment.module:309, modules/comment.module:250 ;324','Comment settings'),(437,' c:\\moduli-core\\comment.module:309, modules/comment.module:329','Signature'),(438,' c:\\moduli-core\\comment.module:309, modules/comment.module:331','Your signature will be publicly displayed at the end of your comments.'),(439,' c:\\moduli-core\\comment.module:329;1537, modules/comment.module:347','Viewing options'),(440,' c:\\moduli-core\\comment.module:325, modules/comment.module:354','Default display mode'),(441,' c:\\moduli-core\\comment.module:325, modules/comment.module:357','The default view for comments. Expanded views display the body of the comment. Threaded views keep replies together.'),(442,' c:\\moduli-core\\comment.module:326, modules/comment.module:362','Default display order'),(443,' c:\\moduli-core\\comment.module:326, modules/comment.module:365','The default sorting for new users and anonymous users while viewing comments. These users may change their view using the comment control panel. For registered users, this change is remembered as a persistent user preference.'),(444,' c:\\moduli-core\\comment.module:327, modules/comment.module:370','Default comments per page'),(445,' c:\\moduli-core\\comment.module:327, modules/comment.module:373','Default number of comments for each page: more comments are distributed in several pages.'),(446,' c:\\moduli-core\\comment.module:328, modules/comment.module:378','Comment controls'),(447,' c:\\moduli-core\\comment.module:328, modules/comment.module:381','Display above the comments'),(448,' c:\\moduli-core\\comment.module:328, modules/comment.module:382','Display below the comments'),(449,' c:\\moduli-core\\comment.module:328, modules/comment.module:383','Display above and below the comments'),(450,' c:\\moduli-core\\comment.module:328, modules/comment.module:384','Do not display'),(451,' c:\\moduli-core\\comment.module:328, modules/comment.module:385','Position of the comment controls box. The comment controls let the user change the default display mode and display order of comments.'),(452,' c:\\moduli-core\\comment.module:335, modules/comment.module:390','Posting settings'),(453,' c:\\moduli-core\\comment.module:331, modules/comment.module:400','Anonymous posters may not enter their contact information'),(454,' c:\\moduli-core\\comment.module:331, modules/comment.module:401','Anonymous posters may leave their contact information'),(455,' c:\\moduli-core\\comment.module:331, modules/comment.module:402','Anonymous posters must leave their contact information'),(456,' c:\\moduli-core\\comment.module:332, modules/comment.module:411','Comment subject field'),(457,' c:\\moduli-core\\comment.module:332, modules/comment.module:414','Can users provide a unique subject for their comments?'),(458,' c:\\moduli-core\\comment.module:333;396;399;1446;1451, modules/comment.module:419 ;480;1325;1331;1335;1356','Preview comment'),(459,' c:\\moduli-core\\comment.module:334, modules/comment.module:426','Location of comment submission form'),(460,' c:\\moduli-core\\comment.module:334, modules/comment.module:428','Display on separate page'),(461,' c:\\moduli-core\\comment.module:334, modules/comment.module:428','Display below post or comments'),(462,' c:\\moduli-core\\comment.module:427, modules/comment.module:485 ;521','You are not authorized to post comments.'),(463,' c:\\moduli-core\\comment.module:421, modules/comment.module:514','This discussion is closed: you can\'t post new comments.'),(464,' c:\\moduli-core\\comment.module:421;424;427;431;508, modules/comment.module:518','Reply'),(465,' c:\\moduli-core\\comment.module:431, modules/comment.module:527','You are not authorized to view comments.'),(466,' c:\\moduli-core\\comment.module:543, modules/comment.module:552','Comment: duplicate %subject.'),(467,' c:\\moduli-core\\comment.module:558, modules/comment.module:566 ;1014','Comment: updated %subject.'),(468,' c:\\moduli-core\\comment.module:675, modules/comment.module:639','Comment: added %subject.'),(469,' c:\\moduli-core\\comment.module:684, modules/comment.module:648','Your comment has been queued for moderation by site administrators and will be published after approval.'),(470,' c:\\moduli-core\\comment.module:696, modules/comment.module:657','Comment: unauthorized comment submitted or comment submitted to a closed node %subject.'),(471,' c:\\moduli-core\\comment.module:707, modules/comment.module:671','parent'),(472,' c:\\moduli-core\\comment.module:714;720, modules/comment.module:678 ;684','reply'),(473,' c:\\moduli-core\\comment.module:937, modules/comment.module:863','Post new comment'),(474,' c:\\moduli-core\\comment.module:994, modules/comment.module:882','The comment and all its replies have been deleted.'),(475,' c:\\moduli-core\\comment.module:1009, modules/comment.module:897','Are you sure you want to delete the comment %title?'),(476,' modules/comment.module:899','Any replies to this comment will be lost. This action cannot be undone.'),(477,' c:\\moduli-core\\comment.module:1015, modules/comment.module:904','The comment no longer exists.'),(478,' c:\\moduli-core\\comment.module:96, modules/comment.module:917 ;929','Publish the selected comments'),(479,' c:\\moduli-core\\comment.module:96, modules/comment.module:918 ;924;931','Delete the selected comments'),(480,' modules/comment.module:923 ;930','Unpublish the selected comments'),(481,' modules/comment.module:991','Please select one or more comments to perform the update on.'),(482,' modules/comment.module:1037','No comments available.'),(483,' c:\\moduli-core\\comment.module:1009, modules/comment.module:1066','Are you sure you want to delete these comments and all their children?'),(484,' c:\\moduli-core\\comment.module:96, modules/comment.module:1068','Delete comments'),(485,' c:\\moduli-core\\comment.module:1164, modules/comment.module:1082','The comments have been deleted.'),(486,' c:\\moduli-core\\comment.module:479, modules/comment.module:1159','You have to specify a valid author.'),(487,' c:\\moduli-core\\comment.module:465, modules/comment.module:1169','The name you used belongs to a registered user.'),(488,' c:\\moduli-core\\comment.module:470, modules/comment.module:1174','You have to leave your name.'),(489,' c:\\moduli-core\\comment.module:475, modules/comment.module:1179','The e-mail address you specified is not valid.'),(490,' c:\\moduli-core\\comment.module:479, modules/comment.module:1183','You have to leave an e-mail address.'),(491,' c:\\moduli-core\\comment.module:484, modules/comment.module:1188','The URL of your homepage is not valid. Remember that it must be fully qualified, i.e. of the form http://example.com/directory.'),(492,' c:\\moduli-core\\comment.module:152, modules/comment.module:1235','Administration'),(493,' c:\\moduli-core\\comment.module:966;1422;1427, modules/comment.module:1278 ;1303;1310','Homepage'),(494,' c:\\moduli-core\\comment.module:975;1055, modules/comment.module:1287','Not published'),(495,' c:\\moduli-core\\comment.module:973;1436, modules/comment.module:1317','Comment'),(496,' c:\\moduli-core\\comment.module:390;393;1451;1452, modules/comment.module:1331 ;1332','Post comment'),(497,' c:\\moduli-core\\comment.module:1503, modules/comment.module:1490','%a comments per page'),(498,' c:\\moduli-core\\comment.module:1532, modules/comment.module:1499','Save settings'),(499,' c:\\moduli-core\\comment.module:1534, modules/comment.module:1510','Select your preferred way to display the comments and click \"Save settings\" to activate your changes.'),(500,' c:\\moduli-core\\comment.module:329;1537, modules/comment.module:1511','Comment viewing options'),(501,' c:\\moduli-core\\comment.module:1585, modules/comment.module:1534','by %a on %b'),(502,' c:\\moduli-core\\comment.module:1595, modules/comment.module:1544','by'),(503,' c:\\moduli-core\\comment.module:1637, modules/comment.module:1582','you can\'t post comments'),(504,' c:\\moduli-core\\comment.module:1641, modules/comment.module:1594','login or register to post comments'),(505,' c:\\moduli-core\\comment.module:1644, modules/comment.module:1597','login to post comments'),(506,' c:\\moduli-core\\comment.module:1652, modules/comment.module:1605','Comment: deleted %subject.'),(507,' c:\\moduli-core\\comment.module:1671, modules/comment.module:1625','Flat list - collapsed'),(508,' c:\\moduli-core\\comment.module:1671, modules/comment.module:1626','Flat list - expanded'),(509,' c:\\moduli-core\\comment.module:1671, modules/comment.module:1627','Threaded list - collapsed'),(510,' c:\\moduli-core\\comment.module:1671, modules/comment.module:1628','Threaded list - expanded'),(511,' c:\\moduli-core\\comment.module:197, modules/comment.module:201','1 new comment'),(512,' c:\\moduli-core\\comment.module:152, modules/comment.module:153','access comments'),(513,' c:\\moduli-core\\comment.module:152, modules/comment.module:153','post comments'),(514,' c:\\moduli-core\\comment.module:152, modules/comment.module:153','administer comments'),(515,' c:\\moduli-core\\comment.module:152, modules/comment.module:153','post comments without approval'),(516,' c:\\moduli-core\\comment.module:241;0, modules/comment.module:0','comment'),(517,' includes/common.inc:289','%page not found.'),(518,' includes/common.inc:307','Page not found'),(519,' includes/common.inc:317','%page denied access.'),(520,' includes/common.inc:335','Access denied'),(521,' includes/common.inc:336','You are not authorized to access this page.'),(522,' includes/common.inc:503','%message in %file on line %line.'),(523,' includes/common.inc:541','n/a'),(524,' includes/common.inc:811','bytes'),(525,' includes/common.inc:814','KB'),(526,' includes/common.inc:818','MB'),(527,' includes/common.inc:820','%size %suffix'),(528,' includes/common.inc:848','0 sec'),(529,' includes/common.inc:289','page not found'),(530,' includes/common.inc:317','access denied'),(531,' includes/common.inc:0','1 year'),(532,' includes/common.inc:0','1 week'),(533,' includes/common.inc:0','1 day'),(534,' includes/common.inc:0','1 hour'),(535,' includes/common.inc:0','1 min'),(536,' includes/common.inc:0','1 sec'),(537,' modules/contact.module:15','The contact module enables the use of both personal and site-wide contact forms, thereby facilitating easy communication within the community. While personal contact forms allow users to contact each other by e-mail, site-wide forms allow community members to contact the site administration from a central location. Users can specify a subject and message in the contact form, and also request that a copy of the e-mail be sent to their own address.'),(538,' modules/contact.module:17','If the menu module is enabled, a menu item linking to the site-wide contact page is added to the navigation block. It is disabled by default, but can be enabled via the menu management page. Links to the contact page may also be added to the primary and secondary links using the same page.'),(539,' modules/contact.module:19','Default site-wide contact page.'),(540,' modules/contact.module:20','Site-wide contact form category configuration.'),(541,' modules/contact.module:21','Site-wide contact form general settings.'),(542,' modules/contact.module:22','Site-wide contact form menu configuration.'),(543,' modules/contact.module:26','Enables the use of both personal and site-wide contact forms.'),(544,' modules/contact.module:30','The menu item can be customized and configured only once the menu module has been enabled.'),(545,' modules/contact.module:35','The contact module also adds a menu item (disabled by default) to the navigation block.'),(546,' modules/contact.module:47','contact form'),(547,' modules/contact.module:77','delete contact'),(548,' modules/contact.module:90 ;99;0','contact'),(549,' modules/contact.module:118','Contact settings'),(550,' modules/contact.module:123','Personal contact form'),(551,' modules/contact.module:143 ;163','Recipients'),(552,' modules/contact.module:159','Example: \'website feedback\' or \'product information\'.'),(553,' modules/contact.module:169','Auto-reply'),(554,' modules/contact.module:182','Set this to Yes if you would like this category to be selected by default.'),(555,' modules/contact.module:202','You must enter one or more recipients.'),(556,' modules/contact.module:208','%recipient is an invalid e-mail address.'),(557,' modules/contact.module:236','Category %category has been updated.'),(558,' modules/contact.module:252','Are you sure you want to delete %category?'),(559,' modules/contact.module:255','Category not found.'),(560,' modules/contact.module:276','Additional information'),(561,' modules/contact.module:281','Hourly threshold'),(562,' modules/contact.module:284','The maximum number of contact form submissions a user can perform per hour.'),(563,' modules/contact.module:308','%name is not accepting e-mails.'),(564,' modules/contact.module:311','Please login or register to send %name a message.'),(565,' modules/contact.module:324','From'),(566,' modules/contact.module:328','To'),(567,' modules/contact.module:342 ;473','Send me a copy.'),(568,' modules/contact.module:345 ;476','Send e-mail'),(569,' modules/contact.module:366','%name (%name-url) has sent you a message via your contact form (%form-url) at %site.'),(570,' modules/contact.module:367','If you don\'t want to receive such e-mails, you can change your settings at %url.'),(571,' modules/contact.module:368','Message:'),(572,' modules/contact.module:396','%name-from sent %name-to an e-mail.'),(573,' modules/contact.module:399','The message has been sent.'),(574,' modules/contact.module:430','You can leave us a message using the contact form below.'),(575,' modules/contact.module:438','Your e-mail address'),(576,' modules/contact.module:452','--'),(577,' modules/contact.module:481','The contact form has not been configured.'),(578,' modules/contact.module:493','You must select a valid category.'),(579,' modules/contact.module:522','[%category] %subject'),(580,' modules/contact.module:542','%name-from sent an e-mail regarding %category.'),(581,' modules/contact.module:545','Your message has been sent.'),(582,' modules/contact.module:231 ;237;266;396;542','mail'),(583,' modules/drupal.module:32','If you maintain a directory of sites, you can list them on a page using the drupal_client_page() function. Sample instructions:\n'),(584,' modules/drupal.module:45','For more information please read the configuration and customization handbook Drupal page.'),(585,' modules/drupal.module:48','Lets you register your site with a central server and improve ranking of Drupal projects by posting information on your installed modules and themes; also enables users to log in using a Drupal ID.'),(586,' c:\\moduli-core\\drupal.module:37, modules/drupal.module:63','You must set the name of your site on the administer » settings page.'),(587,' c:\\moduli-core\\drupal.module:39, modules/drupal.module:66','You must set an e-mail address for your site on the administer » settings page.'),(588,' c:\\moduli-core\\drupal.module:41, modules/drupal.module:69','You must set your site slogan on the administer » settings page.'),(589,' c:\\moduli-core\\drupal.module:43, modules/drupal.module:72','You must set your site mission on the administer » settings page.'),(590,' modules/drupal.module:78','Post data to another site'),(591,' modules/drupal.module:84','Register with a Drupal server'),(592,' c:\\moduli-core\\drupal.module:45, modules/drupal.module:92','Drupal XML-RPC server'),(593,' modules/drupal.module:99','Send system information'),(594,' modules/drupal.module:102','If enabled, your site will send information on its installed components (modules, themes, and theme engines). This information can help in compiling statistics on usage of Drupal projects.'),(595,' modules/drupal.module:107','Send statistics'),(596,' modules/drupal.module:110','If enabled, your site will send summary statistics on the number of registered users and the total number of posts. No private information will be sent. These data help to improve the ranking statistics of Drupal projects.'),(597,' modules/drupal.module:115','Receive data from other sites'),(598,' modules/drupal.module:121','Allow other Drupal sites to register'),(599,' modules/drupal.module:124','If enabled, your Drupal site will allow other sites to register with your site and send information to this site. This functionality can be used to maintain a list of related sites.'),(600,' modules/drupal.module:129','Authentication service'),(601,' modules/drupal.module:132','If enabled, your Drupal site will accept logins with the user names of other Drupal sites, and likewise provide authentication for users logging into other Drupal sites, based on their user accounts here.'),(602,' c:\\moduli-core\\drupal.module:98, modules/drupal.module:196','Ping from %name (%link).'),(603,' modules/drupal.module:248','Handling ping request'),(604,' modules/drupal.module:317','Error %code : %message'),(605,' modules/drupal.module:196','client ping'),(606,' modules/drupal.module:291','server ping'),(607,' c:\\moduli-core\\drupal.module:0, modules/drupal.module:0','drupal'),(608,' includes/file.inc:92','The directory %directory has been created.'),(609,' includes/file.inc:97','The directory %directory does not exist.'),(610,' includes/file.inc:106','The permissions of directory %directory have been changed to make it writable.'),(611,' includes/file.inc:109','The directory %directory is not writable'),(612,' includes/file.inc:110','The directory %directory is not writable, because it does not have the correct permissions set.'),(613,' includes/file.inc:121','Security warning: Couldn\'t write .htaccess file. Please create a .htaccess file in your %directory directory which contains the following lines: %htaccess'),(614,' includes/file.inc:207','The file %file could not be saved, because it exceeds the maximum allowed size for uploads.'),(615,' includes/file.inc:212','The file %file could not be saved, because the upload did not complete.'),(616,' includes/file.inc:217','The file %file could not be saved. An unknown error has occurred.'),(617,' includes/file.inc:240','File upload error. Could not move uploaded file.'),(618,' includes/file.inc:241','Upload Error. Could not move uploaded file(%file) to destination(%destination).'),(619,' includes/file.inc:321','The selected file %file could not be uploaded, because the destination %directory is not properly configured.'),(620,' includes/file.inc:322','The selected file %file could not not be uploaded, because the destination %directory could not be found, or because its permissions do not allow the file to be written.'),(621,' includes/file.inc:337','The selected file %file could not be copied, because no file by that name exists. Please check that you supplied the correct filename.'),(622,' includes/file.inc:369','The selected file %file could not be copied, because a file by that name already exists in the destination.'),(623,' includes/file.inc:375','The selected file %file could not be copied.'),(624,' includes/file.inc:424','The removal of the original file %file has failed.'),(625,' includes/file.inc:527','The file could not be created.'),(626,' includes/file.inc:110 ;322','file system'),(627,' includes/file.inc:241','file'),(628,' modules/filter.module:23','The filter module allows administrators to configure text input formats for the site. For example, an administrator may want a filter to strip out malicious HTML from user\'s comments. Administrators may also want to make URLs linkable even if they are only entered in an unlinked format.'),(629,' modules/filter.module:24','Users can choose between the available input formats when creating or editing content. Administrators can configure which input formats are available to which user roles, as well as choose a default input format. Administrators can also create new input formats. Each input format can be configured to use a selection of filters.'),(630,' modules/filter.module:25','You can
\n\n'),(631,' modules/filter.module:31','For more information please read the configuration and customization handbook Filter page.'),(632,' modules/filter.module:34','Handles the filtering of content in preparation for display.'),(633,' c:\\moduli-core\\filter.module:38, modules/filter.module:44','\nEvery filter performs one particular change on the user input, for example stripping out malicious HTML or making URLs clickable. Choose which filters you want to apply to text in this input format.
\nIf you notice some filters are causing conflicts in the output, you can rearrange them.
'),(634,' c:\\moduli-core\\filter.module:43, modules/filter.module:49','\nIf you cannot find the settings for a certain filter, make sure you\'ve enabled it on the view tab first.
'),(635,' c:\\moduli-core\\filter.module:47, modules/filter.module:53','\nBecause of the flexible filtering system, you might encounter a situation where one filter prevents another from doing its job. For example: a word in an URL gets converted into a glossary term, before the URL can be converted in a clickable link. When this happens, you will need to rearrange the order in which filters get executed.
\nFilters are executed from top-to-bottom. You can use the weight column to rearrange them: heavier filters \'sink\' to the bottom.
'),(636,' c:\\moduli-core\\filter.module:116, modules/filter.module:67 ;918','input formats'),(637,' c:\\moduli-core\\filter.module:179;221, modules/filter.module:78','add input format'),(638,' c:\\moduli-core\\filter.module:120, modules/filter.module:85','delete input format'),(639,' c:\\moduli-core\\filter.module:125, modules/filter.module:91','compose tips'),(640,' c:\\moduli-core\\filter.module:134, modules/filter.module:103','\'%format\' input format'),(641,' c:\\moduli-core\\filter.module:151, modules/filter.module:125','rearrange'),(642,' modules/filter.module:164','\nThis site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML \"tags\" is very easy. This table provides examples for each tag that is enabled on this site.
\nFor more information see W3C\'s HTML Specifications or use your favorite search engine to find other sites that explain HTML.
'),(643,' modules/filter.module:168','Anchors are used to make links to other pages.'),(644,' modules/filter.module:169','By default line break tags are automatically added, so use this tag to add additional ones. Use of this tag is different because it is not used with an open/close pair like all the others. Use the extra \" /\" inside the tag to maintain XHTML 1.0 compatibility'),(645,' modules/filter.module:169','Text with
line break'),(646,' modules/filter.module:170','By default paragraph tags are automatically added, so use this tag to add additional ones.'),(647,' modules/filter.module:170','Paragraph one.'),(648,' modules/filter.module:170','Paragraph two.'),(649,' modules/filter.module:171 ;171','Strong'),(650,' modules/filter.module:172 ;172','Emphasized'),(651,' modules/filter.module:173 ;173','Cited'),(652,' modules/filter.module:174','Coded text used to show programming source code'),(653,' modules/filter.module:174','Coded'),(654,' modules/filter.module:175 ;175','Bolded'),(655,' modules/filter.module:176 ;176','Underlined'),(656,' modules/filter.module:177 ;177','Italicized'),(657,' modules/filter.module:178','Superscripted'),(658,' modules/filter.module:178','Superscripted'),(659,' modules/filter.module:179','Subscripted'),(660,' modules/filter.module:179','Subscripted'),(661,' modules/filter.module:180 ;180','Preformatted'),(662,' modules/filter.module:181','Abbreviation'),(663,' modules/filter.module:181','Abbrev.'),(664,' modules/filter.module:182','Acronym'),(665,' modules/filter.module:182','TLA'),(666,' modules/filter.module:183 ;183','Block quoted'),(667,' modules/filter.module:184 ;184','Quoted inline'),(668,' c:\\moduli-core\\filter.module:331, modules/filter.module:186','Table'),(669,' modules/filter.module:186','Table header'),(670,' modules/filter.module:186','Table cell'),(671,' c:\\moduli-core\\filter.module:289;312, modules/filter.module:188 ;188','Deleted'),(672,' modules/filter.module:189 ;189','Inserted'),(673,' modules/filter.module:191','Ordered list - use the <li> to begin each list item'),(674,' c:\\moduli-core\\filter.module:139, modules/filter.module:191 ;192','First item'),(675,' modules/filter.module:191 ;192','Second item'),(676,' modules/filter.module:192','Unordered list - use the <li> to begin each list item'),(677,' modules/filter.module:195','Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description.'),(678,' c:\\moduli-core\\filter.module:139, modules/filter.module:195','First term'),(679,' modules/filter.module:195','First definition'),(680,' modules/filter.module:195','Second term'),(681,' c:\\moduli-core\\filter.module:343;412, modules/filter.module:195','Second definition'),(682,' modules/filter.module:197 ;198;199;200;201;202','Header'),(683,' modules/filter.module:198','Subtitle'),(684,' modules/filter.module:199','Subtitle three'),(685,' modules/filter.module:200','Subtitle four'),(686,' modules/filter.module:201','Subtitle five'),(687,' modules/filter.module:202','Subtitle six'),(688,' c:\\moduli-core\\filter.module:331, modules/filter.module:204','Tag Description'),(689,' modules/filter.module:204 ;233','You Type'),(690,' modules/filter.module:204 ;233','You Get'),(691,' modules/filter.module:218','No help provided for tag %tag.'),(692,' modules/filter.module:224','\nMost unusual characters can be directly entered without any problems.
\nIf you do encounter problems, try using HTML character entities. A common example looks like & for an ampersand & character. For a full list of entities see HTML\'s entities page. Some of the available characters include:
'),(693,' modules/filter.module:228','Ampersand'),(694,' modules/filter.module:229','Greater than'),(695,' modules/filter.module:230','Less than'),(696,' modules/filter.module:231','Quotation mark'),(697,' c:\\moduli-core\\filter.module:331, modules/filter.module:233','Character Description'),(698,' c:\\moduli-core\\filter.module:66;70, modules/filter.module:247','No HTML tags allowed'),(699,' c:\\moduli-core\\filter.module:77, modules/filter.module:255','You may post PHP code. You should include <?php ?> tags.'),(700,' c:\\moduli-core\\filter.module:103, modules/filter.module:283','Lines and paragraphs break automatically.'),(701,' modules/filter.module:285','Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.'),(702,' modules/filter.module:312','No roles may use this format'),(703,' c:\\moduli-core\\filter.module:176;215, modules/filter.module:317','Set default format'),(704,' c:\\moduli-core\\filter.module:388, modules/filter.module:324','Default format updated.'),(705,' c:\\moduli-core\\filter.module:301, modules/filter.module:361','Are you sure you want to delete the input format %format?'),(706,' c:\\moduli-core\\filter.module:311, modules/filter.module:361','If you have any content left in this input format, it will be switched to the default input format. This action cannot be undone.'),(707,' c:\\moduli-core\\filter.module:301, modules/filter.module:387','Deleted input format %format.'),(708,' modules/filter.module:398','All roles for the default format must be enabled and cannot be changed.'),(709,' modules/filter.module:412','Choose which roles may use this filter format. Note that roles with the \"administer filters\" permission can always use all the filter formats.'),(710,' c:\\moduli-core\\filter.module:346, modules/filter.module:431','Filters'),(711,' c:\\moduli-core\\filter.module:350;621, modules/filter.module:449 ;800','More information about formatting options'),(712,' c:\\moduli-core\\filter.module:353, modules/filter.module:452','No guidelines available.
'),(713,' c:\\moduli-core\\filter.module:355, modules/filter.module:454','These are the guidelines that users will see for posting in this input format. They are automatically generated from the filter settings.
'),(714,' c:\\moduli-core\\filter.module:357;642, modules/filter.module:456 ;829','Formatting guidelines'),(715,' modules/filter.module:471','Filter format names need to be unique. A format named %name already exists.'),(716,' c:\\moduli-core\\filter.module:280, modules/filter.module:491','Added input format %format.'),(717,' c:\\moduli-core\\filter.module:260, modules/filter.module:494','The input format settings have been updated.'),(718,' c:\\moduli-core\\filter.module:426, modules/filter.module:581','The filter ordering has been saved.'),(719,' c:\\moduli-core\\filter.module:451, modules/filter.module:605','No settings are available.'),(720,' c:\\moduli-core\\filter.module:635, modules/filter.module:805','Input format'),(721,' c:\\moduli-core\\filter.module:766;815, modules/filter.module:970 ;1016','HTML filter'),(722,' c:\\moduli-core\\filter.module:766, modules/filter.module:970','PHP evaluator'),(723,' c:\\moduli-core\\filter.module:766, modules/filter.module:970','Line break converter'),(724,' c:\\moduli-core\\filter.module:774, modules/filter.module:978','Allows you to restrict if users can post HTML and which tags to filter out.'),(725,' c:\\moduli-core\\filter.module:776, modules/filter.module:980','Runs a piece of PHP code. The usage of this filter should be restricted to administrators only!'),(726,' c:\\moduli-core\\filter.module:778, modules/filter.module:982','Converts line breaks into HTML (i.e. <br> and <p> tags).'),(727,' c:\\moduli-core\\filter.module:812, modules/filter.module:1017','Filter HTML tags'),(728,' c:\\moduli-core\\filter.module:812, modules/filter.module:1017','Strip disallowed tags'),(729,' c:\\moduli-core\\filter.module:812, modules/filter.module:1017','Escape all tags'),(730,' c:\\moduli-core\\filter.module:812, modules/filter.module:1017','How to deal with HTML tags in user-contributed content. If set to \"Strip disallowed tags\", dangerous tags are removed (see below). If set to \"Escape tags\", all HTML is escaped and presented as it was typed.'),(731,' c:\\moduli-core\\filter.module:813, modules/filter.module:1018','If \"Strip disallowed tags\" is selected, optionally specify tags which should not be stripped. JavaScript event attributes are always stripped.'),(732,' modules/filter.module:1019','Display HTML help'),(733,' modules/filter.module:1019','If enabled, Drupal will display some basic HTML help in the long filter tips.'),(734,' modules/filter.module:1020','Spam link deterrent'),(735,' modules/filter.module:1020','If enabled, Drupal will add rel=\"nofollow\" to all links, as a measure to reduce the effectiveness of spam links. Note: this will also prevent valid links from being followed by search engines, therefore it is likely most effective when enabled for anonymous users.'),(736,' c:\\moduli-core\\filter.module:167, modules/filter.module:143','administer filters'),(737,' c:\\moduli-core\\filter.module:0, modules/filter.module:0','filter'),(738,' modules/forum.module:15','The forum module lets you create threaded discussion forums for a particular topic on your site. This is similar to a message board system such as phpBB. Forums are very useful because they allow community members to discuss topics with one another, and they are archived for future reference.'),(739,' modules/forum.module:16','Forums can be organized under what are called containers. Containers hold forums and, in turn, forums hold threaded discussions. Both containers and forums can be placed inside other containers and forums. By planning the structure of your containers and forums well, you make it easier for users to find a topic area of interest to them. Forum topics can be moved by selecting a different forum and can be left in the existing forum by selecting leave a shadow copy. Forum topics can also have their own URL.'),(740,' modules/forum.module:17','Forums module requires Taxonomy and Comments module be enabled.'),(741,' modules/forum.module:18','You can
\n\n'),(742,' modules/forum.module:26','For more information please read the configuration and customization handbook Forum page.'),(743,' modules/forum.module:29','Enables threaded discussions about general topics.'),(744,' modules/forum.module:31','This is a list of existing containers and forums that you can edit. Containers hold forums and, in turn, forums hold threaded discussions. Both containers and forums can be placed inside other containers and forums. By planning the structure of your containers and forums well, you make it easier for users to find a topic area of interest to them.
'),(745,' modules/forum.module:33','Containers help you organize your forums. The job of a container is to hold, or contain, other forums that are related. For example, a container named \"Food\" might hold two forums named \"Fruit\" and \"Vegetables\".
'),(746,' modules/forum.module:35','A forum holds discussion topics that are related. For example, a forum named \"Fruit\" might contain topics titled \"Apples\" and \"Bananas\".
'),(747,' modules/forum.module:37','This is where you can configure system-wide options for how your forums act and display.'),(748,' modules/forum.module:39','Create a new topic for discussion in the forums.'),(749,' modules/forum.module:51 ;110;217','forum topic'),(750,' modules/forum.module:54 ;59','forums'),(751,' modules/forum.module:69','add container'),(752,' modules/forum.module:74','add forum'),(753,' modules/forum.module:89 ;579','edit container'),(754,' modules/forum.module:95 ;582','edit forum'),(755,' modules/forum.module:183','Hot topic threshold'),(756,' modules/forum.module:186','The number of posts a topic must have to be considered hot.'),(757,' modules/forum.module:190','Topics per page'),(758,' modules/forum.module:193','The default number of topics displayed per page; links to browse older messages are automatically being displayed.'),(759,' modules/forum.module:195','Posts - most active first'),(760,' modules/forum.module:195','Posts - least active first'),(761,' modules/forum.module:197','Default order'),(762,' modules/forum.module:200','The default display order for topics.'),(763,' modules/forum.module:214','This is the designated forum vocabulary. Some of the normal vocabulary options have been removed.'),(764,' modules/forum.module:217','forum topic is affixed to the forum vocabulary.'),(765,' modules/forum.module:248 ;264','Active forum topics'),(766,' modules/forum.module:249 ;273','New forum topics'),(767,' modules/forum.module:253','Number of topics'),(768,' modules/forum.module:283','Read the latest forum topics.'),(769,' modules/forum.module:362','The item %forum is only a container for forums. Please select one of the forums below it.'),(770,' modules/forum.module:391','Leave shadow copy'),(771,' modules/forum.module:391','If you move this topic, you can leave a link in the old forum to the new forum.'),(772,' modules/forum.module:437','Container name'),(773,' modules/forum.module:441','The container name is used to identify related forums.'),(774,' modules/forum.module:449','The container description can give users more information about the forums it contains.'),(775,' modules/forum.module:456','When listing containers, those with with light (small) weights get listed before containers with heavier (larger) weights. Containers with equal weights are sorted alphabetically.'),(776,' modules/forum.module:485','Forum name'),(777,' modules/forum.module:488','The forum name is used to identify related discussions.'),(778,' modules/forum.module:494','The forum description can give users more information about the discussion topics it contains.'),(779,' modules/forum.module:524 ;0','forum'),(780,' modules/forum.module:555','Are you sure you want to delete the forum %name?'),(781,' modules/forum.module:563','The forum %term and all sub-forums and associated posts have been deleted.'),(782,' modules/forum.module:564','forum: deleted %term and all its sub-forums and associated posts.'),(783,' modules/forum.module:588','There are no existing containers or forums. You may add some on the add container or add forum pages.'),(784,' modules/forum.module:629','Containers are usually placed at the top (root) level of your forum but you can also place a container inside a parent container or forum.'),(785,' modules/forum.module:632','You may place your forum inside a parent container or forum, or at the top (root) level of your forum.'),(786,' modules/forum.module:668','%time ago
by %author'),(787,' modules/forum.module:753','Topic'),(788,' modules/forum.module:755','Created'),(789,' modules/forum.module:756','Last reply'),(790,' modules/forum.module:837','The forum module requires both the taxonomy module and the comment module to be enabled and configured.'),(791,' modules/forum.module:890','Post new forum topic.'),(792,' modules/forum.module:893','You are not allowed to post a new forum topic.'),(793,' modules/forum.module:896','Login to post a new forum topic.'),(794,' modules/forum.module:914','No forums defined'),(795,' modules/forum.module:931','Forum'),(796,' modules/forum.module:931','Topics'),(797,' modules/forum.module:931','Posts'),(798,' modules/forum.module:990','This topic has been moved'),(799,' modules/forum.module:134','create forum topics'),(800,' modules/forum.module:134','edit own forum topics'),(801,' modules/forum.module:134','administer forums'),(802,' includes/locale.inc:26','The language %locale has been created, and can now be used to import a translation. More information is available in the help screen.'),(803,' includes/locale.inc:29','The language %locale has been created.'),(804,' includes/locale.inc:32','The %language language (%locale) has been created.'),(805,' includes/locale.inc:92','Code'),(806,' includes/locale.inc:92','English name'),(807,' includes/locale.inc:92','Translated'),(808,' includes/locale.inc:118','Configuration saved.'),(809,' includes/locale.inc:134','Language list'),(810,' includes/locale.inc:138 ;286','Language name'),(811,' includes/locale.inc:141','Select your language here, or add it below, if you are unable to find it.'),(812,' includes/locale.inc:149','Custom language'),(813,' includes/locale.inc:153','Language code'),(814,' includes/locale.inc:157','Commonly this is an ISO 639 language code with an optional country code for regional variants. Examples include \'en\', \'en-US\' and \'zh-cn\'.'),(815,' includes/locale.inc:160','Language name in English'),(816,' includes/locale.inc:163','Name of the language. Will be available for translation in all languages.'),(817,' includes/locale.inc:218','Already added languages'),(818,' includes/locale.inc:219','Languages not yet added'),(819,' includes/locale.inc:228','Language file'),(820,' includes/locale.inc:230','A gettext Portable Object (.po) file.'),(821,' includes/locale.inc:233','Import into'),(822,' includes/locale.inc:235','Choose the language you want to add strings into. If you choose a language which is not yet set up, then it will be added.'),(823,' includes/locale.inc:238','Mode'),(824,' includes/locale.inc:240','Strings in the uploaded file replace existing ones, new ones are added'),(825,' includes/locale.inc:240','Existing strings are kept, only new strings are added'),(826,' includes/locale.inc:282','Export translation'),(827,' includes/locale.inc:288','Select the language you would like to export in gettext Portable Object (.po) format.'),(828,' includes/locale.inc:290 ;301','Export'),(829,' includes/locale.inc:297','Export template'),(830,' includes/locale.inc:330','Strings to search for'),(831,' includes/locale.inc:334','Leave blank to show all strings. The search is case sensitive.'),(832,' includes/locale.inc:339','All languages'),(833,' includes/locale.inc:339','English (provided by Drupal)'),(834,' includes/locale.inc:342','Search in'),(835,' includes/locale.inc:344','All strings in that language'),(836,' includes/locale.inc:344','Only translated strings'),(837,' includes/locale.inc:344','Only untranslated strings'),(838,' includes/locale.inc:379','String not found.'),(839,' includes/locale.inc:385','Original text'),(840,' includes/locale.inc:420','The string has been saved.'),(841,' includes/locale.inc:437','The string has been removed.'),(842,' includes/locale.inc:457','The language selected for import is not supported.'),(843,' includes/locale.inc:468','The translation file %filename appears to have a missing or malformed header.'),(844,' includes/locale.inc:477','The translation was successfully imported. There are %number newly created translated strings and %update strings were updated.'),(845,' includes/locale.inc:478','Imported %file into %locale: %number new strings added and %update updated.'),(846,' includes/locale.inc:493','The translation import failed, because the file %filename could not be read.'),(847,' includes/locale.inc:518','The translation file %filename contains an error: \"msgstr\" was expected but not found on line %line.'),(848,' includes/locale.inc:524','The translation file %filename contains an error: \"msgid_plural\" was expected but not found on line %line.'),(849,' includes/locale.inc:530 ;548;560;568;582;591','The translation file %filename contains a syntax error on line %line.'),(850,' includes/locale.inc:542','The translation file %filename contains an error: \"msgid\" is unexpected on line %line.'),(851,' includes/locale.inc:556','The translation file %filename contains an error: \"msgstr[]\" is unexpected on line %line.'),(852,' includes/locale.inc:576','The translation file %filename contains an error: \"msgstr\" is unexpected on line %line.'),(853,' includes/locale.inc:604','The translation file %filename contains an error: there is an unexpected string on line %line.'),(854,' includes/locale.inc:615','The translation file %filename ended unexpectedly at line %line.'),(855,' includes/locale.inc:799','The translation file %filename contains an error: the plural formula could not be parsed.'),(856,' includes/locale.inc:1082','Exported %locale translation file: %filename.'),(857,' includes/locale.inc:1103','Exported translation file: %filename.'),(858,' includes/locale.inc:1305','String'),(859,' includes/locale.inc:1305','Locales'),(860,' includes/locale.inc:1365','Afar'),(861,' includes/locale.inc:1365','Abkhazian'),(862,' includes/locale.inc:1365','Avestan'),(863,' includes/locale.inc:1365','Afrikaans'),(864,' includes/locale.inc:1365','Akan'),(865,' includes/locale.inc:1365','Amharic'),(866,' includes/locale.inc:1365','Arabic'),(867,' includes/locale.inc:1365','Assamese'),(868,' includes/locale.inc:1365','Avar'),(869,' includes/locale.inc:1365','Aymara'),(870,' includes/locale.inc:1365','Azerbaijani'),(871,' includes/locale.inc:1365','Bashkir'),(872,' includes/locale.inc:1365','Belarusian'),(873,' includes/locale.inc:1365','Bulgarian'),(874,' includes/locale.inc:1365','Bihari'),(875,' includes/locale.inc:1365','Bislama'),(876,' includes/locale.inc:1365','Bambara'),(877,' includes/locale.inc:1365','Bengali'),(878,' includes/locale.inc:1365','Tibetan'),(879,' includes/locale.inc:1365','Breton'),(880,' includes/locale.inc:1365','Bosnian'),(881,' includes/locale.inc:1365','Catalan'),(882,' includes/locale.inc:1365','Chechen'),(883,' includes/locale.inc:1365','Chamorro'),(884,' includes/locale.inc:1365','Corsican'),(885,' includes/locale.inc:1365','Cree'),(886,' includes/locale.inc:1365','Czech'),(887,' includes/locale.inc:1365','Old Slavonic'),(888,' includes/locale.inc:1365','Welsh'),(889,' includes/locale.inc:1365','Welch'),(890,' includes/locale.inc:1365','Danish'),(891,' includes/locale.inc:1365','German'),(892,' includes/locale.inc:1365','Maldivian'),(893,' includes/locale.inc:1365','Bhutani'),(894,' includes/locale.inc:1365','Ewe'),(895,' includes/locale.inc:1365','Greek'),(896,' includes/locale.inc:1365','English'),(897,' includes/locale.inc:1365','Esperanto'),(898,' includes/locale.inc:1365','Spanish'),(899,' includes/locale.inc:1365','Estonian'),(900,' includes/locale.inc:1365','Basque'),(901,' includes/locale.inc:1365','Persian'),(902,' includes/locale.inc:1365','Fulah'),(903,' includes/locale.inc:1365','Finnish'),(904,' includes/locale.inc:1365','Fiji'),(905,' includes/locale.inc:1365','Faeroese'),(906,' includes/locale.inc:1365','French'),(907,' includes/locale.inc:1365','Frisian'),(908,' includes/locale.inc:1365','Irish'),(909,' includes/locale.inc:1365','Scots Gaelic'),(910,' includes/locale.inc:1365','Galician'),(911,' includes/locale.inc:1365','Guarani'),(912,' includes/locale.inc:1365','Gujarati'),(913,' includes/locale.inc:1365','Manx'),(914,' includes/locale.inc:1365','Hausa'),(915,' includes/locale.inc:1365','Hebrew'),(916,' includes/locale.inc:1365','Hindi'),(917,' includes/locale.inc:1365','Hiri Motu'),(918,' includes/locale.inc:1365','Croatian'),(919,' includes/locale.inc:1365','Hungarian'),(920,' includes/locale.inc:1365','Armenian'),(921,' includes/locale.inc:1365','Herero'),(922,' includes/locale.inc:1365','Interlingua'),(923,' includes/locale.inc:1365','Indonesian'),(924,' includes/locale.inc:1365','Interlingue'),(925,' includes/locale.inc:1365','Igbo'),(926,' includes/locale.inc:1365','Inupiak'),(927,' includes/locale.inc:1365','Icelandic'),(928,' includes/locale.inc:1365','Italian'),(929,' includes/locale.inc:1365','Inuktitut'),(930,' includes/locale.inc:1365','Japanese'),(931,' includes/locale.inc:1365','Javanese'),(932,' includes/locale.inc:1365','Georgian'),(933,' includes/locale.inc:1365','Kongo'),(934,' includes/locale.inc:1365','Kikuyu'),(935,' includes/locale.inc:1365','Kwanyama'),(936,' includes/locale.inc:1365','Kazakh'),(937,' includes/locale.inc:1365','Greenlandic'),(938,' includes/locale.inc:1365','Cambodian'),(939,' includes/locale.inc:1365','Kannada'),(940,' includes/locale.inc:1365','Korean'),(941,' includes/locale.inc:1365','Kanuri'),(942,' includes/locale.inc:1365','Kashmiri'),(943,' includes/locale.inc:1365','Kurdish'),(944,' includes/locale.inc:1365','Komi'),(945,' includes/locale.inc:1365','Cornish'),(946,' includes/locale.inc:1365','Kirghiz'),(947,' includes/locale.inc:1365','Latin'),(948,' includes/locale.inc:1365','Luxembourgish'),(949,' includes/locale.inc:1365','Luganda'),(950,' includes/locale.inc:1365','Lingala'),(951,' includes/locale.inc:1365','Laothian'),(952,' includes/locale.inc:1365','Lithuanian'),(953,' includes/locale.inc:1365','Latvian'),(954,' includes/locale.inc:1365','Malagasy'),(955,' includes/locale.inc:1365','Marshallese'),(956,' includes/locale.inc:1365','Maori'),(957,' includes/locale.inc:1365','Macedonian'),(958,' includes/locale.inc:1365','Malayalam'),(959,' includes/locale.inc:1365','Mongolian'),(960,' includes/locale.inc:1365','Moldavian'),(961,' includes/locale.inc:1365','Marathi'),(962,' includes/locale.inc:1365','Malay'),(963,' includes/locale.inc:1365','Maltese'),(964,' includes/locale.inc:1365','Burmese'),(965,' includes/locale.inc:1365','Nauru'),(966,' includes/locale.inc:1365','North Ndebele'),(967,' includes/locale.inc:1365','Nepali'),(968,' includes/locale.inc:1365','Ndonga'),(969,' includes/locale.inc:1365','Dutch'),(970,' includes/locale.inc:1365','Norwegian'),(971,' includes/locale.inc:1365','South Ndebele'),(972,' includes/locale.inc:1365','Navajo'),(973,' includes/locale.inc:1365','Chichewa'),(974,' includes/locale.inc:1365','Occitan'),(975,' includes/locale.inc:1365','Oromo'),(976,' includes/locale.inc:1365','Oriya'),(977,' includes/locale.inc:1365','Ossetian'),(978,' includes/locale.inc:1365','Punjabi'),(979,' includes/locale.inc:1365','Pali'),(980,' includes/locale.inc:1365','Polish'),(981,' includes/locale.inc:1365','Pashto'),(982,' includes/locale.inc:1365','Portuguese'),(983,' includes/locale.inc:1365','Quechua'),(984,' includes/locale.inc:1365','Rhaeto-Romance'),(985,' includes/locale.inc:1365','Kirundi'),(986,' includes/locale.inc:1365','Romanian'),(987,' includes/locale.inc:1365','Russian'),(988,' includes/locale.inc:1365','Kinyarwanda'),(989,' includes/locale.inc:1365','Sanskrit'),(990,' includes/locale.inc:1365','Sardinian'),(991,' includes/locale.inc:1365','Sindhi'),(992,' includes/locale.inc:1365','Northern Sami'),(993,' includes/locale.inc:1365','Sango'),(994,' includes/locale.inc:1365','Serbo-Croatian'),(995,' includes/locale.inc:1365','Singhalese'),(996,' includes/locale.inc:1365','Slovak'),(997,' includes/locale.inc:1365','Slovenian'),(998,' includes/locale.inc:1365','Samoan'),(999,' includes/locale.inc:1365','Shona'),(1000,' includes/locale.inc:1365','Somali'),(1001,' includes/locale.inc:1365','Albanian'),(1002,' includes/locale.inc:1365','Serbian'),(1003,' includes/locale.inc:1365','Siswati'),(1004,' includes/locale.inc:1365','Sesotho'),(1005,' includes/locale.inc:1365','Sudanese'),(1006,' includes/locale.inc:1365','Swedish'),(1007,' includes/locale.inc:1365','Swahili'),(1008,' includes/locale.inc:1365','Tamil'),(1009,' includes/locale.inc:1365','Telugu'),(1010,' includes/locale.inc:1365','Tajik'),(1011,' includes/locale.inc:1365','Thai'),(1012,' includes/locale.inc:1365','Tigrinya'),(1013,' includes/locale.inc:1365','Turkmen'),(1014,' includes/locale.inc:1365','Tagalog'),(1015,' includes/locale.inc:1365','Setswana'),(1016,' includes/locale.inc:1365','Tonga'),(1017,' includes/locale.inc:1365','Turkish'),(1018,' includes/locale.inc:1365','Tsonga'),(1019,' includes/locale.inc:1365','Tatar'),(1020,' includes/locale.inc:1365','Twi'),(1021,' includes/locale.inc:1365','Tahitian'),(1022,' includes/locale.inc:1365','Uighur'),(1023,' includes/locale.inc:1365','Ukrainian'),(1024,' includes/locale.inc:1365','Urdu'),(1025,' includes/locale.inc:1365','Uzbek'),(1026,' includes/locale.inc:1365','Venda'),(1027,' includes/locale.inc:1365','Vietnamese'),(1028,' includes/locale.inc:1365','Wolof'),(1029,' includes/locale.inc:1365','Xhosa'),(1030,' includes/locale.inc:1365','Yiddish'),(1031,' includes/locale.inc:1365','Yoruba'),(1032,' includes/locale.inc:1365','Zhuang'),(1033,' includes/locale.inc:1365','Chinese, Simplified'),(1034,' includes/locale.inc:1365','Chinese, Traditional'),(1035,' includes/locale.inc:1365','Zulu'),(1036,' modules/locale.module:22','The locale module allows you to present your Drupal site in a language other than the default English. You can use it to set up a multi-lingual web site or replace given built-in text with text which has been customized for your site. Whenever the locale module encounters text which needs to be displayed, it tries to translate it into the currently selected language. If a translation is not available, then the string is remembered, so you can look up untranslated strings easily.'),(1037,' modules/locale.module:23','The locale module provides two options for providing translations. The first is the integrated web interface, via which you can search for untranslated strings, and specify their translations. An easier and less time-consuming method is to import existing translations for your language. These translations are available as GNU gettext Portable Object files (.po files for short). Translations for many languages are available for download from the translation page.'),(1038,' modules/locale.module:24','If an existing translation does not meet your needs, the .po files are easily edited with special editing tools. The locale module\'s import feature allows you to add strings from such files into your site\'s database. The export functionality enables you to share your translations with others, generating Portable Object files from your site strings.'),(1039,' modules/locale.module:25','You can
\n\n'),(1040,' modules/locale.module:34','For more information please read the configuration and customization handbook Locale page.'),(1041,' c:\\moduli-core\\locale.module:22, modules/locale.module:37','Enables the translation of the user interface to languages other than English.'),(1042,' c:\\moduli-core\\locale.module:25, modules/locale.module:40','Drupal provides support for the translation of its interface text into different languages. This page provides an overview of the installed languages. You can add a language on the add language page, or directly by importing a translation. If multiple languages are enabled, registered users will be able to set their preferred language. The site default will be used for anonymous visitors and for users without their own settings.
Drupal interface translations may be added or extended by several courses: by importing an existing translation, by translating everything from scratch, or by a combination of these approaches.
'),(1043,' c:\\moduli-core\\locale.module:27, modules/locale.module:42','You need to add all languages in which you would like to display the site interface. If you can\'t find the desired language in the quick-add dropdown, then you will need to provide the proper language code yourself. The language code may be used to negotiate with browsers and to present flags, etc., so it is important to pick a code that is standardised for the desired language. You can also add a language by importing a translation.
'),(1044,' c:\\moduli-core\\locale.module:29, modules/locale.module:44','This page allows you to import a translation provided in the gettext Portable Object (.po) format. The easiest way to get your site translated is to obtain an existing Drupal translation and to import it. You can find existing translations on the Drupal translation page. Note that importing a translation file might take a while.
'),(1045,' c:\\moduli-core\\locale.module:31, modules/locale.module:46','This page allows you to export Drupal strings. The first option is to export a translation so it can be shared. The second option generates a translation template, which contains all Drupal strings, but without their translations. You can use this template to start a new translation using various software packages designed for this task.
'),(1046,' c:\\moduli-core\\locale.module:33, modules/locale.module:48','It is often convenient to get the strings from your setup on the export page, and use a desktop Gettext translation editor to edit the translations. On this page you can search in the translated and untranslated strings, and the default English texts provided by Drupal.
'),(1047,' modules/locale.module:63','localization'),(1048,' modules/locale.module:69','manage languages'),(1049,' modules/locale.module:74','manage strings'),(1050,' modules/locale.module:88','add language'),(1051,' modules/locale.module:94','import'),(1052,' modules/locale.module:100','export'),(1053,' modules/locale.module:108','confirm'),(1054,' modules/locale.module:123','delete string'),(1055,' c:\\moduli-core\\locale.module:110, modules/locale.module:152','Interface language settings'),(1056,' c:\\moduli-core\\locale.module:110, modules/locale.module:159','Selecting a different locale will change the interface language of the site.'),(1057,' c:\\moduli-core\\locale.module:320, modules/locale.module:337','Are you sure you want to delete the language %name?'),(1058,' modules/locale.module:337','Deleting a language will remove all data associated with it. This action cannot be undone.'),(1059,' c:\\moduli-core\\locale.module:291;292, modules/locale.module:349','The language %locale has been removed.'),(1060,' modules/locale.module:138','administer locales'),(1061,' modules/locale.module:0','Jan'),(1062,' modules/locale.module:0','Feb'),(1063,' modules/locale.module:0','Mar'),(1064,' modules/locale.module:0','Apr'),(1065,' modules/locale.module:0','Jun'),(1066,' modules/locale.module:0','Jul'),(1067,' modules/locale.module:0','Aug'),(1068,' modules/locale.module:0','Sep'),(1069,' modules/locale.module:0','Oct'),(1070,' modules/locale.module:0','Nov'),(1071,' modules/locale.module:0','Dec'),(1072,' modules/locale.module:0 ;0','Thu'),(1073,' modules/locale.module:0','Fri'),(1074,' modules/locale.module:0','Sat'),(1075,' modules/locale.module:0','Sun'),(1076,' modules/locale.module:0','Mon'),(1077,' modules/locale.module:0','Tue'),(1078,' modules/locale.module:0','Wed'),(1079,' modules/menu.module:32','For more information please read the configuration and customization handbook Menu page.'),(1080,' modules/menu.module:35','Allows administrators to customize the site navigation menu.'),(1081,' modules/menu.module:37','Menus are a collection of links (menu items) used to navigate a website. The list(s) below display the currently available menus along with their menu items. Select an operation from the list to manage each menu or menu item.'),(1082,' modules/menu.module:53 ;104','menus'),(1083,' modules/menu.module:62','add menu item'),(1084,' modules/menu.module:67','edit menu item'),(1085,' modules/menu.module:72','reset menu item'),(1086,' modules/menu.module:77','disable menu item'),(1087,' modules/menu.module:82','delete menu item'),(1088,' modules/menu.module:88','add menu'),(1089,' modules/menu.module:187','Menu settings'),(1090,' modules/menu.module:197','The name to display for this link.'),(1091,' modules/menu.module:203 ;359','The description displayed when hovering over a menu item.'),(1092,' modules/menu.module:210 ;388','Parent item'),(1093,' modules/menu.module:223 ;395','Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.'),(1094,' modules/menu.module:236','Check to delete this menu item.'),(1095,' modules/menu.module:241','You may also edit the advanced settings for this menu item.'),(1096,' modules/menu.module:255','No primary links'),(1097,' modules/menu.module:266','Menu containing primary links'),(1098,' modules/menu.module:272','No secondary links'),(1099,' modules/menu.module:275','Menu containing secondary links'),(1100,' modules/menu.module:278','If you select the same menu as primary links then secondary links will display the appropriate second level of your navigation hierarchy.'),(1101,' modules/menu.module:282','Post authoring form settings'),(1102,' modules/menu.module:290','Show all menus'),(1103,' modules/menu.module:293','Restrict parent items to'),(1104,' modules/menu.module:318','The name of the menu.'),(1105,' modules/menu.module:364 ;372','Path'),(1106,' modules/menu.module:366','The path this menu item links to. This can be an internal Drupal path such as %add-node or an external URL such as %drupal. Enter %front to link to the front page.'),(1107,' modules/menu.module:380 ;598','Expanded'),(1108,' modules/menu.module:382','If selected and this menu item has children, the menu will always appear expanded.'),(1109,' modules/menu.module:432','Are you sure you want to delete the menu %item?'),(1110,' modules/menu.module:435','Are you sure you want to delete the custom menu item %item?'),(1111,' modules/menu.module:466','Are you sure you want to reset the item %item to its default values?'),(1112,' modules/menu.module:466','Any customizations will be lost. This action cannot be undone.'),(1113,' modules/menu.module:478','The menu item was reset to its default settings.'),(1114,' modules/menu.module:493','The menu item has been disabled.'),(1115,' modules/menu.module:525','The menu item %title has been updated.'),(1116,' modules/menu.module:598','Menu item'),(1117,' modules/menu.module:662','disable'),(1118,' modules/menu.module:665','enable'),(1119,' modules/menu.module:673','reset'),(1120,' modules/menu.module:685 ;742','disabled'),(1121,' modules/menu.module:450 ;454;529;0','menu'),(1122,' modules/menu.module:166','administer menu'),(1123,' modules/node.module:17','All content in a website is stored and treated as nodes. Therefore nodes are any postings such as blogs, stories, polls and forums. The node module manages these content types and is one of the strengths of Drupal over other content management systems.'),(1124,' modules/node.module:18','Treating all content as nodes allows the flexibility of creating new types of content. It also allows you to painlessly apply new features or changes to all content. Comments are not stored as nodes but are always associated with a node.'),(1125,' modules/node.module:19','Node module features
\n\n- The list tab provides an interface to search and sort all content on your site.
\n- The configure settings tab has basic settings for content on your site.
\n- The configure content types tab lists all content types for your site and lets you configure their default workflow.
\n- The search tab lets you search all content on your site
\n
\n'),(1126,' modules/node.module:33','For more information please read the configuration and customization handbook Node page.'),(1127,' modules/node.module:36','Allows content to be submitted to the site and displayed on pages.'),(1128,' modules/node.module:39','Settings for the core of Drupal. Almost everything is a node so these settings will affect most of the site.
'),(1129,' modules/node.module:41','Below is a list of all of the posts on your site. Other forms of content are listed elsewhere (e.g. comments).
Clicking a title views the post, while clicking an author\'s name views their user information.
'),(1130,' modules/node.module:43','Enter a simple pattern to search for a post. This can include the wildcard character *.
For example, a search for \"br*\" might return \"bread bakers\", \"our daily bread\" and \"brenda\".
'),(1131,' modules/node.module:47','The revisions let you track differences between multiple versions of a post.'),(1132,' modules/node.module:524','Log'),(1133,' modules/node.module:611','Content ranking'),(1134,' modules/node.module:615','Keyword relevance'),(1135,' modules/node.module:616','Recently posted'),(1136,' modules/node.module:618','Number of comments'),(1137,' modules/node.module:621','Number of views'),(1138,' modules/node.module:749','Factor'),(1139,' modules/node.module:769','Number of posts on main page'),(1140,' modules/node.module:771','The default maximum number of posts to display per page on overview pages such as the main page.'),(1141,' modules/node.module:775','Length of trimmed posts'),(1142,' c:\\moduli-core\\n, e.module:590, modules/node.module:776','200 characters'),(1143,' c:\\moduli-core\\node.module:590, modules/node.module:776','400 characters'),(1144,' c:\\moduli-core\\node.module:590, modules/node.module:776','600 characters'),(1145,' c:\\moduli-core\\node.module:590, modules/node.module:777','800 characters'),(1146,' c:\\moduli-core\\node.module:590, modules/node.module:777','1000 characters'),(1147,' c:\\moduli-core\\node.module:590, modules/node.module:777','1200 characters'),(1148,' c:\\moduli-core\\node.module:590, modules/node.module:777','1400 characters'),(1149,' c:\\moduli-core\\node.module:590, modules/node.module:778','1600 characters'),(1150,' c:\\moduli-core\\node.module:590, modules/node.module:778','1800 characters'),(1151,' c:\\moduli-core\\node.module:590, modules/node.module:778','2000 characters'),(1152,' c:\\moduli-core\\node.module:590, modules/node.module:779','The maximum number of characters used in the trimmed version of a post. Drupal will use this setting to determine at which offset long posts should be trimmed. The trimmed version of a post is typically used as a teaser when displaying the post on the main page, in XML feeds, etc. To disable teasers, set to \'Unlimited\'. Note that this setting will only affect new or updated content and will not affect existing teasers.'),(1153,' c:\\moduli-core\\node.module:591, modules/node.module:783','Preview post'),(1154,' c:\\moduli-core\\node.module:591, modules/node.module:784','Must users preview posts before submitting?'),(1155,' c:\\moduli-core\\n, e.module:619, modules/node.module:813','Read the rest of this posting.'),(1156,' modules/node.module:840','posts'),(1157,' modules/node.module:843','content types'),(1158,' c:\\moduli-core\\node.module:659;1347, modules/node.module:851 ;1797','create content'),(1159,' modules/node.module:856','rss feed'),(1160,' c:\\moduli-core\\node.module:682, modules/node.module:882','revisions'),(1161,' modules/node.module:891','\'%name\' content type'),(1162,' c:\\moduli-core\\n, e.module:709, modules/node.module:909','Approve the selected posts'),(1163,' modules/node.module:910','Promote the selected posts'),(1164,' modules/node.module:911','Make the selected posts sticky'),(1165,' modules/node.module:912','Demote the selected posts'),(1166,' modules/node.module:913','Unpublish the selected posts'),(1167,' modules/node.module:914','Delete the selected posts'),(1168,' modules/node.module:924','status'),(1169,' modules/node.module:925 ;1146','published'),(1170,' modules/node.module:925 ;1146','not published'),(1171,' modules/node.module:926','in moderation'),(1172,' modules/node.module:926','not in moderation'),(1173,' modules/node.module:927','promoted'),(1174,' modules/node.module:927','not promoted'),(1175,' modules/node.module:928','sticky'),(1176,' modules/node.module:928','not sticky'),(1177,' webform.module:386','type'),(1178,' modules/node.module:932','category'),(1179,' modules/node.module:980','Show only items where'),(1180,' modules/node.module:1003 ;1063','Refine'),(1181,' modules/node.module:1005 ;1075','Undo'),(1182,' modules/node.module:1034','and'),(1183,' modules/node.module:1034','where'),(1184,' modules/node.module:1040','is'),(1185,' modules/node.module:1108','Please select some items to perform the update on.'),(1186,' modules/node.module:1180','No posts available.'),(1187,' modules/node.module:1205','Are you sure you want to delete these items?'),(1188,' modules/node.module:1207','Delete all'),(1189,' modules/node.module:1215','The items have been deleted.'),(1190,' modules/node.module:1227','Submission form'),(1191,' d:\\drupal-cvs\\modules\\image.module:95, image.module:95','Explanation or submission guidelines'),(1192,' modules/node.module:1230','This text will be displayed at the top of the %type submission form. It is useful for helping or instructing your users.'),(1193,' modules/node.module:1233 c:\\moduli-core\\story.module:38','Minimum number of words'),(1194,' modules/node.module:1234','The minimum number of words a %type must be to be considered valid. This can be useful to rule out submissions that do not meet the site\'s standards, such as short test posts.'),(1195,' modules/node.module:1236','Workflow'),(1196,' c:\\moduli-core\\node.module:919, modules/node.module:1258','Revisions for %title'),(1197,' modules/node.module:1278 ;1284','%date by %username'),(1198,' modules/node.module:1287','revert'),(1199,' modules/node.module:1311','Copy of the revision from %date.'),(1200,' c:\\moduli-core\\node.module:919, modules/node.module:1341','Deleted %title revision %revision.'),(1201,' modules/node.module:1342','%type: deleted %title revision %revision.'),(1202,' modules/node.module:1346','Deletion failed. You tried to delete the current revision.'),(1203,' modules/node.module:1383 ;1387','Syndicate'),(1204,' modules/node.module:1532','The body of your %type is too short. You need at least %words words.'),(1205,' c:\\moduli-core\\node.module:1080, modules/node.module:1545','The username %name does not exist.'),(1206,' c:\\moduli-core\\node.module:1153, modules/node.module:1627','Authoring information'),(1207,' modules/node.module:1628','Leave blank for %anonymous.'),(1208,' modules/node.module:1629','Format: %time. Leave blank to use the time of form submission.'),(1209,' modules/node.module:1636','Publishing options'),(1210,' c:\\moduli-core\\node.module:1157, modules/node.module:1638 ;2139','In moderation queue'),(1211,' c:\\moduli-core\\node.module:1158, modules/node.module:1639 ;2140','Promoted to front page'),(1212,' c:\\moduli-core\\node.module:1159, modules/node.module:1640 ;2141','Sticky at top of lists'),(1213,' modules/node.module:1641 ;2142','Create new revision'),(1214,' modules/node.module:1732 ;1797','Submit %name'),(1215,' modules/node.module:1738','Add a new %s.'),(1216,' modules/node.module:1746','Choose the appropriate item from the list:'),(1217,' modules/node.module:1749','You are not allowed to create content.'),(1218,' modules/node.module:1812','The trimmed version of your post shows what your post looks like when promoted to the main page or when exported for syndication. You can insert the delimiter \"<!--break-->\" (without the quotes) to fine-tune where your post gets split.'),(1219,' c:\\moduli-core\\node.module:1334, modules/node.module:1813','Preview trimmed version'),(1220,' modules/node.module:1815','Preview full version'),(1221,' il valore generico %post è stato reso con \"contenuto\" per evitare frasi tipo \"il tuo pagina è stato creato\"., modules/node.module:1839','The %post was updated.'),(1222,' modules/node.module:1847','%type: added %title.'),(1223,' il valore generico %post è stato reso con \"contenuto\" per evitare frasi tipo \"il tuo pagina è stato creato\"., modules/node.module:1848','Your %post was created.'),(1224,' modules/node.module:1874','Are you sure you want to delete %title?'),(1225,' modules/node.module:1915','%title has been deleted.'),(1226,' modules/node.module:1916','%type: deleted %title.'),(1227,' modules/node.module:1967','RSS'),(1228,' modules/node.module:1977','\n Welcome to your new Drupal website!
\n Please follow these steps to set up and start using your website:
\n \n - \n Create your administrator account\n To begin, create the first account. This account will have full administration rights and will allow you to configure your website.\n
\n - \n Configure your website\n Once logged in, visit the administration section, where you can customize and configure all aspects of your website.\n
\n - \n Enable additional functionality\n Next, visit the module list and enable features which suit your specific needs. You can find additional modules in the Drupal modules download section.\n
\n - \n Customize your website design\n To change the \"look and feel\" of your website, visit the themes section. You may choose from one of the included themes or download additional themes from the Drupal themes download section.\n
\n - \n Start posting content\n Finally, you can create content for your website. This message will disappear once you have published your first post.\n
\n
\n For more information, please refer to the Help section, or the online Drupal handbooks. You may also post at the Drupal forum, or view the wide range of other support options available.
'),(1229,' modules/node.module:2135','Default options'),(1230,' modules/node.module:2144','Users with the administer nodes permission will be able to override these options.'),(1231,' modules/node.module:2153 ;2205','Advanced search'),(1232,' modules/node.module:2164','Containing any of the words'),(1233,' modules/node.module:2170','Containing the phrase'),(1234,' modules/node.module:2176','Containing none of the words'),(1235,' modules/node.module:585','administer nodes'),(1236,' modules/node.module:585','access content'),(1237,' modules/node.module:0','node'),(1238,' modules/page.module:15','The page module allows users to create static pages, which are the most basic type of content. Pages are commonly collected in books via the book module. Users should create a page if the information on the page is static. An example would be an \"about\" page. '),(1239,' modules/page.module:16','When a page is created, a user can set authoring information, configure publishing options, whether readers will be able to post comments. They can also select the content type of the page (e.g., full HTML, filtered HTML). '),(1240,' modules/page.module:17','As an administrator, you can set the publishing default for a page (in its workflow): you can specify whether a page is by default published, sent to moderation, promoted to the front page, sticky at the top of lists, and whether revisions are enabled by default. You can set the permissions that different user roles have to view, create, and edit pages.'),(1241,' modules/page.module:18','If the location module is enabled, then location specific information can be added. If the trackback module is enabled trackbacks can be configured.'),(1242,' modules/page.module:28','For more information please read the configuration and customization handbook Page page.'),(1243,' modules/page.module:31','Enables the creation of pages that can be added to the navigation system.'),(1244,' modules/page.module:33','If you want to add a static page, like a contact page or an about page, use a page.'),(1245,' modules/page.module:48 ;75;0','page'),(1246,' modules/page.module:41','create pages'),(1247,' modules/page.module:41','edit own pages'),(1248,' modules/path.module:15','The path module allows you to specify aliases for Drupal URLs. Such aliases improve readability of URLs for your users and may help internet search engines to index your content more effectively. More than one alias may be created for a given page.'),(1249,' modules/path.module:16','Some examples of URL aliases are:
\n\n- user/login => login
\n- image/tid/16 => store
\n- taxonomy/term/7+19+20+21 => store/products/whirlygigs
\n- node/3 => contact
\n
\n'),(1250,' modules/path.module:24','The path module enables an extra field for aliases in all node input and editing forms (when users have the appropriate permissions). It also provides an interface to view and edit all URL aliases. The two permissions are related to URL aliasing are \"administer a list of URL aliases\" and \"add url aliases\". '),(1251,' modules/path.module:25','This module also comes with user-defined mass URL aliasing capabilities, which is useful if you wish to uniformly use URLs different from the default. For example, you may want to have your URLs presented in a different language. Access to the Drupal source code on the web server is required to set up these kinds of aliases. '),(1252,' modules/path.module:26','You can
\n\n'),(1253,' modules/path.module:35','For more information please read the configuration and customization handbook Path page.'),(1254,' modules/path.module:38','Allows users to rename URLs.'),(1255,' modules/path.module:40','Drupal provides users complete control over URLs through aliasing. This feature is typically used to make URLs human-readable or easy to remember. For example, one could map the relative URL \'node/1\' onto \'about\'. Each system path can have multiple aliases.
'),(1256,' modules/path.module:42','Enter the path you wish to create the alias for, followed by the name of the new alias.
'),(1257,' modules/path.module:53','url aliases'),(1258,' modules/path.module:56','edit alias'),(1259,' modules/path.module:60','delete alias'),(1260,' modules/path.module:66','add alias'),(1261,' modules/path.module:106','Are you sure you want to delete path alias %title?'),(1262,' c:\\moduli-core\\path.module:125, modules/path.module:129','The alias has been deleted.'),(1263,' c:\\moduli-core\\path.module:177, modules/path.module:184','Existing system path'),(1264,' c:\\moduli-core\\path.module:177, modules/path.module:184','Specify the existing path you wish to alias. For example: node/28, forum/1, taxonomy/term/1+2.'),(1265,' c:\\moduli-core\\path.module:178, modules/path.module:185','Specify an alternative path by which this data can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),(1266,' modules/path.module:189','Update alias'),(1267,' modules/path.module:192','Create new alias'),(1268,' c:\\moduli-core\\path.module:203, modules/path.module:210','The path is invalid.'),(1269,' c:\\moduli-core\\path.module:206, modules/path.module:213','The path is already in use.'),(1270,' modules/path.module:257','URL path settings'),(1271,' c:\\moduli-core\\path.module:211, modules/path.module:268','Optionally specify an alternative URL by which this node can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),(1272,' modules/path.module:293','Alias'),(1273,' modules/path.module:294','System'),(1274,' modules/path.module:306','No URL aliases available.'),(1275,' modules/path.module:331','The system path %path is invalid.'),(1276,' modules/path.module:335','The alias %alias is invalid.'),(1277,' modules/path.module:339','The alias %alias is already in use.'),(1278,' modules/path.module:348','The alias has been saved.'),(1279,' modules/path.module:284','create url aliases'),(1280,' modules/path.module:284','administer url aliases'),(1281,' modules/path.module:0','path'),(1282,' c:\\moduli-core\\ping.module:15','\r\n Drupal can pings sites automatically to notify them that your site has changed. It can ping the following sites:
\r\n %weblogs, a web site that tracks and displays links to changed weblogs and news-oriented web sites. To get your Drupal site listed, weblogs.com must be informed about your site\'s updates. This is the job of the ping module and when installed, the administrator doesn\'t have to do anything to participate in the %weblogs system. The ping module automatically notifies weblogs.com when your site is updated. To do so, Drupal implements the %weblogs-XML.
\r\n %weblogs-RSS, a web site that tracks and displays links to recently changed RSS feeds in XML format. To get your Drupal site listed, %weblogs-RSS must be informed about updates to your RSS feed. This is the job of the ping module and when installed, the administrator doesn\'t have to do anything to participate in the %weblogs-RSS-changes system. The ping module automatically notifies %weblogs-RSS when your site is updated.
\r\n %blo-gs, a directory of recently updated weblogs and tools for tracking interesting weblogs, in the spirit of services like %weblogs, %blogtracker and %blogrolling. To get your Drupal site listed, %blo-gs must be informed about your site\'s updates. This is the job of the ping module and when installed, the administrator doesn\'t have to do anything to participate in the %blo-gs system. The ping module automatically notifies blo.gs when your site is updated. To do so, Drupal implements the %blo-gs-XML.
\r\n The ping feature requires crontab.
'),(1283,' c:\\moduli-core\\ping.module:20','XML-RPC interface of weblogs.com'),(1284,' c:\\moduli-core\\ping.module:20','Weblogs.Com for RSS'),(1285,' c:\\moduli-core\\ping.module:20','the weblogs.com for RSS'),(1286,' c:\\moduli-core\\ping.module:20','XML-RPC interface of blo.gs'),(1287,' c:\\moduli-core\\ping.module:24','Alerts other sites that your site has been updated.'),(1288,' c:\\moduli-core\\ping.module:72','Failed to notify weblogs.com (site).'),(1289,' c:\\moduli-core\\ping.module:84','Failed to notify weblogs.com (RSS).'),(1290,' c:\\moduli-core\\ping.module:96','Failed to notify blo.gs.'),(1291,' c:\\moduli-core\\ping.module:108','Failed to notify technorati.com.'),(1292,' modules/poll.module:17','Users can create a poll. The title of the poll should be the question, then enter the answers and the \"base\" vote counts. You can also choose the time period over which the vote will run.The poll item in the navigation menu will take you to a page where you can see all the current polls, vote on them (if you haven\'t already) and view the results.'),(1293,' modules/poll.module:24','For more information please read the configuration and customization handbook Poll page.'),(1294,' modules/poll.module:27','Allows your site to capture votes on different topics in the form of multiple choice questions.'),(1295,' modules/poll.module:29','A poll is a multiple-choice question which visitors can vote on.'),(1296,' modules/poll.module:50','Most recent poll'),(1297,' modules/poll.module:65','Poll'),(1298,' modules/poll.module:116','Negative values are not allowed.'),(1299,' modules/poll.module:121','You must fill in at least two choices.'),(1300,' modules/poll.module:132','Question'),(1301,' modules/poll.module:135','Need more choices'),(1302,' modules/poll.module:135','If the amount of boxes above isn\'t enough, check this box and click the Preview button below to add some more.'),(1303,' modules/poll.module:146','Choices'),(1304,' modules/poll.module:148','Choice %n'),(1305,' modules/poll.module:150','Votes for choice %n'),(1306,' modules/poll.module:156','Closed'),(1307,' modules/poll.module:159','Settings'),(1308,' modules/poll.module:160','Poll status'),(1309,' modules/poll.module:160','When a poll is closed, visitors can no longer vote for it.'),(1310,' modules/poll.module:162','Poll duration'),(1311,' modules/poll.module:162','After this period, the poll will be closed automatically.'),(1312,' modules/poll.module:192 ;254;0','poll'),(1313,' modules/poll.module:194','polls'),(1314,' modules/poll.module:200','vote'),(1315,' modules/poll.module:264','open'),(1316,' modules/poll.module:264','closed'),(1317,' modules/poll.module:295 ;307','Vote'),(1318,' modules/poll.module:355 ;362','Total votes: %votes'),(1319,' modules/poll.module:424','Your vote was recorded.'),(1320,' modules/poll.module:427','You\'re not allowed to vote on this poll.'),(1321,' modules/poll.module:431','You didn\'t specify a valid poll choice.'),(1322,' modules/poll.module:458','older polls'),(1323,' modules/poll.module:458','View the list of polls on this site.'),(1324,' modules/poll.module:460','View the current poll results.'),(1325,' modules/poll.module:264 ;341','1 vote'),(1326,' modules/poll.module:275','create polls'),(1327,' modules/poll.module:275','vote on polls'),(1328,' modules/profile.module:24','The following types of fields can be added to the user profile:
\n\n- single-line textfield
\n- multi-line textfield
\n- checkbox
\n- list selection
\n- freeform list
\n- URL
\n- date
\n
\n'),(1329,' modules/profile.module:35','You can
\n\n'),(1330,' modules/profile.module:41','For more information please read the configuration and customization handbook Profile page.'),(1331,' c:\\moduli-core\\profile.module:22, modules/profile.module:44','Supports configurable user profiles.'),(1332,' modules/profile.module:46','Here you can define custom fields that users can fill in in their user profile (such as country, real name, age, ...).
'),(1333,' modules/profile.module:58 ;489','user list'),(1334,' c:\\moduli-core\\profile.module:38, modules/profile.module:63','profiles'),(1335,' c:\\moduli-core\\profile.module:42, modules/profile.module:66','add field'),(1336,' c:\\moduli-core\\profile.module:46, modules/profile.module:70','edit field'),(1337,' c:\\moduli-core\\profile.module:50, modules/profile.module:74','delete field'),(1338,' modules/profile.module:88','Author information'),(1339,' modules/profile.module:99','Link to full user profile'),(1340,' modules/profile.module:101','Profile fields to display'),(1341,' modules/profile.module:135','View full user profile'),(1342,' modules/profile.module:140','About %name'),(1343,' c:\\moduli-core\\profile.module:520, modules/profile.module:210','Field settings'),(1344,' c:\\moduli-core\\profile.module:503, modules/profile.module:225','Form name'),(1345,' c:\\moduli-core\\profile.module:505, modules/profile.module:232','Explanation'),(1346,' c:\\moduli-core\\profile.module:507, modules/profile.module:238','Selection options'),(1347,' c:\\moduli-core\\profile.module:510, modules/profile.module:250','Visibility'),(1348,' modules/profile.module:252','Hidden profile field, only accessible by administrators, modules and themes.'),(1349,' c:\\moduli-core\\profile.module:510, modules/profile.module:252','Private field, content only available to privileged users.'),(1350,' c:\\moduli-core\\profile.module:510, modules/profile.module:252','Public field, content shown on profile page but not used on member list pages.'),(1351,' c:\\moduli-core\\profile.module:510, modules/profile.module:252','Public field, content shown on profile page and on member list pages.'),(1352,' modules/profile.module:256 ;263','Page title'),(1353,' modules/profile.module:265','To enable browsing this field by value, enter a title for the resulting page. An example page title is \"People who are employed\". This is only applicable for a public field.'),(1354,' c:\\moduli-core\\profile.module:517, modules/profile.module:269','The user must enter a value.'),(1355,' c:\\moduli-core\\profile.module:518, modules/profile.module:273','Visible in user registration form.'),(1356,' c:\\moduli-core\\profile.module:521, modules/profile.module:277','Save field'),(1357,' c:\\moduli-core\\profile.module:417, modules/profile.module:292','The specified form name is reserved for use by Drupal.'),(1358,' c:\\moduli-core\\profile.module:437, modules/profile.module:311','The specified title is already in use.'),(1359,' c:\\moduli-core\\profile.module:441, modules/profile.module:314','The specified name is already in use.'),(1360,' c:\\moduli-core\\profile.module:449, modules/profile.module:325','The field has been created.'),(1361,' modules/profile.module:326','Profile field %field added under category %category.'),(1362,' c:\\moduli-core\\profile.module:476, modules/profile.module:331','The field has been updated.'),(1363,' modules/profile.module:350','This action cannot be undone. If users have entered values into this field in their profile, these entries will also be deleted. If you want to keep the user-entered data, instead of deleting the field you may wish to edit this field and change it to a %hidden-field so that it may only be accessed by administrators.'),(1364,' c:\\moduli-core\\profile.module:495, modules/profile.module:362','The field %field has been deleted.'),(1365,' c:\\moduli-core\\profile.module:537, modules/profile.module:379','No fields defined.'),(1366,' c:\\moduli-core\\profile.module:543, modules/profile.module:385','Add new field'),(1367,' c:\\moduli-core\\profile.module:224, modules/profile.module:581','The content of this field is private and only visible to yourself.'),(1368,' c:\\moduli-core\\profile.module:359, modules/profile.module:720','The value provided for %field is not a valid URL.'),(1369,' c:\\moduli-core\\profile.module:364, modules/profile.module:725','The field %field is required.'),(1370,' c:\\moduli-core\\profile.module:571, modules/profile.module:776','single-line textfield'),(1371,' modules/profile.module:777','multi-line textfield'),(1372,' modules/profile.module:778','checkbox'),(1373,' modules/profile.module:779','list selection'),(1374,' modules/profile.module:780','freeform list'),(1375,' modules/profile.module:782','date'),(1376,' modules/profile.module:326 ;363;0','profile'),(1377,' modules/search.module:99','The search module adds the ability to search for content by keywords. Search is often the only practical way to find content on a large site. Search is useful for finding users and posts by searching on keywords.'),(1378,' modules/search.module:100','The search engine works by maintaining an index of the words in your site\'s content. It indexes the posts and users. You can adjust the settings to tweak the indexing behaviour. Note that the search requires cron to be set up correctly. The index percentage sets the maximum amount of items that will be indexed in one cron run. Set this number lower if your cron is timing out or if PHP is running out of memory.'),(1379,' modules/search.module:101','You can
\n\n'),(1380,' modules/search.module:108','For more information please read the configuration and customization handbook Search page.'),(1381,' modules/search.module:111','Enables site-wide keyword searching.'),(1382,' modules/search.module:113','\nThe search engine works by maintaining an index of the words in your site\'s content. You can adjust the settings below to tweak the indexing behaviour. Note that the search requires cron to be set up correctly.
\n'),(1383,' modules/search.module:137','Search form'),(1384,' modules/search.module:158','Clear index'),(1385,' modules/search.module:185 ;215;238','Re-index site'),(1386,' modules/search.module:191 ;247','The index will be rebuilt.'),(1387,' modules/search.module:212','%percentage of the site has been indexed.'),(1388,' modules/search.module:213','Indexing status'),(1389,' modules/search.module:220','Indexing throttle'),(1390,' modules/search.module:221','Items to index per cron run'),(1391,' modules/search.module:221','The maximum amount of items that will be indexed in one cron run. Set this number lower if your cron is timing out or if PHP is running out of memory.'),(1392,' modules/search.module:223','Indexing settings'),(1393,' modules/search.module:224','Changing the settings below will cause the site index to be rebuilt. The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed.
The default settings should be appropriate for the majority of sites.
'),(1394,' modules/search.module:225','Minimum word length to index'),(1395,' modules/search.module:225','The number of characters a word has to be to be indexed. A lower setting means better search result ranking, but also a larger database. Each search query must contain at least one keyword that is this size (or longer).'),(1396,' modules/search.module:226','Simple CJK handling'),(1397,' modules/search.module:226','Whether to apply a simple Chinese/Japanese/Korean tokenizer based on overlapping sequences. Turn this off if you want to use an external preprocessor for this instead. Does not affect other languages.'),(1398,' modules/search.module:237','Are you sure you want to re-index the site?'),(1399,' modules/search.module:238',' The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed. This action cannot be undone.'),(1400,' modules/search.module:838','You must include at least one positive keyword with %count characters or more.'),(1401,' modules/search.module:906','Search: %keys (%type).'),(1402,' modules/search.module:912','Search results'),(1403,' modules/search.module:915','Your search yielded no results'),(1404,' modules/search.module:977','Enter your keywords'),(1405,' modules/search.module:1018','Please enter some keywords.'),(1406,' modules/search.module:1035','Enter the terms you wish to search for.'),(1407,' modules/search.module:210','There is 1 item left to index.'),(1408,' modules/search.module:129','search content'),(1409,' modules/search.module:129','administer search'),(1410,' modules/statistics.module:15','The statistics module keeps track of numerous statistics of site usage. It counts how many times, and from where each of your posts is viewed. The statistics module can be used to learn many useful things about how users are interacting with each other and with your site.'),(1411,' modules/statistics.module:16','Statistics module features
\n\n- Logs show statistics for how many times your site and specific content on your site has been accessed.
\n- Referrers tells you from where visitors came from (referrer URL).
\n- Top pages shows you what\'s hot, what is the most popular content on your site.
\n- Top users shows you the most active users for your site.
\n- Recent hits displays information about the latest activity on your site.
\n- Node count displays the number of times a node has been accessed in the node\'s link section next to # comments.
\n- Popular content block creates a block that can display the day\'s top viewed content, the all time top viewed content, and the last content viewed.
\n
\n'),(1412,' modules/statistics.module:42','For more information please read the configuration and customization handbook Statistics page.'),(1413,' modules/statistics.module:45','Logs access statistics for your site.'),(1414,' modules/statistics.module:47','Settings for the statistical information that Drupal will keep about the site. See site statistics for the actual information.
'),(1415,' c:\\moduli-core\\statistics.module:47, modules/statistics.module:49','This page shows you the most recent hits.
'),(1416,' modules/statistics.module:51','This page shows you all external referrers. These are links pointing to your web site from outside your web site.
'),(1417,' modules/statistics.module:53','When you ban a visitor, you prevent his IP address from accessing your site. Unlike blocking a user, banning a visitor works even for anonymous users. The most common use for this is to block bots/web crawlers that are consuming too many resources.
'),(1418,' modules/statistics.module:117','recent hits'),(1419,' modules/statistics.module:120','top pages'),(1420,' modules/statistics.module:123','top visitors'),(1421,' modules/statistics.module:126','referrers'),(1422,' modules/statistics.module:134','track page visits'),(1423,' modules/statistics.module:207 ;234','Timestamp'),(1424,' modules/statistics.module:208 ;235;265','Page'),(1425,' modules/statistics.module:264 ;288;319','Hits'),(1426,' modules/statistics.module:266','Average page generation time'),(1427,' modules/statistics.module:267 ;290','Total page generation time'),(1428,' modules/statistics.module:273','%time ms'),(1429,' modules/statistics.module:276','Top pages in the past %interval'),(1430,' modules/statistics.module:289','Visitor'),(1431,' modules/statistics.module:300','unban'),(1432,' modules/statistics.module:300','ban'),(1433,' modules/statistics.module:304','Top visitors in the past %interval'),(1434,' modules/statistics.module:316','Top referrers in the past %interval'),(1435,' modules/statistics.module:320','Url'),(1436,' modules/statistics.module:321','Last visit'),(1437,' modules/statistics.module:342','Access log settings'),(1438,' modules/statistics.module:343','Enable access log'),(1439,' modules/statistics.module:343','Log each page access. Required for referrer statistics.'),(1440,' modules/statistics.module:345','Discard access logs older than'),(1441,' c:\\moduli-core\\statistics.module:451, modules/statistics.module:345','Older access log entries (including referrer statistics) will be automatically discarded. Requires crontab.'),(1442,' modules/statistics.module:348','Content viewing counter settings'),(1443,' modules/statistics.module:349','Count content views'),(1444,' modules/statistics.module:349','Increment a counter each time content is viewed.'),(1445,' modules/statistics.module:421 ;460','Popular content'),(1446,' modules/statistics.module:428','Number of day\'s top views to display'),(1447,' modules/statistics.module:428','How many content items to display in \"day\" list.'),(1448,' modules/statistics.module:429','Number of all time views to display'),(1449,' modules/statistics.module:429','How many content items to display in \"all time\" list.'),(1450,' modules/statistics.module:430','Number of most recent views to display'),(1451,' modules/statistics.module:430','How many content items to display in \"recently viewed\" list.'),(1452,' modules/statistics.module:445','Today\'s:'),(1453,' modules/statistics.module:450','All time:'),(1454,' modules/statistics.module:455','Last viewed:'),(1455,' modules/statistics.module:102','1 read'),(1456,' modules/statistics.module:89','access statistics'),(1457,' modules/statistics.module:89','view post access counter'),(1458,' modules/statistics.module:0','statistics'),(1459,' c:\\moduli-core\\story.module:15','Enables users to submit stories, articles or similar content.'),(1460,' c:\\moduli-core\\story.module:17','Stories are like newspaper articles. They tend to follow a publishing flow of submit -> moderate -> post to the main page -> comments. Below you may fix a minimum word count for stories and also write some submission or content guidelines for users wanting to post a story.'),(1461,' c:\\moduli-core\\story.module:19','\r\n The story module lets your users submit articles for consideration by the rest of the community, who can vote on them if moderation is enabled. Stories usually follow a publishing flow of submit -> moderate -> post to the main page -> comments. Administrators are able to shortcut this flow as desired.
\r\n In administer » settings » story you can set up an introductory text for story authors, and a floor on the number of words which may be included in a story. This is designed to help discourage the submission of trivially short stories.\r\n User access permissions for stories
\r\n create stories: Allows a role to create stories. They cannot edit or delete stories, even if they are the authors. You must enable this permission to in order for a role to create a story.
\r\n edit own stories: Allows a role to add/edit stories if they own the story. Use this permission if you want users to be able to edit and maintain their own stories.
\r\n '),(1462,' c:\\moduli-core\\story.module:29','A story is similar to a newspaper article. If stories are moderated, the post will be submitted to the attention of other users and be queued in the submission queue. Users and moderators vote on the posts they like or dislike, promoting or demoting them. When a post gets above a certain threshold it automatically gets promoted to the front page.'),(1463,' c:\\moduli-core\\story.module:37','This text will be displayed at the top of the story submission form. It is useful for helping or instructing your users.'),(1464,' c:\\moduli-core\\story.module:38','The minimum number of words a story must be to be considered valid. This can be useful to rule out submissions that do not meet the site\'s standards, such as short test posts.'),(1465,' c:\\moduli-core\\story.module:83','edit this story'),(1466,' c:\\moduli-core\\story.module:111','The body of your story is too short. You need at least %words words to submit your story.'),(1467,' modules/system.module:19','The system module provides system-wide defaults such as running jobs at a particular time, and storing web pages to improve efficiency. The ability to run scheduled jobs makes administering the web site more usable, as administrators do not have to manually start jobs. The storing of web pages, or caching, allows the site to