diff --git a/K8S-dashboard/EliminaDahsboard.sh b/K8S-dashboard/EliminaDahsboard.sh
new file mode 100644
index 00000000..c80b7e90
--- /dev/null
+++ b/K8S-dashboard/EliminaDahsboard.sh
@@ -0,0 +1 @@
+kubectl delete -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended.yaml
diff --git a/K8S-dashboard/Token20220901 b/K8S-dashboard/Token20220901
new file mode 100644
index 00000000..b206351b
--- /dev/null
+++ b/K8S-dashboard/Token20220901
@@ -0,0 +1 @@
+eyJhbGciOiJSUzI1NiIsImtpZCI6IkN0QWJncFU0VFl1R01adWJRZk9Ta2xPcm9SRzRkNTdwUmQ0bjVHT0MzaDAifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlcm5ldGVzLWRhc2hib2FyZCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJhZG1pbi11c2VyLXRva2VuLTVnOGIyIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQubmFtZSI6ImFkbWluLXVzZXIiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiIyYTFmODI0ZC1lZDg3LTRhMTYtOTcyYS1iNmQ2MzdjZmQ2MGQiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZXJuZXRlcy1kYXNoYm9hcmQ6YWRtaW4tdXNlciJ9.Jaz-cWXY3aAQIwcTK1uD8itirx8F_nS22f-vAV1fggK1lDnwUB6UMLKwgJGpvQ9he0guqZG4ZZMPoDnqhZzpiZbFGo2YRq0OdJwVPPVPm5kj2hiG-zxRZpqbmrbVlxlMYOoUedmcsk_sZjRDWr9NMmu_XDcOa9pIhTM4PzIqDot5PCf0FMZYMHvQ_7sgiNAU1_bdp8i_9EyfVKzKcCUBNrILs-HeIUsWELIGmAglmj0k5TCdaiBCCs0XRvU701DzOkphJgp0B0pjxDEuKvdcDIBQpouoj0z2-Dn8dm4K1Hj1Fp9WIi9UIhXXHMO0ze95kssbbDK2SRmWhWaEt6iyLg
diff --git a/Mediawiki/backup b/Mediawiki/backup
new file mode 100644
index 00000000..e270f8f0
--- /dev/null
+++ b/Mediawiki/backup
@@ -0,0 +1,19404 @@
+-- MariaDB dump 10.19 Distrib 10.9.2-MariaDB, for debian-linux-gnu (x86_64)
+--
+-- Host: localhost Database: mediawiki
+-- ------------------------------------------------------
+-- Server version 10.9.2-MariaDB-1:10.9.2+maria~ubu2204
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8mb4 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!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' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `actor`
+--
+
+DROP TABLE IF EXISTS `actor`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `actor` (
+ `actor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `actor_user` int(10) unsigned DEFAULT NULL,
+ `actor_name` varbinary(255) NOT NULL,
+ PRIMARY KEY (`actor_id`),
+ UNIQUE KEY `actor_name` (`actor_name`),
+ UNIQUE KEY `actor_user` (`actor_user`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `actor`
+--
+
+LOCK TABLES `actor` WRITE;
+/*!40000 ALTER TABLE `actor` DISABLE KEYS */;
+INSERT INTO `actor` VALUES
+(1,1,'Creylopez'),
+(2,2,'MediaWiki default');
+/*!40000 ALTER TABLE `actor` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `archive`
+--
+
+DROP TABLE IF EXISTS `archive`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `archive` (
+ `ar_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ar_namespace` int(11) NOT NULL DEFAULT 0,
+ `ar_title` varbinary(255) NOT NULL DEFAULT '',
+ `ar_comment_id` bigint(20) unsigned NOT NULL,
+ `ar_actor` bigint(20) unsigned NOT NULL,
+ `ar_timestamp` binary(14) NOT NULL,
+ `ar_minor_edit` tinyint(4) NOT NULL DEFAULT 0,
+ `ar_rev_id` int(10) unsigned NOT NULL,
+ `ar_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `ar_len` int(10) unsigned DEFAULT NULL,
+ `ar_page_id` int(10) unsigned DEFAULT NULL,
+ `ar_parent_id` int(10) unsigned DEFAULT NULL,
+ `ar_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`ar_id`),
+ UNIQUE KEY `ar_revid_uniq` (`ar_rev_id`),
+ KEY `ar_name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`),
+ KEY `ar_actor_timestamp` (`ar_actor`,`ar_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `archive`
+--
+
+LOCK TABLES `archive` WRITE;
+/*!40000 ALTER TABLE `archive` DISABLE KEYS */;
+/*!40000 ALTER TABLE `archive` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `bot_passwords`
+--
+
+DROP TABLE IF EXISTS `bot_passwords`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `bot_passwords` (
+ `bp_user` int(10) unsigned NOT NULL,
+ `bp_app_id` varbinary(32) NOT NULL,
+ `bp_password` tinyblob NOT NULL,
+ `bp_token` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
+ `bp_restrictions` blob NOT NULL,
+ `bp_grants` blob NOT NULL,
+ PRIMARY KEY (`bp_user`,`bp_app_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `bot_passwords`
+--
+
+LOCK TABLES `bot_passwords` WRITE;
+/*!40000 ALTER TABLE `bot_passwords` DISABLE KEYS */;
+/*!40000 ALTER TABLE `bot_passwords` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `category`
+--
+
+DROP TABLE IF EXISTS `category`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `category` (
+ `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `cat_title` varbinary(255) NOT NULL,
+ `cat_pages` int(11) NOT NULL DEFAULT 0,
+ `cat_subcats` int(11) NOT NULL DEFAULT 0,
+ `cat_files` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`cat_id`),
+ UNIQUE KEY `cat_title` (`cat_title`),
+ KEY `cat_pages` (`cat_pages`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `category`
+--
+
+LOCK TABLES `category` WRITE;
+/*!40000 ALTER TABLE `category` DISABLE KEYS */;
+/*!40000 ALTER TABLE `category` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `categorylinks`
+--
+
+DROP TABLE IF EXISTS `categorylinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `categorylinks` (
+ `cl_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `cl_to` varbinary(255) NOT NULL DEFAULT '',
+ `cl_sortkey` varbinary(230) NOT NULL DEFAULT '',
+ `cl_sortkey_prefix` varbinary(255) NOT NULL DEFAULT '',
+ `cl_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
+ `cl_collation` varbinary(32) NOT NULL DEFAULT '',
+ `cl_type` enum('page','subcat','file') NOT NULL DEFAULT 'page',
+ PRIMARY KEY (`cl_from`,`cl_to`),
+ KEY `cl_sortkey` (`cl_to`,`cl_type`,`cl_sortkey`,`cl_from`),
+ KEY `cl_timestamp` (`cl_to`,`cl_timestamp`),
+ KEY `cl_collation_ext` (`cl_collation`,`cl_to`,`cl_type`,`cl_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `categorylinks`
+--
+
+LOCK TABLES `categorylinks` WRITE;
+/*!40000 ALTER TABLE `categorylinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `categorylinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `change_tag`
+--
+
+DROP TABLE IF EXISTS `change_tag`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `change_tag` (
+ `ct_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ct_rc_id` int(10) unsigned DEFAULT NULL,
+ `ct_log_id` int(10) unsigned DEFAULT NULL,
+ `ct_rev_id` int(10) unsigned DEFAULT NULL,
+ `ct_params` blob DEFAULT NULL,
+ `ct_tag_id` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`ct_id`),
+ UNIQUE KEY `ct_rc_tag_id` (`ct_rc_id`,`ct_tag_id`),
+ UNIQUE KEY `ct_log_tag_id` (`ct_log_id`,`ct_tag_id`),
+ UNIQUE KEY `ct_rev_tag_id` (`ct_rev_id`,`ct_tag_id`),
+ KEY `ct_tag_id_id` (`ct_tag_id`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `change_tag`
+--
+
+LOCK TABLES `change_tag` WRITE;
+/*!40000 ALTER TABLE `change_tag` DISABLE KEYS */;
+/*!40000 ALTER TABLE `change_tag` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `change_tag_def`
+--
+
+DROP TABLE IF EXISTS `change_tag_def`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `change_tag_def` (
+ `ctd_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ctd_name` varbinary(255) NOT NULL,
+ `ctd_user_defined` tinyint(1) NOT NULL,
+ `ctd_count` bigint(20) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`ctd_id`),
+ UNIQUE KEY `ctd_name` (`ctd_name`),
+ KEY `ctd_count` (`ctd_count`),
+ KEY `ctd_user_defined` (`ctd_user_defined`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `change_tag_def`
+--
+
+LOCK TABLES `change_tag_def` WRITE;
+/*!40000 ALTER TABLE `change_tag_def` DISABLE KEYS */;
+/*!40000 ALTER TABLE `change_tag_def` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `comment`
+--
+
+DROP TABLE IF EXISTS `comment`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `comment` (
+ `comment_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `comment_hash` int(11) NOT NULL,
+ `comment_text` blob NOT NULL,
+ `comment_data` blob DEFAULT NULL,
+ PRIMARY KEY (`comment_id`),
+ KEY `comment_hash` (`comment_hash`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `comment`
+--
+
+LOCK TABLES `comment` WRITE;
+/*!40000 ALTER TABLE `comment` DISABLE KEYS */;
+INSERT INTO `comment` VALUES
+(1,0,'',NULL);
+/*!40000 ALTER TABLE `comment` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `content`
+--
+
+DROP TABLE IF EXISTS `content`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `content` (
+ `content_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `content_size` int(10) unsigned NOT NULL,
+ `content_sha1` varbinary(32) NOT NULL,
+ `content_model` smallint(5) unsigned NOT NULL,
+ `content_address` varbinary(255) NOT NULL,
+ PRIMARY KEY (`content_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `content`
+--
+
+LOCK TABLES `content` WRITE;
+/*!40000 ALTER TABLE `content` DISABLE KEYS */;
+INSERT INTO `content` VALUES
+(1,808,'q34u298fvzb4opkngj4ztlrfz91rgb2',1,'tt:1');
+/*!40000 ALTER TABLE `content` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `content_models`
+--
+
+DROP TABLE IF EXISTS `content_models`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `content_models` (
+ `model_id` int(11) NOT NULL AUTO_INCREMENT,
+ `model_name` varbinary(64) NOT NULL,
+ PRIMARY KEY (`model_id`),
+ UNIQUE KEY `model_name` (`model_name`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `content_models`
+--
+
+LOCK TABLES `content_models` WRITE;
+/*!40000 ALTER TABLE `content_models` DISABLE KEYS */;
+INSERT INTO `content_models` VALUES
+(1,'wikitext');
+/*!40000 ALTER TABLE `content_models` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `externallinks`
+--
+
+DROP TABLE IF EXISTS `externallinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `externallinks` (
+ `el_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `el_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `el_to` blob NOT NULL,
+ `el_index` blob NOT NULL,
+ `el_index_60` varbinary(60) NOT NULL,
+ PRIMARY KEY (`el_id`),
+ KEY `el_from` (`el_from`,`el_to`(40)),
+ KEY `el_to` (`el_to`(60),`el_from`),
+ KEY `el_index` (`el_index`(60)),
+ KEY `el_index_60` (`el_index_60`,`el_id`),
+ KEY `el_from_index_60` (`el_from`,`el_index_60`,`el_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `externallinks`
+--
+
+LOCK TABLES `externallinks` WRITE;
+/*!40000 ALTER TABLE `externallinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `externallinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `filearchive`
+--
+
+DROP TABLE IF EXISTS `filearchive`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `filearchive` (
+ `fa_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `fa_name` varbinary(255) NOT NULL DEFAULT '',
+ `fa_archive_name` varbinary(255) DEFAULT '',
+ `fa_storage_group` varbinary(16) DEFAULT NULL,
+ `fa_storage_key` varbinary(64) DEFAULT '',
+ `fa_deleted_user` int(11) DEFAULT NULL,
+ `fa_deleted_timestamp` binary(14) DEFAULT NULL,
+ `fa_deleted_reason_id` bigint(20) unsigned NOT NULL,
+ `fa_size` int(10) unsigned DEFAULT 0,
+ `fa_width` int(11) DEFAULT 0,
+ `fa_height` int(11) DEFAULT 0,
+ `fa_metadata` mediumblob DEFAULT NULL,
+ `fa_bits` int(11) DEFAULT 0,
+ `fa_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL,
+ `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') DEFAULT 'unknown',
+ `fa_minor_mime` varbinary(100) DEFAULT 'unknown',
+ `fa_description_id` bigint(20) unsigned NOT NULL,
+ `fa_actor` bigint(20) unsigned NOT NULL,
+ `fa_timestamp` binary(14) DEFAULT NULL,
+ `fa_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `fa_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`fa_id`),
+ KEY `fa_name` (`fa_name`,`fa_timestamp`),
+ KEY `fa_storage_group` (`fa_storage_group`,`fa_storage_key`),
+ KEY `fa_deleted_timestamp` (`fa_deleted_timestamp`),
+ KEY `fa_actor_timestamp` (`fa_actor`,`fa_timestamp`),
+ KEY `fa_sha1` (`fa_sha1`(10))
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `filearchive`
+--
+
+LOCK TABLES `filearchive` WRITE;
+/*!40000 ALTER TABLE `filearchive` DISABLE KEYS */;
+/*!40000 ALTER TABLE `filearchive` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `image`
+--
+
+DROP TABLE IF EXISTS `image`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `image` (
+ `img_name` varbinary(255) NOT NULL DEFAULT '',
+ `img_size` int(10) unsigned NOT NULL DEFAULT 0,
+ `img_width` int(11) NOT NULL DEFAULT 0,
+ `img_height` int(11) NOT NULL DEFAULT 0,
+ `img_metadata` mediumblob NOT NULL,
+ `img_bits` int(11) NOT NULL DEFAULT 0,
+ `img_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL,
+ `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') NOT NULL DEFAULT 'unknown',
+ `img_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown',
+ `img_description_id` bigint(20) unsigned NOT NULL,
+ `img_actor` bigint(20) unsigned NOT NULL,
+ `img_timestamp` binary(14) NOT NULL,
+ `img_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`img_name`),
+ KEY `img_actor_timestamp` (`img_actor`,`img_timestamp`),
+ KEY `img_size` (`img_size`),
+ KEY `img_timestamp` (`img_timestamp`),
+ KEY `img_sha1` (`img_sha1`(10)),
+ KEY `img_media_mime` (`img_media_type`,`img_major_mime`,`img_minor_mime`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `image`
+--
+
+LOCK TABLES `image` WRITE;
+/*!40000 ALTER TABLE `image` DISABLE KEYS */;
+/*!40000 ALTER TABLE `image` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `imagelinks`
+--
+
+DROP TABLE IF EXISTS `imagelinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `imagelinks` (
+ `il_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `il_to` varbinary(255) NOT NULL DEFAULT '',
+ `il_from_namespace` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`il_from`,`il_to`),
+ KEY `il_to` (`il_to`,`il_from`),
+ KEY `il_backlinks_namespace` (`il_from_namespace`,`il_to`,`il_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `imagelinks`
+--
+
+LOCK TABLES `imagelinks` WRITE;
+/*!40000 ALTER TABLE `imagelinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `imagelinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `interwiki`
+--
+
+DROP TABLE IF EXISTS `interwiki`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `interwiki` (
+ `iw_prefix` varbinary(32) NOT NULL,
+ `iw_url` blob NOT NULL,
+ `iw_api` blob NOT NULL,
+ `iw_wikiid` varbinary(64) NOT NULL,
+ `iw_local` tinyint(1) NOT NULL,
+ `iw_trans` tinyint(4) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`iw_prefix`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `interwiki`
+--
+
+LOCK TABLES `interwiki` WRITE;
+/*!40000 ALTER TABLE `interwiki` DISABLE KEYS */;
+INSERT INTO `interwiki` VALUES
+('acronym','https://www.acronymfinder.com/~/search/af.aspx?string=exact&Acronym=$1','','',0,0),
+('advogato','http://www.advogato.org/$1','','',0,0),
+('arxiv','https://www.arxiv.org/abs/$1','','',0,0),
+('c2find','http://c2.com/cgi/wiki?FindPage&value=$1','','',0,0),
+('cache','https://www.google.com/search?q=cache:$1','','',0,0),
+('commons','https://commons.wikimedia.org/wiki/$1','https://commons.wikimedia.org/w/api.php','',0,0),
+('dictionary','http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query=$1','','',0,0),
+('doi','https://dx.doi.org/$1','','',0,0),
+('drumcorpswiki','http://www.drumcorpswiki.com/$1','http://drumcorpswiki.com/api.php','',0,0),
+('dwjwiki','http://www.suberic.net/cgi-bin/dwj/wiki.cgi?$1','','',0,0),
+('elibre','http://enciclopedia.us.es/index.php/$1','http://enciclopedia.us.es/api.php','',0,0),
+('emacswiki','https://www.emacswiki.org/emacs/$1','','',0,0),
+('foldoc','https://foldoc.org/?$1','','',0,0),
+('foxwiki','https://fox.wikis.com/wc.dll?Wiki~$1','','',0,0),
+('freebsdman','https://www.FreeBSD.org/cgi/man.cgi?apropos=1&query=$1','','',0,0),
+('gentoo-wiki','http://gentoo-wiki.com/$1','','',0,0),
+('google','https://www.google.com/search?q=$1','','',0,0),
+('googlegroups','https://groups.google.com/groups?q=$1','','',0,0),
+('hammondwiki','http://www.dairiki.org/HammondWiki/$1','','',0,0),
+('hrwiki','http://www.hrwiki.org/wiki/$1','http://www.hrwiki.org/w/api.php','',0,0),
+('imdb','http://www.imdb.com/find?q=$1&tt=on','','',0,0),
+('kmwiki','https://kmwiki.wikispaces.com/$1','','',0,0),
+('linuxwiki','http://linuxwiki.de/$1','','',0,0),
+('lojban','https://mw.lojban.org/papri/$1','','',0,0),
+('lqwiki','http://wiki.linuxquestions.org/wiki/$1','','',0,0),
+('meatball','http://meatballwiki.org/wiki/$1','','',0,0),
+('mediawikiwiki','https://www.mediawiki.org/wiki/$1','https://www.mediawiki.org/w/api.php','',0,0),
+('memoryalpha','http://en.memory-alpha.org/wiki/$1','http://en.memory-alpha.org/api.php','',0,0),
+('metawiki','http://sunir.org/apps/meta.pl?$1','','',0,0),
+('metawikimedia','https://meta.wikimedia.org/wiki/$1','https://meta.wikimedia.org/w/api.php','',0,0),
+('mozillawiki','https://wiki.mozilla.org/$1','https://wiki.mozilla.org/api.php','',0,0),
+('mw','https://www.mediawiki.org/wiki/$1','https://www.mediawiki.org/w/api.php','',0,0),
+('oeis','https://oeis.org/$1','','',0,0),
+('openwiki','http://openwiki.com/ow.asp?$1','','',0,0),
+('pmid','https://www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract','','',0,0),
+('pythoninfo','https://wiki.python.org/moin/$1','','',0,0),
+('rfc','https://tools.ietf.org/html/rfc$1','','',0,0),
+('s23wiki','http://s23.org/wiki/$1','http://s23.org/w/api.php','',0,0),
+('seattlewireless','http://seattlewireless.net/$1','','',0,0),
+('senseislibrary','https://senseis.xmp.net/?$1','','',0,0),
+('shoutwiki','http://www.shoutwiki.com/wiki/$1','http://www.shoutwiki.com/w/api.php','',0,0),
+('squeak','http://wiki.squeak.org/squeak/$1','','',0,0),
+('theopedia','https://www.theopedia.com/$1','','',0,0),
+('tmbw','http://www.tmbw.net/wiki/$1','http://tmbw.net/wiki/api.php','',0,0),
+('tmnet','http://www.technomanifestos.net/?$1','','',0,0),
+('twiki','http://twiki.org/cgi-bin/view/$1','','',0,0),
+('uncyclopedia','https://en.uncyclopedia.co/wiki/$1','https://en.uncyclopedia.co/w/api.php','',0,0),
+('unreal','https://wiki.beyondunreal.com/$1','https://wiki.beyondunreal.com/w/api.php','',0,0),
+('usemod','http://www.usemod.com/cgi-bin/wiki.pl?$1','','',0,0),
+('wiki','http://c2.com/cgi/wiki?$1','','',0,0),
+('wikia','http://www.wikia.com/wiki/$1','','',0,0),
+('wikibooks','https://en.wikibooks.org/wiki/$1','https://en.wikibooks.org/w/api.php','',0,0),
+('wikidata','https://www.wikidata.org/wiki/$1','https://www.wikidata.org/w/api.php','',0,0),
+('wikif1','http://www.wikif1.org/$1','','',0,0),
+('wikihow','https://www.wikihow.com/$1','https://www.wikihow.com/api.php','',0,0),
+('wikimedia','https://foundation.wikimedia.org/wiki/$1','https://foundation.wikimedia.org/w/api.php','',0,0),
+('wikinews','https://en.wikinews.org/wiki/$1','https://en.wikinews.org/w/api.php','',0,0),
+('wikinfo','http://wikinfo.co/English/index.php/$1','','',0,0),
+('wikipedia','https://en.wikipedia.org/wiki/$1','https://en.wikipedia.org/w/api.php','',0,0),
+('wikiquote','https://en.wikiquote.org/wiki/$1','https://en.wikiquote.org/w/api.php','',0,0),
+('wikisource','https://wikisource.org/wiki/$1','https://wikisource.org/w/api.php','',0,0),
+('wikispecies','https://species.wikimedia.org/wiki/$1','https://species.wikimedia.org/w/api.php','',0,0),
+('wikiversity','https://en.wikiversity.org/wiki/$1','https://en.wikiversity.org/w/api.php','',0,0),
+('wikivoyage','https://en.wikivoyage.org/wiki/$1','https://en.wikivoyage.org/w/api.php','',0,0),
+('wikt','https://en.wiktionary.org/wiki/$1','https://en.wiktionary.org/w/api.php','',0,0),
+('wiktionary','https://en.wiktionary.org/wiki/$1','https://en.wiktionary.org/w/api.php','',0,0);
+/*!40000 ALTER TABLE `interwiki` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `ip_changes`
+--
+
+DROP TABLE IF EXISTS `ip_changes`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ip_changes` (
+ `ipc_rev_id` int(10) unsigned NOT NULL DEFAULT 0,
+ `ipc_rev_timestamp` binary(14) NOT NULL,
+ `ipc_hex` varbinary(35) NOT NULL DEFAULT '',
+ PRIMARY KEY (`ipc_rev_id`),
+ KEY `ipc_rev_timestamp` (`ipc_rev_timestamp`),
+ KEY `ipc_hex_time` (`ipc_hex`,`ipc_rev_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `ip_changes`
+--
+
+LOCK TABLES `ip_changes` WRITE;
+/*!40000 ALTER TABLE `ip_changes` DISABLE KEYS */;
+/*!40000 ALTER TABLE `ip_changes` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `ipblocks`
+--
+
+DROP TABLE IF EXISTS `ipblocks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ipblocks` (
+ `ipb_id` int(11) NOT NULL AUTO_INCREMENT,
+ `ipb_address` tinyblob NOT NULL,
+ `ipb_user` int(10) unsigned NOT NULL DEFAULT 0,
+ `ipb_by_actor` bigint(20) unsigned NOT NULL,
+ `ipb_reason_id` bigint(20) unsigned NOT NULL,
+ `ipb_timestamp` binary(14) NOT NULL,
+ `ipb_auto` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_anon_only` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_create_account` tinyint(1) NOT NULL DEFAULT 1,
+ `ipb_enable_autoblock` tinyint(1) NOT NULL DEFAULT 1,
+ `ipb_expiry` varbinary(14) NOT NULL,
+ `ipb_range_start` tinyblob NOT NULL,
+ `ipb_range_end` tinyblob NOT NULL,
+ `ipb_deleted` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_block_email` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_allow_usertalk` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_parent_block_id` int(11) DEFAULT NULL,
+ `ipb_sitewide` tinyint(1) NOT NULL DEFAULT 1,
+ PRIMARY KEY (`ipb_id`),
+ UNIQUE KEY `ipb_address_unique` (`ipb_address`(255),`ipb_user`,`ipb_auto`),
+ KEY `ipb_user` (`ipb_user`),
+ KEY `ipb_range` (`ipb_range_start`(8),`ipb_range_end`(8)),
+ KEY `ipb_timestamp` (`ipb_timestamp`),
+ KEY `ipb_expiry` (`ipb_expiry`),
+ KEY `ipb_parent_block_id` (`ipb_parent_block_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `ipblocks`
+--
+
+LOCK TABLES `ipblocks` WRITE;
+/*!40000 ALTER TABLE `ipblocks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `ipblocks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `ipblocks_restrictions`
+--
+
+DROP TABLE IF EXISTS `ipblocks_restrictions`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ipblocks_restrictions` (
+ `ir_ipb_id` int(11) NOT NULL,
+ `ir_type` tinyint(4) NOT NULL,
+ `ir_value` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`ir_ipb_id`,`ir_type`,`ir_value`),
+ KEY `ir_type_value` (`ir_type`,`ir_value`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `ipblocks_restrictions`
+--
+
+LOCK TABLES `ipblocks_restrictions` WRITE;
+/*!40000 ALTER TABLE `ipblocks_restrictions` DISABLE KEYS */;
+/*!40000 ALTER TABLE `ipblocks_restrictions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `iwlinks`
+--
+
+DROP TABLE IF EXISTS `iwlinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `iwlinks` (
+ `iwl_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `iwl_prefix` varbinary(32) NOT NULL DEFAULT '',
+ `iwl_title` varbinary(255) NOT NULL DEFAULT '',
+ PRIMARY KEY (`iwl_from`,`iwl_prefix`,`iwl_title`),
+ KEY `iwl_prefix_title_from` (`iwl_prefix`,`iwl_title`,`iwl_from`),
+ KEY `iwl_prefix_from_title` (`iwl_prefix`,`iwl_from`,`iwl_title`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `iwlinks`
+--
+
+LOCK TABLES `iwlinks` WRITE;
+/*!40000 ALTER TABLE `iwlinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `iwlinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `job`
+--
+
+DROP TABLE IF EXISTS `job`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `job` (
+ `job_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `job_cmd` varbinary(60) NOT NULL DEFAULT '',
+ `job_namespace` int(11) NOT NULL,
+ `job_title` varbinary(255) NOT NULL,
+ `job_timestamp` binary(14) DEFAULT NULL,
+ `job_params` mediumblob NOT NULL,
+ `job_random` int(10) unsigned NOT NULL DEFAULT 0,
+ `job_attempts` int(10) unsigned NOT NULL DEFAULT 0,
+ `job_token` varbinary(32) NOT NULL DEFAULT '',
+ `job_token_timestamp` binary(14) DEFAULT NULL,
+ `job_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`job_id`),
+ KEY `job_sha1` (`job_sha1`),
+ KEY `job_cmd_token` (`job_cmd`,`job_token`,`job_random`),
+ KEY `job_cmd_token_id` (`job_cmd`,`job_token`,`job_id`),
+ KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`,`job_params`(128)),
+ KEY `job_timestamp` (`job_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `job`
+--
+
+LOCK TABLES `job` WRITE;
+/*!40000 ALTER TABLE `job` DISABLE KEYS */;
+/*!40000 ALTER TABLE `job` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `l10n_cache`
+--
+
+DROP TABLE IF EXISTS `l10n_cache`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `l10n_cache` (
+ `lc_lang` varbinary(35) NOT NULL,
+ `lc_key` varbinary(255) NOT NULL,
+ `lc_value` mediumblob NOT NULL,
+ PRIMARY KEY (`lc_lang`,`lc_key`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `l10n_cache`
+--
+
+LOCK TABLES `l10n_cache` WRITE;
+/*!40000 ALTER TABLE `l10n_cache` DISABLE KEYS */;
+/*!40000 ALTER TABLE `l10n_cache` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `langlinks`
+--
+
+DROP TABLE IF EXISTS `langlinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `langlinks` (
+ `ll_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `ll_lang` varbinary(35) NOT NULL DEFAULT '',
+ `ll_title` varbinary(255) NOT NULL DEFAULT '',
+ PRIMARY KEY (`ll_from`,`ll_lang`),
+ KEY `ll_lang` (`ll_lang`,`ll_title`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `langlinks`
+--
+
+LOCK TABLES `langlinks` WRITE;
+/*!40000 ALTER TABLE `langlinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `langlinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `linktarget`
+--
+
+DROP TABLE IF EXISTS `linktarget`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `linktarget` (
+ `lt_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `lt_namespace` int(11) NOT NULL,
+ `lt_title` varbinary(255) NOT NULL,
+ PRIMARY KEY (`lt_id`),
+ UNIQUE KEY `lt_namespace_title` (`lt_namespace`,`lt_title`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `linktarget`
+--
+
+LOCK TABLES `linktarget` WRITE;
+/*!40000 ALTER TABLE `linktarget` DISABLE KEYS */;
+/*!40000 ALTER TABLE `linktarget` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `log_search`
+--
+
+DROP TABLE IF EXISTS `log_search`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `log_search` (
+ `ls_field` varbinary(32) NOT NULL,
+ `ls_value` varbinary(255) NOT NULL,
+ `ls_log_id` int(10) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`ls_field`,`ls_value`,`ls_log_id`),
+ KEY `ls_log_id` (`ls_log_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `log_search`
+--
+
+LOCK TABLES `log_search` WRITE;
+/*!40000 ALTER TABLE `log_search` DISABLE KEYS */;
+INSERT INTO `log_search` VALUES
+('associated_rev_id','1',1);
+/*!40000 ALTER TABLE `log_search` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `logging`
+--
+
+DROP TABLE IF EXISTS `logging`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `logging` (
+ `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `log_type` varbinary(32) NOT NULL DEFAULT '',
+ `log_action` varbinary(32) NOT NULL DEFAULT '',
+ `log_timestamp` binary(14) NOT NULL DEFAULT '19700101000000',
+ `log_actor` bigint(20) unsigned NOT NULL,
+ `log_namespace` int(11) NOT NULL DEFAULT 0,
+ `log_title` varbinary(255) NOT NULL DEFAULT '',
+ `log_page` int(10) unsigned DEFAULT NULL,
+ `log_comment_id` bigint(20) unsigned NOT NULL,
+ `log_params` blob NOT NULL,
+ `log_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`log_id`),
+ KEY `log_type_time` (`log_type`,`log_timestamp`),
+ KEY `log_actor_time` (`log_actor`,`log_timestamp`),
+ KEY `log_page_time` (`log_namespace`,`log_title`,`log_timestamp`),
+ KEY `log_times` (`log_timestamp`),
+ KEY `log_actor_type_time` (`log_actor`,`log_type`,`log_timestamp`),
+ KEY `log_page_id_time` (`log_page`,`log_timestamp`),
+ KEY `log_type_action` (`log_type`,`log_action`,`log_timestamp`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `logging`
+--
+
+LOCK TABLES `logging` WRITE;
+/*!40000 ALTER TABLE `logging` DISABLE KEYS */;
+INSERT INTO `logging` VALUES
+(1,'create','create','20220830090824',2,0,'Página_principal',1,1,'a:1:{s:17:\"associated_rev_id\";i:1;}',0);
+/*!40000 ALTER TABLE `logging` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `module_deps`
+--
+
+DROP TABLE IF EXISTS `module_deps`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `module_deps` (
+ `md_module` varbinary(255) NOT NULL,
+ `md_skin` varbinary(32) NOT NULL,
+ `md_deps` mediumblob NOT NULL,
+ PRIMARY KEY (`md_module`,`md_skin`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `module_deps`
+--
+
+LOCK TABLES `module_deps` WRITE;
+/*!40000 ALTER TABLE `module_deps` DISABLE KEYS */;
+/*!40000 ALTER TABLE `module_deps` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `objectcache`
+--
+
+DROP TABLE IF EXISTS `objectcache`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `objectcache` (
+ `keyname` varbinary(255) NOT NULL DEFAULT '',
+ `value` mediumblob DEFAULT NULL,
+ `exptime` binary(14) NOT NULL,
+ `modtoken` varbinary(17) NOT NULL DEFAULT '00000000000000000',
+ `flags` int(10) unsigned DEFAULT NULL,
+ PRIMARY KEY (`keyname`),
+ KEY `exptime` (`exptime`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `objectcache`
+--
+
+LOCK TABLES `objectcache` WRITE;
+/*!40000 ALTER TABLE `objectcache` DISABLE KEYS */;
+/*!40000 ALTER TABLE `objectcache` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `oldimage`
+--
+
+DROP TABLE IF EXISTS `oldimage`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `oldimage` (
+ `oi_name` varbinary(255) NOT NULL DEFAULT '',
+ `oi_archive_name` varbinary(255) NOT NULL DEFAULT '',
+ `oi_size` int(10) unsigned NOT NULL DEFAULT 0,
+ `oi_width` int(11) NOT NULL DEFAULT 0,
+ `oi_height` int(11) NOT NULL DEFAULT 0,
+ `oi_bits` int(11) NOT NULL DEFAULT 0,
+ `oi_description_id` bigint(20) unsigned NOT NULL,
+ `oi_actor` bigint(20) unsigned NOT NULL,
+ `oi_timestamp` binary(14) NOT NULL,
+ `oi_metadata` mediumblob NOT NULL,
+ `oi_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL,
+ `oi_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') NOT NULL DEFAULT 'unknown',
+ `oi_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown',
+ `oi_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `oi_sha1` varbinary(32) NOT NULL DEFAULT '',
+ KEY `oi_actor_timestamp` (`oi_actor`,`oi_timestamp`),
+ KEY `oi_name_timestamp` (`oi_name`,`oi_timestamp`),
+ KEY `oi_name_archive_name` (`oi_name`,`oi_archive_name`(14)),
+ KEY `oi_sha1` (`oi_sha1`(10)),
+ KEY `oi_timestamp` (`oi_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `oldimage`
+--
+
+LOCK TABLES `oldimage` WRITE;
+/*!40000 ALTER TABLE `oldimage` DISABLE KEYS */;
+/*!40000 ALTER TABLE `oldimage` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `page`
+--
+
+DROP TABLE IF EXISTS `page`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `page` (
+ `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `page_namespace` int(11) NOT NULL,
+ `page_title` varbinary(255) NOT NULL,
+ `page_restrictions` tinyblob DEFAULT NULL,
+ `page_is_redirect` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `page_is_new` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `page_random` double unsigned NOT NULL,
+ `page_touched` binary(14) NOT NULL,
+ `page_links_updated` varbinary(14) DEFAULT NULL,
+ `page_latest` int(10) unsigned NOT NULL,
+ `page_len` int(10) unsigned NOT NULL,
+ `page_content_model` varbinary(32) DEFAULT NULL,
+ `page_lang` varbinary(35) DEFAULT NULL,
+ PRIMARY KEY (`page_id`),
+ UNIQUE KEY `page_name_title` (`page_namespace`,`page_title`),
+ KEY `page_random` (`page_random`),
+ KEY `page_len` (`page_len`),
+ KEY `page_redirect_namespace_len` (`page_is_redirect`,`page_namespace`,`page_len`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `page`
+--
+
+LOCK TABLES `page` WRITE;
+/*!40000 ALTER TABLE `page` DISABLE KEYS */;
+INSERT INTO `page` VALUES
+(1,0,'Página_principal','',0,1,0.623395444446,'20220830090824',NULL,1,808,'wikitext',NULL);
+/*!40000 ALTER TABLE `page` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `page_props`
+--
+
+DROP TABLE IF EXISTS `page_props`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `page_props` (
+ `pp_page` int(10) unsigned NOT NULL,
+ `pp_propname` varbinary(60) NOT NULL,
+ `pp_value` blob NOT NULL,
+ `pp_sortkey` float DEFAULT NULL,
+ PRIMARY KEY (`pp_page`,`pp_propname`),
+ UNIQUE KEY `pp_propname_page` (`pp_propname`,`pp_page`),
+ UNIQUE KEY `pp_propname_sortkey_page` (`pp_propname`,`pp_sortkey`,`pp_page`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `page_props`
+--
+
+LOCK TABLES `page_props` WRITE;
+/*!40000 ALTER TABLE `page_props` DISABLE KEYS */;
+/*!40000 ALTER TABLE `page_props` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `page_restrictions`
+--
+
+DROP TABLE IF EXISTS `page_restrictions`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `page_restrictions` (
+ `pr_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pr_page` int(10) unsigned NOT NULL,
+ `pr_type` varbinary(60) NOT NULL,
+ `pr_level` varbinary(60) NOT NULL,
+ `pr_cascade` tinyint(4) NOT NULL,
+ `pr_expiry` varbinary(14) DEFAULT NULL,
+ PRIMARY KEY (`pr_id`),
+ UNIQUE KEY `pr_pagetype` (`pr_page`,`pr_type`),
+ KEY `pr_typelevel` (`pr_type`,`pr_level`),
+ KEY `pr_level` (`pr_level`),
+ KEY `pr_cascade` (`pr_cascade`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `page_restrictions`
+--
+
+LOCK TABLES `page_restrictions` WRITE;
+/*!40000 ALTER TABLE `page_restrictions` DISABLE KEYS */;
+/*!40000 ALTER TABLE `page_restrictions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `pagelinks`
+--
+
+DROP TABLE IF EXISTS `pagelinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `pagelinks` (
+ `pl_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `pl_namespace` int(11) NOT NULL DEFAULT 0,
+ `pl_title` varbinary(255) NOT NULL DEFAULT '',
+ `pl_from_namespace` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`pl_from`,`pl_namespace`,`pl_title`),
+ KEY `pl_namespace` (`pl_namespace`,`pl_title`,`pl_from`),
+ KEY `pl_backlinks_namespace` (`pl_from_namespace`,`pl_namespace`,`pl_title`,`pl_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `pagelinks`
+--
+
+LOCK TABLES `pagelinks` WRITE;
+/*!40000 ALTER TABLE `pagelinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `pagelinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `protected_titles`
+--
+
+DROP TABLE IF EXISTS `protected_titles`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `protected_titles` (
+ `pt_namespace` int(11) NOT NULL,
+ `pt_title` varbinary(255) NOT NULL,
+ `pt_user` int(10) unsigned NOT NULL,
+ `pt_reason_id` bigint(20) unsigned NOT NULL,
+ `pt_timestamp` binary(14) NOT NULL,
+ `pt_expiry` varbinary(14) NOT NULL,
+ `pt_create_perm` varbinary(60) NOT NULL,
+ PRIMARY KEY (`pt_namespace`,`pt_title`),
+ KEY `pt_timestamp` (`pt_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `protected_titles`
+--
+
+LOCK TABLES `protected_titles` WRITE;
+/*!40000 ALTER TABLE `protected_titles` DISABLE KEYS */;
+/*!40000 ALTER TABLE `protected_titles` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `querycache`
+--
+
+DROP TABLE IF EXISTS `querycache`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `querycache` (
+ `qc_type` varbinary(32) NOT NULL,
+ `qc_value` int(10) unsigned NOT NULL DEFAULT 0,
+ `qc_namespace` int(11) NOT NULL DEFAULT 0,
+ `qc_title` varbinary(255) NOT NULL DEFAULT '',
+ KEY `qc_type` (`qc_type`,`qc_value`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `querycache`
+--
+
+LOCK TABLES `querycache` WRITE;
+/*!40000 ALTER TABLE `querycache` DISABLE KEYS */;
+/*!40000 ALTER TABLE `querycache` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `querycache_info`
+--
+
+DROP TABLE IF EXISTS `querycache_info`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `querycache_info` (
+ `qci_type` varbinary(32) NOT NULL DEFAULT '',
+ `qci_timestamp` binary(14) NOT NULL DEFAULT '19700101000000',
+ PRIMARY KEY (`qci_type`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `querycache_info`
+--
+
+LOCK TABLES `querycache_info` WRITE;
+/*!40000 ALTER TABLE `querycache_info` DISABLE KEYS */;
+/*!40000 ALTER TABLE `querycache_info` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `querycachetwo`
+--
+
+DROP TABLE IF EXISTS `querycachetwo`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `querycachetwo` (
+ `qcc_type` varbinary(32) NOT NULL,
+ `qcc_value` int(10) unsigned NOT NULL DEFAULT 0,
+ `qcc_namespace` int(11) NOT NULL DEFAULT 0,
+ `qcc_title` varbinary(255) NOT NULL DEFAULT '',
+ `qcc_namespacetwo` int(11) NOT NULL DEFAULT 0,
+ `qcc_titletwo` varbinary(255) NOT NULL DEFAULT '',
+ KEY `qcc_type` (`qcc_type`,`qcc_value`),
+ KEY `qcc_title` (`qcc_type`,`qcc_namespace`,`qcc_title`),
+ KEY `qcc_titletwo` (`qcc_type`,`qcc_namespacetwo`,`qcc_titletwo`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `querycachetwo`
+--
+
+LOCK TABLES `querycachetwo` WRITE;
+/*!40000 ALTER TABLE `querycachetwo` DISABLE KEYS */;
+/*!40000 ALTER TABLE `querycachetwo` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `recentchanges`
+--
+
+DROP TABLE IF EXISTS `recentchanges`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `recentchanges` (
+ `rc_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `rc_timestamp` binary(14) NOT NULL,
+ `rc_actor` bigint(20) unsigned NOT NULL,
+ `rc_namespace` int(11) NOT NULL DEFAULT 0,
+ `rc_title` varbinary(255) NOT NULL DEFAULT '',
+ `rc_comment_id` bigint(20) unsigned NOT NULL,
+ `rc_minor` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rc_bot` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rc_new` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rc_cur_id` int(10) unsigned NOT NULL DEFAULT 0,
+ `rc_this_oldid` int(10) unsigned NOT NULL DEFAULT 0,
+ `rc_last_oldid` int(10) unsigned NOT NULL DEFAULT 0,
+ `rc_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rc_source` varbinary(16) NOT NULL DEFAULT '',
+ `rc_patrolled` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rc_ip` varbinary(40) NOT NULL DEFAULT '',
+ `rc_old_len` int(11) DEFAULT NULL,
+ `rc_new_len` int(11) DEFAULT NULL,
+ `rc_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rc_logid` int(10) unsigned NOT NULL DEFAULT 0,
+ `rc_log_type` varbinary(255) DEFAULT NULL,
+ `rc_log_action` varbinary(255) DEFAULT NULL,
+ `rc_params` blob DEFAULT NULL,
+ PRIMARY KEY (`rc_id`),
+ KEY `rc_timestamp` (`rc_timestamp`),
+ KEY `rc_namespace_title_timestamp` (`rc_namespace`,`rc_title`,`rc_timestamp`),
+ KEY `rc_cur_id` (`rc_cur_id`),
+ KEY `rc_new_name_timestamp` (`rc_new`,`rc_namespace`,`rc_timestamp`),
+ KEY `rc_ip` (`rc_ip`),
+ KEY `rc_ns_actor` (`rc_namespace`,`rc_actor`),
+ KEY `rc_actor` (`rc_actor`,`rc_timestamp`),
+ KEY `rc_name_type_patrolled_timestamp` (`rc_namespace`,`rc_type`,`rc_patrolled`,`rc_timestamp`),
+ KEY `rc_this_oldid` (`rc_this_oldid`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `recentchanges`
+--
+
+LOCK TABLES `recentchanges` WRITE;
+/*!40000 ALTER TABLE `recentchanges` DISABLE KEYS */;
+/*!40000 ALTER TABLE `recentchanges` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `redirect`
+--
+
+DROP TABLE IF EXISTS `redirect`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `redirect` (
+ `rd_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `rd_namespace` int(11) NOT NULL DEFAULT 0,
+ `rd_title` varbinary(255) NOT NULL DEFAULT '',
+ `rd_interwiki` varbinary(32) DEFAULT NULL,
+ `rd_fragment` varbinary(255) DEFAULT NULL,
+ PRIMARY KEY (`rd_from`),
+ KEY `rd_ns_title` (`rd_namespace`,`rd_title`,`rd_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `redirect`
+--
+
+LOCK TABLES `redirect` WRITE;
+/*!40000 ALTER TABLE `redirect` DISABLE KEYS */;
+/*!40000 ALTER TABLE `redirect` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `revision`
+--
+
+DROP TABLE IF EXISTS `revision`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `revision` (
+ `rev_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `rev_page` int(10) unsigned NOT NULL,
+ `rev_comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+ `rev_actor` bigint(20) unsigned NOT NULL DEFAULT 0,
+ `rev_timestamp` binary(14) NOT NULL,
+ `rev_minor_edit` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rev_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `rev_len` int(10) unsigned DEFAULT NULL,
+ `rev_parent_id` int(10) unsigned DEFAULT NULL,
+ `rev_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`rev_id`),
+ KEY `rev_timestamp` (`rev_timestamp`),
+ KEY `rev_page_timestamp` (`rev_page`,`rev_timestamp`),
+ KEY `rev_actor_timestamp` (`rev_actor`,`rev_timestamp`,`rev_id`),
+ KEY `rev_page_actor_timestamp` (`rev_page`,`rev_actor`,`rev_timestamp`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `revision`
+--
+
+LOCK TABLES `revision` WRITE;
+/*!40000 ALTER TABLE `revision` DISABLE KEYS */;
+INSERT INTO `revision` VALUES
+(1,1,0,0,'20220830090824',0,0,808,0,'q34u298fvzb4opkngj4ztlrfz91rgb2');
+/*!40000 ALTER TABLE `revision` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `revision_actor_temp`
+--
+
+DROP TABLE IF EXISTS `revision_actor_temp`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `revision_actor_temp` (
+ `revactor_rev` int(10) unsigned NOT NULL,
+ `revactor_actor` bigint(20) unsigned NOT NULL,
+ `revactor_timestamp` binary(14) NOT NULL,
+ `revactor_page` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`revactor_rev`,`revactor_actor`),
+ UNIQUE KEY `revactor_rev` (`revactor_rev`),
+ KEY `actor_timestamp` (`revactor_actor`,`revactor_timestamp`),
+ KEY `page_actor_timestamp` (`revactor_page`,`revactor_actor`,`revactor_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `revision_actor_temp`
+--
+
+LOCK TABLES `revision_actor_temp` WRITE;
+/*!40000 ALTER TABLE `revision_actor_temp` DISABLE KEYS */;
+INSERT INTO `revision_actor_temp` VALUES
+(1,2,'20220830090824',1);
+/*!40000 ALTER TABLE `revision_actor_temp` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `revision_comment_temp`
+--
+
+DROP TABLE IF EXISTS `revision_comment_temp`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `revision_comment_temp` (
+ `revcomment_rev` int(10) unsigned NOT NULL,
+ `revcomment_comment_id` bigint(20) unsigned NOT NULL,
+ PRIMARY KEY (`revcomment_rev`,`revcomment_comment_id`),
+ UNIQUE KEY `revcomment_rev` (`revcomment_rev`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `revision_comment_temp`
+--
+
+LOCK TABLES `revision_comment_temp` WRITE;
+/*!40000 ALTER TABLE `revision_comment_temp` DISABLE KEYS */;
+INSERT INTO `revision_comment_temp` VALUES
+(1,1);
+/*!40000 ALTER TABLE `revision_comment_temp` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `searchindex`
+--
+
+DROP TABLE IF EXISTS `searchindex`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `searchindex` (
+ `si_page` int(10) unsigned NOT NULL,
+ `si_title` varchar(255) NOT NULL DEFAULT '',
+ `si_text` mediumtext NOT NULL,
+ UNIQUE KEY `si_page` (`si_page`),
+ FULLTEXT KEY `si_title` (`si_title`),
+ FULLTEXT KEY `si_text` (`si_text`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `searchindex`
+--
+
+LOCK TABLES `searchindex` WRITE;
+/*!40000 ALTER TABLE `searchindex` DISABLE KEYS */;
+/*!40000 ALTER TABLE `searchindex` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `site_identifiers`
+--
+
+DROP TABLE IF EXISTS `site_identifiers`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `site_identifiers` (
+ `si_type` varbinary(32) NOT NULL,
+ `si_key` varbinary(32) NOT NULL,
+ `si_site` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`si_type`,`si_key`),
+ KEY `si_site` (`si_site`),
+ KEY `si_key` (`si_key`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `site_identifiers`
+--
+
+LOCK TABLES `site_identifiers` WRITE;
+/*!40000 ALTER TABLE `site_identifiers` DISABLE KEYS */;
+/*!40000 ALTER TABLE `site_identifiers` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `site_stats`
+--
+
+DROP TABLE IF EXISTS `site_stats`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `site_stats` (
+ `ss_row_id` int(10) unsigned NOT NULL,
+ `ss_total_edits` bigint(20) unsigned DEFAULT NULL,
+ `ss_good_articles` bigint(20) unsigned DEFAULT NULL,
+ `ss_total_pages` bigint(20) unsigned DEFAULT NULL,
+ `ss_users` bigint(20) unsigned DEFAULT NULL,
+ `ss_active_users` bigint(20) unsigned DEFAULT NULL,
+ `ss_images` bigint(20) unsigned DEFAULT NULL,
+ PRIMARY KEY (`ss_row_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `site_stats`
+--
+
+LOCK TABLES `site_stats` WRITE;
+/*!40000 ALTER TABLE `site_stats` DISABLE KEYS */;
+INSERT INTO `site_stats` VALUES
+(1,0,0,0,1,0,0);
+/*!40000 ALTER TABLE `site_stats` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sites`
+--
+
+DROP TABLE IF EXISTS `sites`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sites` (
+ `site_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `site_global_key` varbinary(64) NOT NULL,
+ `site_type` varbinary(32) NOT NULL,
+ `site_group` varbinary(32) NOT NULL,
+ `site_source` varbinary(32) NOT NULL,
+ `site_language` varbinary(35) NOT NULL,
+ `site_protocol` varbinary(32) NOT NULL,
+ `site_domain` varbinary(255) NOT NULL,
+ `site_data` blob NOT NULL,
+ `site_forward` tinyint(1) NOT NULL,
+ `site_config` blob NOT NULL,
+ PRIMARY KEY (`site_id`),
+ UNIQUE KEY `site_global_key` (`site_global_key`),
+ KEY `site_type` (`site_type`),
+ KEY `site_group` (`site_group`),
+ KEY `site_source` (`site_source`),
+ KEY `site_language` (`site_language`),
+ KEY `site_protocol` (`site_protocol`),
+ KEY `site_domain` (`site_domain`),
+ KEY `site_forward` (`site_forward`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sites`
+--
+
+LOCK TABLES `sites` WRITE;
+/*!40000 ALTER TABLE `sites` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sites` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `slot_roles`
+--
+
+DROP TABLE IF EXISTS `slot_roles`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `slot_roles` (
+ `role_id` int(11) NOT NULL AUTO_INCREMENT,
+ `role_name` varbinary(64) NOT NULL,
+ PRIMARY KEY (`role_id`),
+ UNIQUE KEY `role_name` (`role_name`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `slot_roles`
+--
+
+LOCK TABLES `slot_roles` WRITE;
+/*!40000 ALTER TABLE `slot_roles` DISABLE KEYS */;
+INSERT INTO `slot_roles` VALUES
+(1,'main');
+/*!40000 ALTER TABLE `slot_roles` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `slots`
+--
+
+DROP TABLE IF EXISTS `slots`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `slots` (
+ `slot_revision_id` bigint(20) unsigned NOT NULL,
+ `slot_role_id` smallint(5) unsigned NOT NULL,
+ `slot_content_id` bigint(20) unsigned NOT NULL,
+ `slot_origin` bigint(20) unsigned NOT NULL,
+ PRIMARY KEY (`slot_revision_id`,`slot_role_id`),
+ KEY `slot_revision_origin_role` (`slot_revision_id`,`slot_origin`,`slot_role_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `slots`
+--
+
+LOCK TABLES `slots` WRITE;
+/*!40000 ALTER TABLE `slots` DISABLE KEYS */;
+INSERT INTO `slots` VALUES
+(1,1,1,1);
+/*!40000 ALTER TABLE `slots` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `templatelinks`
+--
+
+DROP TABLE IF EXISTS `templatelinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `templatelinks` (
+ `tl_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `tl_namespace` int(11) NOT NULL DEFAULT 0,
+ `tl_title` varbinary(255) NOT NULL DEFAULT '',
+ `tl_from_namespace` int(11) NOT NULL DEFAULT 0,
+ `tl_target_id` bigint(20) unsigned DEFAULT NULL,
+ PRIMARY KEY (`tl_from`,`tl_namespace`,`tl_title`),
+ KEY `tl_namespace` (`tl_namespace`,`tl_title`,`tl_from`),
+ KEY `tl_backlinks_namespace` (`tl_from_namespace`,`tl_namespace`,`tl_title`,`tl_from`),
+ KEY `tl_target_id` (`tl_target_id`,`tl_from`),
+ KEY `tl_backlinks_namespace_target_id` (`tl_from_namespace`,`tl_target_id`,`tl_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `templatelinks`
+--
+
+LOCK TABLES `templatelinks` WRITE;
+/*!40000 ALTER TABLE `templatelinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `templatelinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `text`
+--
+
+DROP TABLE IF EXISTS `text`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `text` (
+ `old_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `old_text` mediumblob NOT NULL,
+ `old_flags` tinyblob NOT NULL,
+ PRIMARY KEY (`old_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `text`
+--
+
+LOCK TABLES `text` WRITE;
+/*!40000 ALTER TABLE `text` DISABLE KEYS */;
+INSERT INTO `text` VALUES
+(1,'MediaWiki se ha instalado.\n\nConsulta la [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents guía] para obtener información sobre el uso del software wiki.\n\n== Primeros pasos ==\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Lista de ajustes de configuración]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ Preguntas frecuentes sobre MediaWiki]\n* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ Lista de correo de anuncios de publicación de MediaWiki]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Traducir MediaWiki a tu idioma]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Aprende a combatir el spam en tu wiki]','utf-8');
+/*!40000 ALTER TABLE `text` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twactor`
+--
+
+DROP TABLE IF EXISTS `twactor`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twactor` (
+ `actor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `actor_user` int(10) unsigned DEFAULT NULL,
+ `actor_name` varbinary(255) NOT NULL,
+ PRIMARY KEY (`actor_id`),
+ UNIQUE KEY `actor_name` (`actor_name`),
+ UNIQUE KEY `actor_user` (`actor_user`)
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twactor`
+--
+
+LOCK TABLES `twactor` WRITE;
+/*!40000 ALTER TABLE `twactor` DISABLE KEYS */;
+INSERT INTO `twactor` VALUES
+(1,1,'Creylopez'),
+(2,2,'MediaWiki default');
+/*!40000 ALTER TABLE `twactor` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twarchive`
+--
+
+DROP TABLE IF EXISTS `twarchive`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twarchive` (
+ `ar_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ar_namespace` int(11) NOT NULL DEFAULT 0,
+ `ar_title` varbinary(255) NOT NULL DEFAULT '',
+ `ar_comment_id` bigint(20) unsigned NOT NULL,
+ `ar_actor` bigint(20) unsigned NOT NULL,
+ `ar_timestamp` binary(14) NOT NULL,
+ `ar_minor_edit` tinyint(4) NOT NULL DEFAULT 0,
+ `ar_rev_id` int(10) unsigned NOT NULL,
+ `ar_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `ar_len` int(10) unsigned DEFAULT NULL,
+ `ar_page_id` int(10) unsigned DEFAULT NULL,
+ `ar_parent_id` int(10) unsigned DEFAULT NULL,
+ `ar_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`ar_id`),
+ UNIQUE KEY `ar_revid_uniq` (`ar_rev_id`),
+ KEY `ar_name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`),
+ KEY `ar_actor_timestamp` (`ar_actor`,`ar_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twarchive`
+--
+
+LOCK TABLES `twarchive` WRITE;
+/*!40000 ALTER TABLE `twarchive` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twarchive` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twbot_passwords`
+--
+
+DROP TABLE IF EXISTS `twbot_passwords`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twbot_passwords` (
+ `bp_user` int(10) unsigned NOT NULL,
+ `bp_app_id` varbinary(32) NOT NULL,
+ `bp_password` tinyblob NOT NULL,
+ `bp_token` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
+ `bp_restrictions` blob NOT NULL,
+ `bp_grants` blob NOT NULL,
+ PRIMARY KEY (`bp_user`,`bp_app_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twbot_passwords`
+--
+
+LOCK TABLES `twbot_passwords` WRITE;
+/*!40000 ALTER TABLE `twbot_passwords` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twbot_passwords` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twcategory`
+--
+
+DROP TABLE IF EXISTS `twcategory`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twcategory` (
+ `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `cat_title` varbinary(255) NOT NULL,
+ `cat_pages` int(11) NOT NULL DEFAULT 0,
+ `cat_subcats` int(11) NOT NULL DEFAULT 0,
+ `cat_files` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`cat_id`),
+ UNIQUE KEY `cat_title` (`cat_title`),
+ KEY `cat_pages` (`cat_pages`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twcategory`
+--
+
+LOCK TABLES `twcategory` WRITE;
+/*!40000 ALTER TABLE `twcategory` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twcategory` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twcategorylinks`
+--
+
+DROP TABLE IF EXISTS `twcategorylinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twcategorylinks` (
+ `cl_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `cl_to` varbinary(255) NOT NULL DEFAULT '',
+ `cl_sortkey` varbinary(230) NOT NULL DEFAULT '',
+ `cl_sortkey_prefix` varbinary(255) NOT NULL DEFAULT '',
+ `cl_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
+ `cl_collation` varbinary(32) NOT NULL DEFAULT '',
+ `cl_type` enum('page','subcat','file') NOT NULL DEFAULT 'page',
+ PRIMARY KEY (`cl_from`,`cl_to`),
+ KEY `cl_sortkey` (`cl_to`,`cl_type`,`cl_sortkey`,`cl_from`),
+ KEY `cl_timestamp` (`cl_to`,`cl_timestamp`),
+ KEY `cl_collation_ext` (`cl_collation`,`cl_to`,`cl_type`,`cl_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twcategorylinks`
+--
+
+LOCK TABLES `twcategorylinks` WRITE;
+/*!40000 ALTER TABLE `twcategorylinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twcategorylinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twchange_tag`
+--
+
+DROP TABLE IF EXISTS `twchange_tag`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twchange_tag` (
+ `ct_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ct_rc_id` int(10) unsigned DEFAULT NULL,
+ `ct_log_id` int(10) unsigned DEFAULT NULL,
+ `ct_rev_id` int(10) unsigned DEFAULT NULL,
+ `ct_params` blob DEFAULT NULL,
+ `ct_tag_id` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`ct_id`),
+ UNIQUE KEY `ct_rc_tag_id` (`ct_rc_id`,`ct_tag_id`),
+ UNIQUE KEY `ct_log_tag_id` (`ct_log_id`,`ct_tag_id`),
+ UNIQUE KEY `ct_rev_tag_id` (`ct_rev_id`,`ct_tag_id`),
+ KEY `ct_tag_id_id` (`ct_tag_id`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twchange_tag`
+--
+
+LOCK TABLES `twchange_tag` WRITE;
+/*!40000 ALTER TABLE `twchange_tag` DISABLE KEYS */;
+INSERT INTO `twchange_tag` VALUES
+(1,1,2,2,NULL,1),
+(2,2,NULL,3,NULL,1),
+(3,3,NULL,4,NULL,1),
+(4,4,NULL,5,NULL,1),
+(5,5,NULL,6,NULL,1),
+(6,6,NULL,7,NULL,1),
+(7,9,NULL,10,NULL,1);
+/*!40000 ALTER TABLE `twchange_tag` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twchange_tag_def`
+--
+
+DROP TABLE IF EXISTS `twchange_tag_def`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twchange_tag_def` (
+ `ctd_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ctd_name` varbinary(255) NOT NULL,
+ `ctd_user_defined` tinyint(1) NOT NULL,
+ `ctd_count` bigint(20) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`ctd_id`),
+ UNIQUE KEY `ctd_name` (`ctd_name`),
+ KEY `ctd_count` (`ctd_count`),
+ KEY `ctd_user_defined` (`ctd_user_defined`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twchange_tag_def`
+--
+
+LOCK TABLES `twchange_tag_def` WRITE;
+/*!40000 ALTER TABLE `twchange_tag_def` DISABLE KEYS */;
+INSERT INTO `twchange_tag_def` VALUES
+(1,'visualeditor',0,7);
+/*!40000 ALTER TABLE `twchange_tag_def` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twcomment`
+--
+
+DROP TABLE IF EXISTS `twcomment`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twcomment` (
+ `comment_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `comment_hash` int(11) NOT NULL,
+ `comment_text` blob NOT NULL,
+ `comment_data` blob DEFAULT NULL,
+ PRIMARY KEY (`comment_id`),
+ KEY `comment_hash` (`comment_hash`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twcomment`
+--
+
+LOCK TABLES `twcomment` WRITE;
+/*!40000 ALTER TABLE `twcomment` DISABLE KEYS */;
+INSERT INTO `twcomment` VALUES
+(1,0,'',NULL),
+(2,339784336,'Página creada con «Esta es la portada de la wiki Reymota.»',NULL),
+(3,442139320,'Añado enlace',NULL),
+(4,506715321,'Añado enlaces a los servicios del cluster',NULL),
+(5,1972690672,'Página creada con «Este es el servidor de contenidos Mediawiki de Reymota. Está alojado en el cluster de Kubernetes con otra serie de servicios.»',NULL);
+/*!40000 ALTER TABLE `twcomment` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twcontent`
+--
+
+DROP TABLE IF EXISTS `twcontent`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twcontent` (
+ `content_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+ `content_size` int(10) unsigned NOT NULL,
+ `content_sha1` varbinary(32) NOT NULL,
+ `content_model` smallint(5) unsigned NOT NULL,
+ `content_address` varbinary(255) NOT NULL,
+ PRIMARY KEY (`content_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twcontent`
+--
+
+LOCK TABLES `twcontent` WRITE;
+/*!40000 ALTER TABLE `twcontent` DISABLE KEYS */;
+INSERT INTO `twcontent` VALUES
+(1,755,'22vz5zlxa2zctewimaum2bf1due8hkl',1,'tt:1'),
+(2,38,'is0vhrvwct02wyhf3rzos8pxr4nucrp',1,'tt:2'),
+(3,187,'tgpisf19sbuq6mqt38jfck3nvuynyud',1,'tt:3'),
+(4,204,'4fk7qkt62hm2v9hps8039u30rue8d4q',1,'tt:4'),
+(5,284,'g10b2rhicfh7bela3czkzlzcg2rleaj',1,'tt:5'),
+(6,265,'ifcbvuh2wgne9alo7itufffnz9f694n',1,'tt:6'),
+(7,379,'2bj5bgi94s9r1f1dbq62g10s008vx1x',1,'tt:7'),
+(8,127,'sfk199wmim1zkwnw0p9pc3cxcyfh2it',1,'tt:8'),
+(9,52,'43z1af55cv5adis24lul8zow25lsamj',1,'tt:9'),
+(10,432,'ad4hf43f6i6bhj13gy86fv7pa3xyadl',1,'tt:10');
+/*!40000 ALTER TABLE `twcontent` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twcontent_models`
+--
+
+DROP TABLE IF EXISTS `twcontent_models`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twcontent_models` (
+ `model_id` int(11) NOT NULL AUTO_INCREMENT,
+ `model_name` varbinary(64) NOT NULL,
+ PRIMARY KEY (`model_id`),
+ UNIQUE KEY `model_name` (`model_name`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twcontent_models`
+--
+
+LOCK TABLES `twcontent_models` WRITE;
+/*!40000 ALTER TABLE `twcontent_models` DISABLE KEYS */;
+INSERT INTO `twcontent_models` VALUES
+(1,'wikitext');
+/*!40000 ALTER TABLE `twcontent_models` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twexternallinks`
+--
+
+DROP TABLE IF EXISTS `twexternallinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twexternallinks` (
+ `el_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `el_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `el_to` blob NOT NULL,
+ `el_index` blob NOT NULL,
+ `el_index_60` varbinary(60) NOT NULL,
+ PRIMARY KEY (`el_id`),
+ KEY `el_from` (`el_from`,`el_to`(40)),
+ KEY `el_to` (`el_to`(60),`el_from`),
+ KEY `el_index` (`el_index`(60)),
+ KEY `el_index_60` (`el_index_60`,`el_id`),
+ KEY `el_from_index_60` (`el_from`,`el_index_60`,`el_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twexternallinks`
+--
+
+LOCK TABLES `twexternallinks` WRITE;
+/*!40000 ALTER TABLE `twexternallinks` DISABLE KEYS */;
+INSERT INTO `twexternallinks` VALUES
+(2,2,'http://reymota.ddns.net:30289/login?redirect_url=/apps/dashboard/','http://net.ddns.reymota.:30289/login?redirect_url=/apps/dashboard/','http://net.ddns.reymota.:30289/login?redirect_url=/apps/dash'),
+(3,2,'Http://reymota.ddns.net:30880','http://net.ddns.reymota.:30880/','http://net.ddns.reymota.:30880/'),
+(4,2,'http://reymota.ddns.net:30080','http://net.ddns.reymota.:30080/','http://net.ddns.reymota.:30080/'),
+(5,2,'http://reymota.ddns.net:30088/2021/09/13/hola-mundo/','http://net.ddns.reymota.:30088/2021/09/13/hola-mundo/','http://net.ddns.reymota.:30088/2021/09/13/hola-mundo/');
+/*!40000 ALTER TABLE `twexternallinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twfilearchive`
+--
+
+DROP TABLE IF EXISTS `twfilearchive`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twfilearchive` (
+ `fa_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `fa_name` varbinary(255) NOT NULL DEFAULT '',
+ `fa_archive_name` varbinary(255) DEFAULT '',
+ `fa_storage_group` varbinary(16) DEFAULT NULL,
+ `fa_storage_key` varbinary(64) DEFAULT '',
+ `fa_deleted_user` int(11) DEFAULT NULL,
+ `fa_deleted_timestamp` binary(14),
+ `fa_deleted_reason_id` bigint(20) unsigned NOT NULL,
+ `fa_size` int(10) unsigned DEFAULT 0,
+ `fa_width` int(11) DEFAULT 0,
+ `fa_height` int(11) DEFAULT 0,
+ `fa_metadata` mediumblob DEFAULT NULL,
+ `fa_bits` int(11) DEFAULT 0,
+ `fa_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL,
+ `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') DEFAULT 'unknown',
+ `fa_minor_mime` varbinary(100) DEFAULT 'unknown',
+ `fa_description_id` bigint(20) unsigned NOT NULL,
+ `fa_actor` bigint(20) unsigned NOT NULL,
+ `fa_timestamp` binary(14),
+ `fa_deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
+ `fa_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`fa_id`),
+ KEY `fa_name` (`fa_name`,`fa_timestamp`),
+ KEY `fa_storage_group` (`fa_storage_group`,`fa_storage_key`),
+ KEY `fa_deleted_timestamp` (`fa_deleted_timestamp`),
+ KEY `fa_actor_timestamp` (`fa_actor`,`fa_timestamp`),
+ KEY `fa_sha1` (`fa_sha1`(10))
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twfilearchive`
+--
+
+LOCK TABLES `twfilearchive` WRITE;
+/*!40000 ALTER TABLE `twfilearchive` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twfilearchive` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twimage`
+--
+
+DROP TABLE IF EXISTS `twimage`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twimage` (
+ `img_name` varbinary(255) NOT NULL DEFAULT '',
+ `img_size` int(10) unsigned NOT NULL DEFAULT 0,
+ `img_width` int(11) NOT NULL DEFAULT 0,
+ `img_height` int(11) NOT NULL DEFAULT 0,
+ `img_metadata` mediumblob NOT NULL,
+ `img_bits` int(11) NOT NULL DEFAULT 0,
+ `img_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL,
+ `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') NOT NULL DEFAULT 'unknown',
+ `img_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown',
+ `img_description_id` bigint(20) unsigned NOT NULL,
+ `img_actor` bigint(20) unsigned NOT NULL,
+ `img_timestamp` binary(14) NOT NULL,
+ `img_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`img_name`),
+ KEY `img_actor_timestamp` (`img_actor`,`img_timestamp`),
+ KEY `img_size` (`img_size`),
+ KEY `img_timestamp` (`img_timestamp`),
+ KEY `img_sha1` (`img_sha1`(10)),
+ KEY `img_media_mime` (`img_media_type`,`img_major_mime`,`img_minor_mime`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twimage`
+--
+
+LOCK TABLES `twimage` WRITE;
+/*!40000 ALTER TABLE `twimage` DISABLE KEYS */;
+INSERT INTO `twimage` VALUES
+('Sella_Jorge_y_Tino.jpg',170917,1176,790,'a:2:{s:15:\"JPEGFileComment\";a:1:{i:0;s:28:\"LEAD Technologies Inc. V1.01\";}s:22:\"MEDIAWIKI_EXIF_VERSION\";i:2;}',8,'BITMAP','image','jpeg',1,1,'20220830103922','giw6tmh3xf670brbyntlf8sa6x9eiwu');
+/*!40000 ALTER TABLE `twimage` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twimagelinks`
+--
+
+DROP TABLE IF EXISTS `twimagelinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twimagelinks` (
+ `il_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `il_to` varbinary(255) NOT NULL DEFAULT '',
+ `il_from_namespace` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`il_from`,`il_to`),
+ KEY `il_to` (`il_to`,`il_from`),
+ KEY `il_backlinks_namespace` (`il_from_namespace`,`il_to`,`il_from`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twimagelinks`
+--
+
+LOCK TABLES `twimagelinks` WRITE;
+/*!40000 ALTER TABLE `twimagelinks` DISABLE KEYS */;
+INSERT INTO `twimagelinks` VALUES
+(2,'Sella_Jorge_y_Tino.jpg',0);
+/*!40000 ALTER TABLE `twimagelinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twinterwiki`
+--
+
+DROP TABLE IF EXISTS `twinterwiki`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twinterwiki` (
+ `iw_prefix` varbinary(32) NOT NULL,
+ `iw_url` blob NOT NULL,
+ `iw_api` blob NOT NULL,
+ `iw_wikiid` varbinary(64) NOT NULL,
+ `iw_local` tinyint(1) NOT NULL,
+ `iw_trans` tinyint(4) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`iw_prefix`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twinterwiki`
+--
+
+LOCK TABLES `twinterwiki` WRITE;
+/*!40000 ALTER TABLE `twinterwiki` DISABLE KEYS */;
+INSERT INTO `twinterwiki` VALUES
+('acronym','https://www.acronymfinder.com/~/search/af.aspx?string=exact&Acronym=$1','','',0,0),
+('advogato','http://www.advogato.org/$1','','',0,0),
+('arxiv','https://www.arxiv.org/abs/$1','','',0,0),
+('c2find','http://c2.com/cgi/wiki?FindPage&value=$1','','',0,0),
+('cache','https://www.google.com/search?q=cache:$1','','',0,0),
+('commons','https://commons.wikimedia.org/wiki/$1','https://commons.wikimedia.org/w/api.php','',0,0),
+('dictionary','http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query=$1','','',0,0),
+('doi','https://dx.doi.org/$1','','',0,0),
+('drumcorpswiki','http://www.drumcorpswiki.com/$1','http://drumcorpswiki.com/api.php','',0,0),
+('dwjwiki','http://www.suberic.net/cgi-bin/dwj/wiki.cgi?$1','','',0,0),
+('elibre','http://enciclopedia.us.es/index.php/$1','http://enciclopedia.us.es/api.php','',0,0),
+('emacswiki','https://www.emacswiki.org/emacs/$1','','',0,0),
+('foldoc','https://foldoc.org/?$1','','',0,0),
+('foxwiki','https://fox.wikis.com/wc.dll?Wiki~$1','','',0,0),
+('freebsdman','https://www.FreeBSD.org/cgi/man.cgi?apropos=1&query=$1','','',0,0),
+('gentoo-wiki','http://gentoo-wiki.com/$1','','',0,0),
+('google','https://www.google.com/search?q=$1','','',0,0),
+('googlegroups','https://groups.google.com/groups?q=$1','','',0,0),
+('hammondwiki','http://www.dairiki.org/HammondWiki/$1','','',0,0),
+('hrwiki','http://www.hrwiki.org/wiki/$1','http://www.hrwiki.org/w/api.php','',0,0),
+('imdb','http://www.imdb.com/find?q=$1&tt=on','','',0,0),
+('kmwiki','https://kmwiki.wikispaces.com/$1','','',0,0),
+('linuxwiki','http://linuxwiki.de/$1','','',0,0),
+('lojban','https://mw.lojban.org/papri/$1','','',0,0),
+('lqwiki','http://wiki.linuxquestions.org/wiki/$1','','',0,0),
+('meatball','http://meatballwiki.org/wiki/$1','','',0,0),
+('mediawikiwiki','https://www.mediawiki.org/wiki/$1','https://www.mediawiki.org/w/api.php','',0,0),
+('memoryalpha','http://en.memory-alpha.org/wiki/$1','http://en.memory-alpha.org/api.php','',0,0),
+('metawiki','http://sunir.org/apps/meta.pl?$1','','',0,0),
+('metawikimedia','https://meta.wikimedia.org/wiki/$1','https://meta.wikimedia.org/w/api.php','',0,0),
+('mozillawiki','https://wiki.mozilla.org/$1','https://wiki.mozilla.org/api.php','',0,0),
+('mw','https://www.mediawiki.org/wiki/$1','https://www.mediawiki.org/w/api.php','',0,0),
+('oeis','https://oeis.org/$1','','',0,0),
+('openwiki','http://openwiki.com/ow.asp?$1','','',0,0),
+('pmid','https://www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract','','',0,0),
+('pythoninfo','https://wiki.python.org/moin/$1','','',0,0),
+('rfc','https://tools.ietf.org/html/rfc$1','','',0,0),
+('s23wiki','http://s23.org/wiki/$1','http://s23.org/w/api.php','',0,0),
+('seattlewireless','http://seattlewireless.net/$1','','',0,0),
+('senseislibrary','https://senseis.xmp.net/?$1','','',0,0),
+('shoutwiki','http://www.shoutwiki.com/wiki/$1','http://www.shoutwiki.com/w/api.php','',0,0),
+('squeak','http://wiki.squeak.org/squeak/$1','','',0,0),
+('theopedia','https://www.theopedia.com/$1','','',0,0),
+('tmbw','http://www.tmbw.net/wiki/$1','http://tmbw.net/wiki/api.php','',0,0),
+('tmnet','http://www.technomanifestos.net/?$1','','',0,0),
+('twiki','http://twiki.org/cgi-bin/view/$1','','',0,0),
+('uncyclopedia','https://en.uncyclopedia.co/wiki/$1','https://en.uncyclopedia.co/w/api.php','',0,0),
+('unreal','https://wiki.beyondunreal.com/$1','https://wiki.beyondunreal.com/w/api.php','',0,0),
+('usemod','http://www.usemod.com/cgi-bin/wiki.pl?$1','','',0,0),
+('wiki','http://c2.com/cgi/wiki?$1','','',0,0),
+('wikia','http://www.wikia.com/wiki/$1','','',0,0),
+('wikibooks','https://en.wikibooks.org/wiki/$1','https://en.wikibooks.org/w/api.php','',0,0),
+('wikidata','https://www.wikidata.org/wiki/$1','https://www.wikidata.org/w/api.php','',0,0),
+('wikif1','http://www.wikif1.org/$1','','',0,0),
+('wikihow','https://www.wikihow.com/$1','https://www.wikihow.com/api.php','',0,0),
+('wikimedia','https://foundation.wikimedia.org/wiki/$1','https://foundation.wikimedia.org/w/api.php','',0,0),
+('wikinews','https://en.wikinews.org/wiki/$1','https://en.wikinews.org/w/api.php','',0,0),
+('wikinfo','http://wikinfo.co/English/index.php/$1','','',0,0),
+('wikipedia','https://en.wikipedia.org/wiki/$1','https://en.wikipedia.org/w/api.php','',0,0),
+('wikiquote','https://en.wikiquote.org/wiki/$1','https://en.wikiquote.org/w/api.php','',0,0),
+('wikisource','https://wikisource.org/wiki/$1','https://wikisource.org/w/api.php','',0,0),
+('wikispecies','https://species.wikimedia.org/wiki/$1','https://species.wikimedia.org/w/api.php','',0,0),
+('wikiversity','https://en.wikiversity.org/wiki/$1','https://en.wikiversity.org/w/api.php','',0,0),
+('wikivoyage','https://en.wikivoyage.org/wiki/$1','https://en.wikivoyage.org/w/api.php','',0,0),
+('wikt','https://en.wiktionary.org/wiki/$1','https://en.wiktionary.org/w/api.php','',0,0),
+('wiktionary','https://en.wiktionary.org/wiki/$1','https://en.wiktionary.org/w/api.php','',0,0);
+/*!40000 ALTER TABLE `twinterwiki` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twip_changes`
+--
+
+DROP TABLE IF EXISTS `twip_changes`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twip_changes` (
+ `ipc_rev_id` int(10) unsigned NOT NULL DEFAULT 0,
+ `ipc_rev_timestamp` binary(14) NOT NULL,
+ `ipc_hex` varbinary(35) NOT NULL DEFAULT '',
+ PRIMARY KEY (`ipc_rev_id`),
+ KEY `ipc_rev_timestamp` (`ipc_rev_timestamp`),
+ KEY `ipc_hex_time` (`ipc_hex`,`ipc_rev_timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twip_changes`
+--
+
+LOCK TABLES `twip_changes` WRITE;
+/*!40000 ALTER TABLE `twip_changes` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twip_changes` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twipblocks`
+--
+
+DROP TABLE IF EXISTS `twipblocks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twipblocks` (
+ `ipb_id` int(11) NOT NULL AUTO_INCREMENT,
+ `ipb_address` tinyblob NOT NULL,
+ `ipb_user` int(10) unsigned NOT NULL DEFAULT 0,
+ `ipb_by_actor` bigint(20) unsigned NOT NULL,
+ `ipb_reason_id` bigint(20) unsigned NOT NULL,
+ `ipb_timestamp` binary(14) NOT NULL,
+ `ipb_auto` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_anon_only` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_create_account` tinyint(1) NOT NULL DEFAULT 1,
+ `ipb_enable_autoblock` tinyint(1) NOT NULL DEFAULT 1,
+ `ipb_expiry` varbinary(14) NOT NULL,
+ `ipb_range_start` tinyblob NOT NULL,
+ `ipb_range_end` tinyblob NOT NULL,
+ `ipb_deleted` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_block_email` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_allow_usertalk` tinyint(1) NOT NULL DEFAULT 0,
+ `ipb_parent_block_id` int(11) DEFAULT NULL,
+ `ipb_sitewide` tinyint(1) NOT NULL DEFAULT 1,
+ PRIMARY KEY (`ipb_id`),
+ UNIQUE KEY `ipb_address_unique` (`ipb_address`(255),`ipb_user`,`ipb_auto`),
+ KEY `ipb_user` (`ipb_user`),
+ KEY `ipb_range` (`ipb_range_start`(8),`ipb_range_end`(8)),
+ KEY `ipb_timestamp` (`ipb_timestamp`),
+ KEY `ipb_expiry` (`ipb_expiry`),
+ KEY `ipb_parent_block_id` (`ipb_parent_block_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twipblocks`
+--
+
+LOCK TABLES `twipblocks` WRITE;
+/*!40000 ALTER TABLE `twipblocks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twipblocks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twipblocks_restrictions`
+--
+
+DROP TABLE IF EXISTS `twipblocks_restrictions`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twipblocks_restrictions` (
+ `ir_ipb_id` int(11) NOT NULL,
+ `ir_type` tinyint(4) NOT NULL,
+ `ir_value` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`ir_ipb_id`,`ir_type`,`ir_value`),
+ KEY `ir_type_value` (`ir_type`,`ir_value`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twipblocks_restrictions`
+--
+
+LOCK TABLES `twipblocks_restrictions` WRITE;
+/*!40000 ALTER TABLE `twipblocks_restrictions` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twipblocks_restrictions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twiwlinks`
+--
+
+DROP TABLE IF EXISTS `twiwlinks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twiwlinks` (
+ `iwl_from` int(10) unsigned NOT NULL DEFAULT 0,
+ `iwl_prefix` varbinary(32) NOT NULL DEFAULT '',
+ `iwl_title` varbinary(255) NOT NULL DEFAULT '',
+ PRIMARY KEY (`iwl_from`,`iwl_prefix`,`iwl_title`),
+ KEY `iwl_prefix_title_from` (`iwl_prefix`,`iwl_title`,`iwl_from`),
+ KEY `iwl_prefix_from_title` (`iwl_prefix`,`iwl_from`,`iwl_title`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twiwlinks`
+--
+
+LOCK TABLES `twiwlinks` WRITE;
+/*!40000 ALTER TABLE `twiwlinks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `twiwlinks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twjob`
+--
+
+DROP TABLE IF EXISTS `twjob`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twjob` (
+ `job_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `job_cmd` varbinary(60) NOT NULL DEFAULT '',
+ `job_namespace` int(11) NOT NULL,
+ `job_title` varbinary(255) NOT NULL,
+ `job_timestamp` binary(14) DEFAULT NULL,
+ `job_params` mediumblob NOT NULL,
+ `job_random` int(10) unsigned NOT NULL DEFAULT 0,
+ `job_attempts` int(10) unsigned NOT NULL DEFAULT 0,
+ `job_token` varbinary(32) NOT NULL DEFAULT '',
+ `job_token_timestamp` binary(14) DEFAULT NULL,
+ `job_sha1` varbinary(32) NOT NULL DEFAULT '',
+ PRIMARY KEY (`job_id`),
+ KEY `job_sha1` (`job_sha1`),
+ KEY `job_cmd_token` (`job_cmd`,`job_token`,`job_random`),
+ KEY `job_cmd_token_id` (`job_cmd`,`job_token`,`job_id`),
+ KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`,`job_params`(128)),
+ KEY `job_timestamp` (`job_timestamp`)
+) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twjob`
+--
+
+LOCK TABLES `twjob` WRITE;
+/*!40000 ALTER TABLE `twjob` DISABLE KEYS */;
+INSERT INTO `twjob` VALUES
+(18,'htmlCacheUpdate',0,'Página_principal','20220830103938','a:10:{s:5:\"table\";s:8:\"redirect\";s:9:\"recursive\";b:1;s:13:\"rootJobIsSelf\";b:1;s:16:\"rootJobSignature\";s:40:\"3b48ba7c2eabc83bb47e87d3eeec9e65f59573dc\";s:16:\"rootJobTimestamp\";s:14:\"20220830103938\";s:11:\"causeAction\";s:9:\"page-edit\";s:9:\"namespace\";i:0;s:5:\"title\";s:17:\"Página_principal\";s:9:\"requestId\";s:24:\"d6f29250f19515a0402ed411\";s:10:\"causeAgent\";s:7:\"unknown\";}',1739126825,0,'',NULL,'al7i16ldiqla6y627hcmcn26zq0r380'),
+(19,'htmlCacheUpdate',6,'Sella_Jorge_y_Tino.jpg','20220830105022','a:8:{s:5:\"pages\";a:1:{i:2;a:2:{i:0;i:0;i:1;s:17:\"Página_principal\";}}s:16:\"rootJobSignature\";s:40:\"5e39c91239dac6093a0d8da22c2b3f7325feca83\";s:16:\"rootJobTimestamp\";s:14:\"20220830103922\";s:11:\"causeAction\";s:11:\"file-upload\";s:10:\"causeAgent\";s:9:\"Creylopez\";s:9:\"namespace\";i:6;s:5:\"title\";s:22:\"Sella_Jorge_y_Tino.jpg\";s:9:\"requestId\";s:24:\"152745e20686e9cdc96f2fb8\";}',2105724361,0,'',NULL,'5g6k5hwwk8u33l0ybkjcj11erl9qttb');
+/*!40000 ALTER TABLE `twjob` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `twl10n_cache`
+--
+
+DROP TABLE IF EXISTS `twl10n_cache`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `twl10n_cache` (
+ `lc_lang` varbinary(35) NOT NULL,
+ `lc_key` varbinary(255) NOT NULL,
+ `lc_value` mediumblob NOT NULL,
+ PRIMARY KEY (`lc_lang`,`lc_key`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `twl10n_cache`
+--
+
+LOCK TABLES `twl10n_cache` WRITE;
+/*!40000 ALTER TABLE `twl10n_cache` DISABLE KEYS */;
+INSERT INTO `twl10n_cache` VALUES
+('en','bookstoreList','a:3:{s:3:\"BWB\";s:51:\"https://www.betterworldbooks.com/product/detail/-$1\";s:11:\"OpenLibrary\";s:31:\"https://openlibrary.org/isbn/$1\";s:8:\"Worldcat\";s:41:\"https://www.worldcat.org/search?q=isbn:$1\";}'),
+('en','compiledPluralRules','a:1:{i:0;s:17:\"i 1 in v 0 in and\";}'),
+('en','dateFormats','a:20:{s:8:\"mdy time\";s:3:\"H:i\";s:8:\"mdy date\";s:6:\"F j, Y\";s:13:\"mdy monthonly\";s:3:\"F Y\";s:8:\"mdy both\";s:11:\"H:i, F j, Y\";s:10:\"mdy pretty\";s:3:\"F j\";s:8:\"dmy time\";s:3:\"H:i\";s:8:\"dmy date\";s:5:\"j F Y\";s:13:\"dmy monthonly\";s:3:\"F Y\";s:8:\"dmy both\";s:10:\"H:i, j F Y\";s:10:\"dmy pretty\";s:3:\"j F\";s:8:\"ymd time\";s:3:\"H:i\";s:8:\"ymd date\";s:5:\"Y F j\";s:13:\"ymd monthonly\";s:3:\"Y F\";s:8:\"ymd both\";s:10:\"H:i, Y F j\";s:10:\"ymd pretty\";s:3:\"F j\";s:13:\"ISO 8601 time\";s:11:\"xnH:xni:xns\";s:13:\"ISO 8601 date\";s:11:\"xnY-xnm-xnd\";s:18:\"ISO 8601 monthonly\";s:7:\"xnY-xnm\";s:13:\"ISO 8601 both\";s:25:\"xnY-xnm-xnd\"T\"xnH:xni:xns\";s:15:\"ISO 8601 pretty\";s:7:\"xnm-xnd\";}'),
+('en','datePreferenceMigrationMap','a:4:{i:0;s:7:\"default\";i:1;s:3:\"mdy\";i:2;s:3:\"dmy\";i:3;s:3:\"ymd\";}'),
+('en','datePreferences','a:5:{i:0;s:7:\"default\";i:1;s:3:\"mdy\";i:2;s:3:\"dmy\";i:3;s:3:\"ymd\";i:4;s:8:\"ISO 8601\";}'),
+('en','defaultDateFormat','s:10:\"dmy or mdy\";'),
+('en','deps','a:21:{i:0;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:47:\"/var/www/html/languages/messages/MessagesEn.php\";s:25:\"\0FileDependency\0timestamp\";i:1656606765;}i:1;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:40:\"/var/www/html/languages/data/plurals.xml\";s:25:\"\0FileDependency\0timestamp\";i:1636834374;}i:2;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:50:\"/var/www/html/languages/data/plurals-mediawiki.xml\";s:25:\"\0FileDependency\0timestamp\";i:1656606730;}i:3;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:65:\"/var/www/html/extensions/VisualEditor/VisualEditor.i18n.alias.php\";s:25:\"\0FileDependency\0timestamp\";i:1633020364;}i:4;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:36:\"/var/www/html/languages/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656606764;}i:5;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:41:\"/var/www/html/languages/i18n/exif/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656606730;}i:6;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:39:\"/var/www/html/includes/api/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656606764;}i:7;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:40:\"/var/www/html/includes/Rest/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656606729;}i:8;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:45:\"/var/www/html/resources/lib/ooui/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656606730;}i:9;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:55:\"/var/www/html/includes/libs/ParamValidator/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656606730;}i:10;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:44:\"/var/www/html/skins/MinervaNeue/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1650461875;}i:11;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:41:\"/var/www/html/skins/MonoBook/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656532399;}i:12;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:41:\"/var/www/html/skins/Timeless/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656532399;}i:13;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:39:\"/var/www/html/skins/Vector/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656532399;}i:14;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:57:\"/var/www/html/extensions/VisualEditor/lib/ve/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656532398;}i:15;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:56:\"/var/www/html/extensions/VisualEditor/i18n/ve-mw/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656532398;}i:16;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:60:\"/var/www/html/extensions/VisualEditor/i18n/ve-mw/api/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1656532398;}i:17;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:57:\"/var/www/html/extensions/VisualEditor/i18n/ve-wmf/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1633020364;}s:24:\"wgExtensionMessagesFiles\";O:16:\"GlobalDependency\":2:{s:22:\"\0GlobalDependency\0name\";s:24:\"wgExtensionMessagesFiles\";s:23:\"\0GlobalDependency\0value\";a:1:{s:17:\"VisualEditorAlias\";s:65:\"/var/www/html/extensions/VisualEditor/VisualEditor.i18n.alias.php\";}}s:14:\"wgMessagesDirs\";O:20:\"MainConfigDependency\":2:{s:26:\"\0MainConfigDependency\0name\";s:12:\"MessagesDirs\";s:27:\"\0MainConfigDependency\0value\";a:5:{s:11:\"MinervaNeue\";a:1:{i:0;s:36:\"/var/www/html/skins/MinervaNeue/i18n\";}s:8:\"MonoBook\";a:1:{i:0;s:33:\"/var/www/html/skins/MonoBook/i18n\";}s:8:\"Timeless\";a:1:{i:0;s:33:\"/var/www/html/skins/Timeless/i18n\";}s:6:\"Vector\";a:1:{i:0;s:31:\"/var/www/html/skins/Vector/i18n\";}s:12:\"VisualEditor\";a:4:{i:0;s:49:\"/var/www/html/extensions/VisualEditor/lib/ve/i18n\";i:1;s:48:\"/var/www/html/extensions/VisualEditor/i18n/ve-mw\";i:2;s:52:\"/var/www/html/extensions/VisualEditor/i18n/ve-mw/api\";i:3;s:49:\"/var/www/html/extensions/VisualEditor/i18n/ve-wmf\";}}}s:7:\"version\";O:18:\"ConstantDependency\":2:{s:24:\"\0ConstantDependency\0name\";s:26:\"LocalisationCache::VERSION\";s:25:\"\0ConstantDependency\0value\";i:4;}}'),
+('en','digitGroupingPattern','s:9:\"#,##0.###\";'),
+('en','digitTransformTable','N;'),
+('en','fallback','b:0;'),
+('en','fallback8bitEncoding','s:12:\"windows-1252\";'),
+('en','fallbackSequence','a:0:{}'),
+('en','imageFiles','N;'),
+('en','linkPrefixCharset','s:23:\"a-zA-Z\\x{80}-\\x{10ffff}\";'),
+('en','linkPrefixExtension','b:0;'),
+('en','linkTrail','s:18:\"/^([a-z]+)(.*)$/sD\";'),
+('en','list','a:1:{s:8:\"messages\";a:7722:{i:0;s:7:\"sidebar\";i:1;s:13:\"tog-underline\";i:2;s:13:\"tog-hideminor\";i:3;s:17:\"tog-hidepatrolled\";i:4;s:25:\"tog-newpageshidepatrolled\";i:5;s:22:\"tog-hidecategorization\";i:6;s:19:\"tog-extendwatchlist\";i:7;s:12:\"tog-usenewrc\";i:8;s:18:\"tog-editondblclick\";i:9;s:27:\"tog-editsectiononrightclick\";i:10;s:18:\"tog-watchcreations\";i:11;s:16:\"tog-watchdefault\";i:12;s:14:\"tog-watchmoves\";i:13;s:17:\"tog-watchdeletion\";i:14;s:16:\"tog-watchuploads\";i:15;s:17:\"tog-watchrollback\";i:16;s:16:\"tog-minordefault\";i:17;s:16:\"tog-previewontop\";i:18;s:18:\"tog-previewonfirst\";i:19;s:24:\"tog-enotifwatchlistpages\";i:20;s:23:\"tog-enotifusertalkpages\";i:21;s:20:\"tog-enotifminoredits\";i:22;s:20:\"tog-enotifrevealaddr\";i:23;s:23:\"tog-shownumberswatching\";i:24;s:10:\"tog-oldsig\";i:25;s:12:\"tog-fancysig\";i:26;s:18:\"tog-uselivepreview\";i:27;s:20:\"tog-forceeditsummary\";i:28;s:20:\"tog-watchlisthideown\";i:29;s:21:\"tog-watchlisthidebots\";i:30;s:22:\"tog-watchlisthideminor\";i:31;s:20:\"tog-watchlisthideliu\";i:32;s:32:\"tog-watchlistreloadautomatically\";i:33;s:25:\"tog-watchlistunwatchlinks\";i:34;s:22:\"tog-watchlisthideanons\";i:35;s:26:\"tog-watchlisthidepatrolled\";i:36;s:31:\"tog-watchlisthidecategorization\";i:37;s:16:\"tog-ccmeonemails\";i:38;s:12:\"tog-diffonly\";i:39;s:18:\"tog-showhiddencats\";i:40;s:18:\"tog-norollbackdiff\";i:41;s:18:\"tog-useeditwarning\";i:42;s:16:\"tog-prefershttps\";i:43;s:28:\"tog-showrollbackconfirmation\";i:44;s:16:\"tog-requireemail\";i:45;s:16:\"underline-always\";i:46;s:15:\"underline-never\";i:47;s:17:\"underline-default\";i:48;s:14:\"editfont-style\";i:49;s:18:\"editfont-monospace\";i:50;s:18:\"editfont-sansserif\";i:51;s:14:\"editfont-serif\";i:52;s:6:\"sunday\";i:53;s:6:\"monday\";i:54;s:7:\"tuesday\";i:55;s:9:\"wednesday\";i:56;s:8:\"thursday\";i:57;s:6:\"friday\";i:58;s:8:\"saturday\";i:59;s:3:\"sun\";i:60;s:3:\"mon\";i:61;s:3:\"tue\";i:62;s:3:\"wed\";i:63;s:3:\"thu\";i:64;s:3:\"fri\";i:65;s:3:\"sat\";i:66;s:7:\"january\";i:67;s:8:\"february\";i:68;s:5:\"march\";i:69;s:5:\"april\";i:70;s:8:\"may_long\";i:71;s:4:\"june\";i:72;s:4:\"july\";i:73;s:6:\"august\";i:74;s:9:\"september\";i:75;s:7:\"october\";i:76;s:8:\"november\";i:77;s:8:\"december\";i:78;s:11:\"january-gen\";i:79;s:12:\"february-gen\";i:80;s:9:\"march-gen\";i:81;s:9:\"april-gen\";i:82;s:7:\"may-gen\";i:83;s:8:\"june-gen\";i:84;s:8:\"july-gen\";i:85;s:10:\"august-gen\";i:86;s:13:\"september-gen\";i:87;s:11:\"october-gen\";i:88;s:12:\"november-gen\";i:89;s:12:\"december-gen\";i:90;s:3:\"jan\";i:91;s:3:\"feb\";i:92;s:3:\"mar\";i:93;s:3:\"apr\";i:94;s:3:\"may\";i:95;s:3:\"jun\";i:96;s:3:\"jul\";i:97;s:3:\"aug\";i:98;s:3:\"sep\";i:99;s:3:\"oct\";i:100;s:3:\"nov\";i:101;s:3:\"dec\";i:102;s:9:\"period-am\";i:103;s:9:\"period-pm\";i:104;s:14:\"pagecategories\";i:105;s:18:\"pagecategorieslink\";i:106;s:15:\"category_header\";i:107;s:13:\"subcategories\";i:108;s:21:\"category-media-header\";i:109;s:14:\"category-empty\";i:110;s:17:\"hidden-categories\";i:111;s:24:\"hidden-category-category\";i:112;s:21:\"category-subcat-count\";i:113;s:29:\"category-subcat-count-limited\";i:114;s:22:\"category-article-count\";i:115;s:30:\"category-article-count-limited\";i:116;s:19:\"category-file-count\";i:117;s:27:\"category-file-count-limited\";i:118;s:14:\"index-category\";i:119;s:16:\"noindex-category\";i:120;s:20:\"broken-file-category\";i:121;s:25:\"categoryviewer-pagedlinks\";i:122;s:24:\"category-header-numerals\";i:123;s:5:\"about\";i:124;s:7:\"article\";i:125;s:9:\"newwindow\";i:126;s:6:\"cancel\";i:127;s:13:\"moredotdotdot\";i:128;s:13:\"morenotlisted\";i:129;s:6:\"mypage\";i:130;s:6:\"mytalk\";i:131;s:8:\"anontalk\";i:132;s:10:\"navigation\";i:133;s:3:\"and\";i:134;s:3:\"faq\";i:135;s:9:\"sitetitle\";i:136;s:12:\"sitesubtitle\";i:137;s:7:\"actions\";i:138;s:10:\"namespaces\";i:139;s:8:\"variants\";i:140;s:18:\"navigation-heading\";i:141;s:14:\"errorpagetitle\";i:142;s:8:\"returnto\";i:143;s:7:\"tagline\";i:144;s:4:\"help\";i:145;s:14:\"help-mediawiki\";i:146;s:6:\"search\";i:147;s:23:\"search-ignored-headings\";i:148;s:12:\"searchbutton\";i:149;s:2:\"go\";i:150;s:13:\"searcharticle\";i:151;s:12:\"view-history\";i:152;s:7:\"history\";i:153;s:13:\"history_short\";i:154;s:13:\"history_small\";i:155;s:13:\"updatedmarker\";i:156;s:16:\"printableversion\";i:157;s:35:\"printableversion-deprecated-warning\";i:158;s:9:\"permalink\";i:159;s:5:\"print\";i:160;s:4:\"view\";i:161;s:9:\"view-view\";i:162;s:12:\"view-foreign\";i:163;s:4:\"edit\";i:164;s:9:\"view-edit\";i:165;s:10:\"edit-local\";i:166;s:6:\"create\";i:167;s:11:\"view-create\";i:168;s:12:\"create-local\";i:169;s:6:\"delete\";i:170;s:14:\"undelete_short\";i:171;s:17:\"viewdeleted_short\";i:172;s:7:\"protect\";i:173;s:14:\"protect_change\";i:174;s:16:\"action-unprotect\";i:175;s:9:\"unprotect\";i:176;s:7:\"newpage\";i:177;s:16:\"talkpagelinktext\";i:178;s:11:\"specialpage\";i:179;s:13:\"personaltools\";i:180;s:10:\"addsection\";i:181;s:4:\"talk\";i:182;s:5:\"views\";i:183;s:7:\"toolbox\";i:184;s:8:\"cactions\";i:185;s:20:\"tool-link-userrights\";i:186;s:29:\"tool-link-userrights-readonly\";i:187;s:19:\"tool-link-emailuser\";i:188;s:9:\"imagepage\";i:189;s:13:\"mediawikipage\";i:190;s:12:\"templatepage\";i:191;s:12:\"viewhelppage\";i:192;s:12:\"categorypage\";i:193;s:12:\"viewtalkpage\";i:194;s:14:\"otherlanguages\";i:195;s:14:\"redirectedfrom\";i:196;s:15:\"redirectpagesub\";i:197;s:10:\"redirectto\";i:198;s:14:\"talkpageheader\";i:199;s:14:\"lastmodifiedat\";i:200;s:9:\"viewcount\";i:201;s:13:\"protectedpage\";i:202;s:6:\"jumpto\";i:203;s:16:\"jumptonavigation\";i:204;s:12:\"jumptosearch\";i:205;s:15:\"view-pool-error\";i:206;s:18:\"generic-pool-error\";i:207;s:12:\"pool-timeout\";i:208;s:14:\"pool-queuefull\";i:209;s:17:\"pool-errorunknown\";i:210;s:16:\"pool-servererror\";i:211;s:23:\"poolcounter-usage-error\";i:212;s:22:\"view-pool-dirty-output\";i:213;s:20:\"view-pool-contention\";i:214;s:17:\"view-pool-timeout\";i:215;s:9:\"aboutsite\";i:216;s:9:\"aboutpage\";i:217;s:9:\"copyright\";i:218;s:13:\"copyrightpage\";i:219;s:13:\"currentevents\";i:220;s:17:\"currentevents-url\";i:221;s:11:\"disclaimers\";i:222;s:14:\"disclaimerpage\";i:223;s:8:\"edithelp\";i:224;s:12:\"edithelppage\";i:225;s:8:\"helppage\";i:226;s:20:\"helppage-top-gethelp\";i:227;s:8:\"mainpage\";i:228;s:14:\"mainpage-title\";i:229;s:23:\"mainpage-title-loggedin\";i:230;s:20:\"mainpage-description\";i:231;s:10:\"policy-url\";i:232;s:6:\"portal\";i:233;s:10:\"portal-url\";i:234;s:7:\"privacy\";i:235;s:11:\"privacypage\";i:236;s:9:\"badaccess\";i:237;s:16:\"badaccess-group0\";i:238;s:16:\"badaccess-groups\";i:239;s:15:\"versionrequired\";i:240;s:19:\"versionrequiredtext\";i:241;s:2:\"ok\";i:242;s:9:\"pagetitle\";i:243;s:23:\"pagetitle-view-mainpage\";i:244;s:16:\"backlinksubtitle\";i:245;s:13:\"retrievedfrom\";i:246;s:18:\"youhavenewmessages\";i:247;s:27:\"youhavenewmessagesfromusers\";i:248;s:27:\"youhavenewmessagesmanyusers\";i:249;s:21:\"newmessageslinkplural\";i:250;s:25:\"newmessagesdifflinkplural\";i:251;s:23:\"youhavenewmessagesmulti\";i:252;s:16:\"newtalkseparator\";i:253;s:11:\"editsection\";i:254;s:7:\"editold\";i:255;s:13:\"viewsourceold\";i:256;s:8:\"editlink\";i:257;s:14:\"viewsourcelink\";i:258;s:15:\"editsectionhint\";i:259;s:3:\"toc\";i:260;s:7:\"showtoc\";i:261;s:7:\"hidetoc\";i:262;s:20:\"collapsible-collapse\";i:263;s:18:\"collapsible-expand\";i:264;s:19:\"confirmable-confirm\";i:265;s:15:\"confirmable-yes\";i:266;s:14:\"confirmable-no\";i:267;s:13:\"thisisdeleted\";i:268;s:11:\"viewdeleted\";i:269;s:11:\"restorelink\";i:270;s:12:\"feed-invalid\";i:271;s:16:\"feed-unavailable\";i:272;s:13:\"site-rss-feed\";i:273;s:14:\"site-atom-feed\";i:274;s:13:\"page-rss-feed\";i:275;s:14:\"page-atom-feed\";i:276;s:9:\"feed-atom\";i:277;s:8:\"feed-rss\";i:278;s:10:\"sitenotice\";i:279;s:10:\"anonnotice\";i:280;s:28:\"newsectionheaderdefaultlevel\";i:281;s:14:\"red-link-title\";i:282;s:15:\"sort-descending\";i:283;s:14:\"sort-ascending\";i:284;s:12:\"sort-initial\";i:285;s:18:\"sort-rowspan-error\";i:286;s:10:\"nstab-main\";i:287;s:10:\"nstab-talk\";i:288;s:10:\"nstab-user\";i:289;s:11:\"nstab-media\";i:290;s:13:\"nstab-special\";i:291;s:13:\"nstab-project\";i:292;s:11:\"nstab-image\";i:293;s:15:\"nstab-mediawiki\";i:294;s:14:\"nstab-template\";i:295;s:10:\"nstab-help\";i:296;s:14:\"nstab-category\";i:297;s:14:\"mainpage-nstab\";i:298;s:12:\"nosuchaction\";i:299;s:16:\"nosuchactiontext\";i:300;s:17:\"nosuchspecialpage\";i:301;s:17:\"nospecialpagetext\";i:302;s:5:\"error\";i:303;s:13:\"databaseerror\";i:304;s:18:\"databaseerror-text\";i:305;s:20:\"databaseerror-textcl\";i:306;s:19:\"databaseerror-query\";i:307;s:22:\"databaseerror-function\";i:308;s:19:\"databaseerror-error\";i:309;s:35:\"transaction-duration-limit-exceeded\";i:310;s:17:\"laggedreplicamode\";i:311;s:8:\"readonly\";i:312;s:15:\"enterlockreason\";i:313;s:12:\"readonlytext\";i:314;s:15:\"missing-article\";i:315;s:18:\"missingarticle-rev\";i:316;s:19:\"missingarticle-diff\";i:317;s:12:\"readonly_lag\";i:318;s:26:\"nonwrite-api-promise-error\";i:319;s:12:\"timeouterror\";i:320;s:17:\"timeouterror-text\";i:321;s:13:\"internalerror\";i:322;s:18:\"internalerror_info\";i:323;s:29:\"internalerror-fatal-exception\";i:324;s:13:\"filecopyerror\";i:325;s:15:\"filerenameerror\";i:326;s:15:\"filedeleteerror\";i:327;s:20:\"directorycreateerror\";i:328;s:22:\"directoryreadonlyerror\";i:329;s:25:\"directorynotreadableerror\";i:330;s:12:\"filenotfound\";i:331;s:10:\"unexpected\";i:332;s:9:\"formerror\";i:333;s:15:\"badarticleerror\";i:334;s:12:\"cannotdelete\";i:335;s:18:\"cannotdelete-title\";i:336;s:16:\"delete-scheduled\";i:337;s:19:\"delete-hook-aborted\";i:338;s:16:\"no-null-revision\";i:339;s:8:\"badtitle\";i:340;s:12:\"badtitletext\";i:341;s:13:\"title-invalid\";i:342;s:19:\"title-invalid-empty\";i:343;s:18:\"title-invalid-utf8\";i:344;s:23:\"title-invalid-interwiki\";i:345;s:28:\"title-invalid-talk-namespace\";i:346;s:24:\"title-invalid-characters\";i:347;s:22:\"title-invalid-relative\";i:348;s:25:\"title-invalid-magic-tilde\";i:349;s:22:\"title-invalid-too-long\";i:350;s:27:\"title-invalid-leading-colon\";i:351;s:10:\"perfcached\";i:352;s:12:\"perfcachedts\";i:353;s:20:\"querypage-no-updates\";i:354;s:28:\"querypage-updates-periodical\";i:355;s:10:\"viewsource\";i:356;s:17:\"action-viewsource\";i:357;s:16:\"viewsource-title\";i:358;s:15:\"actionthrottled\";i:359;s:19:\"actionthrottledtext\";i:360;s:17:\"protectedpagetext\";i:361;s:14:\"viewsourcetext\";i:362;s:12:\"viewyourtext\";i:363;s:18:\"protectedinterface\";i:364;s:16:\"editinginterface\";i:365;s:18:\"translateinterface\";i:366;s:16:\"cascadeprotected\";i:367;s:18:\"namespaceprotected\";i:368;s:18:\"customcssprotected\";i:369;s:19:\"customjsonprotected\";i:370;s:17:\"customjsprotected\";i:371;s:16:\"sitecssprotected\";i:372;s:17:\"sitejsonprotected\";i:373;s:15:\"sitejsprotected\";i:374;s:20:\"siterawhtmlprotected\";i:375;s:20:\"mycustomcssprotected\";i:376;s:21:\"mycustomjsonprotected\";i:377;s:19:\"mycustomjsprotected\";i:378;s:22:\"myprivateinfoprotected\";i:379;s:22:\"mypreferencesprotected\";i:380;s:19:\"ns-specialprotected\";i:381;s:14:\"titleprotected\";i:382;s:17:\"filereadonlyerror\";i:383;s:12:\"invalidtitle\";i:384;s:27:\"invalidtitle-knownnamespace\";i:385;s:29:\"invalidtitle-unknownnamespace\";i:386;s:17:\"exception-nologin\";i:387;s:22:\"exception-nologin-text\";i:388;s:29:\"exception-nologin-text-manual\";i:389;s:16:\"virus-badscanner\";i:390;s:16:\"virus-scanfailed\";i:391;s:20:\"virus-unknownscanner\";i:392;s:10:\"logouttext\";i:393;s:18:\"logging-out-notify\";i:394;s:13:\"logout-failed\";i:395;s:21:\"cannotlogoutnow-title\";i:396;s:20:\"cannotlogoutnow-text\";i:397;s:11:\"welcomeuser\";i:398;s:19:\"welcomecreation-msg\";i:399;s:8:\"yourname\";i:400;s:18:\"userlogin-yourname\";i:401;s:21:\"userlogin-yourname-ph\";i:402;s:30:\"createacct-another-username-ph\";i:403;s:23:\"createacct-helpusername\";i:404;s:12:\"yourpassword\";i:405;s:23:\"prefs-help-yourpassword\";i:406;s:22:\"userlogin-yourpassword\";i:407;s:25:\"userlogin-yourpassword-ph\";i:408;s:26:\"createacct-yourpassword-ph\";i:409;s:17:\"yourpasswordagain\";i:410;s:24:\"createacct-useuniquepass\";i:411;s:28:\"createacct-yourpasswordagain\";i:412;s:31:\"createacct-yourpasswordagain-ph\";i:413;s:28:\"userlogin-remembermypassword\";i:414;s:24:\"userlogin-signwithsecure\";i:415;s:17:\"cannotlogin-title\";i:416;s:16:\"cannotlogin-text\";i:417;s:20:\"cannotloginnow-title\";i:418;s:19:\"cannotloginnow-text\";i:419;s:25:\"cannotcreateaccount-title\";i:420;s:24:\"cannotcreateaccount-text\";i:421;s:14:\"yourdomainname\";i:422;s:25:\"password-change-forbidden\";i:423;s:15:\"externaldberror\";i:424;s:5:\"login\";i:425;s:14:\"login-security\";i:426;s:23:\"nav-login-createaccount\";i:427;s:11:\"loginprompt\";i:428;s:6:\"logout\";i:429;s:10:\"userlogout\";i:430;s:18:\"userlogout-summary\";i:431;s:11:\"notloggedin\";i:432;s:19:\"userlogin-noaccount\";i:433;s:21:\"userlogin-joinproject\";i:434;s:13:\"createaccount\";i:435;s:28:\"userlogin-resetpassword-link\";i:436;s:13:\"helplogin-url\";i:437;s:19:\"userlogin-helplink2\";i:438;s:18:\"userlogin-loggedin\";i:439;s:16:\"userlogin-reauth\";i:440;s:23:\"userlogin-createanother\";i:441;s:24:\"createacct-emailrequired\";i:442;s:24:\"createacct-emailoptional\";i:443;s:19:\"createacct-email-ph\";i:444;s:27:\"createacct-another-email-ph\";i:445;s:17:\"createaccountmail\";i:446;s:22:\"createaccountmail-help\";i:447;s:19:\"createacct-realname\";i:448;s:17:\"createacct-reason\";i:449;s:20:\"createacct-reason-ph\";i:450;s:22:\"createacct-reason-help\";i:451;s:25:\"createacct-reason-confirm\";i:452;s:26:\"createacct-imgcaptcha-help\";i:453;s:17:\"createacct-submit\";i:454;s:25:\"createacct-another-submit\";i:455;s:26:\"createacct-continue-submit\";i:456;s:34:\"createacct-another-continue-submit\";i:457;s:26:\"createacct-benefit-heading\";i:458;s:24:\"createacct-benefit-icon1\";i:459;s:24:\"createacct-benefit-head1\";i:460;s:24:\"createacct-benefit-body1\";i:461;s:24:\"createacct-benefit-icon2\";i:462;s:24:\"createacct-benefit-head2\";i:463;s:24:\"createacct-benefit-body2\";i:464;s:24:\"createacct-benefit-icon3\";i:465;s:24:\"createacct-benefit-head3\";i:466;s:24:\"createacct-benefit-body3\";i:467;s:9:\"badretype\";i:468;s:18:\"usernameinprogress\";i:469;s:10:\"userexists\";i:470;s:24:\"createacct-normalization\";i:471;s:10:\"loginerror\";i:472;s:16:\"createacct-error\";i:473;s:18:\"createaccounterror\";i:474;s:12:\"nocookiesnew\";i:475;s:14:\"nocookieslogin\";i:476;s:15:\"nocookiesfornew\";i:477;s:17:\"nocookiesforlogin\";i:478;s:21:\"createacct-loginerror\";i:479;s:6:\"noname\";i:480;s:17:\"loginsuccesstitle\";i:481;s:12:\"loginsuccess\";i:482;s:10:\"nosuchuser\";i:483;s:15:\"nosuchusershort\";i:484;s:15:\"nouserspecified\";i:485;s:17:\"login-userblocked\";i:486;s:13:\"wrongpassword\";i:487;s:18:\"wrongpasswordempty\";i:488;s:16:\"passwordtooshort\";i:489;s:15:\"passwordtoolong\";i:490;s:20:\"passwordincommonlist\";i:491;s:19:\"password-name-match\";i:492;s:33:\"password-substring-username-match\";i:493;s:24:\"password-login-forbidden\";i:494;s:14:\"mailmypassword\";i:495;s:21:\"passwordremindertitle\";i:496;s:20:\"passwordremindertext\";i:497;s:7:\"noemail\";i:498;s:13:\"noemailcreate\";i:499;s:12:\"passwordsent\";i:500;s:20:\"blocked-mailpassword\";i:501;s:12:\"eauthentsent\";i:502;s:22:\"throttled-mailpassword\";i:503;s:11:\"signupstart\";i:504;s:9:\"signupend\";i:505;s:15:\"signupend-https\";i:506;s:9:\"mailerror\";i:507;s:26:\"acct_creation_throttle_hit\";i:508;s:18:\"emailauthenticated\";i:509;s:21:\"emailnotauthenticated\";i:510;s:12:\"noemailprefs\";i:511;s:16:\"emailconfirmlink\";i:512;s:19:\"invalidemailaddress\";i:513;s:17:\"cannotchangeemail\";i:514;s:13:\"emaildisabled\";i:515;s:11:\"emailsender\";i:516;s:14:\"accountcreated\";i:517;s:18:\"accountcreatedtext\";i:518;s:19:\"createaccount-title\";i:519;s:18:\"createaccount-text\";i:520;s:15:\"login-throttled\";i:521;s:19:\"login-abort-generic\";i:522;s:22:\"login-migrated-generic\";i:523;s:18:\"loginlanguagelabel\";i:524;s:18:\"loginlanguagelinks\";i:525;s:21:\"suspicious-userlogout\";i:526;s:31:\"createacct-another-realname-tip\";i:527;s:8:\"pt-login\";i:528;s:15:\"pt-login-button\";i:529;s:24:\"pt-login-continue-button\";i:530;s:16:\"pt-createaccount\";i:531;s:13:\"pt-userlogout\";i:532;s:15:\"pear-mail-error\";i:533;s:14:\"php-mail-error\";i:534;s:22:\"php-mail-error-unknown\";i:535;s:17:\"user-mail-no-addy\";i:536;s:17:\"user-mail-no-body\";i:537;s:14:\"changepassword\";i:538;s:22:\"changepassword-summary\";i:539;s:18:\"resetpass_announce\";i:540;s:14:\"resetpass_text\";i:541;s:16:\"resetpass_header\";i:542;s:11:\"oldpassword\";i:543;s:11:\"newpassword\";i:544;s:9:\"retypenew\";i:545;s:16:\"resetpass_submit\";i:546;s:22:\"changepassword-success\";i:547;s:24:\"changepassword-throttled\";i:548;s:12:\"botpasswords\";i:549;s:20:\"botpasswords-summary\";i:550;s:21:\"botpasswords-disabled\";i:551;s:26:\"botpasswords-no-central-id\";i:552;s:21:\"botpasswords-existing\";i:553;s:22:\"botpasswords-createnew\";i:554;s:25:\"botpasswords-editexisting\";i:555;s:29:\"botpasswords-label-needsreset\";i:556;s:24:\"botpasswords-label-appid\";i:557;s:25:\"botpasswords-label-create\";i:558;s:25:\"botpasswords-label-update\";i:559;s:25:\"botpasswords-label-cancel\";i:560;s:25:\"botpasswords-label-delete\";i:561;s:32:\"botpasswords-label-resetpassword\";i:562;s:25:\"botpasswords-label-grants\";i:563;s:24:\"botpasswords-help-grants\";i:564;s:32:\"botpasswords-label-grants-column\";i:565;s:22:\"botpasswords-bad-appid\";i:566;s:33:\"botpasswords-toolong-restrictions\";i:567;s:27:\"botpasswords-toolong-grants\";i:568;s:26:\"botpasswords-insert-failed\";i:569;s:26:\"botpasswords-update-failed\";i:570;s:26:\"botpasswords-created-title\";i:571;s:25:\"botpasswords-created-body\";i:572;s:26:\"botpasswords-updated-title\";i:573;s:25:\"botpasswords-updated-body\";i:574;s:26:\"botpasswords-deleted-title\";i:575;s:25:\"botpasswords-deleted-body\";i:576;s:24:\"botpasswords-newpassword\";i:577;s:24:\"botpasswords-no-provider\";i:578;s:31:\"botpasswords-restriction-failed\";i:579;s:25:\"botpasswords-invalid-name\";i:580;s:22:\"botpasswords-not-exist\";i:581;s:24:\"botpasswords-needs-reset\";i:582;s:19:\"botpasswords-locked\";i:583;s:19:\"resetpass_forbidden\";i:584;s:26:\"resetpass_forbidden-reason\";i:585;s:17:\"resetpass-no-info\";i:586;s:25:\"resetpass-submit-loggedin\";i:587;s:23:\"resetpass-submit-cancel\";i:588;s:23:\"resetpass-wrong-oldpass\";i:589;s:18:\"resetpass-recycled\";i:590;s:22:\"resetpass-temp-emailed\";i:591;s:23:\"resetpass-temp-password\";i:592;s:23:\"resetpass-abort-generic\";i:593;s:17:\"resetpass-expired\";i:594;s:22:\"resetpass-expired-soft\";i:595;s:18:\"resetpass-validity\";i:596;s:23:\"resetpass-validity-soft\";i:597;s:13:\"passwordreset\";i:598;s:22:\"passwordreset-text-one\";i:599;s:23:\"passwordreset-text-many\";i:600;s:22:\"passwordreset-disabled\";i:601;s:27:\"passwordreset-emaildisabled\";i:602;s:22:\"passwordreset-username\";i:603;s:20:\"passwordreset-domain\";i:604;s:19:\"passwordreset-email\";i:605;s:24:\"passwordreset-emailtitle\";i:606;s:26:\"passwordreset-emailtext-ip\";i:607;s:28:\"passwordreset-emailtext-user\";i:608;s:26:\"passwordreset-emailelement\";i:609;s:21:\"passwordreset-success\";i:610;s:37:\"passwordreset-success-details-generic\";i:611;s:26:\"passwordreset-success-info\";i:612;s:37:\"passwordreset-emailtext-require-email\";i:613;s:22:\"passwordreset-nocaller\";i:614;s:26:\"passwordreset-nosuchcaller\";i:615;s:21:\"passwordreset-ignored\";i:616;s:20:\"passwordreset-nodata\";i:617;s:11:\"changeemail\";i:618;s:19:\"changeemail-summary\";i:619;s:18:\"changeemail-header\";i:620;s:19:\"changeemail-no-info\";i:621;s:20:\"changeemail-oldemail\";i:622;s:20:\"changeemail-newemail\";i:623;s:25:\"changeemail-newemail-help\";i:624;s:16:\"changeemail-none\";i:625;s:20:\"changeemail-password\";i:626;s:18:\"changeemail-submit\";i:627;s:21:\"changeemail-throttled\";i:628;s:20:\"changeemail-nochange\";i:629;s:11:\"resettokens\";i:630;s:19:\"resettokens-summary\";i:631;s:16:\"resettokens-text\";i:632;s:21:\"resettokens-no-tokens\";i:633;s:18:\"resettokens-tokens\";i:634;s:23:\"resettokens-token-label\";i:635;s:27:\"resettokens-watchlist-token\";i:636;s:16:\"resettokens-done\";i:637;s:23:\"resettokens-resetbutton\";i:638;s:8:\"sig-text\";i:639;s:7:\"summary\";i:640;s:7:\"subject\";i:641;s:9:\"minoredit\";i:642;s:9:\"watchthis\";i:643;s:11:\"savearticle\";i:644;s:11:\"savechanges\";i:645;s:11:\"publishpage\";i:646;s:14:\"publishchanges\";i:647;s:17:\"savearticle-start\";i:648;s:17:\"savechanges-start\";i:649;s:17:\"publishpage-start\";i:650;s:20:\"publishchanges-start\";i:651;s:7:\"preview\";i:652;s:11:\"showpreview\";i:653;s:8:\"showdiff\";i:654;s:12:\"blankarticle\";i:655;s:15:\"anoneditwarning\";i:656;s:18:\"anonpreviewwarning\";i:657;s:14:\"missingsummary\";i:658;s:12:\"selfredirect\";i:659;s:18:\"missingcommenttext\";i:660;s:20:\"missingcommentheader\";i:661;s:15:\"summary-preview\";i:662;s:15:\"subject-preview\";i:663;s:16:\"previewerrortext\";i:664;s:12:\"blockedtitle\";i:665;s:19:\"blockedtext-partial\";i:666;s:11:\"blockedtext\";i:667;s:15:\"autoblockedtext\";i:668;s:17:\"systemblockedtext\";i:669;s:15:\"blockednoreason\";i:670;s:21:\"blockedtext-composite\";i:671;s:25:\"blockedtext-composite-ids\";i:672;s:28:\"blockedtext-composite-no-ids\";i:673;s:28:\"blockedtext-composite-reason\";i:674;s:17:\"whitelistedittext\";i:675;s:15:\"confirmedittext\";i:676;s:18:\"nosuchsectiontitle\";i:677;s:17:\"nosuchsectiontext\";i:678;s:13:\"loginreqtitle\";i:679;s:12:\"loginreqlink\";i:680;s:16:\"loginreqpagetext\";i:681;s:12:\"accmailtitle\";i:682;s:11:\"accmailtext\";i:683;s:10:\"newarticle\";i:684;s:14:\"newarticletext\";i:685;s:18:\"newarticletextanon\";i:686;s:12:\"talkpagetext\";i:687;s:16:\"anontalkpagetext\";i:688;s:13:\"noarticletext\";i:689;s:26:\"noarticletext-nopermission\";i:690;s:17:\"noarticletextanon\";i:691;s:27:\"missing-revision-permission\";i:692;s:16:\"missing-revision\";i:693;s:24:\"missing-revision-content\";i:694;s:25:\"userpage-userdoesnotexist\";i:695;s:30:\"userpage-userdoesnotexist-view\";i:696;s:25:\"blocked-notice-logextract\";i:697;s:14:\"clearyourcache\";i:698;s:20:\"usercssyoucanpreview\";i:699;s:21:\"userjsonyoucanpreview\";i:700;s:19:\"userjsyoucanpreview\";i:701;s:14:\"usercsspreview\";i:702;s:15:\"userjsonpreview\";i:703;s:13:\"userjspreview\";i:704;s:14:\"sitecsspreview\";i:705;s:15:\"sitejsonpreview\";i:706;s:13:\"sitejspreview\";i:707;s:22:\"userinvalidconfigtitle\";i:708;s:7:\"updated\";i:709;s:4:\"note\";i:710;s:11:\"previewnote\";i:711;s:16:\"continue-editing\";i:712;s:15:\"previewconflict\";i:713;s:20:\"session_fail_preview\";i:714;s:25:\"session_fail_preview_html\";i:715;s:20:\"edit_form_incomplete\";i:716;s:7:\"editing\";i:717;s:24:\"edit-textarea-aria-label\";i:718;s:8:\"creating\";i:719;s:14:\"editingsection\";i:720;s:14:\"editingcomment\";i:721;s:12:\"editconflict\";i:722;s:17:\"editnotice-notext\";i:723;s:15:\"explainconflict\";i:724;s:8:\"yourtext\";i:725;s:13:\"storedversion\";i:726;s:10:\"editingold\";i:727;s:20:\"unicode-support-fail\";i:728;s:8:\"yourdiff\";i:729;s:16:\"copyrightwarning\";i:730;s:17:\"copyrightwarning2\";i:731;s:23:\"editpage-head-copy-warn\";i:732;s:20:\"editpage-tos-summary\";i:733;s:32:\"editpage-cannot-use-custom-model\";i:734;s:13:\"longpage-hint\";i:735;s:13:\"longpageerror\";i:736;s:15:\"readonlywarning\";i:737;s:20:\"protectedpagewarning\";i:738;s:24:\"semiprotectedpagewarning\";i:739;s:23:\"cascadeprotectedwarning\";i:740;s:21:\"titleprotectedwarning\";i:741;s:13:\"templatesused\";i:742;s:20:\"templatesusedpreview\";i:743;s:20:\"templatesusedsection\";i:744;s:18:\"template-protected\";i:745;s:22:\"template-semiprotected\";i:746;s:16:\"hiddencategories\";i:747;s:9:\"edittools\";i:748;s:16:\"edittools-upload\";i:749;s:12:\"nocreatetext\";i:750;s:17:\"nocreate-loggedin\";i:751;s:29:\"sectioneditnotsupported-title\";i:752;s:28:\"sectioneditnotsupported-text\";i:753;s:27:\"modeleditnotsupported-title\";i:754;s:26:\"modeleditnotsupported-text\";i:755;s:17:\"permissionserrors\";i:756;s:21:\"permissionserrorstext\";i:757;s:32:\"permissionserrorstext-withaction\";i:758;s:21:\"contentmodelediterror\";i:759;s:26:\"recreate-moveddeleted-warn\";i:760;s:19:\"moveddeleted-notice\";i:761;s:26:\"moveddeleted-notice-recent\";i:762;s:11:\"log-fulllog\";i:763;s:17:\"edit-hook-aborted\";i:764;s:17:\"edit-gone-missing\";i:765;s:13:\"edit-conflict\";i:766;s:14:\"edit-no-change\";i:767;s:21:\"edit-slots-cannot-add\";i:768;s:24:\"edit-slots-cannot-remove\";i:769;s:18:\"edit-slots-missing\";i:770;s:29:\"postedit-confirmation-created\";i:771;s:30:\"postedit-confirmation-restored\";i:772;s:27:\"postedit-confirmation-saved\";i:773;s:31:\"postedit-confirmation-published\";i:774;s:19:\"edit-already-exists\";i:775;s:18:\"addsection-preload\";i:776;s:20:\"addsection-editintro\";i:777;s:18:\"defaultmessagetext\";i:778;s:23:\"content-failed-to-parse\";i:779;s:20:\"invalid-content-data\";i:780;s:24:\"content-not-allowed-here\";i:781;s:20:\"confirmleave-warning\";i:782;s:34:\"editpage-invalidcontentmodel-title\";i:783;s:33:\"editpage-invalidcontentmodel-text\";i:784;s:40:\"editpage-notsupportedcontentformat-title\";i:785;s:39:\"editpage-notsupportedcontentformat-text\";i:786;s:14:\"slot-name-main\";i:787;s:22:\"content-model-wikitext\";i:788;s:18:\"content-model-text\";i:789;s:24:\"content-model-javascript\";i:790;s:17:\"content-model-css\";i:791;s:18:\"content-model-json\";i:792;s:25:\"content-json-empty-object\";i:793;s:24:\"content-json-empty-array\";i:794;s:25:\"unsupported-content-model\";i:795;s:24:\"unsupported-content-diff\";i:796;s:25:\"unsupported-content-diff2\";i:797;s:22:\"duplicate-args-warning\";i:798;s:23:\"duplicate-args-category\";i:799;s:28:\"duplicate-args-category-desc\";i:800;s:32:\"expensive-parserfunction-warning\";i:801;s:33:\"expensive-parserfunction-category\";i:802;s:38:\"post-expand-template-inclusion-warning\";i:803;s:39:\"post-expand-template-inclusion-category\";i:804;s:37:\"post-expand-template-argument-warning\";i:805;s:38:\"post-expand-template-argument-category\";i:806;s:24:\"template-equals-category\";i:807;s:29:\"template-equals-category-desc\";i:808;s:23:\"template-equals-warning\";i:809;s:28:\"parser-template-loop-warning\";i:810;s:22:\"template-loop-category\";i:811;s:27:\"template-loop-category-desc\";i:812;s:21:\"template-loop-warning\";i:813;s:39:\"parser-template-recursion-depth-warning\";i:814;s:32:\"language-converter-depth-warning\";i:815;s:28:\"node-count-exceeded-category\";i:816;s:33:\"node-count-exceeded-category-desc\";i:817;s:27:\"node-count-exceeded-warning\";i:818;s:33:\"expansion-depth-exceeded-category\";i:819;s:38:\"expansion-depth-exceeded-category-desc\";i:820;s:32:\"expansion-depth-exceeded-warning\";i:821;s:27:\"parser-unstrip-loop-warning\";i:822;s:21:\"unstrip-depth-warning\";i:823;s:22:\"unstrip-depth-category\";i:824;s:27:\"unstrip-depth-category-desc\";i:825;s:20:\"unstrip-size-warning\";i:826;s:21:\"unstrip-size-category\";i:827;s:26:\"unstrip-size-category-desc\";i:828;s:27:\"converter-manual-rule-error\";i:829;s:12:\"undo-success\";i:830;s:12:\"undo-failure\";i:831;s:19:\"undo-main-slot-only\";i:832;s:10:\"undo-norev\";i:833;s:13:\"undo-nochange\";i:834;s:12:\"undo-summary\";i:835;s:17:\"undo-summary-anon\";i:836;s:19:\"undo-summary-import\";i:837;s:20:\"undo-summary-import2\";i:838;s:28:\"undo-summary-username-hidden\";i:839;s:26:\"createaccount-hook-aborted\";i:840;s:12:\"viewpagelogs\";i:841;s:22:\"viewpagelogs-lowercase\";i:842;s:9:\"nohistory\";i:843;s:10:\"currentrev\";i:844;s:15:\"currentrev-asof\";i:845;s:12:\"revisionasof\";i:846;s:13:\"revision-info\";i:847;s:21:\"revision-info-current\";i:848;s:12:\"revision-nav\";i:849;s:16:\"previousrevision\";i:850;s:12:\"nextrevision\";i:851;s:19:\"currentrevisionlink\";i:852;s:3:\"cur\";i:853;s:11:\"tooltip-cur\";i:854;s:4:\"next\";i:855;s:4:\"last\";i:856;s:12:\"tooltip-last\";i:857;s:10:\"page_first\";i:858;s:9:\"page_last\";i:859;s:10:\"histlegend\";i:860;s:22:\"history-fieldset-title\";i:861;s:20:\"history-show-deleted\";i:862;s:17:\"history_copyright\";i:863;s:9:\"histfirst\";i:864;s:8:\"histlast\";i:865;s:11:\"historysize\";i:866;s:12:\"historyempty\";i:867;s:18:\"history-feed-title\";i:868;s:24:\"history-feed-description\";i:869;s:27:\"history-feed-item-nocomment\";i:870;s:18:\"history-feed-empty\";i:871;s:17:\"history-edit-tags\";i:872;s:13:\"history-empty\";i:873;s:19:\"rev-deleted-comment\";i:874;s:16:\"rev-deleted-user\";i:875;s:17:\"rev-deleted-event\";i:876;s:25:\"rev-deleted-user-contribs\";i:877;s:27:\"rev-deleted-text-permission\";i:878;s:19:\"rev-suppressed-text\";i:879;s:30:\"rev-suppressed-text-permission\";i:880;s:23:\"rev-deleted-text-unhide\";i:881;s:26:\"rev-suppressed-text-unhide\";i:882;s:21:\"rev-deleted-text-view\";i:883;s:24:\"rev-suppressed-text-view\";i:884;s:19:\"rev-deleted-no-diff\";i:885;s:22:\"rev-suppressed-no-diff\";i:886;s:23:\"rev-deleted-unhide-diff\";i:887;s:26:\"rev-suppressed-unhide-diff\";i:888;s:21:\"rev-deleted-diff-view\";i:889;s:24:\"rev-suppressed-diff-view\";i:890;s:12:\"rev-delundel\";i:891;s:15:\"rev-showdeleted\";i:892;s:14:\"revisiondelete\";i:893;s:23:\"revdelete-nooldid-title\";i:894;s:22:\"revdelete-nooldid-text\";i:895;s:17:\"revdelete-no-file\";i:896;s:27:\"revdelete-show-file-confirm\";i:897;s:26:\"revdelete-show-file-submit\";i:898;s:23:\"revdelete-selected-text\";i:899;s:23:\"revdelete-selected-file\";i:900;s:18:\"logdelete-selected\";i:901;s:19:\"revdelete-text-text\";i:902;s:19:\"revdelete-text-file\";i:903;s:14:\"logdelete-text\";i:904;s:21:\"revdelete-text-others\";i:905;s:17:\"revdelete-confirm\";i:906;s:23:\"revdelete-suppress-text\";i:907;s:16:\"revdelete-legend\";i:908;s:19:\"revdelete-hide-text\";i:909;s:20:\"revdelete-hide-image\";i:910;s:19:\"revdelete-hide-name\";i:911;s:22:\"revdelete-hide-comment\";i:912;s:19:\"revdelete-hide-user\";i:913;s:25:\"revdelete-hide-restricted\";i:914;s:20:\"revdelete-radio-same\";i:915;s:19:\"revdelete-radio-set\";i:916;s:21:\"revdelete-radio-unset\";i:917;s:18:\"revdelete-suppress\";i:918;s:20:\"revdelete-unsuppress\";i:919;s:13:\"revdelete-log\";i:920;s:16:\"revdelete-submit\";i:921;s:17:\"revdelete-success\";i:922;s:17:\"revdelete-failure\";i:923;s:17:\"logdelete-success\";i:924;s:17:\"logdelete-failure\";i:925;s:14:\"revdel-restore\";i:926;s:8:\"pagehist\";i:927;s:11:\"deletedhist\";i:928;s:22:\"revdelete-hide-current\";i:929;s:24:\"revdelete-show-no-access\";i:930;s:26:\"revdelete-modify-no-access\";i:931;s:24:\"revdelete-modify-missing\";i:932;s:19:\"revdelete-no-change\";i:933;s:27:\"revdelete-concurrent-change\";i:934;s:25:\"revdelete-only-restricted\";i:935;s:25:\"revdelete-reason-dropdown\";i:936;s:34:\"revdelete-reason-dropdown-suppress\";i:937;s:21:\"revdelete-otherreason\";i:938;s:25:\"revdelete-reasonotherlist\";i:939;s:25:\"revdelete-edit-reasonlist\";i:940;s:34:\"revdelete-edit-reasonlist-suppress\";i:941;s:18:\"revdelete-offender\";i:942;s:14:\"suppressionlog\";i:943;s:18:\"suppressionlogtext\";i:944;s:12:\"mergehistory\";i:945;s:19:\"mergehistory-header\";i:946;s:16:\"mergehistory-box\";i:947;s:17:\"mergehistory-from\";i:948;s:17:\"mergehistory-into\";i:949;s:17:\"mergehistory-list\";i:950;s:18:\"mergehistory-merge\";i:951;s:15:\"mergehistory-go\";i:952;s:19:\"mergehistory-submit\";i:953;s:18:\"mergehistory-empty\";i:954;s:17:\"mergehistory-done\";i:955;s:17:\"mergehistory-fail\";i:956;s:31:\"mergehistory-fail-bad-timestamp\";i:957;s:32:\"mergehistory-fail-invalid-source\";i:958;s:30:\"mergehistory-fail-invalid-dest\";i:959;s:27:\"mergehistory-fail-no-change\";i:960;s:28:\"mergehistory-fail-permission\";i:961;s:28:\"mergehistory-fail-self-merge\";i:962;s:36:\"mergehistory-fail-timestamps-overlap\";i:963;s:24:\"mergehistory-fail-toobig\";i:964;s:41:\"mergehistory-warning-redirect-not-created\";i:965;s:22:\"mergehistory-no-source\";i:966;s:27:\"mergehistory-no-destination\";i:967;s:27:\"mergehistory-invalid-source\";i:968;s:32:\"mergehistory-invalid-destination\";i:969;s:24:\"mergehistory-autocomment\";i:970;s:20:\"mergehistory-comment\";i:971;s:29:\"mergehistory-same-destination\";i:972;s:19:\"mergehistory-reason\";i:973;s:34:\"mergehistory-source-deleted-reason\";i:974;s:27:\"mergehistory-source-deleted\";i:975;s:24:\"mergehistory-revisionrow\";i:976;s:26:\"mergehistory-redirect-text\";i:977;s:8:\"mergelog\";i:978;s:18:\"pagemerge-logentry\";i:979;s:11:\"revertmerge\";i:980;s:16:\"mergelogpagetext\";i:981;s:13:\"history-title\";i:982;s:16:\"difference-title\";i:983;s:26:\"difference-title-multipage\";i:984;s:20:\"difference-multipage\";i:985;s:6:\"lineno\";i:986;s:23:\"compareselectedversions\";i:987;s:24:\"showhideselectedversions\";i:988;s:8:\"editundo\";i:989;s:10:\"diff-empty\";i:990;s:19:\"diff-multi-sameuser\";i:991;s:21:\"diff-multi-otherusers\";i:992;s:20:\"diff-multi-manyusers\";i:993;s:26:\"diff-paragraph-moved-tonew\";i:994;s:26:\"diff-paragraph-moved-toold\";i:995;s:27:\"difference-missing-revision\";i:996;s:14:\"search-summary\";i:997;s:13:\"searchresults\";i:998;s:26:\"search-filter-title-prefix\";i:999;s:32:\"search-filter-title-prefix-reset\";i:1000;s:19:\"searchresults-title\";i:1001;s:12:\"titlematches\";i:1002;s:11:\"textmatches\";i:1003;s:13:\"notextmatches\";i:1004;s:5:\"prevn\";i:1005;s:5:\"nextn\";i:1006;s:9:\"prev-page\";i:1007;s:9:\"next-page\";i:1008;s:11:\"prevn-title\";i:1009;s:11:\"nextn-title\";i:1010;s:11:\"shown-title\";i:1011;s:12:\"viewprevnext\";i:1012;s:17:\"searchmenu-exists\";i:1013;s:14:\"searchmenu-new\";i:1014;s:23:\"searchmenu-new-nocreate\";i:1015;s:22:\"searchprofile-articles\";i:1016;s:20:\"searchprofile-images\";i:1017;s:24:\"searchprofile-everything\";i:1018;s:22:\"searchprofile-advanced\";i:1019;s:30:\"searchprofile-articles-tooltip\";i:1020;s:28:\"searchprofile-images-tooltip\";i:1021;s:32:\"searchprofile-everything-tooltip\";i:1022;s:30:\"searchprofile-advanced-tooltip\";i:1023;s:18:\"search-result-size\";i:1024;s:27:\"search-result-category-size\";i:1025;s:15:\"search-redirect\";i:1026;s:14:\"search-section\";i:1027;s:15:\"search-category\";i:1028;s:17:\"search-file-match\";i:1029;s:14:\"search-suggest\";i:1030;s:16:\"search-rewritten\";i:1031;s:24:\"search-interwiki-caption\";i:1032;s:24:\"search-interwiki-default\";i:1033;s:23:\"search-interwiki-custom\";i:1034;s:21:\"search-interwiki-more\";i:1035;s:29:\"search-interwiki-more-results\";i:1036;s:21:\"search-relatedarticle\";i:1037;s:25:\"search-invalid-sort-order\";i:1038;s:22:\"search-unknown-profile\";i:1039;s:13:\"searchrelated\";i:1040;s:9:\"searchall\";i:1041;s:14:\"showingresults\";i:1042;s:21:\"showingresultsinrange\";i:1043;s:21:\"search-showingresults\";i:1044;s:16:\"search-nonefound\";i:1045;s:25:\"search-nonefound-thiswiki\";i:1046;s:18:\"powersearch-legend\";i:1047;s:14:\"powersearch-ns\";i:1048;s:23:\"powersearch-togglelabel\";i:1049;s:21:\"powersearch-toggleall\";i:1050;s:22:\"powersearch-togglenone\";i:1051;s:20:\"powersearch-remember\";i:1052;s:15:\"search-external\";i:1053;s:14:\"searchdisabled\";i:1054;s:12:\"googlesearch\";i:1055;s:12:\"search-error\";i:1056;s:14:\"search-warning\";i:1057;s:15:\"opensearch-desc\";i:1058;s:11:\"preferences\";i:1059;s:19:\"preferences-summary\";i:1060;s:13:\"mypreferences\";i:1061;s:11:\"prefs-edits\";i:1062;s:17:\"prefsnologintext2\";i:1063;s:10:\"prefs-skin\";i:1064;s:16:\"prefs-skin-prefs\";i:1065;s:21:\"prefs-skin-responsive\";i:1066;s:26:\"prefs-help-skin-responsive\";i:1067;s:12:\"skin-preview\";i:1068;s:11:\"datedefault\";i:1069;s:10:\"prefs-labs\";i:1070;s:16:\"prefs-user-pages\";i:1071;s:14:\"prefs-personal\";i:1072;s:8:\"prefs-rc\";i:1073;s:15:\"prefs-watchlist\";i:1074;s:19:\"prefs-editwatchlist\";i:1075;s:25:\"prefs-editwatchlist-label\";i:1076;s:24:\"prefs-editwatchlist-edit\";i:1077;s:23:\"prefs-editwatchlist-raw\";i:1078;s:25:\"prefs-editwatchlist-clear\";i:1079;s:20:\"prefs-watchlist-days\";i:1080;s:24:\"prefs-watchlist-days-max\";i:1081;s:21:\"prefs-watchlist-edits\";i:1082;s:25:\"prefs-watchlist-edits-max\";i:1083;s:21:\"prefs-watchlist-token\";i:1084;s:28:\"prefs-watchlist-managetokens\";i:1085;s:10:\"prefs-misc\";i:1086;s:15:\"prefs-resetpass\";i:1087;s:17:\"prefs-changeemail\";i:1088;s:14:\"prefs-setemail\";i:1089;s:11:\"prefs-email\";i:1090;s:15:\"prefs-rendering\";i:1091;s:16:\"prefs-searchmisc\";i:1092;s:9:\"saveprefs\";i:1093;s:12:\"restoreprefs\";i:1094;s:13:\"prefs-editing\";i:1095;s:17:\"searchresultshead\";i:1096;s:17:\"recentchangesdays\";i:1097;s:21:\"recentchangesdays-max\";i:1098;s:18:\"recentchangescount\";i:1099;s:29:\"prefs-help-recentchangescount\";i:1100;s:27:\"prefs-help-watchlist-token2\";i:1101;s:26:\"prefs-help-tokenmanagement\";i:1102;s:29:\"prefs-user-downloaddata-label\";i:1103;s:28:\"prefs-user-downloaddata-info\";i:1104;s:36:\"prefs-user-downloaddata-help-message\";i:1105;s:10:\"savedprefs\";i:1106;s:11:\"savedrights\";i:1107;s:14:\"timezonelegend\";i:1108;s:9:\"localtime\";i:1109;s:24:\"timezoneuseserverdefault\";i:1110;s:17:\"timezoneuseoffset\";i:1111;s:30:\"timezone-useoffset-placeholder\";i:1112;s:10:\"servertime\";i:1113;s:13:\"guesstimezone\";i:1114;s:21:\"timezoneregion-africa\";i:1115;s:22:\"timezoneregion-america\";i:1116;s:25:\"timezoneregion-antarctica\";i:1117;s:21:\"timezoneregion-arctic\";i:1118;s:19:\"timezoneregion-asia\";i:1119;s:23:\"timezoneregion-atlantic\";i:1120;s:24:\"timezoneregion-australia\";i:1121;s:21:\"timezoneregion-europe\";i:1122;s:21:\"timezoneregion-indian\";i:1123;s:22:\"timezoneregion-pacific\";i:1124;s:10:\"allowemail\";i:1125;s:27:\"email-allow-new-users-label\";i:1126;s:20:\"email-mutelist-label\";i:1127;s:19:\"prefs-searchoptions\";i:1128;s:16:\"prefs-namespaces\";i:1129;s:7:\"default\";i:1130;s:11:\"prefs-files\";i:1131;s:16:\"prefs-custom-css\";i:1132;s:17:\"prefs-custom-json\";i:1133;s:15:\"prefs-custom-js\";i:1134;s:19:\"prefs-common-config\";i:1135;s:17:\"prefs-reset-intro\";i:1136;s:24:\"prefs-emailconfirm-label\";i:1137;s:9:\"youremail\";i:1138;s:8:\"username\";i:1139;s:20:\"prefs-memberingroups\";i:1140;s:25:\"prefs-memberingroups-type\";i:1141;s:33:\"group-membership-link-with-expiry\";i:1142;s:18:\"prefs-registration\";i:1143;s:28:\"prefs-registration-date-time\";i:1144;s:12:\"yourrealname\";i:1145;s:12:\"yourlanguage\";i:1146;s:11:\"yourvariant\";i:1147;s:18:\"prefs-help-variant\";i:1148;s:8:\"yournick\";i:1149;s:20:\"prefs-help-signature\";i:1150;s:6:\"badsig\";i:1151;s:10:\"badsightml\";i:1152;s:11:\"badsiglinks\";i:1153;s:11:\"badsigsubst\";i:1154;s:12:\"badsiglength\";i:1155;s:15:\"badsiglinebreak\";i:1156;s:29:\"linterror-bogus-image-options\";i:1157;s:29:\"linterror-deletable-table-tag\";i:1158;s:26:\"linterror-html5-misnesting\";i:1159;s:38:\"linterror-misc-tidy-replacement-issues\";i:1160;s:23:\"linterror-misnested-tag\";i:1161;s:25:\"linterror-missing-end-tag\";i:1162;s:28:\"linterror-multi-colon-escape\";i:1163;s:38:\"linterror-multiline-html-table-in-list\";i:1164;s:43:\"linterror-multiple-unclosed-formatting-tags\";i:1165;s:22:\"linterror-obsolete-tag\";i:1166;s:30:\"linterror-pwrap-bug-workaround\";i:1167;s:25:\"linterror-self-closed-tag\";i:1168;s:22:\"linterror-stripped-tag\";i:1169;s:23:\"linterror-tidy-font-bug\";i:1170;s:29:\"linterror-tidy-whitespace-bug\";i:1171;s:36:\"linterror-unclosed-quotes-in-heading\";i:1172;s:10:\"yourgender\";i:1173;s:14:\"gender-unknown\";i:1174;s:15:\"gender-notknown\";i:1175;s:11:\"gender-male\";i:1176;s:13:\"gender-female\";i:1177;s:17:\"prefs-help-gender\";i:1178;s:5:\"email\";i:1179;s:19:\"prefs-help-realname\";i:1180;s:16:\"prefs-help-email\";i:1181;s:23:\"prefs-help-email-others\";i:1182;s:25:\"prefs-help-email-required\";i:1183;s:23:\"prefs-help-requireemail\";i:1184;s:10:\"prefs-info\";i:1185;s:10:\"prefs-i18n\";i:1186;s:15:\"prefs-signature\";i:1187;s:31:\"prefs-signature-invalid-warning\";i:1188;s:27:\"prefs-signature-invalid-new\";i:1189;s:32:\"prefs-signature-invalid-disallow\";i:1190;s:31:\"prefs-signature-highlight-error\";i:1191;s:29:\"prefs-signature-error-details\";i:1192;s:16:\"prefs-dateformat\";i:1193;s:16:\"prefs-timeoffset\";i:1194;s:21:\"prefs-advancedediting\";i:1195;s:20:\"prefs-developertools\";i:1196;s:12:\"prefs-editor\";i:1197;s:16:\"prefs-discussion\";i:1198;s:13:\"prefs-preview\";i:1199;s:16:\"prefs-advancedrc\";i:1200;s:23:\"prefs-advancedrendering\";i:1201;s:27:\"prefs-advancedsearchoptions\";i:1202;s:23:\"prefs-advancedwatchlist\";i:1203;s:15:\"prefs-displayrc\";i:1204;s:22:\"prefs-displaywatchlist\";i:1205;s:15:\"prefs-changesrc\";i:1206;s:22:\"prefs-changeswatchlist\";i:1207;s:20:\"prefs-pageswatchlist\";i:1208;s:20:\"prefs-tokenwatchlist\";i:1209;s:11:\"prefs-diffs\";i:1210;s:23:\"prefs-help-prefershttps\";i:1211;s:26:\"prefs-tabs-navigation-hint\";i:1212;s:10:\"userrights\";i:1213;s:18:\"userrights-summary\";i:1214;s:22:\"userrights-lookup-user\";i:1215;s:24:\"userrights-user-editname\";i:1216;s:13:\"editusergroup\";i:1217;s:11:\"editinguser\";i:1218;s:17:\"viewinguserrights\";i:1219;s:24:\"userrights-editusergroup\";i:1220;s:24:\"userrights-viewusergroup\";i:1221;s:14:\"saveusergroups\";i:1222;s:23:\"userrights-groupsmember\";i:1223;s:28:\"userrights-groupsmember-auto\";i:1224;s:28:\"userrights-groupsmember-type\";i:1225;s:21:\"userrights-systemuser\";i:1226;s:22:\"userrights-groups-help\";i:1227;s:17:\"userrights-reason\";i:1228;s:23:\"userrights-no-interwiki\";i:1229;s:21:\"userrights-nodatabase\";i:1230;s:25:\"userrights-changeable-col\";i:1231;s:27:\"userrights-unchangeable-col\";i:1232;s:30:\"userrights-irreversible-marker\";i:1233;s:35:\"userrights-no-shorten-expiry-marker\";i:1234;s:25:\"userrights-expiry-current\";i:1235;s:22:\"userrights-expiry-none\";i:1236;s:17:\"userrights-expiry\";i:1237;s:26:\"userrights-expiry-existing\";i:1238;s:27:\"userrights-expiry-othertime\";i:1239;s:25:\"userrights-expiry-options\";i:1240;s:25:\"userrights-invalid-expiry\";i:1241;s:25:\"userrights-expiry-in-past\";i:1242;s:32:\"userrights-cannot-shorten-expiry\";i:1243;s:19:\"userrights-conflict\";i:1244;s:5:\"group\";i:1245;s:10:\"group-user\";i:1246;s:19:\"group-autoconfirmed\";i:1247;s:9:\"group-bot\";i:1248;s:11:\"group-sysop\";i:1249;s:21:\"group-interface-admin\";i:1250;s:16:\"group-bureaucrat\";i:1251;s:14:\"group-suppress\";i:1252;s:9:\"group-all\";i:1253;s:17:\"group-user-member\";i:1254;s:26:\"group-autoconfirmed-member\";i:1255;s:16:\"group-bot-member\";i:1256;s:18:\"group-sysop-member\";i:1257;s:28:\"group-interface-admin-member\";i:1258;s:23:\"group-bureaucrat-member\";i:1259;s:21:\"group-suppress-member\";i:1260;s:14:\"grouppage-user\";i:1261;s:23:\"grouppage-autoconfirmed\";i:1262;s:13:\"grouppage-bot\";i:1263;s:15:\"grouppage-sysop\";i:1264;s:25:\"grouppage-interface-admin\";i:1265;s:20:\"grouppage-bureaucrat\";i:1266;s:18:\"grouppage-suppress\";i:1267;s:10:\"right-read\";i:1268;s:10:\"right-edit\";i:1269;s:16:\"right-createpage\";i:1270;s:16:\"right-createtalk\";i:1271;s:19:\"right-createaccount\";i:1272;s:23:\"right-autocreateaccount\";i:1273;s:15:\"right-minoredit\";i:1274;s:10:\"right-move\";i:1275;s:19:\"right-move-subpages\";i:1276;s:24:\"right-move-rootuserpages\";i:1277;s:24:\"right-move-categorypages\";i:1278;s:14:\"right-movefile\";i:1279;s:22:\"right-suppressredirect\";i:1280;s:12:\"right-upload\";i:1281;s:14:\"right-reupload\";i:1282;s:18:\"right-reupload-own\";i:1283;s:21:\"right-reupload-shared\";i:1284;s:19:\"right-upload_by_url\";i:1285;s:11:\"right-purge\";i:1286;s:19:\"right-autoconfirmed\";i:1287;s:9:\"right-bot\";i:1288;s:20:\"right-nominornewtalk\";i:1289;s:19:\"right-apihighlimits\";i:1290;s:14:\"right-writeapi\";i:1291;s:12:\"right-delete\";i:1292;s:21:\"right-delete-redirect\";i:1293;s:15:\"right-bigdelete\";i:1294;s:20:\"right-deletelogentry\";i:1295;s:20:\"right-deleterevision\";i:1296;s:20:\"right-deletedhistory\";i:1297;s:17:\"right-deletedtext\";i:1298;s:19:\"right-browsearchive\";i:1299;s:14:\"right-undelete\";i:1300;s:22:\"right-suppressrevision\";i:1301;s:20:\"right-viewsuppressed\";i:1302;s:20:\"right-suppressionlog\";i:1303;s:11:\"right-block\";i:1304;s:16:\"right-blockemail\";i:1305;s:14:\"right-hideuser\";i:1306;s:20:\"right-ipblock-exempt\";i:1307;s:17:\"right-unblockself\";i:1308;s:13:\"right-protect\";i:1309;s:19:\"right-editprotected\";i:1310;s:23:\"right-editsemiprotected\";i:1311;s:22:\"right-editcontentmodel\";i:1312;s:19:\"right-editinterface\";i:1313;s:17:\"right-editusercss\";i:1314;s:18:\"right-edituserjson\";i:1315;s:16:\"right-edituserjs\";i:1316;s:17:\"right-editsitecss\";i:1317;s:18:\"right-editsitejson\";i:1318;s:16:\"right-editsitejs\";i:1319;s:19:\"right-editmyusercss\";i:1320;s:20:\"right-editmyuserjson\";i:1321;s:18:\"right-editmyuserjs\";i:1322;s:26:\"right-editmyuserjsredirect\";i:1323;s:21:\"right-viewmywatchlist\";i:1324;s:21:\"right-editmywatchlist\";i:1325;s:23:\"right-viewmyprivateinfo\";i:1326;s:23:\"right-editmyprivateinfo\";i:1327;s:19:\"right-editmyoptions\";i:1328;s:14:\"right-rollback\";i:1329;s:18:\"right-markbotedits\";i:1330;s:17:\"right-noratelimit\";i:1331;s:12:\"right-import\";i:1332;s:18:\"right-importupload\";i:1333;s:12:\"right-patrol\";i:1334;s:16:\"right-autopatrol\";i:1335;s:17:\"right-patrolmarks\";i:1336;s:20:\"right-unwatchedpages\";i:1337;s:18:\"right-mergehistory\";i:1338;s:16:\"right-userrights\";i:1339;s:26:\"right-userrights-interwiki\";i:1340;s:15:\"right-siteadmin\";i:1341;s:27:\"right-override-export-depth\";i:1342;s:15:\"right-sendemail\";i:1343;s:22:\"right-managechangetags\";i:1344;s:21:\"right-applychangetags\";i:1345;s:16:\"right-changetags\";i:1346;s:22:\"right-deletechangetags\";i:1347;s:13:\"grant-generic\";i:1348;s:28:\"grant-group-page-interaction\";i:1349;s:28:\"grant-group-file-interaction\";i:1350;s:33:\"grant-group-watchlist-interaction\";i:1351;s:17:\"grant-group-email\";i:1352;s:23:\"grant-group-high-volume\";i:1353;s:25:\"grant-group-customization\";i:1354;s:26:\"grant-group-administration\";i:1355;s:31:\"grant-group-private-information\";i:1356;s:17:\"grant-group-other\";i:1357;s:16:\"grant-blockusers\";i:1358;s:19:\"grant-createaccount\";i:1359;s:24:\"grant-createeditmovepage\";i:1360;s:12:\"grant-delete\";i:1361;s:19:\"grant-editinterface\";i:1362;s:17:\"grant-editmycssjs\";i:1363;s:19:\"grant-editmyoptions\";i:1364;s:21:\"grant-editmywatchlist\";i:1365;s:20:\"grant-editsiteconfig\";i:1366;s:14:\"grant-editpage\";i:1367;s:19:\"grant-editprotected\";i:1368;s:16:\"grant-highvolume\";i:1369;s:12:\"grant-import\";i:1370;s:18:\"grant-mergehistory\";i:1371;s:15:\"grant-oversight\";i:1372;s:12:\"grant-patrol\";i:1373;s:17:\"grant-privateinfo\";i:1374;s:13:\"grant-protect\";i:1375;s:14:\"grant-rollback\";i:1376;s:15:\"grant-sendemail\";i:1377;s:24:\"grant-uploadeditmovefile\";i:1378;s:16:\"grant-uploadfile\";i:1379;s:11:\"grant-basic\";i:1380;s:17:\"grant-viewdeleted\";i:1381;s:21:\"grant-viewmywatchlist\";i:1382;s:24:\"grant-viewrestrictedlogs\";i:1383;s:14:\"newuserlogpage\";i:1384;s:18:\"newuserlogpagetext\";i:1385;s:9:\"rightslog\";i:1386;s:13:\"rightslogtext\";i:1387;s:11:\"action-read\";i:1388;s:17:\"action-addsection\";i:1389;s:11:\"action-edit\";i:1390;s:17:\"action-createpage\";i:1391;s:17:\"action-createtalk\";i:1392;s:20:\"action-createaccount\";i:1393;s:24:\"action-autocreateaccount\";i:1394;s:14:\"action-history\";i:1395;s:16:\"action-minoredit\";i:1396;s:11:\"action-move\";i:1397;s:20:\"action-move-subpages\";i:1398;s:25:\"action-move-rootuserpages\";i:1399;s:25:\"action-move-categorypages\";i:1400;s:15:\"action-movefile\";i:1401;s:13:\"action-upload\";i:1402;s:15:\"action-reupload\";i:1403;s:22:\"action-reupload-shared\";i:1404;s:20:\"action-upload_by_url\";i:1405;s:15:\"action-writeapi\";i:1406;s:13:\"action-delete\";i:1407;s:22:\"action-delete-redirect\";i:1408;s:21:\"action-deleterevision\";i:1409;s:21:\"action-deletelogentry\";i:1410;s:21:\"action-deletedhistory\";i:1411;s:18:\"action-deletedtext\";i:1412;s:20:\"action-browsearchive\";i:1413;s:15:\"action-undelete\";i:1414;s:23:\"action-suppressrevision\";i:1415;s:21:\"action-suppressionlog\";i:1416;s:12:\"action-block\";i:1417;s:14:\"action-protect\";i:1418;s:15:\"action-rollback\";i:1419;s:13:\"action-import\";i:1420;s:19:\"action-importupload\";i:1421;s:13:\"action-patrol\";i:1422;s:17:\"action-autopatrol\";i:1423;s:21:\"action-unwatchedpages\";i:1424;s:19:\"action-mergehistory\";i:1425;s:17:\"action-userrights\";i:1426;s:27:\"action-userrights-interwiki\";i:1427;s:16:\"action-siteadmin\";i:1428;s:16:\"action-sendemail\";i:1429;s:20:\"action-editmyoptions\";i:1430;s:22:\"action-editmywatchlist\";i:1431;s:22:\"action-viewmywatchlist\";i:1432;s:24:\"action-viewmyprivateinfo\";i:1433;s:24:\"action-editmyprivateinfo\";i:1434;s:23:\"action-editcontentmodel\";i:1435;s:23:\"action-managechangetags\";i:1436;s:22:\"action-applychangetags\";i:1437;s:17:\"action-changetags\";i:1438;s:23:\"action-deletechangetags\";i:1439;s:12:\"action-purge\";i:1440;s:20:\"action-apihighlimits\";i:1441;s:20:\"action-autoconfirmed\";i:1442;s:16:\"action-bigdelete\";i:1443;s:17:\"action-blockemail\";i:1444;s:10:\"action-bot\";i:1445;s:20:\"action-editprotected\";i:1446;s:24:\"action-editsemiprotected\";i:1447;s:20:\"action-editinterface\";i:1448;s:18:\"action-editusercss\";i:1449;s:19:\"action-edituserjson\";i:1450;s:17:\"action-edituserjs\";i:1451;s:18:\"action-editsitecss\";i:1452;s:19:\"action-editsitejson\";i:1453;s:17:\"action-editsitejs\";i:1454;s:20:\"action-editmyusercss\";i:1455;s:21:\"action-editmyuserjson\";i:1456;s:19:\"action-editmyuserjs\";i:1457;s:27:\"action-editmyuserjsredirect\";i:1458;s:21:\"action-viewsuppressed\";i:1459;s:15:\"action-hideuser\";i:1460;s:21:\"action-ipblock-exempt\";i:1461;s:18:\"action-unblockself\";i:1462;s:18:\"action-noratelimit\";i:1463;s:19:\"action-reupload-own\";i:1464;s:21:\"action-nominornewtalk\";i:1465;s:19:\"action-markbotedits\";i:1466;s:18:\"action-patrolmarks\";i:1467;s:28:\"action-override-export-depth\";i:1468;s:23:\"action-suppressredirect\";i:1469;s:8:\"nchanges\";i:1470;s:6:\"ntimes\";i:1471;s:27:\"enhancedrc-since-last-visit\";i:1472;s:18:\"enhancedrc-history\";i:1473;s:13:\"recentchanges\";i:1474;s:17:\"recentchanges-url\";i:1475;s:20:\"recentchanges-legend\";i:1476;s:21:\"recentchanges-summary\";i:1477;s:17:\"recentchangestext\";i:1478;s:22:\"recentchanges-noresult\";i:1479;s:21:\"recentchanges-timeout\";i:1480;s:21:\"recentchanges-network\";i:1481;s:26:\"recentchanges-notargetpage\";i:1482;s:30:\"recentchanges-feed-description\";i:1483;s:27:\"recentchanges-label-newpage\";i:1484;s:25:\"recentchanges-label-minor\";i:1485;s:23:\"recentchanges-label-bot\";i:1486;s:31:\"recentchanges-label-unpatrolled\";i:1487;s:29:\"recentchanges-label-plusminus\";i:1488;s:28:\"recentchanges-legend-heading\";i:1489;s:28:\"recentchanges-legend-newpage\";i:1490;s:26:\"recentchanges-legend-minor\";i:1491;s:24:\"recentchanges-legend-bot\";i:1492;s:32:\"recentchanges-legend-unpatrolled\";i:1493;s:30:\"recentchanges-legend-plusminus\";i:1494;s:36:\"recentchanges-legend-watchlistexpiry\";i:1495;s:20:\"recentchanges-submit\";i:1496;s:20:\"rcfilters-tag-remove\";i:1497;s:24:\"rcfilters-legend-heading\";i:1498;s:28:\"rcfilters-other-review-tools\";i:1499;s:31:\"rcfilters-group-results-by-page\";i:1500;s:23:\"rcfilters-activefilters\";i:1501;s:28:\"rcfilters-activefilters-hide\";i:1502;s:28:\"rcfilters-activefilters-show\";i:1503;s:36:\"rcfilters-activefilters-hide-tooltip\";i:1504;s:36:\"rcfilters-activefilters-show-tooltip\";i:1505;s:25:\"rcfilters-advancedfilters\";i:1506;s:21:\"rcfilters-limit-title\";i:1507;s:30:\"rcfilters-limit-and-date-label\";i:1508;s:48:\"rcfilters-limit-and-date-popup-dialog-aria-label\";i:1509;s:26:\"rcfilters-date-popup-title\";i:1510;s:20:\"rcfilters-days-title\";i:1511;s:21:\"rcfilters-hours-title\";i:1512;s:24:\"rcfilters-days-show-days\";i:1513;s:25:\"rcfilters-days-show-hours\";i:1514;s:34:\"rcfilters-highlighted-filters-list\";i:1515;s:22:\"rcfilters-quickfilters\";i:1516;s:40:\"rcfilters-quickfilters-placeholder-title\";i:1517;s:46:\"rcfilters-quickfilters-placeholder-description\";i:1518;s:35:\"rcfilters-savedqueries-defaultlabel\";i:1519;s:29:\"rcfilters-savedqueries-rename\";i:1520;s:33:\"rcfilters-savedqueries-setdefault\";i:1521;s:35:\"rcfilters-savedqueries-unsetdefault\";i:1522;s:29:\"rcfilters-savedqueries-remove\";i:1523;s:37:\"rcfilters-savedqueries-new-name-label\";i:1524;s:43:\"rcfilters-savedqueries-new-name-placeholder\";i:1525;s:34:\"rcfilters-savedqueries-apply-label\";i:1526;s:49:\"rcfilters-savedqueries-apply-and-setdefault-label\";i:1527;s:35:\"rcfilters-savedqueries-cancel-label\";i:1528;s:36:\"rcfilters-savedqueries-add-new-title\";i:1529;s:36:\"rcfilters-savedqueries-already-saved\";i:1530;s:33:\"rcfilters-restore-default-filters\";i:1531;s:27:\"rcfilters-clear-all-filters\";i:1532;s:26:\"rcfilters-show-new-changes\";i:1533;s:28:\"rcfilters-search-placeholder\";i:1534;s:35:\"rcfilters-search-placeholder-mobile\";i:1535;s:24:\"rcfilters-invalid-filter\";i:1536;s:22:\"rcfilters-empty-filter\";i:1537;s:26:\"rcfilters-filterlist-title\";i:1538;s:30:\"rcfilters-filterlist-whatsthis\";i:1539;s:31:\"rcfilters-highlightbutton-title\";i:1540;s:29:\"rcfilters-highlightmenu-title\";i:1541;s:28:\"rcfilters-highlightmenu-help\";i:1542;s:30:\"rcfilters-filterlist-noresults\";i:1543;s:28:\"rcfilters-noresults-conflict\";i:1544;s:30:\"rcfilters-state-message-subset\";i:1545;s:36:\"rcfilters-state-message-fullcoverage\";i:1546;s:32:\"rcfilters-filtergroup-authorship\";i:1547;s:34:\"rcfilters-filter-editsbyself-label\";i:1548;s:40:\"rcfilters-filter-editsbyself-description\";i:1549;s:35:\"rcfilters-filter-editsbyother-label\";i:1550;s:41:\"rcfilters-filter-editsbyother-description\";i:1551;s:43:\"rcfilters-filtergroup-user-experience-level\";i:1552;s:55:\"rcfilters-filter-user-experience-level-registered-label\";i:1553;s:61:\"rcfilters-filter-user-experience-level-registered-description\";i:1554;s:57:\"rcfilters-filter-user-experience-level-unregistered-label\";i:1555;s:63:\"rcfilters-filter-user-experience-level-unregistered-description\";i:1556;s:53:\"rcfilters-filter-user-experience-level-newcomer-label\";i:1557;s:59:\"rcfilters-filter-user-experience-level-newcomer-description\";i:1558;s:52:\"rcfilters-filter-user-experience-level-learner-label\";i:1559;s:58:\"rcfilters-filter-user-experience-level-learner-description\";i:1560;s:56:\"rcfilters-filter-user-experience-level-experienced-label\";i:1561;s:62:\"rcfilters-filter-user-experience-level-experienced-description\";i:1562;s:31:\"rcfilters-filtergroup-automated\";i:1563;s:27:\"rcfilters-filter-bots-label\";i:1564;s:33:\"rcfilters-filter-bots-description\";i:1565;s:29:\"rcfilters-filter-humans-label\";i:1566;s:35:\"rcfilters-filter-humans-description\";i:1567;s:34:\"rcfilters-filtergroup-reviewstatus\";i:1568;s:53:\"rcfilters-filter-reviewstatus-unpatrolled-description\";i:1569;s:47:\"rcfilters-filter-reviewstatus-unpatrolled-label\";i:1570;s:48:\"rcfilters-filter-reviewstatus-manual-description\";i:1571;s:42:\"rcfilters-filter-reviewstatus-manual-label\";i:1572;s:46:\"rcfilters-filter-reviewstatus-auto-description\";i:1573;s:40:\"rcfilters-filter-reviewstatus-auto-label\";i:1574;s:34:\"rcfilters-filtergroup-significance\";i:1575;s:28:\"rcfilters-filter-minor-label\";i:1576;s:34:\"rcfilters-filter-minor-description\";i:1577;s:28:\"rcfilters-filter-major-label\";i:1578;s:34:\"rcfilters-filter-major-description\";i:1579;s:31:\"rcfilters-filtergroup-watchlist\";i:1580;s:40:\"rcfilters-filter-watchlist-watched-label\";i:1581;s:46:\"rcfilters-filter-watchlist-watched-description\";i:1582;s:43:\"rcfilters-filter-watchlist-watchednew-label\";i:1583;s:49:\"rcfilters-filter-watchlist-watchednew-description\";i:1584;s:43:\"rcfilters-filter-watchlist-notwatched-label\";i:1585;s:49:\"rcfilters-filter-watchlist-notwatched-description\";i:1586;s:39:\"rcfilters-filtergroup-watchlistactivity\";i:1587;s:47:\"rcfilters-filter-watchlistactivity-unseen-label\";i:1588;s:53:\"rcfilters-filter-watchlistactivity-unseen-description\";i:1589;s:45:\"rcfilters-filter-watchlistactivity-seen-label\";i:1590;s:51:\"rcfilters-filter-watchlistactivity-seen-description\";i:1591;s:32:\"rcfilters-filtergroup-changetype\";i:1592;s:32:\"rcfilters-filter-pageedits-label\";i:1593;s:38:\"rcfilters-filter-pageedits-description\";i:1594;s:31:\"rcfilters-filter-newpages-label\";i:1595;s:37:\"rcfilters-filter-newpages-description\";i:1596;s:37:\"rcfilters-filter-categorization-label\";i:1597;s:43:\"rcfilters-filter-categorization-description\";i:1598;s:33:\"rcfilters-filter-logactions-label\";i:1599;s:39:\"rcfilters-filter-logactions-description\";i:1600;s:49:\"rcfilters-hideminor-conflicts-typeofchange-global\";i:1601;s:42:\"rcfilters-hideminor-conflicts-typeofchange\";i:1602;s:42:\"rcfilters-typeofchange-conflicts-hideminor\";i:1603;s:34:\"rcfilters-filtergroup-lastrevision\";i:1604;s:35:\"rcfilters-filter-lastrevision-label\";i:1605;s:41:\"rcfilters-filter-lastrevision-description\";i:1606;s:39:\"rcfilters-filter-previousrevision-label\";i:1607;s:45:\"rcfilters-filter-previousrevision-description\";i:1608;s:25:\"rcfilters-filter-excluded\";i:1609;s:30:\"rcfilters-tag-prefix-namespace\";i:1610;s:39:\"rcfilters-tag-prefix-namespace-inverted\";i:1611;s:25:\"rcfilters-tag-prefix-tags\";i:1612;s:28:\"rcfilters-exclude-button-off\";i:1613;s:27:\"rcfilters-exclude-button-on\";i:1614;s:19:\"rcfilters-view-tags\";i:1615;s:33:\"rcfilters-view-namespaces-tooltip\";i:1616;s:27:\"rcfilters-view-tags-tooltip\";i:1617;s:40:\"rcfilters-view-return-to-default-tooltip\";i:1618;s:37:\"rcfilters-view-tags-help-icon-tooltip\";i:1619;s:28:\"rcfilters-liveupdates-button\";i:1620;s:37:\"rcfilters-liveupdates-button-title-on\";i:1621;s:38:\"rcfilters-liveupdates-button-title-off\";i:1622;s:35:\"rcfilters-watchlist-markseen-button\";i:1623;s:41:\"rcfilters-watchlist-edit-watchlist-button\";i:1624;s:31:\"rcfilters-watchlist-showupdated\";i:1625;s:26:\"rcfilters-preference-label\";i:1626;s:25:\"rcfilters-preference-help\";i:1627;s:36:\"rcfilters-watchlist-preference-label\";i:1628;s:35:\"rcfilters-watchlist-preference-help\";i:1629;s:37:\"rcfilters-filter-showlinkedfrom-label\";i:1630;s:44:\"rcfilters-filter-showlinkedfrom-option-label\";i:1631;s:35:\"rcfilters-filter-showlinkedto-label\";i:1632;s:42:\"rcfilters-filter-showlinkedto-option-label\";i:1633;s:33:\"rcfilters-target-page-placeholder\";i:1634;s:27:\"rcfilters-allcontents-label\";i:1635;s:30:\"rcfilters-alldiscussions-label\";i:1636;s:10:\"rcnotefrom\";i:1637;s:15:\"rclistfromreset\";i:1638;s:10:\"rclistfrom\";i:1639;s:15:\"rcshowhideminor\";i:1640;s:20:\"rcshowhideminor-show\";i:1641;s:20:\"rcshowhideminor-hide\";i:1642;s:14:\"rcshowhidebots\";i:1643;s:19:\"rcshowhidebots-show\";i:1644;s:19:\"rcshowhidebots-hide\";i:1645;s:13:\"rcshowhideliu\";i:1646;s:18:\"rcshowhideliu-show\";i:1647;s:18:\"rcshowhideliu-hide\";i:1648;s:15:\"rcshowhideanons\";i:1649;s:20:\"rcshowhideanons-show\";i:1650;s:20:\"rcshowhideanons-hide\";i:1651;s:14:\"rcshowhidepatr\";i:1652;s:19:\"rcshowhidepatr-show\";i:1653;s:19:\"rcshowhidepatr-hide\";i:1654;s:14:\"rcshowhidemine\";i:1655;s:19:\"rcshowhidemine-show\";i:1656;s:19:\"rcshowhidemine-hide\";i:1657;s:24:\"rcshowhidecategorization\";i:1658;s:29:\"rcshowhidecategorization-show\";i:1659;s:29:\"rcshowhidecategorization-hide\";i:1660;s:7:\"rclinks\";i:1661;s:4:\"diff\";i:1662;s:4:\"hist\";i:1663;s:4:\"hide\";i:1664;s:4:\"show\";i:1665;s:15:\"minoreditletter\";i:1666;s:13:\"newpageletter\";i:1667;s:13:\"boteditletter\";i:1668;s:17:\"unpatrolledletter\";i:1669;s:43:\"number-of-watching-users-for-recent-changes\";i:1670;s:14:\"rc-change-size\";i:1671;s:18:\"rc-change-size-new\";i:1672;s:17:\"newsectionsummary\";i:1673;s:18:\"rc-enhanced-expand\";i:1674;s:16:\"rc-enhanced-hide\";i:1675;s:12:\"rc-old-title\";i:1676;s:19:\"recentchangeslinked\";i:1677;s:24:\"recentchangeslinked-feed\";i:1678;s:27:\"recentchangeslinked-toolbox\";i:1679;s:25:\"recentchangeslinked-title\";i:1680;s:27:\"recentchangeslinked-summary\";i:1681;s:24:\"recentchangeslinked-page\";i:1682;s:22:\"recentchangeslinked-to\";i:1683;s:36:\"recentchanges-page-added-to-category\";i:1684;s:44:\"recentchanges-page-added-to-category-bundled\";i:1685;s:40:\"recentchanges-page-removed-from-category\";i:1686;s:48:\"recentchanges-page-removed-from-category-bundled\";i:1687;s:19:\"autochange-username\";i:1688;s:6:\"upload\";i:1689;s:9:\"uploadbtn\";i:1690;s:12:\"reuploaddesc\";i:1691;s:15:\"upload-tryagain\";i:1692;s:23:\"upload-tryagain-nostash\";i:1693;s:13:\"uploadnologin\";i:1694;s:17:\"uploadnologintext\";i:1695;s:24:\"upload_directory_missing\";i:1696;s:26:\"upload_directory_read_only\";i:1697;s:11:\"uploaderror\";i:1698;s:14:\"upload-summary\";i:1699;s:23:\"upload-recreate-warning\";i:1700;s:10:\"uploadtext\";i:1701;s:16:\"upload-permitted\";i:1702;s:16:\"upload-preferred\";i:1703;s:17:\"upload-prohibited\";i:1704;s:12:\"uploadfooter\";i:1705;s:26:\"upload-default-description\";i:1706;s:13:\"uploadlogpage\";i:1707;s:17:\"uploadlogpagetext\";i:1708;s:8:\"filename\";i:1709;s:8:\"filedesc\";i:1710;s:17:\"fileuploadsummary\";i:1711;s:19:\"filereuploadsummary\";i:1712;s:10:\"filestatus\";i:1713;s:10:\"filesource\";i:1714;s:13:\"ignorewarning\";i:1715;s:14:\"ignorewarnings\";i:1716;s:10:\"minlength1\";i:1717;s:15:\"illegalfilename\";i:1718;s:16:\"filename-toolong\";i:1719;s:11:\"badfilename\";i:1720;s:22:\"filetype-mime-mismatch\";i:1721;s:16:\"filetype-badmime\";i:1722;s:20:\"filetype-bad-ie-mime\";i:1723;s:22:\"filetype-unwanted-type\";i:1724;s:20:\"filetype-banned-type\";i:1725;s:16:\"filetype-missing\";i:1726;s:10:\"empty-file\";i:1727;s:14:\"file-too-large\";i:1728;s:17:\"filename-tooshort\";i:1729;s:15:\"filetype-banned\";i:1730;s:18:\"verification-error\";i:1731;s:11:\"hookaborted\";i:1732;s:16:\"illegal-filename\";i:1733;s:9:\"overwrite\";i:1734;s:13:\"unknown-error\";i:1735;s:16:\"tmp-create-error\";i:1736;s:15:\"tmp-write-error\";i:1737;s:10:\"large-file\";i:1738;s:15:\"largefileserver\";i:1739;s:9:\"emptyfile\";i:1740;s:25:\"windows-nonascii-filename\";i:1741;s:10:\"fileexists\";i:1742;s:14:\"filepageexists\";i:1743;s:20:\"fileexists-extension\";i:1744;s:24:\"fileexists-thumbnail-yes\";i:1745;s:17:\"file-thumbnail-no\";i:1746;s:20:\"fileexists-forbidden\";i:1747;s:27:\"fileexists-shared-forbidden\";i:1748;s:20:\"fileexists-no-change\";i:1749;s:28:\"fileexists-duplicate-version\";i:1750;s:21:\"file-exists-duplicate\";i:1751;s:22:\"file-deleted-duplicate\";i:1752;s:30:\"file-deleted-duplicate-notitle\";i:1753;s:13:\"uploadwarning\";i:1754;s:18:\"uploadwarning-text\";i:1755;s:26:\"uploadwarning-text-nostash\";i:1756;s:8:\"savefile\";i:1757;s:13:\"uploadedimage\";i:1758;s:14:\"overwroteimage\";i:1759;s:14:\"uploaddisabled\";i:1760;s:18:\"copyuploaddisabled\";i:1761;s:18:\"uploaddisabledtext\";i:1762;s:22:\"php-uploaddisabledtext\";i:1763;s:14:\"uploadscripted\";i:1764;s:27:\"upload-scripted-pi-callback\";i:1765;s:19:\"upload-scripted-dtd\";i:1766;s:19:\"uploaded-script-svg\";i:1767;s:20:\"uploaded-hostile-svg\";i:1768;s:29:\"uploaded-event-handler-on-svg\";i:1769;s:27:\"uploaded-href-attribute-svg\";i:1770;s:31:\"uploaded-href-unsafe-target-svg\";i:1771;s:20:\"uploaded-animate-svg\";i:1772;s:34:\"uploaded-setting-event-handler-svg\";i:1773;s:25:\"uploaded-setting-href-svg\";i:1774;s:26:\"uploaded-wrong-setting-svg\";i:1775;s:28:\"uploaded-setting-handler-svg\";i:1776;s:23:\"uploaded-remote-url-svg\";i:1777;s:25:\"uploaded-image-filter-svg\";i:1778;s:23:\"uploadscriptednamespace\";i:1779;s:16:\"uploadinvalidxml\";i:1780;s:11:\"uploadvirus\";i:1781;s:10:\"uploadjava\";i:1782;s:13:\"upload-source\";i:1783;s:14:\"sourcefilename\";i:1784;s:9:\"sourceurl\";i:1785;s:12:\"destfilename\";i:1786;s:18:\"upload-maxfilesize\";i:1787;s:18:\"upload-description\";i:1788;s:14:\"upload-options\";i:1789;s:15:\"watchthisupload\";i:1790;s:14:\"filewasdeleted\";i:1791;s:19:\"filename-thumb-name\";i:1792;s:19:\"filename-bad-prefix\";i:1793;s:25:\"filename-prefix-blacklist\";i:1794;s:18:\"upload-proto-error\";i:1795;s:23:\"upload-proto-error-text\";i:1796;s:17:\"upload-file-error\";i:1797;s:22:\"upload-file-error-text\";i:1798;s:17:\"upload-misc-error\";i:1799;s:22:\"upload-misc-error-text\";i:1800;s:25:\"upload-too-many-redirects\";i:1801;s:17:\"upload-http-error\";i:1802;s:33:\"upload-copy-upload-invalid-domain\";i:1803;s:26:\"upload-foreign-cant-upload\";i:1804;s:31:\"upload-foreign-cant-load-config\";i:1805;s:22:\"upload-dialog-disabled\";i:1806;s:19:\"upload-dialog-title\";i:1807;s:27:\"upload-dialog-button-cancel\";i:1808;s:25:\"upload-dialog-button-back\";i:1809;s:25:\"upload-dialog-button-done\";i:1810;s:25:\"upload-dialog-button-save\";i:1811;s:27:\"upload-dialog-button-upload\";i:1812;s:32:\"upload-form-label-infoform-title\";i:1813;s:31:\"upload-form-label-infoform-name\";i:1814;s:39:\"upload-form-label-infoform-name-tooltip\";i:1815;s:38:\"upload-form-label-infoform-description\";i:1816;s:46:\"upload-form-label-infoform-description-tooltip\";i:1817;s:29:\"upload-form-label-usage-title\";i:1818;s:32:\"upload-form-label-usage-filename\";i:1819;s:26:\"upload-form-label-own-work\";i:1820;s:37:\"upload-form-label-infoform-categories\";i:1821;s:31:\"upload-form-label-infoform-date\";i:1822;s:48:\"upload-form-label-own-work-message-generic-local\";i:1823;s:52:\"upload-form-label-not-own-work-message-generic-local\";i:1824;s:50:\"upload-form-label-not-own-work-local-generic-local\";i:1825;s:50:\"upload-form-label-own-work-message-generic-foreign\";i:1826;s:54:\"upload-form-label-not-own-work-message-generic-foreign\";i:1827;s:52:\"upload-form-label-not-own-work-local-generic-foreign\";i:1828;s:19:\"backend-fail-stream\";i:1829;s:19:\"backend-fail-backup\";i:1830;s:22:\"backend-fail-notexists\";i:1831;s:19:\"backend-fail-hashes\";i:1832;s:18:\"backend-fail-sizes\";i:1833;s:20:\"backend-fail-notsame\";i:1834;s:24:\"backend-fail-invalidpath\";i:1835;s:19:\"backend-fail-delete\";i:1836;s:21:\"backend-fail-describe\";i:1837;s:26:\"backend-fail-alreadyexists\";i:1838;s:18:\"backend-fail-store\";i:1839;s:17:\"backend-fail-copy\";i:1840;s:17:\"backend-fail-move\";i:1841;s:21:\"backend-fail-opentemp\";i:1842;s:22:\"backend-fail-writetemp\";i:1843;s:22:\"backend-fail-closetemp\";i:1844;s:17:\"backend-fail-read\";i:1845;s:19:\"backend-fail-create\";i:1846;s:20:\"backend-fail-maxsize\";i:1847;s:21:\"backend-fail-readonly\";i:1848;s:19:\"backend-fail-synced\";i:1849;s:20:\"backend-fail-connect\";i:1850;s:21:\"backend-fail-internal\";i:1851;s:24:\"backend-fail-contenttype\";i:1852;s:22:\"backend-fail-batchsize\";i:1853;s:19:\"backend-fail-usable\";i:1854;s:17:\"backend-fail-stat\";i:1855;s:17:\"backend-fail-hash\";i:1856;s:21:\"lockmanager-notlocked\";i:1857;s:26:\"lockmanager-fail-closelock\";i:1858;s:27:\"lockmanager-fail-deletelock\";i:1859;s:28:\"lockmanager-fail-acquirelock\";i:1860;s:25:\"lockmanager-fail-openlock\";i:1861;s:28:\"lockmanager-fail-releaselock\";i:1862;s:26:\"lockmanager-fail-db-bucket\";i:1863;s:27:\"lockmanager-fail-db-release\";i:1864;s:28:\"lockmanager-fail-svr-acquire\";i:1865;s:28:\"lockmanager-fail-svr-release\";i:1866;s:25:\"lockmanager-fail-conflict\";i:1867;s:19:\"zip-file-open-error\";i:1868;s:16:\"zip-wrong-format\";i:1869;s:7:\"zip-bad\";i:1870;s:15:\"zip-unsupported\";i:1871;s:11:\"uploadstash\";i:1872;s:19:\"uploadstash-summary\";i:1873;s:17:\"uploadstash-clear\";i:1874;s:19:\"uploadstash-nofiles\";i:1875;s:20:\"uploadstash-badtoken\";i:1876;s:20:\"uploadstash-errclear\";i:1877;s:19:\"uploadstash-refresh\";i:1878;s:21:\"uploadstash-thumbnail\";i:1879;s:21:\"uploadstash-exception\";i:1880;s:20:\"uploadstash-bad-path\";i:1881;s:28:\"uploadstash-bad-path-invalid\";i:1882;s:33:\"uploadstash-bad-path-unknown-type\";i:1883;s:44:\"uploadstash-bad-path-unrecognized-thumb-name\";i:1884;s:31:\"uploadstash-bad-path-no-handler\";i:1885;s:31:\"uploadstash-bad-path-bad-format\";i:1886;s:26:\"uploadstash-file-not-found\";i:1887;s:35:\"uploadstash-file-not-found-no-thumb\";i:1888;s:40:\"uploadstash-file-not-found-no-local-path\";i:1889;s:42:\"uploadstash-file-not-found-no-remote-thumb\";i:1890;s:47:\"uploadstash-file-not-found-missing-content-type\";i:1891;s:37:\"uploadstash-file-not-found-not-exists\";i:1892;s:26:\"uploadstash-file-too-large\";i:1893;s:25:\"uploadstash-not-logged-in\";i:1894;s:23:\"uploadstash-wrong-owner\";i:1895;s:23:\"uploadstash-no-such-key\";i:1896;s:23:\"uploadstash-zero-length\";i:1897;s:20:\"invalid-chunk-offset\";i:1898;s:21:\"img-auth-accessdenied\";i:1899;s:17:\"img-auth-notindir\";i:1900;s:17:\"img-auth-badtitle\";i:1901;s:15:\"img-auth-nofile\";i:1902;s:14:\"img-auth-isdir\";i:1903;s:18:\"img-auth-streaming\";i:1904;s:15:\"img-auth-public\";i:1905;s:15:\"img-auth-noread\";i:1906;s:16:\"http-invalid-url\";i:1907;s:19:\"http-invalid-scheme\";i:1908;s:18:\"http-request-error\";i:1909;s:15:\"http-read-error\";i:1910;s:14:\"http-timed-out\";i:1911;s:15:\"http-curl-error\";i:1912;s:15:\"http-bad-status\";i:1913;s:19:\"http-internal-error\";i:1914;s:18:\"upload-curl-error6\";i:1915;s:23:\"upload-curl-error6-text\";i:1916;s:19:\"upload-curl-error28\";i:1917;s:24:\"upload-curl-error28-text\";i:1918;s:7:\"license\";i:1919;s:14:\"license-header\";i:1920;s:9:\"nolicense\";i:1921;s:8:\"licenses\";i:1922;s:13:\"licenses-edit\";i:1923;s:17:\"license-nopreview\";i:1924;s:17:\"upload_source_url\";i:1925;s:18:\"upload_source_file\";i:1926;s:16:\"listfiles-delete\";i:1927;s:17:\"listfiles-summary\";i:1928;s:26:\"listfiles-userdoesnotexist\";i:1929;s:7:\"imgfile\";i:1930;s:9:\"listfiles\";i:1931;s:17:\"listfiles_subpage\";i:1932;s:15:\"listfiles_thumb\";i:1933;s:14:\"listfiles_date\";i:1934;s:14:\"listfiles_name\";i:1935;s:14:\"listfiles_user\";i:1936;s:14:\"listfiles_size\";i:1937;s:21:\"listfiles_description\";i:1938;s:15:\"listfiles_count\";i:1939;s:18:\"listfiles-show-all\";i:1940;s:23:\"listfiles-latestversion\";i:1941;s:27:\"listfiles-latestversion-yes\";i:1942;s:26:\"listfiles-latestversion-no\";i:1943;s:16:\"file-anchor-link\";i:1944;s:8:\"filehist\";i:1945;s:13:\"filehist-help\";i:1946;s:18:\"filehist-deleteall\";i:1947;s:18:\"filehist-deleteone\";i:1948;s:15:\"filehist-revert\";i:1949;s:16:\"filehist-current\";i:1950;s:17:\"filehist-datetime\";i:1951;s:14:\"filehist-thumb\";i:1952;s:18:\"filehist-thumbtext\";i:1953;s:16:\"filehist-nothumb\";i:1954;s:13:\"filehist-user\";i:1955;s:19:\"filehist-dimensions\";i:1956;s:17:\"filehist-filesize\";i:1957;s:16:\"filehist-comment\";i:1958;s:10:\"imagelinks\";i:1959;s:12:\"linkstoimage\";i:1960;s:17:\"linkstoimage-more\";i:1961;s:14:\"nolinkstoimage\";i:1962;s:16:\"morelinkstoimage\";i:1963;s:21:\"linkstoimage-redirect\";i:1964;s:16:\"duplicatesoffile\";i:1965;s:12:\"sharedupload\";i:1966;s:23:\"sharedupload-desc-there\";i:1967;s:22:\"sharedupload-desc-here\";i:1968;s:22:\"sharedupload-desc-edit\";i:1969;s:24:\"sharedupload-desc-create\";i:1970;s:24:\"shareddescriptionfollows\";i:1971;s:15:\"filepage-nofile\";i:1972;s:20:\"filepage-nofile-link\";i:1973;s:25:\"uploadnewversion-linktext\";i:1974;s:16:\"shared-repo-from\";i:1975;s:11:\"shared-repo\";i:1976;s:33:\"shared-repo-name-wikimediacommons\";i:1977;s:12:\"filepage.css\";i:1978;s:22:\"upload-disallowed-here\";i:1979;s:10:\"filerevert\";i:1980;s:17:\"filerevert-legend\";i:1981;s:16:\"filerevert-intro\";i:1982;s:18:\"filerevert-comment\";i:1983;s:25:\"filerevert-defaultcomment\";i:1984;s:17:\"filerevert-submit\";i:1985;s:18:\"filerevert-success\";i:1986;s:21:\"filerevert-badversion\";i:1987;s:20:\"filerevert-identical\";i:1988;s:10:\"filedelete\";i:1989;s:17:\"filedelete-legend\";i:1990;s:16:\"filedelete-intro\";i:1991;s:20:\"filedelete-intro-old\";i:1992;s:18:\"filedelete-comment\";i:1993;s:17:\"filedelete-submit\";i:1994;s:18:\"filedelete-success\";i:1995;s:22:\"filedelete-success-old\";i:1996;s:17:\"filedelete-nofile\";i:1997;s:21:\"filedelete-nofile-old\";i:1998;s:22:\"filedelete-otherreason\";i:1999;s:27:\"filedelete-reason-otherlist\";i:2000;s:26:\"filedelete-reason-dropdown\";i:2001;s:35:\"filedelete-reason-dropdown-suppress\";i:2002;s:26:\"filedelete-edit-reasonlist\";i:2003;s:35:\"filedelete-edit-reasonlist-suppress\";i:2004;s:22:\"filedelete-maintenance\";i:2005;s:28:\"filedelete-maintenance-title\";i:2006;s:10:\"mimesearch\";i:2007;s:18:\"mimesearch-summary\";i:2008;s:8:\"mimetype\";i:2009;s:8:\"download\";i:2010;s:14:\"unwatchedpages\";i:2011;s:22:\"unwatchedpages-summary\";i:2012;s:13:\"listredirects\";i:2013;s:21:\"listredirects-summary\";i:2014;s:19:\"listduplicatedfiles\";i:2015;s:27:\"listduplicatedfiles-summary\";i:2016;s:25:\"listduplicatedfiles-entry\";i:2017;s:15:\"unusedtemplates\";i:2018;s:23:\"unusedtemplates-summary\";i:2019;s:19:\"unusedtemplatestext\";i:2020;s:18:\"unusedtemplateswlh\";i:2021;s:10:\"randompage\";i:2022;s:18:\"randompage-nopages\";i:2023;s:14:\"randompage-url\";i:2024;s:16:\"randomincategory\";i:2025;s:32:\"randomincategory-invalidcategory\";i:2026;s:24:\"randomincategory-nopages\";i:2027;s:25:\"randomincategory-category\";i:2028;s:23:\"randomincategory-legend\";i:2029;s:23:\"randomincategory-submit\";i:2030;s:14:\"randomredirect\";i:2031;s:22:\"randomredirect-nopages\";i:2032;s:10:\"statistics\";i:2033;s:18:\"statistics-summary\";i:2034;s:23:\"statistics-header-pages\";i:2035;s:23:\"statistics-header-edits\";i:2036;s:23:\"statistics-header-users\";i:2037;s:23:\"statistics-header-hooks\";i:2038;s:19:\"statistics-articles\";i:2039;s:24:\"statistics-articles-desc\";i:2040;s:16:\"statistics-pages\";i:2041;s:21:\"statistics-pages-desc\";i:2042;s:16:\"statistics-files\";i:2043;s:21:\"statistics-files-desc\";i:2044;s:16:\"statistics-edits\";i:2045;s:24:\"statistics-edits-average\";i:2046;s:16:\"statistics-users\";i:2047;s:23:\"statistics-users-active\";i:2048;s:28:\"statistics-users-active-desc\";i:2049;s:17:\"statistics-footer\";i:2050;s:13:\"pageswithprop\";i:2051;s:21:\"pageswithprop-summary\";i:2052;s:20:\"pageswithprop-legend\";i:2053;s:18:\"pageswithprop-text\";i:2054;s:18:\"pageswithprop-prop\";i:2055;s:21:\"pageswithprop-reverse\";i:2056;s:25:\"pageswithprop-sortbyvalue\";i:2057;s:20:\"pageswithprop-submit\";i:2058;s:29:\"pageswithprop-prophidden-long\";i:2059;s:31:\"pageswithprop-prophidden-binary\";i:2060;s:15:\"doubleredirects\";i:2061;s:23:\"doubleredirects-summary\";i:2062;s:19:\"doubleredirectstext\";i:2063;s:26:\"double-redirect-fixed-move\";i:2064;s:33:\"double-redirect-fixed-maintenance\";i:2065;s:21:\"double-redirect-fixer\";i:2066;s:15:\"brokenredirects\";i:2067;s:23:\"brokenredirects-summary\";i:2068;s:19:\"brokenredirectstext\";i:2069;s:20:\"brokenredirects-edit\";i:2070;s:22:\"brokenredirects-delete\";i:2071;s:29:\"brokenredirects-delete-reason\";i:2072;s:16:\"withoutinterwiki\";i:2073;s:24:\"withoutinterwiki-summary\";i:2074;s:23:\"withoutinterwiki-legend\";i:2075;s:23:\"withoutinterwiki-submit\";i:2076;s:15:\"fewestrevisions\";i:2077;s:23:\"fewestrevisions-summary\";i:2078;s:6:\"nbytes\";i:2079;s:11:\"ncategories\";i:2080;s:11:\"ninterwikis\";i:2081;s:6:\"nlinks\";i:2082;s:8:\"nmembers\";i:2083;s:15:\"nmemberschanged\";i:2084;s:10:\"nrevisions\";i:2085;s:11:\"nimagelinks\";i:2086;s:14:\"ntransclusions\";i:2087;s:17:\"specialpage-empty\";i:2088;s:11:\"lonelypages\";i:2089;s:19:\"lonelypages-summary\";i:2090;s:15:\"lonelypagestext\";i:2091;s:18:\"uncategorizedpages\";i:2092;s:26:\"uncategorizedpages-summary\";i:2093;s:23:\"uncategorizedcategories\";i:2094;s:31:\"uncategorizedcategories-summary\";i:2095;s:19:\"uncategorizedimages\";i:2096;s:27:\"uncategorizedimages-summary\";i:2097;s:22:\"uncategorizedtemplates\";i:2098;s:30:\"uncategorizedtemplates-summary\";i:2099;s:38:\"uncategorized-categories-exceptionlist\";i:2100;s:16:\"unusedcategories\";i:2101;s:24:\"unusedcategories-summary\";i:2102;s:12:\"unusedimages\";i:2103;s:20:\"unusedimages-summary\";i:2104;s:16:\"wantedcategories\";i:2105;s:24:\"wantedcategories-summary\";i:2106;s:11:\"wantedpages\";i:2107;s:19:\"wantedpages-summary\";i:2108;s:20:\"wantedpages-badtitle\";i:2109;s:11:\"wantedfiles\";i:2110;s:19:\"wantedfiles-summary\";i:2111;s:18:\"wantedfiletext-cat\";i:2112;s:28:\"wantedfiletext-cat-noforeign\";i:2113;s:20:\"wantedfiletext-nocat\";i:2114;s:30:\"wantedfiletext-nocat-noforeign\";i:2115;s:15:\"wantedtemplates\";i:2116;s:23:\"wantedtemplates-summary\";i:2117;s:10:\"mostlinked\";i:2118;s:18:\"mostlinked-summary\";i:2119;s:20:\"mostlinkedcategories\";i:2120;s:28:\"mostlinkedcategories-summary\";i:2121;s:19:\"mostlinkedtemplates\";i:2122;s:27:\"mostlinkedtemplates-summary\";i:2123;s:14:\"mostcategories\";i:2124;s:22:\"mostcategories-summary\";i:2125;s:10:\"mostimages\";i:2126;s:18:\"mostimages-summary\";i:2127;s:14:\"mostinterwikis\";i:2128;s:22:\"mostinterwikis-summary\";i:2129;s:13:\"mostrevisions\";i:2130;s:21:\"mostrevisions-summary\";i:2131;s:11:\"prefixindex\";i:2132;s:21:\"prefixindex-namespace\";i:2133;s:19:\"prefixindex-summary\";i:2134;s:18:\"prefixindex-submit\";i:2135;s:17:\"prefixindex-strip\";i:2136;s:10:\"shortpages\";i:2137;s:18:\"shortpages-summary\";i:2138;s:9:\"longpages\";i:2139;s:17:\"longpages-summary\";i:2140;s:12:\"deadendpages\";i:2141;s:20:\"deadendpages-summary\";i:2142;s:16:\"deadendpagestext\";i:2143;s:14:\"protectedpages\";i:2144;s:22:\"protectedpages-filters\";i:2145;s:20:\"protectedpages-indef\";i:2146;s:22:\"protectedpages-summary\";i:2147;s:22:\"protectedpages-cascade\";i:2148;s:25:\"protectedpages-noredirect\";i:2149;s:19:\"protectedpagesempty\";i:2150;s:24:\"protectedpages-timestamp\";i:2151;s:19:\"protectedpages-page\";i:2152;s:21:\"protectedpages-expiry\";i:2153;s:24:\"protectedpages-performer\";i:2154;s:21:\"protectedpages-params\";i:2155;s:21:\"protectedpages-reason\";i:2156;s:21:\"protectedpages-submit\";i:2157;s:32:\"protectedpages-unknown-timestamp\";i:2158;s:32:\"protectedpages-unknown-performer\";i:2159;s:29:\"protectedpages-unknown-reason\";i:2160;s:15:\"protectedtitles\";i:2161;s:23:\"protectedtitles-summary\";i:2162;s:20:\"protectedtitlesempty\";i:2163;s:22:\"protectedtitles-submit\";i:2164;s:9:\"listusers\";i:2165;s:17:\"listusers-summary\";i:2166;s:19:\"listusers-editsonly\";i:2167;s:29:\"listusers-temporarygroupsonly\";i:2168;s:22:\"listusers-creationsort\";i:2169;s:14:\"listusers-desc\";i:2170;s:13:\"usereditcount\";i:2171;s:11:\"usercreated\";i:2172;s:8:\"newpages\";i:2173;s:16:\"newpages-summary\";i:2174;s:15:\"newpages-submit\";i:2175;s:17:\"newpages-username\";i:2176;s:12:\"ancientpages\";i:2177;s:20:\"ancientpages-summary\";i:2178;s:4:\"move\";i:2179;s:12:\"movethispage\";i:2180;s:16:\"unusedimagestext\";i:2181;s:37:\"unusedimagestext-categorizedimgisused\";i:2182;s:20:\"unusedcategoriestext\";i:2183;s:13:\"notargettitle\";i:2184;s:12:\"notargettext\";i:2185;s:11:\"nopagetitle\";i:2186;s:10:\"nopagetext\";i:2187;s:13:\"pager-newer-n\";i:2188;s:13:\"pager-older-n\";i:2189;s:8:\"suppress\";i:2190;s:18:\"querypage-disabled\";i:2191;s:7:\"apihelp\";i:2192;s:15:\"apihelp-summary\";i:2193;s:22:\"apihelp-no-such-module\";i:2194;s:12:\"apihelp-link\";i:2195;s:10:\"apisandbox\";i:2196;s:18:\"apisandbox-summary\";i:2197;s:17:\"apisandbox-jsonly\";i:2198;s:16:\"apisandbox-intro\";i:2199;s:17:\"apisandbox-submit\";i:2200;s:16:\"apisandbox-reset\";i:2201;s:16:\"apisandbox-retry\";i:2202;s:18:\"apisandbox-loading\";i:2203;s:21:\"apisandbox-load-error\";i:2204;s:24:\"apisandbox-no-parameters\";i:2205;s:19:\"apisandbox-helpurls\";i:2206;s:19:\"apisandbox-examples\";i:2207;s:29:\"apisandbox-dynamic-parameters\";i:2208;s:39:\"apisandbox-dynamic-parameters-add-label\";i:2209;s:45:\"apisandbox-dynamic-parameters-add-placeholder\";i:2210;s:31:\"apisandbox-dynamic-error-exists\";i:2211;s:37:\"apisandbox-templated-parameter-reason\";i:2212;s:32:\"apisandbox-deprecated-parameters\";i:2213;s:22:\"apisandbox-fetch-token\";i:2214;s:20:\"apisandbox-add-multi\";i:2215;s:38:\"apisandbox-submit-invalid-fields-title\";i:2216;s:40:\"apisandbox-submit-invalid-fields-message\";i:2217;s:18:\"apisandbox-results\";i:2218;s:26:\"apisandbox-sending-request\";i:2219;s:26:\"apisandbox-loading-results\";i:2220;s:24:\"apisandbox-results-error\";i:2221;s:35:\"apisandbox-results-login-suppressed\";i:2222;s:37:\"apisandbox-request-selectformat-label\";i:2223;s:35:\"apisandbox-request-format-url-label\";i:2224;s:28:\"apisandbox-request-url-label\";i:2225;s:36:\"apisandbox-request-format-json-label\";i:2226;s:29:\"apisandbox-request-json-label\";i:2227;s:35:\"apisandbox-request-format-php-label\";i:2228;s:28:\"apisandbox-request-php-label\";i:2229;s:23:\"apisandbox-request-time\";i:2230;s:27:\"apisandbox-results-fixtoken\";i:2231;s:32:\"apisandbox-results-fixtoken-fail\";i:2232;s:21:\"apisandbox-alert-page\";i:2233;s:22:\"apisandbox-alert-field\";i:2234;s:19:\"apisandbox-continue\";i:2235;s:25:\"apisandbox-continue-clear\";i:2236;s:24:\"apisandbox-continue-help\";i:2237;s:22:\"apisandbox-param-limit\";i:2238;s:36:\"apisandbox-multivalue-all-namespaces\";i:2239;s:32:\"apisandbox-multivalue-all-values\";i:2240;s:11:\"booksources\";i:2241;s:19:\"booksources-summary\";i:2242;s:25:\"booksources-search-legend\";i:2243;s:16:\"booksources-isbn\";i:2244;s:18:\"booksources-search\";i:2245;s:16:\"booksources-text\";i:2246;s:24:\"booksources-invalid-isbn\";i:2247;s:22:\"magiclink-tracking-rfc\";i:2248;s:27:\"magiclink-tracking-rfc-desc\";i:2249;s:23:\"magiclink-tracking-pmid\";i:2250;s:28:\"magiclink-tracking-pmid-desc\";i:2251;s:23:\"magiclink-tracking-isbn\";i:2252;s:28:\"magiclink-tracking-isbn-desc\";i:2253;s:6:\"rfcurl\";i:2254;s:9:\"pubmedurl\";i:2255;s:19:\"specialloguserlabel\";i:2256;s:20:\"speciallogtitlelabel\";i:2257;s:3:\"log\";i:2258;s:20:\"logeventslist-submit\";i:2259;s:26:\"logeventslist-more-filters\";i:2260;s:24:\"logeventslist-patrol-log\";i:2261;s:21:\"logeventslist-tag-log\";i:2262;s:26:\"logeventslist-newusers-log\";i:2263;s:13:\"all-logs-page\";i:2264;s:11:\"alllogstext\";i:2265;s:8:\"logempty\";i:2266;s:18:\"log-title-wildcard\";i:2267;s:26:\"showhideselectedlogentries\";i:2268;s:13:\"log-edit-tags\";i:2269;s:15:\"checkbox-select\";i:2270;s:12:\"checkbox-all\";i:2271;s:13:\"checkbox-none\";i:2272;s:15:\"checkbox-invert\";i:2273;s:8:\"allpages\";i:2274;s:16:\"allpages-summary\";i:2275;s:8:\"nextpage\";i:2276;s:8:\"prevpage\";i:2277;s:12:\"allpagesfrom\";i:2278;s:10:\"allpagesto\";i:2279;s:11:\"allarticles\";i:2280;s:14:\"allinnamespace\";i:2281;s:14:\"allpagessubmit\";i:2282;s:14:\"allpagesprefix\";i:2283;s:16:\"allpagesbadtitle\";i:2284;s:15:\"allpages-bad-ns\";i:2285;s:23:\"allpages-hide-redirects\";i:2286;s:32:\"cachedspecial-viewing-cached-ttl\";i:2287;s:31:\"cachedspecial-viewing-cached-ts\";i:2288;s:25:\"cachedspecial-refresh-now\";i:2289;s:10:\"categories\";i:2290;s:18:\"categories-summary\";i:2291;s:17:\"categories-submit\";i:2292;s:18:\"categoriespagetext\";i:2293;s:14:\"categoriesfrom\";i:2294;s:20:\"deletedcontributions\";i:2295;s:28:\"deletedcontributions-summary\";i:2296;s:26:\"deletedcontributions-title\";i:2297;s:32:\"sp-deletedcontributions-contribs\";i:2298;s:10:\"linksearch\";i:2299;s:18:\"linksearch-summary\";i:2300;s:14:\"linksearch-pat\";i:2301;s:13:\"linksearch-ns\";i:2302;s:13:\"linksearch-ok\";i:2303;s:15:\"linksearch-text\";i:2304;s:15:\"linksearch-line\";i:2305;s:16:\"linksearch-error\";i:2306;s:13:\"listusersfrom\";i:2307;s:16:\"listusers-submit\";i:2308;s:18:\"listusers-noresult\";i:2309;s:17:\"listusers-blocked\";i:2310;s:11:\"activeusers\";i:2311;s:19:\"activeusers-summary\";i:2312;s:17:\"activeusers-intro\";i:2313;s:17:\"activeusers-count\";i:2314;s:16:\"activeusers-from\";i:2315;s:18:\"activeusers-groups\";i:2316;s:25:\"activeusers-excludegroups\";i:2317;s:20:\"activeusers-noresult\";i:2318;s:18:\"activeusers-submit\";i:2319;s:15:\"listgrouprights\";i:2320;s:23:\"listgrouprights-summary\";i:2321;s:19:\"listgrouprights-key\";i:2322;s:21:\"listgrouprights-group\";i:2323;s:22:\"listgrouprights-rights\";i:2324;s:24:\"listgrouprights-helppage\";i:2325;s:23:\"listgrouprights-members\";i:2326;s:29:\"listgrouprights-right-display\";i:2327;s:29:\"listgrouprights-right-revoked\";i:2328;s:24:\"listgrouprights-addgroup\";i:2329;s:27:\"listgrouprights-removegroup\";i:2330;s:28:\"listgrouprights-addgroup-all\";i:2331;s:31:\"listgrouprights-removegroup-all\";i:2332;s:29:\"listgrouprights-addgroup-self\";i:2333;s:32:\"listgrouprights-removegroup-self\";i:2334;s:33:\"listgrouprights-addgroup-self-all\";i:2335;s:36:\"listgrouprights-removegroup-self-all\";i:2336;s:42:\"listgrouprights-namespaceprotection-header\";i:2337;s:45:\"listgrouprights-namespaceprotection-namespace\";i:2338;s:48:\"listgrouprights-namespaceprotection-restrictedto\";i:2339;s:10:\"listgrants\";i:2340;s:18:\"listgrants-summary\";i:2341;s:16:\"listgrants-grant\";i:2342;s:17:\"listgrants-rights\";i:2343;s:24:\"listgrants-grant-display\";i:2344;s:18:\"trackingcategories\";i:2345;s:26:\"trackingcategories-summary\";i:2346;s:22:\"trackingcategories-msg\";i:2347;s:23:\"trackingcategories-name\";i:2348;s:23:\"trackingcategories-desc\";i:2349;s:31:\"restricted-displaytitle-ignored\";i:2350;s:36:\"restricted-displaytitle-ignored-desc\";i:2351;s:20:\"nonnumeric-formatnum\";i:2352;s:25:\"nonnumeric-formatnum-desc\";i:2353;s:21:\"noindex-category-desc\";i:2354;s:19:\"index-category-desc\";i:2355;s:44:\"post-expand-template-inclusion-category-desc\";i:2356;s:43:\"post-expand-template-argument-category-desc\";i:2357;s:38:\"expensive-parserfunction-category-desc\";i:2358;s:25:\"broken-file-category-desc\";i:2359;s:29:\"hidden-category-category-desc\";i:2360;s:25:\"trackingcategories-nodesc\";i:2361;s:27:\"trackingcategories-disabled\";i:2362;s:11:\"mailnologin\";i:2363;s:15:\"mailnologintext\";i:2364;s:9:\"emailuser\";i:2365;s:22:\"emailuser-title-target\";i:2366;s:24:\"emailuser-title-notarget\";i:2367;s:17:\"emailuser-summary\";i:2368;s:13:\"emailpagetext\";i:2369;s:15:\"defemailsubject\";i:2370;s:16:\"usermaildisabled\";i:2371;s:20:\"usermaildisabledtext\";i:2372;s:12:\"noemailtitle\";i:2373;s:11:\"noemailtext\";i:2374;s:15:\"nowikiemailtext\";i:2375;s:13:\"emailnotarget\";i:2376;s:11:\"emailtarget\";i:2377;s:13:\"emailusername\";i:2378;s:19:\"emailusernamesubmit\";i:2379;s:12:\"email-legend\";i:2380;s:9:\"emailfrom\";i:2381;s:7:\"emailto\";i:2382;s:12:\"emailsubject\";i:2383;s:12:\"emailmessage\";i:2384;s:9:\"emailsend\";i:2385;s:9:\"emailccme\";i:2386;s:14:\"emailccsubject\";i:2387;s:9:\"emailsent\";i:2388;s:13:\"emailsenttext\";i:2389;s:15:\"emailuserfooter\";i:2390;s:19:\"usermessage-summary\";i:2391;s:18:\"usermessage-editor\";i:2392;s:20:\"usermessage-template\";i:2393;s:9:\"watchlist\";i:2394;s:17:\"watchlist-summary\";i:2395;s:11:\"mywatchlist\";i:2396;s:13:\"watchlistfor2\";i:2397;s:11:\"nowatchlist\";i:2398;s:17:\"watchlistanontext\";i:2399;s:12:\"watchnologin\";i:2400;s:21:\"watchlistnotwatchable\";i:2401;s:8:\"addwatch\";i:2402;s:15:\"updatewatchlist\";i:2403;s:14:\"addedwatchtext\";i:2404;s:19:\"addedwatchtext-talk\";i:2405;s:20:\"addedwatchtext-short\";i:2406;s:30:\"addedwatchexpiry-options-label\";i:2407;s:21:\"addedwatchexpiryhours\";i:2408;s:26:\"addedwatchexpiryhours-talk\";i:2409;s:20:\"addedwatchexpirytext\";i:2410;s:25:\"addedwatchexpirytext-talk\";i:2411;s:26:\"addedwatchindefinitelytext\";i:2412;s:31:\"addedwatchindefinitelytext-talk\";i:2413;s:11:\"removewatch\";i:2414;s:16:\"removedwatchtext\";i:2415;s:21:\"removedwatchtext-talk\";i:2416;s:22:\"removedwatchtext-short\";i:2417;s:5:\"watch\";i:2418;s:13:\"watchthispage\";i:2419;s:7:\"unwatch\";i:2420;s:15:\"unwatchthispage\";i:2421;s:12:\"notanarticle\";i:2422;s:13:\"notvisiblerev\";i:2423;s:17:\"watchlist-details\";i:2424;s:26:\"watchlist-expiry-days-left\";i:2425;s:33:\"watchlist-expiring-days-full-text\";i:2426;s:27:\"watchlist-expiry-hours-left\";i:2427;s:34:\"watchlist-expiring-hours-full-text\";i:2428;s:15:\"wlheader-enotif\";i:2429;s:20:\"wlheader-showupdated\";i:2430;s:6:\"wlnote\";i:2431;s:14:\"watchlist-hide\";i:2432;s:16:\"watchlist-submit\";i:2433;s:10:\"wlshowtime\";i:2434;s:15:\"wlshowhideminor\";i:2435;s:14:\"wlshowhidebots\";i:2436;s:13:\"wlshowhideliu\";i:2437;s:15:\"wlshowhideanons\";i:2438;s:14:\"wlshowhidepatr\";i:2439;s:14:\"wlshowhidemine\";i:2440;s:24:\"wlshowhidecategorization\";i:2441;s:17:\"watchlist-options\";i:2442;s:8:\"watching\";i:2443;s:10:\"unwatching\";i:2444;s:17:\"watchlist-unwatch\";i:2445;s:22:\"watchlist-unwatch-undo\";i:2446;s:12:\"enotif_reset\";i:2447;s:28:\"enotif_impersonal_salutation\";i:2448;s:22:\"enotif_subject_deleted\";i:2449;s:22:\"enotif_subject_created\";i:2450;s:20:\"enotif_subject_moved\";i:2451;s:23:\"enotif_subject_restored\";i:2452;s:22:\"enotif_subject_changed\";i:2453;s:25:\"enotif_body_intro_deleted\";i:2454;s:25:\"enotif_body_intro_created\";i:2455;s:23:\"enotif_body_intro_moved\";i:2456;s:26:\"enotif_body_intro_restored\";i:2457;s:25:\"enotif_body_intro_changed\";i:2458;s:18:\"enotif_lastvisited\";i:2459;s:15:\"enotif_lastdiff\";i:2460;s:18:\"enotif_anon_editor\";i:2461;s:11:\"enotif_body\";i:2462;s:16:\"enotif_minoredit\";i:2463;s:7:\"created\";i:2464;s:7:\"changed\";i:2465;s:17:\"deletepage-submit\";i:2466;s:7:\"confirm\";i:2467;s:9:\"excontent\";i:2468;s:15:\"excontentauthor\";i:2469;s:13:\"exbeforeblank\";i:2470;s:14:\"delete-confirm\";i:2471;s:13:\"delete-legend\";i:2472;s:26:\"delete-talk-summary-prefix\";i:2473;s:14:\"historywarning\";i:2474;s:20:\"historyaction-submit\";i:2475;s:17:\"confirmdeletetext\";i:2476;s:14:\"actioncomplete\";i:2477;s:12:\"actionfailed\";i:2478;s:11:\"deletedtext\";i:2479;s:10:\"dellogpage\";i:2480;s:14:\"dellogpagetext\";i:2481;s:11:\"deletionlog\";i:2482;s:15:\"log-name-create\";i:2483;s:22:\"log-description-create\";i:2484;s:22:\"logentry-create-create\";i:2485;s:8:\"reverted\";i:2486;s:13:\"deletecomment\";i:2487;s:17:\"deleteotherreason\";i:2488;s:21:\"deletereasonotherlist\";i:2489;s:21:\"deletereason-dropdown\";i:2490;s:30:\"deletereason-dropdown-suppress\";i:2491;s:22:\"delete-edit-reasonlist\";i:2492;s:31:\"delete-edit-reasonlist-suppress\";i:2493;s:13:\"delete-toobig\";i:2494;s:23:\"delete-toomanyrevisions\";i:2495;s:21:\"delete-warning-toobig\";i:2496;s:35:\"delete-error-associated-alreadytalk\";i:2497;s:36:\"delete-error-associated-doesnotexist\";i:2498;s:15:\"deleteprotected\";i:2499;s:26:\"deleting-backlinks-warning\";i:2500;s:25:\"deleting-subpages-warning\";i:2501;s:8:\"rollback\";i:2502;s:29:\"rollback-confirmation-confirm\";i:2503;s:25:\"rollback-confirmation-yes\";i:2504;s:24:\"rollback-confirmation-no\";i:2505;s:12:\"rollbacklink\";i:2506;s:17:\"rollbacklinkcount\";i:2507;s:26:\"rollbacklinkcount-morethan\";i:2508;s:14:\"rollbackfailed\";i:2509;s:21:\"rollback-missingparam\";i:2510;s:24:\"rollback-missingrevision\";i:2511;s:12:\"cantrollback\";i:2512;s:13:\"alreadyrolled\";i:2513;s:11:\"editcomment\";i:2514;s:10:\"revertpage\";i:2515;s:15:\"revertpage-anon\";i:2516;s:17:\"revertpage-nouser\";i:2517;s:16:\"rollback-success\";i:2518;s:20:\"sessionfailure-title\";i:2519;s:14:\"sessionfailure\";i:2520;s:18:\"changecontentmodel\";i:2521;s:25:\"changecontentmodel-legend\";i:2522;s:30:\"changecontentmodel-title-label\";i:2523;s:32:\"changecontentmodel-current-label\";i:2524;s:30:\"changecontentmodel-model-label\";i:2525;s:31:\"changecontentmodel-reason-label\";i:2526;s:25:\"changecontentmodel-submit\";i:2527;s:32:\"changecontentmodel-success-title\";i:2528;s:31:\"changecontentmodel-success-text\";i:2529;s:33:\"changecontentmodel-cannot-convert\";i:2530;s:34:\"changecontentmodel-nodirectediting\";i:2531;s:36:\"changecontentmodel-emptymodels-title\";i:2532;s:35:\"changecontentmodel-emptymodels-text\";i:2533;s:21:\"log-name-contentmodel\";i:2534;s:28:\"log-description-contentmodel\";i:2535;s:25:\"logentry-contentmodel-new\";i:2536;s:28:\"logentry-contentmodel-change\";i:2537;s:39:\"logentry-contentmodel-change-revertlink\";i:2538;s:35:\"logentry-contentmodel-change-revert\";i:2539;s:14:\"protectlogpage\";i:2540;s:14:\"protectlogtext\";i:2541;s:16:\"protectedarticle\";i:2542;s:25:\"modifiedarticleprotection\";i:2543;s:18:\"unprotectedarticle\";i:2544;s:22:\"movedarticleprotection\";i:2545;s:24:\"protectedarticle-comment\";i:2546;s:33:\"modifiedarticleprotection-comment\";i:2547;s:26:\"unprotectedarticle-comment\";i:2548;s:13:\"protect-title\";i:2549;s:24:\"protect-title-notallowed\";i:2550;s:14:\"prot_1movedto2\";i:2551;s:26:\"protect-badnamespace-title\";i:2552;s:25:\"protect-badnamespace-text\";i:2553;s:31:\"protect-norestrictiontypes-text\";i:2554;s:32:\"protect-norestrictiontypes-title\";i:2555;s:14:\"protect-legend\";i:2556;s:14:\"protectcomment\";i:2557;s:13:\"protectexpiry\";i:2558;s:22:\"protect_expiry_invalid\";i:2559;s:18:\"protect_expiry_old\";i:2560;s:27:\"protect-unchain-permissions\";i:2561;s:12:\"protect-text\";i:2562;s:22:\"protect-locked-blocked\";i:2563;s:21:\"protect-locked-dblock\";i:2564;s:21:\"protect-locked-access\";i:2565;s:17:\"protect-cascadeon\";i:2566;s:15:\"protect-default\";i:2567;s:16:\"protect-fallback\";i:2568;s:27:\"protect-level-autoconfirmed\";i:2569;s:19:\"protect-level-sysop\";i:2570;s:20:\"protect-summary-desc\";i:2571;s:23:\"protect-summary-cascade\";i:2572;s:16:\"protect-expiring\";i:2573;s:22:\"protect-expiring-local\";i:2574;s:25:\"protect-expiry-indefinite\";i:2575;s:15:\"protect-cascade\";i:2576;s:16:\"protect-cantedit\";i:2577;s:17:\"protect-othertime\";i:2578;s:20:\"protect-othertime-op\";i:2579;s:23:\"protect-existing-expiry\";i:2580;s:32:\"protect-existing-expiry-infinity\";i:2581;s:19:\"protect-otherreason\";i:2582;s:22:\"protect-otherreason-op\";i:2583;s:16:\"protect-dropdown\";i:2584;s:23:\"protect-edit-reasonlist\";i:2585;s:22:\"protect-expiry-options\";i:2586;s:16:\"restriction-type\";i:2587;s:17:\"restriction-level\";i:2588;s:12:\"minimum-size\";i:2589;s:12:\"maximum-size\";i:2590;s:8:\"pagesize\";i:2591;s:16:\"restriction-edit\";i:2592;s:16:\"restriction-move\";i:2593;s:18:\"restriction-create\";i:2594;s:18:\"restriction-upload\";i:2595;s:17:\"restriction-blank\";i:2596;s:23:\"restriction-level-sysop\";i:2597;s:31:\"restriction-level-autoconfirmed\";i:2598;s:21:\"restriction-level-all\";i:2599;s:8:\"undelete\";i:2600;s:16:\"undelete-summary\";i:2601;s:12:\"undeletepage\";i:2602;s:17:\"undeletepagetitle\";i:2603;s:15:\"viewdeletedpage\";i:2604;s:18:\"action-viewdeleted\";i:2605;s:16:\"undeletepagetext\";i:2606;s:23:\"undelete-fieldset-title\";i:2607;s:17:\"undeleteextrahelp\";i:2608;s:17:\"undeleterevisions\";i:2609;s:15:\"undeletehistory\";i:2610;s:14:\"undeleterevdel\";i:2611;s:22:\"undeletehistorynoadmin\";i:2612;s:17:\"undelete-revision\";i:2613;s:24:\"undeleterevision-missing\";i:2614;s:32:\"undeleterevision-duplicate-revid\";i:2615;s:15:\"undelete-nodiff\";i:2616;s:11:\"undeletebtn\";i:2617;s:12:\"undeletelink\";i:2618;s:16:\"undeleteviewlink\";i:2619;s:14:\"undeleteinvert\";i:2620;s:15:\"undeletecomment\";i:2621;s:14:\"cannotundelete\";i:2622;s:13:\"undeletedpage\";i:2623;s:15:\"undelete-header\";i:2624;s:21:\"undelete-search-title\";i:2625;s:19:\"undelete-search-box\";i:2626;s:22:\"undelete-search-prefix\";i:2627;s:20:\"undelete-search-full\";i:2628;s:22:\"undelete-search-submit\";i:2629;s:19:\"undelete-no-results\";i:2630;s:26:\"undelete-filename-mismatch\";i:2631;s:22:\"undelete-bad-store-key\";i:2632;s:22:\"undelete-cleanup-error\";i:2633;s:28:\"undelete-missing-filearchive\";i:2634;s:14:\"undelete-error\";i:2635;s:26:\"undelete-show-file-confirm\";i:2636;s:25:\"undelete-show-file-submit\";i:2637;s:22:\"undelete-revision-row2\";i:2638;s:21:\"undelete-back-to-list\";i:2639;s:9:\"namespace\";i:2640;s:6:\"invert\";i:2641;s:14:\"tooltip-invert\";i:2642;s:28:\"tooltip-whatlinkshere-invert\";i:2643;s:21:\"namespace_association\";i:2644;s:29:\"tooltip-namespace_association\";i:2645;s:14:\"blanknamespace\";i:2646;s:13:\"contributions\";i:2647;s:23:\"tool-link-contributions\";i:2648;s:21:\"contributions-summary\";i:2649;s:19:\"contributions-title\";i:2650;s:9:\"mycontris\";i:2651;s:12:\"anoncontribs\";i:2652;s:11:\"contribsub2\";i:2653;s:22:\"contributions-subtitle\";i:2654;s:30:\"contributions-userdoesnotexist\";i:2655;s:32:\"negative-namespace-not-supported\";i:2656;s:10:\"nocontribs\";i:2657;s:5:\"uctop\";i:2658;s:5:\"month\";i:2659;s:4:\"year\";i:2660;s:4:\"date\";i:2661;s:25:\"sp-contributions-blocklog\";i:2662;s:28:\"sp-contributions-suppresslog\";i:2663;s:24:\"sp-contributions-deleted\";i:2664;s:24:\"sp-contributions-uploads\";i:2665;s:21:\"sp-contributions-logs\";i:2666;s:21:\"sp-contributions-talk\";i:2667;s:27:\"sp-contributions-userrights\";i:2668;s:31:\"sp-contributions-blocked-notice\";i:2669;s:39:\"sp-contributions-blocked-notice-partial\";i:2670;s:36:\"sp-contributions-blocked-notice-anon\";i:2671;s:44:\"sp-contributions-blocked-notice-anon-partial\";i:2672;s:23:\"sp-contributions-search\";i:2673;s:25:\"sp-contributions-username\";i:2674;s:24:\"sp-contributions-toponly\";i:2675;s:24:\"sp-contributions-newonly\";i:2676;s:26:\"sp-contributions-hideminor\";i:2677;s:23:\"sp-contributions-submit\";i:2678;s:24:\"sp-contributions-explain\";i:2679;s:23:\"sp-contributions-footer\";i:2680;s:28:\"sp-contributions-footer-anon\";i:2681;s:34:\"sp-contributions-footer-anon-range\";i:2682;s:27:\"sp-contributions-outofrange\";i:2683;s:33:\"sp-contributions-concurrency-user\";i:2684;s:31:\"sp-contributions-concurrency-ip\";i:2685;s:13:\"whatlinkshere\";i:2686;s:19:\"whatlinkshere-count\";i:2687;s:19:\"whatlinkshere-title\";i:2688;s:21:\"whatlinkshere-summary\";i:2689;s:18:\"whatlinkshere-page\";i:2690;s:9:\"linkshere\";i:2691;s:11:\"nolinkshere\";i:2692;s:14:\"nolinkshere-ns\";i:2693;s:10:\"isredirect\";i:2694;s:10:\"istemplate\";i:2695;s:7:\"isimage\";i:2696;s:18:\"whatlinkshere-prev\";i:2697;s:18:\"whatlinkshere-next\";i:2698;s:19:\"whatlinkshere-links\";i:2699;s:24:\"whatlinkshere-hideredirs\";i:2700;s:23:\"whatlinkshere-hidetrans\";i:2701;s:23:\"whatlinkshere-hidelinks\";i:2702;s:24:\"whatlinkshere-hideimages\";i:2703;s:21:\"whatlinkshere-filters\";i:2704;s:26:\"whatlinkshere-sectionredir\";i:2705;s:20:\"whatlinkshere-submit\";i:2706;s:11:\"autoblockid\";i:2707;s:5:\"block\";i:2708;s:7:\"unblock\";i:2709;s:15:\"unblock-summary\";i:2710;s:7:\"blockip\";i:2711;s:11:\"blockiptext\";i:2712;s:19:\"ipaddressorusername\";i:2713;s:9:\"ipbreason\";i:2714;s:18:\"ipbreason-dropdown\";i:2715;s:13:\"ipb-hardblock\";i:2716;s:16:\"ipbcreateaccount\";i:2717;s:11:\"ipbemailban\";i:2718;s:18:\"ipbenableautoblock\";i:2719;s:9:\"ipbsubmit\";i:2720;s:8:\"ipbother\";i:2721;s:10:\"ipboptions\";i:2722;s:11:\"ipbhidename\";i:2723;s:12:\"ipbwatchuser\";i:2724;s:19:\"ipb-disableusertalk\";i:2725;s:16:\"ipb-change-block\";i:2726;s:11:\"ipb-confirm\";i:2727;s:12:\"ipb-sitewide\";i:2728;s:11:\"ipb-partial\";i:2729;s:17:\"ipb-sitewide-help\";i:2730;s:16:\"ipb-partial-help\";i:2731;s:17:\"ipb-action-create\";i:2732;s:15:\"ipb-action-move\";i:2733;s:17:\"ipb-action-upload\";i:2734;s:15:\"ipb-pages-label\";i:2735;s:20:\"ipb-namespaces-label\";i:2736;s:12:\"badipaddress\";i:2737;s:17:\"blockipsuccesssub\";i:2738;s:18:\"blockipsuccesstext\";i:2739;s:15:\"ipb-empty-block\";i:2740;s:19:\"ipb-block-not-found\";i:2741;s:16:\"ipb-blockingself\";i:2742;s:19:\"ipb-confirmhideuser\";i:2743;s:17:\"ipb-confirmaction\";i:2744;s:17:\"ipb-edit-dropdown\";i:2745;s:16:\"ipb-unblock-addr\";i:2746;s:11:\"ipb-unblock\";i:2747;s:13:\"ipb-blocklist\";i:2748;s:22:\"ipb-blocklist-contribs\";i:2749;s:27:\"ipb-blocklist-duration-left\";i:2750;s:13:\"block-actions\";i:2751;s:13:\"block-details\";i:2752;s:12:\"block-expiry\";i:2753;s:13:\"block-options\";i:2754;s:12:\"block-reason\";i:2755;s:12:\"block-target\";i:2756;s:24:\"block-target-placeholder\";i:2757;s:9:\"unblockip\";i:2758;s:13:\"unblockiptext\";i:2759;s:9:\"ipusubmit\";i:2760;s:9:\"unblocked\";i:2761;s:15:\"unblocked-range\";i:2762;s:12:\"unblocked-id\";i:2763;s:12:\"unblocked-ip\";i:2764;s:9:\"blocklist\";i:2765;s:13:\"autoblocklist\";i:2766;s:20:\"autoblocklist-submit\";i:2767;s:20:\"autoblocklist-legend\";i:2768;s:25:\"autoblocklist-localblocks\";i:2769;s:30:\"autoblocklist-total-autoblocks\";i:2770;s:19:\"autoblocklist-empty\";i:2771;s:25:\"autoblocklist-otherblocks\";i:2772;s:11:\"ipblocklist\";i:2773;s:18:\"ipblocklist-legend\";i:2774;s:20:\"blocklist-autoblocks\";i:2775;s:20:\"blocklist-userblocks\";i:2776;s:20:\"blocklist-tempblocks\";i:2777;s:21:\"blocklist-indefblocks\";i:2778;s:23:\"blocklist-addressblocks\";i:2779;s:14:\"blocklist-type\";i:2780;s:22:\"blocklist-type-opt-all\";i:2781;s:27:\"blocklist-type-opt-sitewide\";i:2782;s:26:\"blocklist-type-opt-partial\";i:2783;s:21:\"blocklist-rangeblocks\";i:2784;s:19:\"blocklist-timestamp\";i:2785;s:16:\"blocklist-target\";i:2786;s:16:\"blocklist-expiry\";i:2787;s:12:\"blocklist-by\";i:2788;s:16:\"blocklist-params\";i:2789;s:16:\"blocklist-reason\";i:2790;s:17:\"blocklist-summary\";i:2791;s:18:\"ipblocklist-submit\";i:2792;s:22:\"ipblocklist-localblock\";i:2793;s:23:\"ipblocklist-otherblocks\";i:2794;s:13:\"infiniteblock\";i:2795;s:13:\"anononlyblock\";i:2796;s:16:\"noautoblockblock\";i:2797;s:18:\"createaccountblock\";i:2798;s:10:\"emailblock\";i:2799;s:20:\"blocklist-nousertalk\";i:2800;s:17:\"blocklist-editing\";i:2801;s:26:\"blocklist-editing-sitewide\";i:2802;s:22:\"blocklist-editing-page\";i:2803;s:20:\"blocklist-editing-ns\";i:2804;s:24:\"blocklist-editing-action\";i:2805;s:17:\"ipblocklist-empty\";i:2806;s:22:\"ipblocklist-no-results\";i:2807;s:9:\"blocklink\";i:2808;s:11:\"unblocklink\";i:2809;s:16:\"change-blocklink\";i:2810;s:14:\"empty-username\";i:2811;s:12:\"contribslink\";i:2812;s:9:\"emaillink\";i:2813;s:11:\"autoblocker\";i:2814;s:12:\"blocklogpage\";i:2815;s:16:\"blocklog-showlog\";i:2816;s:24:\"blocklog-showsuppresslog\";i:2817;s:13:\"blocklogentry\";i:2818;s:16:\"reblock-logentry\";i:2819;s:12:\"blocklogtext\";i:2820;s:15:\"unblocklogentry\";i:2821;s:24:\"block-log-flags-anononly\";i:2822;s:24:\"block-log-flags-nocreate\";i:2823;s:27:\"block-log-flags-noautoblock\";i:2824;s:23:\"block-log-flags-noemail\";i:2825;s:26:\"block-log-flags-nousertalk\";i:2826;s:31:\"block-log-flags-angry-autoblock\";i:2827;s:26:\"block-log-flags-hiddenname\";i:2828;s:20:\"range_block_disabled\";i:2829;s:26:\"ipb-prevent-user-talk-edit\";i:2830;s:18:\"ipb_expiry_invalid\";i:2831;s:14:\"ipb_expiry_old\";i:2832;s:15:\"ipb_expiry_temp\";i:2833;s:16:\"ipb_hide_invalid\";i:2834;s:16:\"ipb_hide_partial\";i:2835;s:19:\"ipb_already_blocked\";i:2836;s:15:\"ipb-needreblock\";i:2837;s:22:\"ipb-otherblocks-header\";i:2838;s:16:\"unblock-hideuser\";i:2839;s:16:\"ipb_cant_unblock\";i:2840;s:20:\"ipb_blocked_as_range\";i:2841;s:16:\"ip_range_invalid\";i:2842;s:17:\"ip_range_toolarge\";i:2843;s:17:\"ip_range_exceeded\";i:2844;s:15:\"ip_range_toolow\";i:2845;s:12:\"proxyblocker\";i:2846;s:16:\"proxyblockreason\";i:2847;s:5:\"sorbs\";i:2848;s:11:\"sorbsreason\";i:2849;s:27:\"sorbs_create_account_reason\";i:2850;s:21:\"softblockrangesreason\";i:2851;s:14:\"xffblockreason\";i:2852;s:20:\"cant-see-hidden-user\";i:2853;s:27:\"cant-block-nonexistent-page\";i:2854;s:10:\"ipbblocked\";i:2855;s:16:\"ipbnounblockself\";i:2856;s:18:\"ipb-default-expiry\";i:2857;s:21:\"ipb-default-expiry-ip\";i:2858;s:6:\"lockdb\";i:2859;s:8:\"unlockdb\";i:2860;s:10:\"lockdbtext\";i:2861;s:12:\"unlockdbtext\";i:2862;s:11:\"lockconfirm\";i:2863;s:13:\"unlockconfirm\";i:2864;s:7:\"lockbtn\";i:2865;s:9:\"unlockbtn\";i:2866;s:13:\"locknoconfirm\";i:2867;s:16:\"lockdbsuccesssub\";i:2868;s:18:\"unlockdbsuccesssub\";i:2869;s:17:\"lockdbsuccesstext\";i:2870;s:19:\"unlockdbsuccesstext\";i:2871;s:19:\"lockfilenotwritable\";i:2872;s:14:\"databaselocked\";i:2873;s:17:\"databasenotlocked\";i:2874;s:15:\"lockedbyandtime\";i:2875;s:9:\"move-page\";i:2876;s:16:\"movepage-summary\";i:2877;s:16:\"move-page-legend\";i:2878;s:12:\"movepagetext\";i:2879;s:28:\"movepagetext-noredirectfixer\";i:2880;s:30:\"movepagetext-noredirectsupport\";i:2881;s:16:\"movepagetalktext\";i:2882;s:20:\"moveuserpage-warning\";i:2883;s:24:\"movecategorypage-warning\";i:2884;s:15:\"movenologintext\";i:2885;s:14:\"movenotallowed\";i:2886;s:18:\"movenotallowedfile\";i:2887;s:19:\"cant-move-user-page\";i:2888;s:22:\"cant-move-to-user-page\";i:2889;s:23:\"cant-move-category-page\";i:2890;s:26:\"cant-move-to-category-page\";i:2891;s:18:\"cant-move-subpages\";i:2892;s:20:\"namespace-nosubpages\";i:2893;s:8:\"newtitle\";i:2894;s:10:\"move-watch\";i:2895;s:11:\"movepagebtn\";i:2896;s:12:\"pagemovedsub\";i:2897;s:10:\"cannotmove\";i:2898;s:14:\"movepage-moved\";i:2899;s:23:\"movepage-moved-redirect\";i:2900;s:25:\"movepage-moved-noredirect\";i:2901;s:21:\"movepage-delete-first\";i:2902;s:13:\"articleexists\";i:2903;s:14:\"redirectexists\";i:2904;s:23:\"cantmove-titleprotected\";i:2905;s:8:\"movetalk\";i:2906;s:13:\"move-subpages\";i:2907;s:18:\"move-talk-subpages\";i:2908;s:20:\"movepage-page-exists\";i:2909;s:28:\"movepage-source-doesnt-exist\";i:2910;s:19:\"movepage-page-moved\";i:2911;s:21:\"movepage-page-unmoved\";i:2912;s:18:\"movepage-max-pages\";i:2913;s:11:\"movelogpage\";i:2914;s:15:\"movelogpagetext\";i:2915;s:11:\"movesubpage\";i:2916;s:15:\"movesubpagetext\";i:2917;s:19:\"movesubpagetalktext\";i:2918;s:13:\"movenosubpage\";i:2919;s:10:\"movereason\";i:2920;s:18:\"move-redirect-text\";i:2921;s:31:\"category-move-redirect-override\";i:2922;s:10:\"revertmove\";i:2923;s:20:\"delete_and_move_text\";i:2924;s:29:\"delete_redirect_and_move_text\";i:2925;s:23:\"delete_and_move_confirm\";i:2926;s:22:\"delete_and_move_reason\";i:2927;s:8:\"selfmove\";i:2928;s:25:\"immobile-source-namespace\";i:2929;s:28:\"immobile-source-namespace-iw\";i:2930;s:25:\"immobile-target-namespace\";i:2931;s:28:\"immobile-target-namespace-iw\";i:2932;s:20:\"immobile-source-page\";i:2933;s:20:\"immobile-target-page\";i:2934;s:29:\"movepage-invalid-target-title\";i:2935;s:16:\"bad-target-model\";i:2936;s:21:\"imagenocrossnamespace\";i:2937;s:27:\"nonfile-cannot-move-to-file\";i:2938;s:17:\"imagetypemismatch\";i:2939;s:20:\"imageinvalidfilename\";i:2940;s:20:\"fix-double-redirects\";i:2941;s:19:\"move-leave-redirect\";i:2942;s:24:\"protectedpagemovewarning\";i:2943;s:28:\"semiprotectedpagemovewarning\";i:2944;s:20:\"move-over-sharedrepo\";i:2945;s:22:\"file-exists-sharedrepo\";i:2946;s:6:\"export\";i:2947;s:14:\"export-summary\";i:2948;s:10:\"exporttext\";i:2949;s:9:\"exportall\";i:2950;s:13:\"exportcuronly\";i:2951;s:15:\"exportnohistory\";i:2952;s:17:\"exportlistauthors\";i:2953;s:13:\"export-submit\";i:2954;s:17:\"export-addcattext\";i:2955;s:13:\"export-addcat\";i:2956;s:16:\"export-addnstext\";i:2957;s:12:\"export-addns\";i:2958;s:15:\"export-download\";i:2959;s:16:\"export-templates\";i:2960;s:16:\"export-pagelinks\";i:2961;s:13:\"export-manual\";i:2962;s:11:\"allmessages\";i:2963;s:15:\"allmessagesname\";i:2964;s:18:\"allmessagesdefault\";i:2965;s:18:\"allmessagescurrent\";i:2966;s:15:\"allmessagestext\";i:2967;s:34:\"allmessages-not-supported-database\";i:2968;s:25:\"allmessages-filter-legend\";i:2969;s:18:\"allmessages-filter\";i:2970;s:29:\"allmessages-filter-unmodified\";i:2971;s:22:\"allmessages-filter-all\";i:2972;s:27:\"allmessages-filter-modified\";i:2973;s:18:\"allmessages-prefix\";i:2974;s:20:\"allmessages-language\";i:2975;s:25:\"allmessages-filter-submit\";i:2976;s:28:\"allmessages-filter-translate\";i:2977;s:14:\"thumbnail-more\";i:2978;s:11:\"filemissing\";i:2979;s:15:\"thumbnail_error\";i:2980;s:22:\"thumbnail_error_remote\";i:2981;s:15:\"djvu_page_error\";i:2982;s:11:\"djvu_no_xml\";i:2983;s:21:\"thumbnail-temp-create\";i:2984;s:21:\"thumbnail-dest-create\";i:2985;s:24:\"thumbnail_invalid_params\";i:2986;s:25:\"thumbnail_toobigimagearea\";i:2987;s:24:\"thumbnail_dest_directory\";i:2988;s:20:\"thumbnail_image-type\";i:2989;s:20:\"thumbnail_gd-library\";i:2990;s:25:\"thumbnail_image-size-zero\";i:2991;s:23:\"thumbnail_image-missing\";i:2992;s:29:\"thumbnail_image-failure-limit\";i:2993;s:6:\"import\";i:2994;s:14:\"import-summary\";i:2995;s:15:\"importinterwiki\";i:2996;s:21:\"import-interwiki-text\";i:2997;s:27:\"import-interwiki-sourcewiki\";i:2998;s:27:\"import-interwiki-sourcepage\";i:2999;s:24:\"import-interwiki-history\";i:3000;s:26:\"import-interwiki-templates\";i:3001;s:23:\"import-interwiki-submit\";i:3002;s:22:\"import-mapping-default\";i:3003;s:24:\"import-mapping-namespace\";i:3004;s:22:\"import-mapping-subpage\";i:3005;s:22:\"import-upload-filename\";i:3006;s:29:\"import-upload-username-prefix\";i:3007;s:25:\"import-assign-known-users\";i:3008;s:14:\"import-comment\";i:3009;s:10:\"importtext\";i:3010;s:11:\"importstart\";i:3011;s:21:\"import-revision-count\";i:3012;s:13:\"importnopages\";i:3013;s:20:\"imported-log-entries\";i:3014;s:12:\"importfailed\";i:3015;s:19:\"importunknownsource\";i:3016;s:14:\"importnoprefix\";i:3017;s:14:\"importcantopen\";i:3018;s:18:\"importbadinterwiki\";i:3019;s:13:\"importsuccess\";i:3020;s:15:\"importnosources\";i:3021;s:12:\"importnofile\";i:3022;s:21:\"importuploaderrorsize\";i:3023;s:24:\"importuploaderrorpartial\";i:3024;s:21:\"importuploaderrortemp\";i:3025;s:20:\"import-parse-failure\";i:3026;s:16:\"import-noarticle\";i:3027;s:21:\"import-nonewrevisions\";i:3028;s:16:\"xml-error-string\";i:3029;s:13:\"import-upload\";i:3030;s:21:\"import-token-mismatch\";i:3031;s:24:\"import-invalid-interwiki\";i:3032;s:17:\"import-error-edit\";i:3033;s:22:\"import-error-interwiki\";i:3034;s:20:\"import-error-special\";i:3035;s:20:\"import-error-invalid\";i:3036;s:24:\"import-error-unserialize\";i:3037;s:25:\"import-error-bad-location\";i:3038;s:20:\"import-options-wrong\";i:3039;s:23:\"import-rootpage-invalid\";i:3040;s:25:\"import-rootpage-nosubpage\";i:3041;s:13:\"importlogpage\";i:3042;s:17:\"importlogpagetext\";i:3043;s:22:\"import-logentry-upload\";i:3044;s:29:\"import-logentry-upload-detail\";i:3045;s:25:\"import-logentry-interwiki\";i:3046;s:32:\"import-logentry-interwiki-detail\";i:3047;s:14:\"javascripttest\";i:3048;s:26:\"javascripttest-qunit-intro\";i:3049;s:21:\"accesskey-pt-userpage\";i:3050;s:25:\"accesskey-pt-anonuserpage\";i:3051;s:19:\"accesskey-pt-mytalk\";i:3052;s:21:\"accesskey-pt-anontalk\";i:3053;s:24:\"accesskey-pt-preferences\";i:3054;s:22:\"accesskey-pt-watchlist\";i:3055;s:22:\"accesskey-pt-mycontris\";i:3056;s:25:\"accesskey-pt-anoncontribs\";i:3057;s:18:\"accesskey-pt-login\";i:3058;s:26:\"accesskey-pt-login-private\";i:3059;s:19:\"accesskey-pt-logout\";i:3060;s:26:\"accesskey-pt-createaccount\";i:3061;s:17:\"accesskey-ca-view\";i:3062;s:17:\"accesskey-ca-talk\";i:3063;s:17:\"accesskey-ca-edit\";i:3064;s:23:\"accesskey-ca-addsection\";i:3065;s:23:\"accesskey-ca-viewsource\";i:3066;s:20:\"accesskey-ca-history\";i:3067;s:20:\"accesskey-ca-protect\";i:3068;s:22:\"accesskey-ca-unprotect\";i:3069;s:19:\"accesskey-ca-delete\";i:3070;s:21:\"accesskey-ca-undelete\";i:3071;s:17:\"accesskey-ca-move\";i:3072;s:18:\"accesskey-ca-watch\";i:3073;s:20:\"accesskey-ca-unwatch\";i:3074;s:16:\"accesskey-search\";i:3075;s:19:\"accesskey-search-go\";i:3076;s:25:\"accesskey-search-fulltext\";i:3077;s:16:\"accesskey-p-logo\";i:3078;s:26:\"accesskey-n-help-mediawiki\";i:3079;s:20:\"accesskey-n-mainpage\";i:3080;s:32:\"accesskey-n-mainpage-description\";i:3081;s:18:\"accesskey-n-portal\";i:3082;s:25:\"accesskey-n-currentevents\";i:3083;s:25:\"accesskey-n-recentchanges\";i:3084;s:22:\"accesskey-n-randompage\";i:3085;s:16:\"accesskey-n-help\";i:3086;s:25:\"accesskey-t-whatlinkshere\";i:3087;s:31:\"accesskey-t-recentchangeslinked\";i:3088;s:18:\"accesskey-feed-rss\";i:3089;s:19:\"accesskey-feed-atom\";i:3090;s:25:\"accesskey-t-contributions\";i:3091;s:21:\"accesskey-t-emailuser\";i:3092;s:16:\"accesskey-t-info\";i:3093;s:21:\"accesskey-t-permalink\";i:3094;s:17:\"accesskey-t-print\";i:3095;s:18:\"accesskey-t-upload\";i:3096;s:24:\"accesskey-t-specialpages\";i:3097;s:23:\"accesskey-ca-nstab-main\";i:3098;s:23:\"accesskey-ca-nstab-user\";i:3099;s:24:\"accesskey-ca-nstab-media\";i:3100;s:26:\"accesskey-ca-nstab-special\";i:3101;s:26:\"accesskey-ca-nstab-project\";i:3102;s:24:\"accesskey-ca-nstab-image\";i:3103;s:28:\"accesskey-ca-nstab-mediawiki\";i:3104;s:27:\"accesskey-ca-nstab-template\";i:3105;s:23:\"accesskey-ca-nstab-help\";i:3106;s:27:\"accesskey-ca-nstab-category\";i:3107;s:19:\"accesskey-minoredit\";i:3108;s:14:\"accesskey-save\";i:3109;s:17:\"accesskey-publish\";i:3110;s:17:\"accesskey-preview\";i:3111;s:14:\"accesskey-diff\";i:3112;s:33:\"accesskey-compareselectedversions\";i:3113;s:15:\"accesskey-watch\";i:3114;s:26:\"accesskey-watchlist-expiry\";i:3115;s:16:\"accesskey-upload\";i:3116;s:26:\"accesskey-preferences-save\";i:3117;s:17:\"accesskey-summary\";i:3118;s:24:\"accesskey-userrights-set\";i:3119;s:23:\"accesskey-blockip-block\";i:3120;s:16:\"accesskey-export\";i:3121;s:16:\"accesskey-import\";i:3122;s:37:\"accesskey-watchlistedit-normal-submit\";i:3123;s:34:\"accesskey-watchlistedit-raw-submit\";i:3124;s:19:\"tooltip-pt-userpage\";i:3125;s:23:\"tooltip-pt-anonuserpage\";i:3126;s:17:\"tooltip-pt-mytalk\";i:3127;s:19:\"tooltip-pt-anontalk\";i:3128;s:22:\"tooltip-pt-preferences\";i:3129;s:20:\"tooltip-pt-watchlist\";i:3130;s:20:\"tooltip-pt-mycontris\";i:3131;s:23:\"tooltip-pt-anoncontribs\";i:3132;s:16:\"tooltip-pt-login\";i:3133;s:24:\"tooltip-pt-login-private\";i:3134;s:17:\"tooltip-pt-logout\";i:3135;s:24:\"tooltip-pt-createaccount\";i:3136;s:15:\"tooltip-ca-view\";i:3137;s:15:\"tooltip-ca-talk\";i:3138;s:15:\"tooltip-ca-edit\";i:3139;s:21:\"tooltip-ca-addsection\";i:3140;s:21:\"tooltip-ca-viewsource\";i:3141;s:18:\"tooltip-ca-history\";i:3142;s:18:\"tooltip-ca-protect\";i:3143;s:20:\"tooltip-ca-unprotect\";i:3144;s:17:\"tooltip-ca-delete\";i:3145;s:19:\"tooltip-ca-undelete\";i:3146;s:15:\"tooltip-ca-move\";i:3147;s:16:\"tooltip-ca-watch\";i:3148;s:18:\"tooltip-ca-unwatch\";i:3149;s:27:\"tooltip-ca-unwatch-expiring\";i:3150;s:33:\"tooltip-ca-unwatch-expiring-hours\";i:3151;s:14:\"tooltip-search\";i:3152;s:17:\"tooltip-search-go\";i:3153;s:23:\"tooltip-search-fulltext\";i:3154;s:18:\"tooltip-p-cactions\";i:3155;s:14:\"tooltip-p-lang\";i:3156;s:14:\"tooltip-p-logo\";i:3157;s:20:\"tooltip-p-navigation\";i:3158;s:18:\"tooltip-p-personal\";i:3159;s:20:\"tooltip-p-namespaces\";i:3160;s:12:\"tooltip-p-tb\";i:3161;s:18:\"tooltip-p-variants\";i:3162;s:15:\"tooltip-p-views\";i:3163;s:36:\"tooltip-p-user-interface-preferences\";i:3164;s:19:\"tooltip-p-user-page\";i:3165;s:24:\"tooltip-n-help-mediawiki\";i:3166;s:18:\"tooltip-n-mainpage\";i:3167;s:30:\"tooltip-n-mainpage-description\";i:3168;s:16:\"tooltip-n-portal\";i:3169;s:23:\"tooltip-n-currentevents\";i:3170;s:23:\"tooltip-n-recentchanges\";i:3171;s:20:\"tooltip-n-randompage\";i:3172;s:14:\"tooltip-n-help\";i:3173;s:23:\"tooltip-t-whatlinkshere\";i:3174;s:29:\"tooltip-t-recentchangeslinked\";i:3175;s:16:\"tooltip-feed-rss\";i:3176;s:17:\"tooltip-feed-atom\";i:3177;s:23:\"tooltip-t-contributions\";i:3178;s:19:\"tooltip-t-emailuser\";i:3179;s:14:\"tooltip-t-info\";i:3180;s:16:\"tooltip-t-upload\";i:3181;s:22:\"tooltip-t-specialpages\";i:3182;s:15:\"tooltip-t-print\";i:3183;s:19:\"tooltip-t-permalink\";i:3184;s:21:\"tooltip-ca-nstab-main\";i:3185;s:21:\"tooltip-ca-nstab-user\";i:3186;s:22:\"tooltip-ca-nstab-media\";i:3187;s:24:\"tooltip-ca-nstab-special\";i:3188;s:24:\"tooltip-ca-nstab-project\";i:3189;s:22:\"tooltip-ca-nstab-image\";i:3190;s:26:\"tooltip-ca-nstab-mediawiki\";i:3191;s:25:\"tooltip-ca-nstab-template\";i:3192;s:21:\"tooltip-ca-nstab-help\";i:3193;s:25:\"tooltip-ca-nstab-category\";i:3194;s:17:\"tooltip-minoredit\";i:3195;s:12:\"tooltip-save\";i:3196;s:15:\"tooltip-publish\";i:3197;s:15:\"tooltip-preview\";i:3198;s:12:\"tooltip-diff\";i:3199;s:31:\"tooltip-compareselectedversions\";i:3200;s:13:\"tooltip-watch\";i:3201;s:24:\"tooltip-watchlist-expiry\";i:3202;s:35:\"tooltip-watchlistedit-normal-submit\";i:3203;s:32:\"tooltip-watchlistedit-raw-submit\";i:3204;s:16:\"tooltip-recreate\";i:3205;s:14:\"tooltip-upload\";i:3206;s:16:\"tooltip-rollback\";i:3207;s:12:\"tooltip-undo\";i:3208;s:24:\"tooltip-preferences-save\";i:3209;s:15:\"tooltip-summary\";i:3210;s:24:\"interlanguage-link-title\";i:3211;s:33:\"interlanguage-link-title-langonly\";i:3212;s:32:\"interlanguage-link-title-nonlang\";i:3213;s:36:\"interlanguage-link-title-nonlangonly\";i:3214;s:10:\"common.css\";i:3215;s:9:\"print.css\";i:3216;s:12:\"noscript.css\";i:3217;s:23:\"group-autoconfirmed.css\";i:3218;s:14:\"group-user.css\";i:3219;s:13:\"group-bot.css\";i:3220;s:15:\"group-sysop.css\";i:3221;s:20:\"group-bureaucrat.css\";i:3222;s:11:\"common.json\";i:3223;s:9:\"common.js\";i:3224;s:22:\"group-autoconfirmed.js\";i:3225;s:13:\"group-user.js\";i:3226;s:12:\"group-bot.js\";i:3227;s:14:\"group-sysop.js\";i:3228;s:19:\"group-bureaucrat.js\";i:3229;s:9:\"anonymous\";i:3230;s:8:\"siteuser\";i:3231;s:8:\"anonuser\";i:3232;s:16:\"lastmodifiedatby\";i:3233;s:13:\"othercontribs\";i:3234;s:6:\"others\";i:3235;s:9:\"siteusers\";i:3236;s:9:\"anonusers\";i:3237;s:11:\"creditspage\";i:3238;s:9:\"nocredits\";i:3239;s:19:\"spamprotectiontitle\";i:3240;s:18:\"spamprotectiontext\";i:3241;s:19:\"spamprotectionmatch\";i:3242;s:16:\"spambot_username\";i:3243;s:14:\"spam_reverting\";i:3244;s:13:\"spam_blanking\";i:3245;s:13:\"spam_deleting\";i:3246;s:20:\"simpleantispam-label\";i:3247;s:15:\"pageinfo-header\";i:3248;s:14:\"pageinfo-title\";i:3249;s:20:\"pageinfo-not-current\";i:3250;s:21:\"pageinfo-header-basic\";i:3251;s:21:\"pageinfo-header-edits\";i:3252;s:28:\"pageinfo-header-restrictions\";i:3253;s:26:\"pageinfo-header-properties\";i:3254;s:22:\"pageinfo-display-title\";i:3255;s:21:\"pageinfo-default-sort\";i:3256;s:15:\"pageinfo-length\";i:3257;s:18:\"pageinfo-namespace\";i:3258;s:19:\"pageinfo-article-id\";i:3259;s:17:\"pageinfo-language\";i:3260;s:24:\"pageinfo-language-change\";i:3261;s:22:\"pageinfo-content-model\";i:3262;s:29:\"pageinfo-content-model-change\";i:3263;s:21:\"pageinfo-robot-policy\";i:3264;s:20:\"pageinfo-robot-index\";i:3265;s:22:\"pageinfo-robot-noindex\";i:3266;s:17:\"pageinfo-watchers\";i:3267;s:26:\"pageinfo-visiting-watchers\";i:3268;s:21:\"pageinfo-few-watchers\";i:3269;s:30:\"pageinfo-few-visiting-watchers\";i:3270;s:23:\"pageinfo-redirects-name\";i:3271;s:24:\"pageinfo-redirects-value\";i:3272;s:22:\"pageinfo-subpages-name\";i:3273;s:23:\"pageinfo-subpages-value\";i:3274;s:18:\"pageinfo-firstuser\";i:3275;s:18:\"pageinfo-firsttime\";i:3276;s:17:\"pageinfo-lastuser\";i:3277;s:17:\"pageinfo-lasttime\";i:3278;s:14:\"pageinfo-edits\";i:3279;s:16:\"pageinfo-authors\";i:3280;s:21:\"pageinfo-recent-edits\";i:3281;s:23:\"pageinfo-recent-authors\";i:3282;s:20:\"pageinfo-magic-words\";i:3283;s:26:\"pageinfo-hidden-categories\";i:3284;s:18:\"pageinfo-templates\";i:3285;s:22:\"pageinfo-transclusions\";i:3286;s:15:\"pageinfo-footer\";i:3287;s:20:\"pageinfo-toolboxlink\";i:3288;s:20:\"pageinfo-redirectsto\";i:3289;s:25:\"pageinfo-redirectsto-info\";i:3290;s:20:\"pageinfo-contentpage\";i:3291;s:24:\"pageinfo-contentpage-yes\";i:3292;s:26:\"pageinfo-protect-cascading\";i:3293;s:30:\"pageinfo-protect-cascading-yes\";i:3294;s:31:\"pageinfo-protect-cascading-from\";i:3295;s:22:\"pageinfo-category-info\";i:3296;s:23:\"pageinfo-category-total\";i:3297;s:23:\"pageinfo-category-pages\";i:3298;s:25:\"pageinfo-category-subcats\";i:3299;s:23:\"pageinfo-category-files\";i:3300;s:16:\"pageinfo-user-id\";i:3301;s:18:\"pageinfo-file-hash\";i:3302;s:25:\"pageinfo-view-protect-log\";i:3303;s:19:\"markaspatrolleddiff\";i:3304;s:19:\"markaspatrolledlink\";i:3305;s:19:\"markaspatrolledtext\";i:3306;s:24:\"markaspatrolledtext-file\";i:3307;s:17:\"markedaspatrolled\";i:3308;s:21:\"markedaspatrolledtext\";i:3309;s:16:\"rcpatroldisabled\";i:3310;s:20:\"rcpatroldisabledtext\";i:3311;s:22:\"markedaspatrollederror\";i:3312;s:26:\"markedaspatrollederrortext\";i:3313;s:35:\"markedaspatrollederror-noautopatrol\";i:3314;s:23:\"markedaspatrollednotify\";i:3315;s:15:\"patrol-log-page\";i:3316;s:17:\"patrol-log-header\";i:3317;s:28:\"confirm-markpatrolled-button\";i:3318;s:25:\"confirm-markpatrolled-top\";i:3319;s:15:\"deletedrevision\";i:3320;s:21:\"filedeleteerror-short\";i:3321;s:20:\"filedeleteerror-long\";i:3322;s:18:\"filedelete-missing\";i:3323;s:27:\"filedelete-old-unregistered\";i:3324;s:31:\"filedelete-current-unregistered\";i:3325;s:28:\"filedelete-archive-read-only\";i:3326;s:12:\"previousdiff\";i:3327;s:8:\"nextdiff\";i:3328;s:12:\"mediawarning\";i:3329;s:12:\"imagemaxsize\";i:3330;s:9:\"thumbsize\";i:3331;s:11:\"widthheight\";i:3332;s:15:\"widthheightpage\";i:3333;s:9:\"file-info\";i:3334;s:14:\"file-info-size\";i:3335;s:20:\"file-info-size-pages\";i:3336;s:12:\"file-nohires\";i:3337;s:13:\"svg-long-desc\";i:3338;s:22:\"svg-long-desc-animated\";i:3339;s:14:\"svg-long-error\";i:3340;s:14:\"show-big-image\";i:3341;s:22:\"show-big-image-preview\";i:3342;s:29:\"show-big-image-preview-differ\";i:3343;s:20:\"show-big-image-other\";i:3344;s:19:\"show-big-image-size\";i:3345;s:20:\"file-info-gif-looped\";i:3346;s:20:\"file-info-gif-frames\";i:3347;s:20:\"file-info-png-looped\";i:3348;s:20:\"file-info-png-repeat\";i:3349;s:20:\"file-info-png-frames\";i:3350;s:23:\"file-no-thumb-animation\";i:3351;s:27:\"file-no-thumb-animation-gif\";i:3352;s:9:\"newimages\";i:3353;s:13:\"newimagestext\";i:3354;s:13:\"imagelisttext\";i:3355;s:17:\"newimages-summary\";i:3356;s:16:\"newimages-legend\";i:3357;s:14:\"newimages-user\";i:3358;s:18:\"newimages-showbots\";i:3359;s:23:\"newimages-hidepatrolled\";i:3360;s:19:\"newimages-mediatype\";i:3361;s:8:\"noimages\";i:3362;s:24:\"gallery-slideshow-toggle\";i:3363;s:8:\"ilsubmit\";i:3364;s:6:\"bydate\";i:3365;s:21:\"sp-newimages-showfrom\";i:3366;s:10:\"video-dims\";i:3367;s:14:\"seconds-abbrev\";i:3368;s:14:\"minutes-abbrev\";i:3369;s:12:\"hours-abbrev\";i:3370;s:11:\"days-abbrev\";i:3371;s:7:\"seconds\";i:3372;s:7:\"minutes\";i:3373;s:5:\"hours\";i:3374;s:4:\"days\";i:3375;s:5:\"weeks\";i:3376;s:6:\"months\";i:3377;s:5:\"years\";i:3378;s:3:\"ago\";i:3379;s:8:\"just-now\";i:3380;s:9:\"hours-ago\";i:3381;s:11:\"minutes-ago\";i:3382;s:11:\"seconds-ago\";i:3383;s:9:\"monday-at\";i:3384;s:10:\"tuesday-at\";i:3385;s:12:\"wednesday-at\";i:3386;s:11:\"thursday-at\";i:3387;s:9:\"friday-at\";i:3388;s:11:\"saturday-at\";i:3389;s:9:\"sunday-at\";i:3390;s:8:\"today-at\";i:3391;s:12:\"yesterday-at\";i:3392;s:14:\"bad_image_list\";i:3393;s:19:\"variantname-zh-hans\";i:3394;s:19:\"variantname-zh-hant\";i:3395;s:17:\"variantname-zh-cn\";i:3396;s:17:\"variantname-zh-tw\";i:3397;s:17:\"variantname-zh-hk\";i:3398;s:17:\"variantname-zh-mo\";i:3399;s:17:\"variantname-zh-sg\";i:3400;s:17:\"variantname-zh-my\";i:3401;s:14:\"variantname-zh\";i:3402;s:20:\"variantname-gan-hans\";i:3403;s:20:\"variantname-gan-hant\";i:3404;s:15:\"variantname-gan\";i:3405;s:17:\"variantname-sr-ec\";i:3406;s:17:\"variantname-sr-el\";i:3407;s:14:\"variantname-sr\";i:3408;s:17:\"variantname-kk-kz\";i:3409;s:17:\"variantname-kk-tr\";i:3410;s:17:\"variantname-kk-cn\";i:3411;s:19:\"variantname-kk-cyrl\";i:3412;s:19:\"variantname-kk-latn\";i:3413;s:19:\"variantname-kk-arab\";i:3414;s:14:\"variantname-kk\";i:3415;s:19:\"variantname-ku-arab\";i:3416;s:19:\"variantname-ku-latn\";i:3417;s:14:\"variantname-ku\";i:3418;s:19:\"variantname-tg-cyrl\";i:3419;s:19:\"variantname-tg-latn\";i:3420;s:14:\"variantname-tg\";i:3421;s:20:\"variantname-tly-cyrl\";i:3422;s:15:\"variantname-tly\";i:3423;s:20:\"variantname-ike-cans\";i:3424;s:20:\"variantname-ike-latn\";i:3425;s:14:\"variantname-iu\";i:3426;s:20:\"variantname-shi-tfng\";i:3427;s:20:\"variantname-shi-latn\";i:3428;s:15:\"variantname-shi\";i:3429;s:14:\"variantname-uz\";i:3430;s:19:\"variantname-uz-latn\";i:3431;s:19:\"variantname-uz-cyrl\";i:3432;s:15:\"variantname-crh\";i:3433;s:20:\"variantname-crh-latn\";i:3434;s:20:\"variantname-crh-cyrl\";i:3435;s:8:\"metadata\";i:3436;s:13:\"metadata-help\";i:3437;s:15:\"metadata-expand\";i:3438;s:17:\"metadata-collapse\";i:3439;s:15:\"metadata-fields\";i:3440;s:17:\"metadata-langitem\";i:3441;s:25:\"metadata-langitem-default\";i:3442;s:13:\"namespacesall\";i:3443;s:9:\"monthsall\";i:3444;s:12:\"confirmemail\";i:3445;s:20:\"confirmemail_noemail\";i:3446;s:17:\"confirmemail_text\";i:3447;s:20:\"confirmemail_pending\";i:3448;s:17:\"confirmemail_send\";i:3449;s:17:\"confirmemail_sent\";i:3450;s:21:\"confirmemail_oncreate\";i:3451;s:23:\"confirmemail_sendfailed\";i:3452;s:20:\"confirmemail_invalid\";i:3453;s:22:\"confirmemail_needlogin\";i:3454;s:20:\"confirmemail_success\";i:3455;s:21:\"confirmemail_loggedin\";i:3456;s:20:\"confirmemail_subject\";i:3457;s:17:\"confirmemail_body\";i:3458;s:25:\"confirmemail_body_changed\";i:3459;s:21:\"confirmemail_body_set\";i:3460;s:24:\"confirmemail_invalidated\";i:3461;s:15:\"invalidateemail\";i:3462;s:33:\"notificationemail_subject_changed\";i:3463;s:33:\"notificationemail_subject_removed\";i:3464;s:30:\"notificationemail_body_changed\";i:3465;s:30:\"notificationemail_body_removed\";i:3466;s:23:\"scarytranscludedisabled\";i:3467;s:21:\"scarytranscludefailed\";i:3468;s:32:\"scarytranscludefailed-httpstatus\";i:3469;s:22:\"scarytranscludetoolong\";i:3470;s:19:\"deletedwhileediting\";i:3471;s:15:\"confirmrecreate\";i:3472;s:24:\"confirmrecreate-noreason\";i:3473;s:8:\"recreate\";i:3474;s:10:\"unit-pixel\";i:3475;s:19:\"confirm-purge-title\";i:3476;s:20:\"confirm_purge_button\";i:3477;s:17:\"confirm-purge-top\";i:3478;s:20:\"confirm-purge-bottom\";i:3479;s:20:\"confirm-watch-button\";i:3480;s:17:\"confirm-watch-top\";i:3481;s:19:\"confirm-watch-label\";i:3482;s:24:\"watchlist-expiry-options\";i:3483;s:31:\"watchlist-expires-in-aria-label\";i:3484;s:27:\"confirm-watch-button-expiry\";i:3485;s:22:\"confirm-unwatch-button\";i:3486;s:19:\"confirm-unwatch-top\";i:3487;s:23:\"confirm-rollback-button\";i:3488;s:20:\"confirm-rollback-top\";i:3489;s:23:\"confirm-rollback-bottom\";i:3490;s:24:\"confirm-mcrrestore-title\";i:3491;s:21:\"confirm-mcrundo-title\";i:3492;s:13:\"mcrundofailed\";i:3493;s:20:\"mcrundo-missingparam\";i:3494;s:15:\"mcrundo-changed\";i:3495;s:20:\"mcrundo-parse-failed\";i:3496;s:19:\"semicolon-separator\";i:3497;s:15:\"comma-separator\";i:3498;s:15:\"colon-separator\";i:3499;s:18:\"autocomment-prefix\";i:3500;s:14:\"pipe-separator\";i:3501;s:14:\"word-separator\";i:3502;s:8:\"ellipsis\";i:3503;s:7:\"percent\";i:3504;s:11:\"parentheses\";i:3505;s:17:\"parentheses-start\";i:3506;s:15:\"parentheses-end\";i:3507;s:8:\"brackets\";i:3508;s:14:\"brackets-start\";i:3509;s:12:\"brackets-end\";i:3510;s:15:\"quotation-marks\";i:3511;s:13:\"formatnum-nan\";i:3512;s:16:\"imgmultipageprev\";i:3513;s:16:\"imgmultipagenext\";i:3514;s:10:\"imgmultigo\";i:3515;s:12:\"imgmultigoto\";i:3516;s:12:\"img-lang-opt\";i:3517;s:16:\"img-lang-default\";i:3518;s:13:\"img-lang-info\";i:3519;s:11:\"img-lang-go\";i:3520;s:16:\"table_pager_next\";i:3521;s:16:\"table_pager_prev\";i:3522;s:17:\"table_pager_first\";i:3523;s:16:\"table_pager_last\";i:3524;s:17:\"table_pager_limit\";i:3525;s:23:\"table_pager_limit_label\";i:3526;s:24:\"table_pager_limit_submit\";i:3527;s:17:\"table_pager_empty\";i:3528;s:14:\"autosumm-blank\";i:3529;s:16:\"autosumm-replace\";i:3530;s:16:\"autoredircomment\";i:3531;s:25:\"autosumm-removed-redirect\";i:3532;s:32:\"autosumm-changed-redirect-target\";i:3533;s:12:\"autosumm-new\";i:3534;s:17:\"autosumm-newblank\";i:3535;s:29:\"block-autoblock-exemptionlist\";i:3536;s:10:\"size-bytes\";i:3537;s:14:\"size-kilobytes\";i:3538;s:14:\"size-megabytes\";i:3539;s:14:\"size-gigabytes\";i:3540;s:14:\"size-terabytes\";i:3541;s:14:\"size-petabytes\";i:3542;s:13:\"size-exabytes\";i:3543;s:15:\"size-zettabytes\";i:3544;s:15:\"size-yottabytes\";i:3545;s:10:\"size-pixel\";i:3546;s:14:\"size-kilopixel\";i:3547;s:14:\"size-megapixel\";i:3548;s:14:\"size-gigapixel\";i:3549;s:14:\"size-terapixel\";i:3550;s:14:\"size-petapixel\";i:3551;s:13:\"size-exapixel\";i:3552;s:15:\"size-zettapixel\";i:3553;s:15:\"size-yottapixel\";i:3554;s:12:\"bitrate-bits\";i:3555;s:16:\"bitrate-kilobits\";i:3556;s:16:\"bitrate-megabits\";i:3557;s:16:\"bitrate-gigabits\";i:3558;s:16:\"bitrate-terabits\";i:3559;s:16:\"bitrate-petabits\";i:3560;s:15:\"bitrate-exabits\";i:3561;s:17:\"bitrate-zettabits\";i:3562;s:17:\"bitrate-yottabits\";i:3563;s:15:\"lag-warn-normal\";i:3564;s:13:\"lag-warn-high\";i:3565;s:21:\"editwatchlist-summary\";i:3566;s:26:\"watchlistedit-normal-title\";i:3567;s:27:\"watchlistedit-normal-legend\";i:3568;s:28:\"watchlistedit-normal-explain\";i:3569;s:27:\"watchlistedit-normal-submit\";i:3570;s:25:\"watchlistedit-normal-done\";i:3571;s:23:\"watchlistedit-raw-title\";i:3572;s:24:\"watchlistedit-raw-legend\";i:3573;s:25:\"watchlistedit-raw-explain\";i:3574;s:24:\"watchlistedit-raw-titles\";i:3575;s:24:\"watchlistedit-raw-submit\";i:3576;s:22:\"watchlistedit-raw-done\";i:3577;s:23:\"watchlistedit-raw-added\";i:3578;s:25:\"watchlistedit-raw-removed\";i:3579;s:25:\"watchlistedit-clear-title\";i:3580;s:26:\"watchlistedit-clear-legend\";i:3581;s:27:\"watchlistedit-clear-explain\";i:3582;s:26:\"watchlistedit-clear-titles\";i:3583;s:26:\"watchlistedit-clear-submit\";i:3584;s:24:\"watchlistedit-clear-done\";i:3585;s:28:\"watchlistedit-clear-jobqueue\";i:3586;s:27:\"watchlistedit-clear-removed\";i:3587;s:22:\"watchlistedit-too-many\";i:3588;s:20:\"watchlisttools-clear\";i:3589;s:19:\"watchlisttools-view\";i:3590;s:19:\"watchlisttools-edit\";i:3591;s:18:\"watchlisttools-raw\";i:3592;s:19:\"iranian-calendar-m1\";i:3593;s:19:\"iranian-calendar-m2\";i:3594;s:19:\"iranian-calendar-m3\";i:3595;s:19:\"iranian-calendar-m4\";i:3596;s:19:\"iranian-calendar-m5\";i:3597;s:19:\"iranian-calendar-m6\";i:3598;s:19:\"iranian-calendar-m7\";i:3599;s:19:\"iranian-calendar-m8\";i:3600;s:19:\"iranian-calendar-m9\";i:3601;s:20:\"iranian-calendar-m10\";i:3602;s:20:\"iranian-calendar-m11\";i:3603;s:20:\"iranian-calendar-m12\";i:3604;s:17:\"hijri-calendar-m1\";i:3605;s:17:\"hijri-calendar-m2\";i:3606;s:17:\"hijri-calendar-m3\";i:3607;s:17:\"hijri-calendar-m4\";i:3608;s:17:\"hijri-calendar-m5\";i:3609;s:17:\"hijri-calendar-m6\";i:3610;s:17:\"hijri-calendar-m7\";i:3611;s:17:\"hijri-calendar-m8\";i:3612;s:17:\"hijri-calendar-m9\";i:3613;s:18:\"hijri-calendar-m10\";i:3614;s:18:\"hijri-calendar-m11\";i:3615;s:18:\"hijri-calendar-m12\";i:3616;s:18:\"hebrew-calendar-m1\";i:3617;s:18:\"hebrew-calendar-m2\";i:3618;s:18:\"hebrew-calendar-m3\";i:3619;s:18:\"hebrew-calendar-m4\";i:3620;s:18:\"hebrew-calendar-m5\";i:3621;s:18:\"hebrew-calendar-m6\";i:3622;s:19:\"hebrew-calendar-m6a\";i:3623;s:19:\"hebrew-calendar-m6b\";i:3624;s:18:\"hebrew-calendar-m7\";i:3625;s:18:\"hebrew-calendar-m8\";i:3626;s:18:\"hebrew-calendar-m9\";i:3627;s:19:\"hebrew-calendar-m10\";i:3628;s:19:\"hebrew-calendar-m11\";i:3629;s:19:\"hebrew-calendar-m12\";i:3630;s:22:\"hebrew-calendar-m1-gen\";i:3631;s:22:\"hebrew-calendar-m2-gen\";i:3632;s:22:\"hebrew-calendar-m3-gen\";i:3633;s:22:\"hebrew-calendar-m4-gen\";i:3634;s:22:\"hebrew-calendar-m5-gen\";i:3635;s:22:\"hebrew-calendar-m6-gen\";i:3636;s:23:\"hebrew-calendar-m6a-gen\";i:3637;s:23:\"hebrew-calendar-m6b-gen\";i:3638;s:22:\"hebrew-calendar-m7-gen\";i:3639;s:22:\"hebrew-calendar-m8-gen\";i:3640;s:22:\"hebrew-calendar-m9-gen\";i:3641;s:23:\"hebrew-calendar-m10-gen\";i:3642;s:23:\"hebrew-calendar-m11-gen\";i:3643;s:23:\"hebrew-calendar-m12-gen\";i:3644;s:9:\"signature\";i:3645;s:14:\"signature-anon\";i:3646;s:12:\"timezone-utc\";i:3647;s:14:\"timezone-local\";i:3648;s:21:\"duplicate-defaultsort\";i:3649;s:22:\"duplicate-displaytitle\";i:3650;s:23:\"restricted-displaytitle\";i:3651;s:22:\"invalid-indicator-name\";i:3652;s:25:\"invalid-langconvert-attrs\";i:3653;s:7:\"version\";i:3654;s:15:\"version-summary\";i:3655;s:18:\"version-extensions\";i:3656;s:13:\"version-skins\";i:3657;s:20:\"version-specialpages\";i:3658;s:19:\"version-parserhooks\";i:3659;s:17:\"version-variables\";i:3660;s:15:\"version-editors\";i:3661;s:16:\"version-antispam\";i:3662;s:11:\"version-api\";i:3663;s:13:\"version-other\";i:3664;s:21:\"version-mediahandlers\";i:3665;s:13:\"version-hooks\";i:3666;s:28:\"version-parser-extensiontags\";i:3667;s:29:\"version-parser-function-hooks\";i:3668;s:17:\"version-hook-name\";i:3669;s:25:\"version-hook-subscribedby\";i:3670;s:15:\"version-version\";i:3671;s:19:\"version-no-ext-name\";i:3672;s:15:\"version-license\";i:3673;s:19:\"version-ext-license\";i:3674;s:26:\"version-ext-colheader-name\";i:3675;s:27:\"version-skin-colheader-name\";i:3676;s:29:\"version-ext-colheader-version\";i:3677;s:29:\"version-ext-colheader-license\";i:3678;s:33:\"version-ext-colheader-description\";i:3679;s:29:\"version-ext-colheader-credits\";i:3680;s:21:\"version-license-title\";i:3681;s:25:\"version-license-not-found\";i:3682;s:21:\"version-credits-title\";i:3683;s:25:\"version-credits-not-found\";i:3684;s:25:\"version-poweredby-credits\";i:3685;s:24:\"version-poweredby-others\";i:3686;s:29:\"version-poweredby-translators\";i:3687;s:25:\"version-poweredby-various\";i:3688;s:23:\"version-credits-summary\";i:3689;s:20:\"version-license-info\";i:3690;s:16:\"version-software\";i:3691;s:24:\"version-software-product\";i:3692;s:24:\"version-software-version\";i:3693;s:20:\"version-db-mysql-url\";i:3694;s:22:\"version-db-mariadb-url\";i:3695;s:22:\"version-db-percona-url\";i:3696;s:23:\"version-db-postgres-url\";i:3697;s:21:\"version-db-sqlite-url\";i:3698;s:19:\"version-entrypoints\";i:3699;s:37:\"version-entrypoints-header-entrypoint\";i:3700;s:30:\"version-entrypoints-header-url\";i:3701;s:31:\"version-entrypoints-articlepath\";i:3702;s:30:\"version-entrypoints-scriptpath\";i:3703;s:29:\"version-entrypoints-index-php\";i:3704;s:27:\"version-entrypoints-api-php\";i:3705;s:28:\"version-entrypoints-rest-php\";i:3706;s:17:\"version-libraries\";i:3707;s:25:\"version-libraries-library\";i:3708;s:25:\"version-libraries-version\";i:3709;s:25:\"version-libraries-license\";i:3710;s:29:\"version-libraries-description\";i:3711;s:25:\"version-libraries-authors\";i:3712;s:8:\"redirect\";i:3713;s:13:\"redirect-text\";i:3714;s:16:\"redirect-summary\";i:3715;s:15:\"redirect-submit\";i:3716;s:15:\"redirect-lookup\";i:3717;s:14:\"redirect-value\";i:3718;s:13:\"redirect-user\";i:3719;s:13:\"redirect-page\";i:3720;s:17:\"redirect-revision\";i:3721;s:13:\"redirect-file\";i:3722;s:14:\"redirect-logid\";i:3723;s:19:\"redirect-not-exists\";i:3724;s:20:\"redirect-not-numeric\";i:3725;s:19:\"fileduplicatesearch\";i:3726;s:27:\"fileduplicatesearch-summary\";i:3727;s:28:\"fileduplicatesearch-filename\";i:3728;s:26:\"fileduplicatesearch-submit\";i:3729;s:24:\"fileduplicatesearch-info\";i:3730;s:28:\"fileduplicatesearch-result-1\";i:3731;s:28:\"fileduplicatesearch-result-n\";i:3732;s:29:\"fileduplicatesearch-noresults\";i:3733;s:12:\"specialpages\";i:3734;s:20:\"specialpages-summary\";i:3735;s:21:\"specialpages-note-top\";i:3736;s:28:\"specialpages-note-restricted\";i:3737;s:24:\"specialpages-note-cached\";i:3738;s:30:\"specialpages-group-maintenance\";i:3739;s:24:\"specialpages-group-other\";i:3740;s:24:\"specialpages-group-login\";i:3741;s:26:\"specialpages-group-changes\";i:3742;s:24:\"specialpages-group-media\";i:3743;s:24:\"specialpages-group-users\";i:3744;s:26:\"specialpages-group-highuse\";i:3745;s:24:\"specialpages-group-pages\";i:3746;s:28:\"specialpages-group-pagetools\";i:3747;s:23:\"specialpages-group-wiki\";i:3748;s:28:\"specialpages-group-redirects\";i:3749;s:23:\"specialpages-group-spam\";i:3750;s:28:\"specialpages-group-developer\";i:3751;s:9:\"blankpage\";i:3752;s:22:\"intentionallyblankpage\";i:3753;s:28:\"disabledspecialpage-disabled\";i:3754;s:24:\"external_image_whitelist\";i:3755;s:4:\"tags\";i:3756;s:12:\"tags-summary\";i:3757;s:10:\"tag-filter\";i:3758;s:17:\"tag-filter-submit\";i:3759;s:10:\"tag-hidden\";i:3760;s:16:\"tag-list-wrapper\";i:3761;s:25:\"tag-mw-contentmodelchange\";i:3762;s:37:\"tag-mw-contentmodelchange-description\";i:3763;s:19:\"tag-mw-new-redirect\";i:3764;s:31:\"tag-mw-new-redirect-description\";i:3765;s:23:\"tag-mw-removed-redirect\";i:3766;s:35:\"tag-mw-removed-redirect-description\";i:3767;s:30:\"tag-mw-changed-redirect-target\";i:3768;s:42:\"tag-mw-changed-redirect-target-description\";i:3769;s:12:\"tag-mw-blank\";i:3770;s:24:\"tag-mw-blank-description\";i:3771;s:14:\"tag-mw-replace\";i:3772;s:26:\"tag-mw-replace-description\";i:3773;s:15:\"tag-mw-rollback\";i:3774;s:27:\"tag-mw-rollback-description\";i:3775;s:11:\"tag-mw-undo\";i:3776;s:23:\"tag-mw-undo-description\";i:3777;s:20:\"tag-mw-manual-revert\";i:3778;s:32:\"tag-mw-manual-revert-description\";i:3779;s:15:\"tag-mw-reverted\";i:3780;s:27:\"tag-mw-reverted-description\";i:3781;s:25:\"tag-mw-server-side-upload\";i:3782;s:37:\"tag-mw-server-side-upload-description\";i:3783;s:10:\"tags-title\";i:3784;s:10:\"tags-intro\";i:3785;s:8:\"tags-tag\";i:3786;s:19:\"tags-display-header\";i:3787;s:23:\"tags-description-header\";i:3788;s:18:\"tags-source-header\";i:3789;s:18:\"tags-active-header\";i:3790;s:20:\"tags-hitcount-header\";i:3791;s:19:\"tags-actions-header\";i:3792;s:15:\"tags-active-yes\";i:3793;s:14:\"tags-active-no\";i:3794;s:21:\"tags-source-extension\";i:3795;s:18:\"tags-source-manual\";i:3796;s:16:\"tags-source-none\";i:3797;s:11:\"tags-hidden\";i:3798;s:9:\"tags-edit\";i:3799;s:11:\"tags-delete\";i:3800;s:13:\"tags-activate\";i:3801;s:15:\"tags-deactivate\";i:3802;s:13:\"tags-hitcount\";i:3803;s:25:\"tags-manage-no-permission\";i:3804;s:19:\"tags-manage-blocked\";i:3805;s:19:\"tags-create-heading\";i:3806;s:23:\"tags-create-explanation\";i:3807;s:20:\"tags-create-tag-name\";i:3808;s:18:\"tags-create-reason\";i:3809;s:18:\"tags-create-submit\";i:3810;s:19:\"tags-create-no-name\";i:3811;s:25:\"tags-create-invalid-chars\";i:3812;s:31:\"tags-create-invalid-title-chars\";i:3813;s:26:\"tags-create-already-exists\";i:3814;s:26:\"tags-create-warnings-above\";i:3815;s:26:\"tags-create-warnings-below\";i:3816;s:17:\"tags-delete-title\";i:3817;s:31:\"tags-delete-explanation-initial\";i:3818;s:30:\"tags-delete-explanation-in-use\";i:3819;s:31:\"tags-delete-explanation-warning\";i:3820;s:30:\"tags-delete-explanation-active\";i:3821;s:18:\"tags-delete-reason\";i:3822;s:18:\"tags-delete-submit\";i:3823;s:23:\"tags-delete-not-allowed\";i:3824;s:21:\"tags-delete-not-found\";i:3825;s:25:\"tags-delete-too-many-uses\";i:3826;s:33:\"tags-delete-warnings-after-delete\";i:3827;s:25:\"tags-delete-no-permission\";i:3828;s:19:\"tags-activate-title\";i:3829;s:22:\"tags-activate-question\";i:3830;s:20:\"tags-activate-reason\";i:3831;s:25:\"tags-activate-not-allowed\";i:3832;s:23:\"tags-activate-not-found\";i:3833;s:20:\"tags-activate-submit\";i:3834;s:21:\"tags-deactivate-title\";i:3835;s:24:\"tags-deactivate-question\";i:3836;s:22:\"tags-deactivate-reason\";i:3837;s:27:\"tags-deactivate-not-allowed\";i:3838;s:22:\"tags-deactivate-submit\";i:3839;s:24:\"tags-apply-no-permission\";i:3840;s:18:\"tags-apply-blocked\";i:3841;s:26:\"tags-apply-not-allowed-one\";i:3842;s:28:\"tags-apply-not-allowed-multi\";i:3843;s:25:\"tags-update-no-permission\";i:3844;s:19:\"tags-update-blocked\";i:3845;s:31:\"tags-update-add-not-allowed-one\";i:3846;s:33:\"tags-update-add-not-allowed-multi\";i:3847;s:34:\"tags-update-remove-not-allowed-one\";i:3848;s:36:\"tags-update-remove-not-allowed-multi\";i:3849;s:15:\"tags-edit-title\";i:3850;s:21:\"tags-edit-manage-link\";i:3851;s:27:\"tags-edit-revision-selected\";i:3852;s:27:\"tags-edit-logentry-selected\";i:3853;s:30:\"tags-edit-revision-explanation\";i:3854;s:30:\"tags-edit-logentry-explanation\";i:3855;s:25:\"tags-edit-revision-legend\";i:3856;s:25:\"tags-edit-logentry-legend\";i:3857;s:23:\"tags-edit-existing-tags\";i:3858;s:28:\"tags-edit-existing-tags-none\";i:3859;s:18:\"tags-edit-new-tags\";i:3860;s:13:\"tags-edit-add\";i:3861;s:16:\"tags-edit-remove\";i:3862;s:25:\"tags-edit-remove-all-tags\";i:3863;s:28:\"tags-edit-chosen-placeholder\";i:3864;s:27:\"tags-edit-chosen-no-results\";i:3865;s:16:\"tags-edit-reason\";i:3866;s:25:\"tags-edit-revision-submit\";i:3867;s:25:\"tags-edit-logentry-submit\";i:3868;s:17:\"tags-edit-success\";i:3869;s:17:\"tags-edit-failure\";i:3870;s:23:\"tags-edit-nooldid-title\";i:3871;s:22:\"tags-edit-nooldid-text\";i:3872;s:23:\"tags-edit-none-selected\";i:3873;s:12:\"comparepages\";i:3874;s:20:\"comparepages-summary\";i:3875;s:13:\"compare-page1\";i:3876;s:13:\"compare-page2\";i:3877;s:12:\"compare-rev1\";i:3878;s:12:\"compare-rev2\";i:3879;s:14:\"compare-submit\";i:3880;s:27:\"compare-revision-not-exists\";i:3881;s:9:\"diff-form\";i:3882;s:15:\"diff-form-oldid\";i:3883;s:15:\"diff-form-revid\";i:3884;s:16:\"diff-form-submit\";i:3885;s:17:\"diff-form-summary\";i:3886;s:21:\"diff-form-other-revid\";i:3887;s:21:\"diff-form-error-revid\";i:3888;s:13:\"permanentlink\";i:3889;s:19:\"permanentlink-revid\";i:3890;s:20:\"permanentlink-submit\";i:3891;s:21:\"permanentlink-summary\";i:3892;s:10:\"newsection\";i:3893;s:15:\"newsection-page\";i:3894;s:17:\"newsection-submit\";i:3895;s:18:\"newsection-summary\";i:3896;s:8:\"editpage\";i:3897;s:20:\"specialeditpage-page\";i:3898;s:22:\"specialeditpage-submit\";i:3899;s:16:\"editpage-summary\";i:3900;s:10:\"deletepage\";i:3901;s:22:\"specialdeletepage-page\";i:3902;s:24:\"specialdeletepage-submit\";i:3903;s:18:\"deletepage-summary\";i:3904;s:8:\"pageinfo\";i:3905;s:20:\"specialpageinfo-page\";i:3906;s:22:\"specialpageinfo-submit\";i:3907;s:16:\"pageinfo-summary\";i:3908;s:11:\"pagehistory\";i:3909;s:23:\"specialpagehistory-page\";i:3910;s:25:\"specialpagehistory-submit\";i:3911;s:19:\"pagehistory-summary\";i:3912;s:11:\"protectpage\";i:3913;s:23:\"specialprotectpage-page\";i:3914;s:25:\"specialprotectpage-submit\";i:3915;s:19:\"protectpage-summary\";i:3916;s:5:\"purge\";i:3917;s:17:\"specialpurge-page\";i:3918;s:19:\"specialpurge-submit\";i:3919;s:13:\"purge-summary\";i:3920;s:14:\"dberr-problems\";i:3921;s:11:\"dberr-again\";i:3922;s:10:\"dberr-info\";i:3923;s:17:\"dberr-info-hidden\";i:3924;s:22:\"htmlform-invalid-input\";i:3925;s:25:\"htmlform-select-badoption\";i:3926;s:20:\"htmlform-int-invalid\";i:3927;s:22:\"htmlform-float-invalid\";i:3928;s:19:\"htmlform-int-toolow\";i:3929;s:20:\"htmlform-int-toohigh\";i:3930;s:28:\"htmlform-multiselect-toomany\";i:3931;s:17:\"htmlform-required\";i:3932;s:15:\"htmlform-submit\";i:3933;s:14:\"htmlform-reset\";i:3934;s:28:\"htmlform-selectorother-other\";i:3935;s:11:\"htmlform-no\";i:3936;s:12:\"htmlform-yes\";i:3937;s:27:\"htmlform-chosen-placeholder\";i:3938;s:22:\"htmlform-cloner-create\";i:3939;s:22:\"htmlform-cloner-delete\";i:3940;s:24:\"htmlform-cloner-required\";i:3941;s:25:\"htmlform-date-placeholder\";i:3942;s:25:\"htmlform-time-placeholder\";i:3943;s:29:\"htmlform-datetime-placeholder\";i:3944;s:21:\"htmlform-date-invalid\";i:3945;s:21:\"htmlform-time-invalid\";i:3946;s:25:\"htmlform-datetime-invalid\";i:3947;s:20:\"htmlform-date-toolow\";i:3948;s:21:\"htmlform-date-toohigh\";i:3949;s:20:\"htmlform-time-toolow\";i:3950;s:21:\"htmlform-time-toohigh\";i:3951;s:24:\"htmlform-datetime-toolow\";i:3952;s:25:\"htmlform-datetime-toohigh\";i:3953;s:27:\"htmlform-title-badnamespace\";i:3954;s:28:\"htmlform-title-not-creatable\";i:3955;s:25:\"htmlform-title-not-exists\";i:3956;s:24:\"htmlform-title-interwiki\";i:3957;s:24:\"htmlform-user-not-exists\";i:3958;s:23:\"htmlform-user-not-valid\";i:3959;s:24:\"htmlform-tag-not-allowed\";i:3960;s:10:\"rawmessage\";i:3961;s:22:\"logentry-delete-delete\";i:3962;s:28:\"logentry-delete-delete_redir\";i:3963;s:29:\"logentry-delete-delete_redir2\";i:3964;s:23:\"logentry-delete-restore\";i:3965;s:31:\"logentry-delete-restore-nocount\";i:3966;s:23:\"restore-count-revisions\";i:3967;s:19:\"restore-count-files\";i:3968;s:21:\"logentry-delete-event\";i:3969;s:24:\"logentry-delete-revision\";i:3970;s:28:\"logentry-delete-event-legacy\";i:3971;s:31:\"logentry-delete-revision-legacy\";i:3972;s:24:\"logentry-suppress-delete\";i:3973;s:23:\"logentry-suppress-event\";i:3974;s:26:\"logentry-suppress-revision\";i:3975;s:30:\"logentry-suppress-event-legacy\";i:3976;s:33:\"logentry-suppress-revision-legacy\";i:3977;s:21:\"revdelete-content-hid\";i:3978;s:21:\"revdelete-summary-hid\";i:3979;s:19:\"revdelete-uname-hid\";i:3980;s:23:\"revdelete-content-unhid\";i:3981;s:23:\"revdelete-summary-unhid\";i:3982;s:21:\"revdelete-uname-unhid\";i:3983;s:20:\"revdelete-restricted\";i:3984;s:22:\"revdelete-unrestricted\";i:3985;s:20:\"logentry-block-block\";i:3986;s:22:\"logentry-block-unblock\";i:3987;s:22:\"logentry-block-reblock\";i:3988;s:32:\"logentry-partialblock-block-page\";i:3989;s:30:\"logentry-partialblock-block-ns\";i:3990;s:34:\"logentry-partialblock-block-action\";i:3991;s:27:\"logentry-partialblock-block\";i:3992;s:29:\"logentry-partialblock-reblock\";i:3993;s:32:\"logentry-non-editing-block-block\";i:3994;s:34:\"logentry-non-editing-block-reblock\";i:3995;s:23:\"logentry-suppress-block\";i:3996;s:25:\"logentry-suppress-reblock\";i:3997;s:22:\"logentry-import-upload\";i:3998;s:30:\"logentry-import-upload-details\";i:3999;s:25:\"logentry-import-interwiki\";i:4000;s:33:\"logentry-import-interwiki-details\";i:4001;s:20:\"logentry-merge-merge\";i:4002;s:18:\"logentry-move-move\";i:4003;s:29:\"logentry-move-move-noredirect\";i:4004;s:24:\"logentry-move-move_redir\";i:4005;s:35:\"logentry-move-move_redir-noredirect\";i:4006;s:22:\"logentry-patrol-patrol\";i:4007;s:27:\"logentry-patrol-patrol-auto\";i:4008;s:26:\"logentry-newusers-newusers\";i:4009;s:24:\"logentry-newusers-create\";i:4010;s:25:\"logentry-newusers-create2\";i:4011;s:25:\"logentry-newusers-byemail\";i:4012;s:28:\"logentry-newusers-autocreate\";i:4013;s:26:\"logentry-protect-move_prot\";i:4014;s:26:\"logentry-protect-unprotect\";i:4015;s:24:\"logentry-protect-protect\";i:4016;s:32:\"logentry-protect-protect-cascade\";i:4017;s:23:\"logentry-protect-modify\";i:4018;s:31:\"logentry-protect-modify-cascade\";i:4019;s:22:\"logentry-rights-rights\";i:4020;s:29:\"logentry-rights-rights-legacy\";i:4021;s:27:\"logentry-rights-autopromote\";i:4022;s:22:\"logentry-upload-upload\";i:4023;s:25:\"logentry-upload-overwrite\";i:4024;s:22:\"logentry-upload-revert\";i:4025;s:19:\"log-name-managetags\";i:4026;s:26:\"log-description-managetags\";i:4027;s:26:\"logentry-managetags-create\";i:4028;s:26:\"logentry-managetags-delete\";i:4029;s:28:\"logentry-managetags-activate\";i:4030;s:30:\"logentry-managetags-deactivate\";i:4031;s:12:\"log-name-tag\";i:4032;s:19:\"log-description-tag\";i:4033;s:32:\"logentry-tag-update-add-revision\";i:4034;s:32:\"logentry-tag-update-add-logentry\";i:4035;s:35:\"logentry-tag-update-remove-revision\";i:4036;s:35:\"logentry-tag-update-remove-logentry\";i:4037;s:28:\"logentry-tag-update-revision\";i:4038;s:28:\"logentry-tag-update-logentry\";i:4039;s:10:\"rightsnone\";i:4040;s:14:\"deletedarticle\";i:4041;s:17:\"suppressedarticle\";i:4042;s:16:\"undeletedarticle\";i:4043;s:15:\"patrol-log-line\";i:4044;s:15:\"patrol-log-auto\";i:4045;s:15:\"patrol-log-diff\";i:4046;s:9:\"1movedto2\";i:4047;s:15:\"1movedto2_redir\";i:4048;s:24:\"move-redirect-suppressed\";i:4049;s:23:\"newuserlog-create-entry\";i:4050;s:24:\"newuserlog-create2-entry\";i:4051;s:27:\"newuserlog-autocreate-entry\";i:4052;s:14:\"rightslogentry\";i:4053;s:26:\"rightslogentry-autopromote\";i:4054;s:30:\"rightslogentry-temporary-group\";i:4055;s:15:\"feedback-adding\";i:4056;s:13:\"feedback-back\";i:4057;s:17:\"feedback-bugcheck\";i:4058;s:15:\"feedback-bugnew\";i:4059;s:18:\"feedback-bugornote\";i:4060;s:15:\"feedback-cancel\";i:4061;s:14:\"feedback-close\";i:4062;s:35:\"feedback-external-bug-report-button\";i:4063;s:21:\"feedback-dialog-title\";i:4064;s:21:\"feedback-dialog-intro\";i:4065;s:15:\"feedback-error1\";i:4066;s:15:\"feedback-error4\";i:4067;s:16:\"feedback-message\";i:4068;s:16:\"feedback-subject\";i:4069;s:15:\"feedback-submit\";i:4070;s:14:\"feedback-terms\";i:4071;s:19:\"feedback-termsofuse\";i:4072;s:15:\"feedback-thanks\";i:4073;s:21:\"feedback-thanks-title\";i:4074;s:18:\"feedback-useragent\";i:4075;s:20:\"searchsuggest-search\";i:4076;s:24:\"searchsuggest-containing\";i:4077;s:27:\"search-match-redirect-label\";i:4078;s:26:\"search-match-redirect-help\";i:4079;s:17:\"searchlimit-label\";i:4080;s:16:\"searchlimit-help\";i:4081;s:30:\"api-clientside-error-noconnect\";i:4082;s:25:\"api-clientside-error-http\";i:4083;s:28:\"api-clientside-error-timeout\";i:4084;s:28:\"api-clientside-error-aborted\";i:4085;s:36:\"api-clientside-error-invalidresponse\";i:4086;s:18:\"api-error-badtoken\";i:4087;s:19:\"api-error-emptypage\";i:4088;s:23:\"api-error-publishfailed\";i:4089;s:21:\"api-error-stashfailed\";i:4090;s:25:\"api-error-unknown-warning\";i:4091;s:22:\"api-error-unknownerror\";i:4092;s:16:\"duration-seconds\";i:4093;s:16:\"duration-minutes\";i:4094;s:14:\"duration-hours\";i:4095;s:13:\"duration-days\";i:4096;s:14:\"duration-weeks\";i:4097;s:14:\"duration-years\";i:4098;s:16:\"duration-decades\";i:4099;s:18:\"duration-centuries\";i:4100;s:18:\"duration-millennia\";i:4101;s:14:\"rotate-comment\";i:4102;s:17:\"limitreport-title\";i:4103;s:19:\"limitreport-cputime\";i:4104;s:25:\"limitreport-cputime-value\";i:4105;s:20:\"limitreport-walltime\";i:4106;s:26:\"limitreport-walltime-value\";i:4107;s:26:\"limitreport-ppvisitednodes\";i:4108;s:32:\"limitreport-ppvisitednodes-value\";i:4109;s:28:\"limitreport-ppgeneratednodes\";i:4110;s:34:\"limitreport-ppgeneratednodes-value\";i:4111;s:33:\"limitreport-postexpandincludesize\";i:4112;s:39:\"limitreport-postexpandincludesize-value\";i:4113;s:32:\"limitreport-templateargumentsize\";i:4114;s:38:\"limitreport-templateargumentsize-value\";i:4115;s:26:\"limitreport-expansiondepth\";i:4116;s:32:\"limitreport-expansiondepth-value\";i:4117;s:34:\"limitreport-expensivefunctioncount\";i:4118;s:40:\"limitreport-expensivefunctioncount-value\";i:4119;s:25:\"limitreport-unstrip-depth\";i:4120;s:31:\"limitreport-unstrip-depth-value\";i:4121;s:24:\"limitreport-unstrip-size\";i:4122;s:30:\"limitreport-unstrip-size-value\";i:4123;s:15:\"expandtemplates\";i:4124;s:22:\"expand_templates_intro\";i:4125;s:22:\"expand_templates_title\";i:4126;s:22:\"expand_templates_input\";i:4127;s:23:\"expand_templates_output\";i:4128;s:27:\"expand_templates_xml_output\";i:4129;s:28:\"expand_templates_html_output\";i:4130;s:19:\"expand_templates_ok\";i:4131;s:32:\"expand_templates_remove_comments\";i:4132;s:30:\"expand_templates_remove_nowiki\";i:4133;s:29:\"expand_templates_generate_xml\";i:4134;s:33:\"expand_templates_generate_rawhtml\";i:4135;s:24:\"expand_templates_preview\";i:4136;s:34:\"expand_templates_preview_fail_html\";i:4137;s:39:\"expand_templates_preview_fail_html_anon\";i:4138;s:30:\"expand_templates_input_missing\";i:4139;s:12:\"pagelanguage\";i:4140;s:13:\"pagelang-name\";i:4141;s:17:\"pagelang-language\";i:4142;s:20:\"pagelang-use-default\";i:4143;s:20:\"pagelang-select-lang\";i:4144;s:15:\"pagelang-reason\";i:4145;s:15:\"pagelang-submit\";i:4146;s:25:\"pagelang-nonexistent-page\";i:4147;s:27:\"pagelang-unchanged-language\";i:4148;s:35:\"pagelang-unchanged-language-default\";i:4149;s:18:\"pagelang-db-failed\";i:4150;s:14:\"right-pagelang\";i:4151;s:15:\"action-pagelang\";i:4152;s:17:\"log-name-pagelang\";i:4153;s:24:\"log-description-pagelang\";i:4154;s:26:\"logentry-pagelang-pagelang\";i:4155;s:22:\"default-skin-not-found\";i:4156;s:31:\"default-skin-not-found-no-skins\";i:4157;s:34:\"default-skin-not-found-row-enabled\";i:4158;s:35:\"default-skin-not-found-row-disabled\";i:4159;s:15:\"mediastatistics\";i:4160;s:23:\"mediastatistics-summary\";i:4161;s:22:\"mediastatistics-nfiles\";i:4162;s:22:\"mediastatistics-nbytes\";i:4163;s:28:\"mediastatistics-bytespertype\";i:4164;s:24:\"mediastatistics-allbytes\";i:4165;s:30:\"mediastatistics-table-mimetype\";i:4166;s:32:\"mediastatistics-table-extensions\";i:4167;s:27:\"mediastatistics-table-count\";i:4168;s:32:\"mediastatistics-table-totalbytes\";i:4169;s:30:\"mediastatistics-header-unknown\";i:4170;s:29:\"mediastatistics-header-bitmap\";i:4171;s:30:\"mediastatistics-header-drawing\";i:4172;s:28:\"mediastatistics-header-audio\";i:4173;s:28:\"mediastatistics-header-video\";i:4174;s:33:\"mediastatistics-header-multimedia\";i:4175;s:29:\"mediastatistics-header-office\";i:4176;s:27:\"mediastatistics-header-text\";i:4177;s:33:\"mediastatistics-header-executable\";i:4178;s:30:\"mediastatistics-header-archive\";i:4179;s:25:\"mediastatistics-header-3d\";i:4180;s:28:\"mediastatistics-header-total\";i:4181;s:24:\"json-warn-trailing-comma\";i:4182;s:18:\"json-error-unknown\";i:4183;s:16:\"json-error-depth\";i:4184;s:25:\"json-error-state-mismatch\";i:4185;s:20:\"json-error-ctrl-char\";i:4186;s:17:\"json-error-syntax\";i:4187;s:15:\"json-error-utf8\";i:4188;s:32:\"json-error-invalid-property-name\";i:4189;s:16:\"json-error-utf16\";i:4190;s:21:\"headline-anchor-title\";i:4191;s:30:\"special-characters-group-latin\";i:4192;s:38:\"special-characters-group-latinextended\";i:4193;s:28:\"special-characters-group-ipa\";i:4194;s:32:\"special-characters-group-symbols\";i:4195;s:30:\"special-characters-group-greek\";i:4196;s:38:\"special-characters-group-greekextended\";i:4197;s:33:\"special-characters-group-cyrillic\";i:4198;s:31:\"special-characters-group-arabic\";i:4199;s:39:\"special-characters-group-arabicextended\";i:4200;s:32:\"special-characters-group-persian\";i:4201;s:31:\"special-characters-group-hebrew\";i:4202;s:31:\"special-characters-group-bangla\";i:4203;s:30:\"special-characters-group-tamil\";i:4204;s:31:\"special-characters-group-telugu\";i:4205;s:32:\"special-characters-group-sinhala\";i:4206;s:33:\"special-characters-group-gujarati\";i:4207;s:35:\"special-characters-group-devanagari\";i:4208;s:29:\"special-characters-group-thai\";i:4209;s:28:\"special-characters-group-lao\";i:4210;s:30:\"special-characters-group-khmer\";i:4211;s:43:\"special-characters-group-canadianaboriginal\";i:4212;s:30:\"special-characters-group-runes\";i:4213;s:31:\"special-characters-title-endash\";i:4214;s:31:\"special-characters-title-emdash\";i:4215;s:30:\"special-characters-title-minus\";i:4216;s:22:\"mw-widgets-abandonedit\";i:4217;s:30:\"mw-widgets-abandonedit-discard\";i:4218;s:27:\"mw-widgets-abandonedit-keep\";i:4219;s:28:\"mw-widgets-abandonedit-title\";i:4220;s:30:\"mw-widgets-copytextlayout-copy\";i:4221;s:35:\"mw-widgets-copytextlayout-copy-fail\";i:4222;s:38:\"mw-widgets-copytextlayout-copy-success\";i:4223;s:28:\"mw-widgets-dateinput-no-date\";i:4224;s:36:\"mw-widgets-dateinput-placeholder-day\";i:4225;s:38:\"mw-widgets-dateinput-placeholder-month\";i:4226;s:40:\"mw-widgets-mediasearch-input-placeholder\";i:4227;s:37:\"mw-widgets-mediasearch-recent-uploads\";i:4228;s:32:\"mw-widgets-mediasearch-noresults\";i:4229;s:41:\"mw-widgets-mediasearch-results-aria-label\";i:4230;s:27:\"mw-widgets-table-row-delete\";i:4231;s:42:\"mw-widgets-titleinput-description-new-page\";i:4232;s:42:\"mw-widgets-titleinput-description-redirect\";i:4233;s:52:\"mw-widgets-categoryselector-add-category-placeholder\";i:4234;s:39:\"mw-widgets-usersmultiselect-placeholder\";i:4235;s:37:\"mw-widgets-tagmultiselect-placeholder\";i:4236;s:40:\"mw-widgets-titlesmultiselect-placeholder\";i:4237;s:15:\"date-range-from\";i:4238;s:13:\"date-range-to\";i:4239;s:18:\"sessionmanager-tie\";i:4240;s:23:\"sessionprovider-generic\";i:4241;s:55:\"sessionprovider-mediawiki-session-cookiesessionprovider\";i:4242;s:25:\"sessionprovider-nocookies\";i:4243;s:14:\"randomrootpage\";i:4244;s:23:\"log-action-filter-block\";i:4245;s:30:\"log-action-filter-contentmodel\";i:4246;s:24:\"log-action-filter-delete\";i:4247;s:24:\"log-action-filter-import\";i:4248;s:28:\"log-action-filter-managetags\";i:4249;s:22:\"log-action-filter-move\";i:4250;s:26:\"log-action-filter-newusers\";i:4251;s:24:\"log-action-filter-patrol\";i:4252;s:25:\"log-action-filter-protect\";i:4253;s:24:\"log-action-filter-rights\";i:4254;s:26:\"log-action-filter-suppress\";i:4255;s:24:\"log-action-filter-upload\";i:4256;s:21:\"log-action-filter-all\";i:4257;s:29:\"log-action-filter-block-block\";i:4258;s:31:\"log-action-filter-block-reblock\";i:4259;s:31:\"log-action-filter-block-unblock\";i:4260;s:37:\"log-action-filter-contentmodel-change\";i:4261;s:34:\"log-action-filter-contentmodel-new\";i:4262;s:31:\"log-action-filter-delete-delete\";i:4263;s:37:\"log-action-filter-delete-delete_redir\";i:4264;s:38:\"log-action-filter-delete-delete_redir2\";i:4265;s:32:\"log-action-filter-delete-restore\";i:4266;s:30:\"log-action-filter-delete-event\";i:4267;s:33:\"log-action-filter-delete-revision\";i:4268;s:34:\"log-action-filter-import-interwiki\";i:4269;s:31:\"log-action-filter-import-upload\";i:4270;s:35:\"log-action-filter-managetags-create\";i:4271;s:35:\"log-action-filter-managetags-delete\";i:4272;s:37:\"log-action-filter-managetags-activate\";i:4273;s:39:\"log-action-filter-managetags-deactivate\";i:4274;s:27:\"log-action-filter-move-move\";i:4275;s:33:\"log-action-filter-move-move_redir\";i:4276;s:33:\"log-action-filter-newusers-create\";i:4277;s:34:\"log-action-filter-newusers-create2\";i:4278;s:37:\"log-action-filter-newusers-autocreate\";i:4279;s:34:\"log-action-filter-newusers-byemail\";i:4280;s:31:\"log-action-filter-patrol-patrol\";i:4281;s:35:\"log-action-filter-patrol-autopatrol\";i:4282;s:33:\"log-action-filter-protect-protect\";i:4283;s:32:\"log-action-filter-protect-modify\";i:4284;s:35:\"log-action-filter-protect-unprotect\";i:4285;s:35:\"log-action-filter-protect-move_prot\";i:4286;s:31:\"log-action-filter-rights-rights\";i:4287;s:36:\"log-action-filter-rights-autopromote\";i:4288;s:32:\"log-action-filter-suppress-event\";i:4289;s:35:\"log-action-filter-suppress-revision\";i:4290;s:33:\"log-action-filter-suppress-delete\";i:4291;s:32:\"log-action-filter-suppress-block\";i:4292;s:34:\"log-action-filter-suppress-reblock\";i:4293;s:31:\"log-action-filter-upload-upload\";i:4294;s:34:\"log-action-filter-upload-overwrite\";i:4295;s:31:\"log-action-filter-upload-revert\";i:4296;s:33:\"authmanager-authn-not-in-progress\";i:4297;s:28:\"authmanager-authn-no-primary\";i:4298;s:31:\"authmanager-authn-no-local-user\";i:4299;s:36:\"authmanager-authn-no-local-user-link\";i:4300;s:35:\"authmanager-authn-autocreate-failed\";i:4301;s:32:\"authmanager-change-not-supported\";i:4302;s:27:\"authmanager-create-disabled\";i:4303;s:29:\"authmanager-create-from-login\";i:4304;s:34:\"authmanager-create-not-in-progress\";i:4305;s:29:\"authmanager-create-no-primary\";i:4306;s:27:\"authmanager-link-no-primary\";i:4307;s:32:\"authmanager-link-not-in-progress\";i:4308;s:29:\"authmanager-autocreate-noperm\";i:4309;s:32:\"authmanager-autocreate-exception\";i:4310;s:28:\"authmanager-userdoesnotexist\";i:4311;s:45:\"authmanager-userlogin-remembermypassword-help\";i:4312;s:25:\"authmanager-username-help\";i:4313;s:25:\"authmanager-password-help\";i:4314;s:23:\"authmanager-domain-help\";i:4315;s:23:\"authmanager-retype-help\";i:4316;s:23:\"authmanager-email-label\";i:4317;s:22:\"authmanager-email-help\";i:4318;s:26:\"authmanager-realname-label\";i:4319;s:25:\"authmanager-realname-help\";i:4320;s:29:\"authmanager-provider-password\";i:4321;s:36:\"authmanager-provider-password-domain\";i:4322;s:35:\"authmanager-account-password-domain\";i:4323;s:38:\"authmanager-provider-temporarypassword\";i:4324;s:32:\"authprovider-confirmlink-message\";i:4325;s:31:\"authprovider-confirmlink-option\";i:4326;s:38:\"authprovider-confirmlink-request-label\";i:4327;s:37:\"authprovider-confirmlink-request-help\";i:4328;s:37:\"authprovider-confirmlink-success-line\";i:4329;s:36:\"authprovider-confirmlink-failed-line\";i:4330;s:31:\"authprovider-confirmlink-failed\";i:4331;s:32:\"authprovider-confirmlink-ok-help\";i:4332;s:33:\"authprovider-resetpass-skip-label\";i:4333;s:32:\"authprovider-resetpass-skip-help\";i:4334;s:24:\"authform-nosession-login\";i:4335;s:25:\"authform-nosession-signup\";i:4336;s:17:\"authform-newtoken\";i:4337;s:16:\"authform-notoken\";i:4338;s:19:\"authform-wrongtoken\";i:4339;s:43:\"specialpage-securitylevel-not-allowed-title\";i:4340;s:37:\"specialpage-securitylevel-not-allowed\";i:4341;s:21:\"authpage-cannot-login\";i:4342;s:30:\"authpage-cannot-login-continue\";i:4343;s:22:\"authpage-cannot-create\";i:4344;s:31:\"authpage-cannot-create-continue\";i:4345;s:20:\"authpage-cannot-link\";i:4346;s:29:\"authpage-cannot-link-continue\";i:4347;s:28:\"cannotauth-not-allowed-title\";i:4348;s:22:\"cannotauth-not-allowed\";i:4349;s:17:\"changecredentials\";i:4350;s:24:\"changecredentials-submit\";i:4351;s:32:\"changecredentials-invalidsubpage\";i:4352;s:25:\"changecredentials-success\";i:4353;s:17:\"removecredentials\";i:4354;s:24:\"removecredentials-submit\";i:4355;s:32:\"removecredentials-invalidsubpage\";i:4356;s:25:\"removecredentials-success\";i:4357;s:24:\"credentialsform-provider\";i:4358;s:23:\"credentialsform-account\";i:4359;s:28:\"cannotlink-no-provider-title\";i:4360;s:22:\"cannotlink-no-provider\";i:4361;s:12:\"linkaccounts\";i:4362;s:25:\"linkaccounts-success-text\";i:4363;s:19:\"linkaccounts-submit\";i:4364;s:30:\"cannotunlink-no-provider-title\";i:4365;s:24:\"cannotunlink-no-provider\";i:4366;s:14:\"unlinkaccounts\";i:4367;s:22:\"unlinkaccounts-success\";i:4368;s:32:\"authenticationdatachange-ignored\";i:4369;s:14:\"userjsispublic\";i:4370;s:16:\"userjsonispublic\";i:4371;s:15:\"usercssispublic\";i:4372;s:15:\"userjsdangerous\";i:4373;s:23:\"restrictionsfield-badip\";i:4374;s:23:\"restrictionsfield-label\";i:4375;s:22:\"restrictionsfield-help\";i:4376;s:16:\"edit-error-short\";i:4377;s:15:\"edit-error-long\";i:4378;s:11:\"specialmute\";i:4379;s:19:\"specialmute-success\";i:4380;s:18:\"specialmute-submit\";i:4381;s:28:\"specialmute-label-mute-email\";i:4382;s:18:\"specialmute-header\";i:4383;s:30:\"specialmute-error-invalid-user\";i:4384;s:28:\"specialmute-error-no-options\";i:4385;s:24:\"specialmute-email-footer\";i:4386;s:26:\"specialmute-login-required\";i:4387;s:16:\"mute-preferences\";i:4388;s:5:\"revid\";i:4389;s:6:\"pageid\";i:4390;s:18:\"rawhtml-notallowed\";i:4391;s:13:\"gotointerwiki\";i:4392;s:21:\"gotointerwiki-invalid\";i:4393;s:22:\"gotointerwiki-external\";i:4394;s:17:\"undelete-cantedit\";i:4395;s:19:\"undelete-cantcreate\";i:4396;s:14:\"pagedata-title\";i:4397;s:13:\"pagedata-text\";i:4398;s:23:\"pagedata-not-acceptable\";i:4399;s:18:\"pagedata-bad-title\";i:4400;s:24:\"unregistered-user-config\";i:4401;s:16:\"passwordpolicies\";i:4402;s:24:\"passwordpolicies-summary\";i:4403;s:22:\"passwordpolicies-group\";i:4404;s:25:\"passwordpolicies-policies\";i:4405;s:31:\"passwordpolicies-policy-display\";i:4406;s:40:\"passwordpolicies-policy-displaywithflags\";i:4407;s:45:\"passwordpolicies-policy-minimalpasswordlength\";i:4408;s:52:\"passwordpolicies-policy-minimumpasswordlengthtologin\";i:4409;s:59:\"passwordpolicies-policy-passwordcannotbesubstringinusername\";i:4410;s:51:\"passwordpolicies-policy-passwordcannotmatchdefaults\";i:4411;s:45:\"passwordpolicies-policy-maximalpasswordlength\";i:4412;s:47:\"passwordpolicies-policy-passwordnotincommonlist\";i:4413;s:39:\"passwordpolicies-policyflag-forcechange\";i:4414;s:48:\"passwordpolicies-policyflag-suggestchangeonlogin\";i:4415;s:27:\"mycustomjsredirectprotected\";i:4416;s:22:\"deflate-invaliddeflate\";i:4417;s:14:\"unprotected-js\";i:4418;s:19:\"userlogout-continue\";i:4419;s:22:\"paramvalidator-baduser\";i:4420;s:29:\"paramvalidator-help-type-user\";i:4421;s:42:\"paramvalidator-help-type-user-subtype-name\";i:4422;s:40:\"paramvalidator-help-type-user-subtype-ip\";i:4423;s:42:\"paramvalidator-help-type-user-subtype-cidr\";i:4424;s:47:\"paramvalidator-help-type-user-subtype-interwiki\";i:4425;s:40:\"paramvalidator-help-type-user-subtype-id\";i:4426;s:23:\"paramvalidator-badtitle\";i:4427;s:27:\"paramvalidator-missingtitle\";i:4428;s:30:\"paramvalidator-help-type-title\";i:4429;s:41:\"paramvalidator-help-type-title-must-exist\";i:4430;s:44:\"paramvalidator-help-type-title-no-must-exist\";i:4431;s:43:\"nonmain-slot-differences-therefore-readonly\";i:4432;s:18:\"config-missing-key\";i:4433;s:18:\"config-invalid-key\";i:4434;s:21:\"changeslist-nocomment\";i:4435;s:17:\"view-create-local\";i:4436;s:14:\"nstab-mainpage\";i:4437;s:15:\"view-edit-local\";i:4438;s:19:\"skin-action-protect\";i:4439;s:20:\"skin-action-undelete\";i:4440;s:18:\"skin-action-delete\";i:4441;s:16:\"skin-action-move\";i:4442;s:15:\"exif-imagewidth\";i:4443;s:16:\"exif-imagelength\";i:4444;s:18:\"exif-bitspersample\";i:4445;s:16:\"exif-compression\";i:4446;s:30:\"exif-photometricinterpretation\";i:4447;s:16:\"exif-orientation\";i:4448;s:20:\"exif-samplesperpixel\";i:4449;s:24:\"exif-planarconfiguration\";i:4450;s:21:\"exif-ycbcrsubsampling\";i:4451;s:21:\"exif-ycbcrpositioning\";i:4452;s:16:\"exif-xresolution\";i:4453;s:16:\"exif-yresolution\";i:4454;s:17:\"exif-stripoffsets\";i:4455;s:17:\"exif-rowsperstrip\";i:4456;s:20:\"exif-stripbytecounts\";i:4457;s:26:\"exif-jpeginterchangeformat\";i:4458;s:32:\"exif-jpeginterchangeformatlength\";i:4459;s:15:\"exif-whitepoint\";i:4460;s:26:\"exif-primarychromaticities\";i:4461;s:22:\"exif-ycbcrcoefficients\";i:4462;s:24:\"exif-referenceblackwhite\";i:4463;s:13:\"exif-datetime\";i:4464;s:21:\"exif-imagedescription\";i:4465;s:9:\"exif-make\";i:4466;s:10:\"exif-model\";i:4467;s:13:\"exif-software\";i:4468;s:11:\"exif-artist\";i:4469;s:14:\"exif-copyright\";i:4470;s:16:\"exif-exifversion\";i:4471;s:20:\"exif-flashpixversion\";i:4472;s:15:\"exif-colorspace\";i:4473;s:28:\"exif-componentsconfiguration\";i:4474;s:27:\"exif-compressedbitsperpixel\";i:4475;s:20:\"exif-pixelxdimension\";i:4476;s:20:\"exif-pixelydimension\";i:4477;s:16:\"exif-usercomment\";i:4478;s:21:\"exif-relatedsoundfile\";i:4479;s:21:\"exif-datetimeoriginal\";i:4480;s:22:\"exif-datetimedigitized\";i:4481;s:15:\"exif-subsectime\";i:4482;s:23:\"exif-subsectimeoriginal\";i:4483;s:24:\"exif-subsectimedigitized\";i:4484;s:17:\"exif-exposuretime\";i:4485;s:24:\"exif-exposuretime-format\";i:4486;s:12:\"exif-fnumber\";i:4487;s:19:\"exif-fnumber-format\";i:4488;s:20:\"exif-exposureprogram\";i:4489;s:24:\"exif-spectralsensitivity\";i:4490;s:20:\"exif-isospeedratings\";i:4491;s:22:\"exif-shutterspeedvalue\";i:4492;s:18:\"exif-aperturevalue\";i:4493;s:20:\"exif-brightnessvalue\";i:4494;s:22:\"exif-exposurebiasvalue\";i:4495;s:21:\"exif-maxaperturevalue\";i:4496;s:20:\"exif-subjectdistance\";i:4497;s:17:\"exif-meteringmode\";i:4498;s:16:\"exif-lightsource\";i:4499;s:10:\"exif-flash\";i:4500;s:16:\"exif-focallength\";i:4501;s:23:\"exif-focallength-format\";i:4502;s:16:\"exif-subjectarea\";i:4503;s:16:\"exif-flashenergy\";i:4504;s:26:\"exif-focalplanexresolution\";i:4505;s:26:\"exif-focalplaneyresolution\";i:4506;s:29:\"exif-focalplaneresolutionunit\";i:4507;s:20:\"exif-subjectlocation\";i:4508;s:18:\"exif-exposureindex\";i:4509;s:18:\"exif-sensingmethod\";i:4510;s:15:\"exif-filesource\";i:4511;s:14:\"exif-scenetype\";i:4512;s:19:\"exif-customrendered\";i:4513;s:17:\"exif-exposuremode\";i:4514;s:17:\"exif-whitebalance\";i:4515;s:21:\"exif-digitalzoomratio\";i:4516;s:26:\"exif-focallengthin35mmfilm\";i:4517;s:21:\"exif-scenecapturetype\";i:4518;s:16:\"exif-gaincontrol\";i:4519;s:13:\"exif-contrast\";i:4520;s:15:\"exif-saturation\";i:4521;s:14:\"exif-sharpness\";i:4522;s:29:\"exif-devicesettingdescription\";i:4523;s:25:\"exif-subjectdistancerange\";i:4524;s:18:\"exif-imageuniqueid\";i:4525;s:17:\"exif-gpsversionid\";i:4526;s:19:\"exif-gpslatituderef\";i:4527;s:16:\"exif-gpslatitude\";i:4528;s:20:\"exif-gpslongituderef\";i:4529;s:17:\"exif-gpslongitude\";i:4530;s:19:\"exif-gpsaltituderef\";i:4531;s:16:\"exif-gpsaltitude\";i:4532;s:17:\"exif-gpstimestamp\";i:4533;s:18:\"exif-gpssatellites\";i:4534;s:14:\"exif-gpsstatus\";i:4535;s:19:\"exif-gpsmeasuremode\";i:4536;s:11:\"exif-gpsdop\";i:4537;s:16:\"exif-gpsspeedref\";i:4538;s:13:\"exif-gpsspeed\";i:4539;s:16:\"exif-gpstrackref\";i:4540;s:13:\"exif-gpstrack\";i:4541;s:23:\"exif-gpsimgdirectionref\";i:4542;s:20:\"exif-gpsimgdirection\";i:4543;s:16:\"exif-gpsmapdatum\";i:4544;s:23:\"exif-gpsdestlatituderef\";i:4545;s:20:\"exif-gpsdestlatitude\";i:4546;s:24:\"exif-gpsdestlongituderef\";i:4547;s:21:\"exif-gpsdestlongitude\";i:4548;s:22:\"exif-gpsdestbearingref\";i:4549;s:19:\"exif-gpsdestbearing\";i:4550;s:23:\"exif-gpsdestdistanceref\";i:4551;s:20:\"exif-gpsdestdistance\";i:4552;s:24:\"exif-gpsprocessingmethod\";i:4553;s:23:\"exif-gpsareainformation\";i:4554;s:17:\"exif-gpsdatestamp\";i:4555;s:20:\"exif-gpsdifferential\";i:4556;s:22:\"exif-coordinate-format\";i:4557;s:20:\"exif-jpegfilecomment\";i:4558;s:13:\"exif-keywords\";i:4559;s:23:\"exif-worldregioncreated\";i:4560;s:19:\"exif-countrycreated\";i:4561;s:23:\"exif-countrycodecreated\";i:4562;s:27:\"exif-provinceorstatecreated\";i:4563;s:16:\"exif-citycreated\";i:4564;s:23:\"exif-sublocationcreated\";i:4565;s:20:\"exif-worldregiondest\";i:4566;s:16:\"exif-countrydest\";i:4567;s:20:\"exif-countrycodedest\";i:4568;s:24:\"exif-provinceorstatedest\";i:4569;s:13:\"exif-citydest\";i:4570;s:20:\"exif-sublocationdest\";i:4571;s:15:\"exif-objectname\";i:4572;s:24:\"exif-specialinstructions\";i:4573;s:13:\"exif-headline\";i:4574;s:11:\"exif-credit\";i:4575;s:11:\"exif-source\";i:4576;s:15:\"exif-editstatus\";i:4577;s:12:\"exif-urgency\";i:4578;s:22:\"exif-fixtureidentifier\";i:4579;s:17:\"exif-locationdest\";i:4580;s:21:\"exif-locationdestcode\";i:4581;s:16:\"exif-objectcycle\";i:4582;s:12:\"exif-contact\";i:4583;s:11:\"exif-writer\";i:4584;s:17:\"exif-languagecode\";i:4585;s:15:\"exif-iimversion\";i:4586;s:16:\"exif-iimcategory\";i:4587;s:28:\"exif-iimsupplementalcategory\";i:4588;s:20:\"exif-datetimeexpires\";i:4589;s:21:\"exif-datetimereleased\";i:4590;s:28:\"exif-originaltransmissionref\";i:4591;s:15:\"exif-identifier\";i:4592;s:9:\"exif-lens\";i:4593;s:17:\"exif-serialnumber\";i:4594;s:20:\"exif-cameraownername\";i:4595;s:10:\"exif-label\";i:4596;s:21:\"exif-datetimemetadata\";i:4597;s:13:\"exif-nickname\";i:4598;s:11:\"exif-rating\";i:4599;s:22:\"exif-rightscertificate\";i:4600;s:16:\"exif-copyrighted\";i:4601;s:19:\"exif-copyrightowner\";i:4602;s:15:\"exif-usageterms\";i:4603;s:17:\"exif-webstatement\";i:4604;s:23:\"exif-originaldocumentid\";i:4605;s:15:\"exif-licenseurl\";i:4606;s:23:\"exif-morepermissionsurl\";i:4607;s:19:\"exif-attributionurl\";i:4608;s:29:\"exif-preferredattributionname\";i:4609;s:19:\"exif-pngfilecomment\";i:4610;s:15:\"exif-disclaimer\";i:4611;s:19:\"exif-contentwarning\";i:4612;s:19:\"exif-giffilecomment\";i:4613;s:22:\"exif-intellectualgenre\";i:4614;s:20:\"exif-subjectnewscode\";i:4615;s:14:\"exif-scenecode\";i:4616;s:10:\"exif-event\";i:4617;s:24:\"exif-organisationinimage\";i:4618;s:18:\"exif-personinimage\";i:4619;s:24:\"exif-originalimageheight\";i:4620;s:23:\"exif-originalimagewidth\";i:4621;s:15:\"exif-make-value\";i:4622;s:16:\"exif-model-value\";i:4623;s:19:\"exif-software-value\";i:4624;s:27:\"exif-software-version-value\";i:4625;s:18:\"exif-contact-value\";i:4626;s:26:\"exif-subjectnewscode-value\";i:4627;s:18:\"exif-compression-1\";i:4628;s:18:\"exif-compression-2\";i:4629;s:18:\"exif-compression-3\";i:4630;s:18:\"exif-compression-4\";i:4631;s:18:\"exif-compression-5\";i:4632;s:18:\"exif-compression-6\";i:4633;s:18:\"exif-compression-7\";i:4634;s:18:\"exif-compression-8\";i:4635;s:22:\"exif-compression-32773\";i:4636;s:22:\"exif-compression-32946\";i:4637;s:22:\"exif-compression-34712\";i:4638;s:21:\"exif-copyrighted-true\";i:4639;s:22:\"exif-copyrighted-false\";i:4640;s:32:\"exif-photometricinterpretation-0\";i:4641;s:32:\"exif-photometricinterpretation-1\";i:4642;s:32:\"exif-photometricinterpretation-2\";i:4643;s:32:\"exif-photometricinterpretation-3\";i:4644;s:32:\"exif-photometricinterpretation-4\";i:4645;s:32:\"exif-photometricinterpretation-5\";i:4646;s:32:\"exif-photometricinterpretation-6\";i:4647;s:32:\"exif-photometricinterpretation-8\";i:4648;s:32:\"exif-photometricinterpretation-9\";i:4649;s:33:\"exif-photometricinterpretation-10\";i:4650;s:36:\"exif-photometricinterpretation-32803\";i:4651;s:36:\"exif-photometricinterpretation-34892\";i:4652;s:16:\"exif-unknowndate\";i:4653;s:18:\"exif-orientation-1\";i:4654;s:18:\"exif-orientation-2\";i:4655;s:18:\"exif-orientation-3\";i:4656;s:18:\"exif-orientation-4\";i:4657;s:18:\"exif-orientation-5\";i:4658;s:18:\"exif-orientation-6\";i:4659;s:18:\"exif-orientation-7\";i:4660;s:18:\"exif-orientation-8\";i:4661;s:26:\"exif-planarconfiguration-1\";i:4662;s:26:\"exif-planarconfiguration-2\";i:4663;s:19:\"exif-xyresolution-i\";i:4664;s:19:\"exif-xyresolution-c\";i:4665;s:17:\"exif-colorspace-1\";i:4666;s:21:\"exif-colorspace-65535\";i:4667;s:30:\"exif-componentsconfiguration-0\";i:4668;s:30:\"exif-componentsconfiguration-1\";i:4669;s:30:\"exif-componentsconfiguration-2\";i:4670;s:30:\"exif-componentsconfiguration-3\";i:4671;s:30:\"exif-componentsconfiguration-4\";i:4672;s:30:\"exif-componentsconfiguration-5\";i:4673;s:30:\"exif-componentsconfiguration-6\";i:4674;s:22:\"exif-exposureprogram-0\";i:4675;s:22:\"exif-exposureprogram-1\";i:4676;s:22:\"exif-exposureprogram-2\";i:4677;s:22:\"exif-exposureprogram-3\";i:4678;s:22:\"exif-exposureprogram-4\";i:4679;s:22:\"exif-exposureprogram-5\";i:4680;s:22:\"exif-exposureprogram-6\";i:4681;s:22:\"exif-exposureprogram-7\";i:4682;s:22:\"exif-exposureprogram-8\";i:4683;s:26:\"exif-subjectdistance-value\";i:4684;s:19:\"exif-meteringmode-0\";i:4685;s:19:\"exif-meteringmode-1\";i:4686;s:19:\"exif-meteringmode-2\";i:4687;s:19:\"exif-meteringmode-3\";i:4688;s:19:\"exif-meteringmode-4\";i:4689;s:19:\"exif-meteringmode-5\";i:4690;s:19:\"exif-meteringmode-6\";i:4691;s:21:\"exif-meteringmode-255\";i:4692;s:18:\"exif-lightsource-0\";i:4693;s:18:\"exif-lightsource-1\";i:4694;s:18:\"exif-lightsource-2\";i:4695;s:18:\"exif-lightsource-3\";i:4696;s:18:\"exif-lightsource-4\";i:4697;s:18:\"exif-lightsource-9\";i:4698;s:19:\"exif-lightsource-10\";i:4699;s:19:\"exif-lightsource-11\";i:4700;s:19:\"exif-lightsource-12\";i:4701;s:19:\"exif-lightsource-13\";i:4702;s:19:\"exif-lightsource-14\";i:4703;s:19:\"exif-lightsource-15\";i:4704;s:19:\"exif-lightsource-17\";i:4705;s:19:\"exif-lightsource-18\";i:4706;s:19:\"exif-lightsource-19\";i:4707;s:19:\"exif-lightsource-20\";i:4708;s:19:\"exif-lightsource-21\";i:4709;s:19:\"exif-lightsource-22\";i:4710;s:19:\"exif-lightsource-23\";i:4711;s:19:\"exif-lightsource-24\";i:4712;s:20:\"exif-lightsource-255\";i:4713;s:18:\"exif-flash-fired-0\";i:4714;s:18:\"exif-flash-fired-1\";i:4715;s:19:\"exif-flash-return-0\";i:4716;s:19:\"exif-flash-return-2\";i:4717;s:19:\"exif-flash-return-3\";i:4718;s:17:\"exif-flash-mode-1\";i:4719;s:17:\"exif-flash-mode-2\";i:4720;s:17:\"exif-flash-mode-3\";i:4721;s:21:\"exif-flash-function-1\";i:4722;s:19:\"exif-flash-redeye-1\";i:4723;s:31:\"exif-focalplaneresolutionunit-2\";i:4724;s:20:\"exif-sensingmethod-1\";i:4725;s:20:\"exif-sensingmethod-2\";i:4726;s:20:\"exif-sensingmethod-3\";i:4727;s:20:\"exif-sensingmethod-4\";i:4728;s:20:\"exif-sensingmethod-5\";i:4729;s:20:\"exif-sensingmethod-7\";i:4730;s:20:\"exif-sensingmethod-8\";i:4731;s:17:\"exif-filesource-3\";i:4732;s:16:\"exif-scenetype-1\";i:4733;s:21:\"exif-customrendered-0\";i:4734;s:21:\"exif-customrendered-1\";i:4735;s:21:\"exif-customrendered-2\";i:4736;s:21:\"exif-customrendered-3\";i:4737;s:21:\"exif-customrendered-4\";i:4738;s:21:\"exif-customrendered-6\";i:4739;s:21:\"exif-customrendered-7\";i:4740;s:21:\"exif-customrendered-8\";i:4741;s:19:\"exif-exposuremode-0\";i:4742;s:19:\"exif-exposuremode-1\";i:4743;s:19:\"exif-exposuremode-2\";i:4744;s:19:\"exif-whitebalance-0\";i:4745;s:19:\"exif-whitebalance-1\";i:4746;s:23:\"exif-scenecapturetype-0\";i:4747;s:23:\"exif-scenecapturetype-1\";i:4748;s:23:\"exif-scenecapturetype-2\";i:4749;s:23:\"exif-scenecapturetype-3\";i:4750;s:18:\"exif-gaincontrol-0\";i:4751;s:18:\"exif-gaincontrol-1\";i:4752;s:18:\"exif-gaincontrol-2\";i:4753;s:18:\"exif-gaincontrol-3\";i:4754;s:18:\"exif-gaincontrol-4\";i:4755;s:15:\"exif-contrast-0\";i:4756;s:15:\"exif-contrast-1\";i:4757;s:15:\"exif-contrast-2\";i:4758;s:17:\"exif-saturation-0\";i:4759;s:17:\"exif-saturation-1\";i:4760;s:17:\"exif-saturation-2\";i:4761;s:16:\"exif-sharpness-0\";i:4762;s:16:\"exif-sharpness-1\";i:4763;s:16:\"exif-sharpness-2\";i:4764;s:27:\"exif-subjectdistancerange-0\";i:4765;s:27:\"exif-subjectdistancerange-1\";i:4766;s:27:\"exif-subjectdistancerange-2\";i:4767;s:27:\"exif-subjectdistancerange-3\";i:4768;s:18:\"exif-gpslatitude-n\";i:4769;s:18:\"exif-gpslatitude-s\";i:4770;s:19:\"exif-gpslongitude-e\";i:4771;s:19:\"exif-gpslongitude-w\";i:4772;s:31:\"exif-gpsaltitude-above-sealevel\";i:4773;s:31:\"exif-gpsaltitude-below-sealevel\";i:4774;s:16:\"exif-gpsstatus-a\";i:4775;s:16:\"exif-gpsstatus-v\";i:4776;s:21:\"exif-gpsmeasuremode-2\";i:4777;s:21:\"exif-gpsmeasuremode-3\";i:4778;s:15:\"exif-gpsspeed-k\";i:4779;s:15:\"exif-gpsspeed-m\";i:4780;s:15:\"exif-gpsspeed-n\";i:4781;s:22:\"exif-gpsdestdistance-k\";i:4782;s:22:\"exif-gpsdestdistance-m\";i:4783;s:22:\"exif-gpsdestdistance-n\";i:4784;s:21:\"exif-gpsdop-excellent\";i:4785;s:16:\"exif-gpsdop-good\";i:4786;s:20:\"exif-gpsdop-moderate\";i:4787;s:16:\"exif-gpsdop-fair\";i:4788;s:16:\"exif-gpsdop-poor\";i:4789;s:18:\"exif-objectcycle-a\";i:4790;s:18:\"exif-objectcycle-p\";i:4791;s:18:\"exif-objectcycle-b\";i:4792;s:19:\"exif-gpsdirection-t\";i:4793;s:19:\"exif-gpsdirection-m\";i:4794;s:23:\"exif-ycbcrpositioning-1\";i:4795;s:23:\"exif-ycbcrpositioning-2\";i:4796;s:19:\"exif-dc-contributor\";i:4797;s:16:\"exif-dc-coverage\";i:4798;s:12:\"exif-dc-date\";i:4799;s:17:\"exif-dc-publisher\";i:4800;s:16:\"exif-dc-relation\";i:4801;s:14:\"exif-dc-rights\";i:4802;s:14:\"exif-dc-source\";i:4803;s:12:\"exif-dc-type\";i:4804;s:20:\"exif-rating-rejected\";i:4805;s:29:\"exif-isospeedratings-overflow\";i:4806;s:27:\"exif-maxaperturevalue-value\";i:4807;s:20:\"exif-iimcategory-ace\";i:4808;s:20:\"exif-iimcategory-clj\";i:4809;s:20:\"exif-iimcategory-dis\";i:4810;s:20:\"exif-iimcategory-fin\";i:4811;s:20:\"exif-iimcategory-edu\";i:4812;s:20:\"exif-iimcategory-evn\";i:4813;s:20:\"exif-iimcategory-hth\";i:4814;s:20:\"exif-iimcategory-hum\";i:4815;s:20:\"exif-iimcategory-lab\";i:4816;s:20:\"exif-iimcategory-lif\";i:4817;s:20:\"exif-iimcategory-pol\";i:4818;s:20:\"exif-iimcategory-rel\";i:4819;s:20:\"exif-iimcategory-sci\";i:4820;s:20:\"exif-iimcategory-soi\";i:4821;s:20:\"exif-iimcategory-spo\";i:4822;s:20:\"exif-iimcategory-war\";i:4823;s:20:\"exif-iimcategory-wea\";i:4824;s:19:\"exif-urgency-normal\";i:4825;s:16:\"exif-urgency-low\";i:4826;s:17:\"exif-urgency-high\";i:4827;s:18:\"exif-urgency-other\";i:4828;s:19:\"exif-firstphotodate\";i:4829;s:18:\"exif-lastphotodate\";i:4830;s:19:\"exif-projectiontype\";i:4831;s:35:\"exif-projectiontype-equirectangular\";i:4832;s:22:\"exif-usepanoramaviewer\";i:4833;s:27:\"exif-usepanoramaviewer-true\";i:4834;s:28:\"exif-usepanoramaviewer-false\";i:4835;s:21:\"exif-exposurelockused\";i:4836;s:26:\"exif-exposurelockused-true\";i:4837;s:27:\"exif-exposurelockused-false\";i:4838;s:23:\"exif-poseheadingdegrees\";i:4839;s:21:\"exif-posepitchdegrees\";i:4840;s:20:\"exif-poserolldegrees\";i:4841;s:30:\"exif-initialviewheadingdegrees\";i:4842;s:28:\"exif-initialviewpitchdegrees\";i:4843;s:27:\"exif-initialviewrolldegrees\";i:4844;s:32:\"exif-initialhorizontalfovdegrees\";i:4845;s:30:\"exif-initialverticalfovdegrees\";i:4846;s:22:\"exif-sourcephotoscount\";i:4847;s:32:\"exif-croppedareaimagewidthpixels\";i:4848;s:33:\"exif-croppedareaimageheightpixels\";i:4849;s:24:\"exif-fullpanowidthpixels\";i:4850;s:25:\"exif-fullpanoheightpixels\";i:4851;s:26:\"exif-croppedarealeftpixels\";i:4852;s:25:\"exif-croppedareatoppixels\";i:4853;s:23:\"exif-initialcameradolly\";i:4854;s:22:\"exif-stitchingsoftware\";i:4855;s:20:\"apihelp-main-summary\";i:4856;s:33:\"apihelp-main-extended-description\";i:4857;s:25:\"apihelp-main-param-action\";i:4858;s:25:\"apihelp-main-param-format\";i:4859;s:25:\"apihelp-main-param-maxlag\";i:4860;s:26:\"apihelp-main-param-smaxage\";i:4861;s:25:\"apihelp-main-param-maxage\";i:4862;s:25:\"apihelp-main-param-assert\";i:4863;s:29:\"apihelp-main-param-assertuser\";i:4864;s:28:\"apihelp-main-param-requestid\";i:4865;s:27:\"apihelp-main-param-servedby\";i:4866;s:31:\"apihelp-main-param-curtimestamp\";i:4867;s:35:\"apihelp-main-param-responselanginfo\";i:4868;s:25:\"apihelp-main-param-origin\";i:4869;s:26:\"apihelp-main-param-uselang\";i:4870;s:26:\"apihelp-main-param-variant\";i:4871;s:30:\"apihelp-main-param-errorformat\";i:4872;s:45:\"apihelp-main-paramvalue-errorformat-plaintext\";i:4873;s:44:\"apihelp-main-paramvalue-errorformat-wikitext\";i:4874;s:40:\"apihelp-main-paramvalue-errorformat-html\";i:4875;s:39:\"apihelp-main-paramvalue-errorformat-raw\";i:4876;s:40:\"apihelp-main-paramvalue-errorformat-none\";i:4877;s:38:\"apihelp-main-paramvalue-errorformat-bc\";i:4878;s:28:\"apihelp-main-param-errorlang\";i:4879;s:33:\"apihelp-main-param-errorsuselocal\";i:4880;s:21:\"apihelp-block-summary\";i:4881;s:24:\"apihelp-block-param-user\";i:4882;s:26:\"apihelp-block-param-userid\";i:4883;s:26:\"apihelp-block-param-expiry\";i:4884;s:26:\"apihelp-block-param-reason\";i:4885;s:28:\"apihelp-block-param-anononly\";i:4886;s:28:\"apihelp-block-param-nocreate\";i:4887;s:29:\"apihelp-block-param-autoblock\";i:4888;s:27:\"apihelp-block-param-noemail\";i:4889;s:28:\"apihelp-block-param-hidename\";i:4890;s:33:\"apihelp-block-param-allowusertalk\";i:4891;s:27:\"apihelp-block-param-reblock\";i:4892;s:29:\"apihelp-block-param-watchuser\";i:4893;s:35:\"apihelp-block-param-watchlistexpiry\";i:4894;s:24:\"apihelp-block-param-tags\";i:4895;s:27:\"apihelp-block-param-partial\";i:4896;s:36:\"apihelp-block-param-pagerestrictions\";i:4897;s:41:\"apihelp-block-param-namespacerestrictions\";i:4898;s:38:\"apihelp-block-param-actionrestrictions\";i:4899;s:31:\"apihelp-block-example-ip-simple\";i:4900;s:34:\"apihelp-block-example-user-complex\";i:4901;s:40:\"apihelp-changeauthenticationdata-summary\";i:4902;s:49:\"apihelp-changeauthenticationdata-example-password\";i:4903;s:34:\"apihelp-changecontentmodel-summary\";i:4904;s:38:\"apihelp-changecontentmodel-param-title\";i:4905;s:39:\"apihelp-changecontentmodel-param-pageid\";i:4906;s:40:\"apihelp-changecontentmodel-param-summary\";i:4907;s:37:\"apihelp-changecontentmodel-param-tags\";i:4908;s:38:\"apihelp-changecontentmodel-param-model\";i:4909;s:36:\"apihelp-changecontentmodel-param-bot\";i:4910;s:34:\"apihelp-changecontentmodel-example\";i:4911;s:26:\"apihelp-checktoken-summary\";i:4912;s:29:\"apihelp-checktoken-param-type\";i:4913;s:30:\"apihelp-checktoken-param-token\";i:4914;s:36:\"apihelp-checktoken-param-maxtokenage\";i:4915;s:33:\"apihelp-checktoken-example-simple\";i:4916;s:27:\"apihelp-clearhasmsg-summary\";i:4917;s:29:\"apihelp-clearhasmsg-example-1\";i:4918;s:27:\"apihelp-clientlogin-summary\";i:4919;s:33:\"apihelp-clientlogin-example-login\";i:4920;s:34:\"apihelp-clientlogin-example-login2\";i:4921;s:23:\"apihelp-compare-summary\";i:4922;s:36:\"apihelp-compare-extended-description\";i:4923;s:31:\"apihelp-compare-param-fromtitle\";i:4924;s:28:\"apihelp-compare-param-fromid\";i:4925;s:29:\"apihelp-compare-param-fromrev\";i:4926;s:29:\"apihelp-compare-param-frompst\";i:4927;s:31:\"apihelp-compare-param-fromslots\";i:4928;s:37:\"apihelp-compare-param-fromtext-{slot}\";i:4929;s:40:\"apihelp-compare-param-fromsection-{slot}\";i:4930;s:45:\"apihelp-compare-param-fromcontentmodel-{slot}\";i:4931;s:46:\"apihelp-compare-param-fromcontentformat-{slot}\";i:4932;s:30:\"apihelp-compare-param-fromtext\";i:4933;s:38:\"apihelp-compare-param-fromcontentmodel\";i:4934;s:39:\"apihelp-compare-param-fromcontentformat\";i:4935;s:33:\"apihelp-compare-param-fromsection\";i:4936;s:29:\"apihelp-compare-param-totitle\";i:4937;s:26:\"apihelp-compare-param-toid\";i:4938;s:27:\"apihelp-compare-param-torev\";i:4939;s:32:\"apihelp-compare-param-torelative\";i:4940;s:27:\"apihelp-compare-param-topst\";i:4941;s:29:\"apihelp-compare-param-toslots\";i:4942;s:35:\"apihelp-compare-param-totext-{slot}\";i:4943;s:38:\"apihelp-compare-param-tosection-{slot}\";i:4944;s:43:\"apihelp-compare-param-tocontentmodel-{slot}\";i:4945;s:44:\"apihelp-compare-param-tocontentformat-{slot}\";i:4946;s:28:\"apihelp-compare-param-totext\";i:4947;s:36:\"apihelp-compare-param-tocontentmodel\";i:4948;s:37:\"apihelp-compare-param-tocontentformat\";i:4949;s:31:\"apihelp-compare-param-tosection\";i:4950;s:26:\"apihelp-compare-param-prop\";i:4951;s:36:\"apihelp-compare-paramvalue-prop-diff\";i:4952;s:40:\"apihelp-compare-paramvalue-prop-diffsize\";i:4953;s:35:\"apihelp-compare-paramvalue-prop-rel\";i:4954;s:35:\"apihelp-compare-paramvalue-prop-ids\";i:4955;s:37:\"apihelp-compare-paramvalue-prop-title\";i:4956;s:36:\"apihelp-compare-paramvalue-prop-user\";i:4957;s:39:\"apihelp-compare-paramvalue-prop-comment\";i:4958;s:45:\"apihelp-compare-paramvalue-prop-parsedcomment\";i:4959;s:36:\"apihelp-compare-paramvalue-prop-size\";i:4960;s:27:\"apihelp-compare-param-slots\";i:4961;s:25:\"apihelp-compare-example-1\";i:4962;s:29:\"apihelp-createaccount-summary\";i:4963;s:41:\"apihelp-createaccount-param-preservestate\";i:4964;s:36:\"apihelp-createaccount-example-create\";i:4965;s:25:\"apihelp-cspreport-summary\";i:4966;s:34:\"apihelp-cspreport-param-reportonly\";i:4967;s:30:\"apihelp-cspreport-param-source\";i:4968;s:22:\"apihelp-delete-summary\";i:4969;s:26:\"apihelp-delete-param-title\";i:4970;s:27:\"apihelp-delete-param-pageid\";i:4971;s:27:\"apihelp-delete-param-reason\";i:4972;s:25:\"apihelp-delete-param-tags\";i:4973;s:31:\"apihelp-delete-param-deletetalk\";i:4974;s:26:\"apihelp-delete-param-watch\";i:4975;s:30:\"apihelp-delete-param-watchlist\";i:4976;s:36:\"apihelp-delete-param-watchlistexpiry\";i:4977;s:28:\"apihelp-delete-param-unwatch\";i:4978;s:29:\"apihelp-delete-param-oldimage\";i:4979;s:29:\"apihelp-delete-example-simple\";i:4980;s:29:\"apihelp-delete-example-reason\";i:4981;s:24:\"apihelp-disabled-summary\";i:4982;s:20:\"apihelp-edit-summary\";i:4983;s:24:\"apihelp-edit-param-title\";i:4984;s:25:\"apihelp-edit-param-pageid\";i:4985;s:26:\"apihelp-edit-param-section\";i:4986;s:31:\"apihelp-edit-param-sectiontitle\";i:4987;s:23:\"apihelp-edit-param-text\";i:4988;s:26:\"apihelp-edit-param-summary\";i:4989;s:23:\"apihelp-edit-param-tags\";i:4990;s:24:\"apihelp-edit-param-minor\";i:4991;s:27:\"apihelp-edit-param-notminor\";i:4992;s:22:\"apihelp-edit-param-bot\";i:4993;s:28:\"apihelp-edit-param-baserevid\";i:4994;s:32:\"apihelp-edit-param-basetimestamp\";i:4995;s:33:\"apihelp-edit-param-starttimestamp\";i:4996;s:27:\"apihelp-edit-param-recreate\";i:4997;s:29:\"apihelp-edit-param-createonly\";i:4998;s:27:\"apihelp-edit-param-nocreate\";i:4999;s:24:\"apihelp-edit-param-watch\";i:5000;s:26:\"apihelp-edit-param-unwatch\";i:5001;s:28:\"apihelp-edit-param-watchlist\";i:5002;s:34:\"apihelp-edit-param-watchlistexpiry\";i:5003;s:22:\"apihelp-edit-param-md5\";i:5004;s:30:\"apihelp-edit-param-prependtext\";i:5005;s:29:\"apihelp-edit-param-appendtext\";i:5006;s:23:\"apihelp-edit-param-undo\";i:5007;s:28:\"apihelp-edit-param-undoafter\";i:5008;s:27:\"apihelp-edit-param-redirect\";i:5009;s:32:\"apihelp-edit-param-contentformat\";i:5010;s:31:\"apihelp-edit-param-contentmodel\";i:5011;s:24:\"apihelp-edit-param-token\";i:5012;s:25:\"apihelp-edit-example-edit\";i:5013;s:28:\"apihelp-edit-example-prepend\";i:5014;s:25:\"apihelp-edit-example-undo\";i:5015;s:25:\"apihelp-emailuser-summary\";i:5016;s:30:\"apihelp-emailuser-param-target\";i:5017;s:31:\"apihelp-emailuser-param-subject\";i:5018;s:28:\"apihelp-emailuser-param-text\";i:5019;s:28:\"apihelp-emailuser-param-ccme\";i:5020;s:31:\"apihelp-emailuser-example-email\";i:5021;s:31:\"apihelp-expandtemplates-summary\";i:5022;s:35:\"apihelp-expandtemplates-param-title\";i:5023;s:34:\"apihelp-expandtemplates-param-text\";i:5024;s:35:\"apihelp-expandtemplates-param-revid\";i:5025;s:34:\"apihelp-expandtemplates-param-prop\";i:5026;s:48:\"apihelp-expandtemplates-paramvalue-prop-wikitext\";i:5027;s:50:\"apihelp-expandtemplates-paramvalue-prop-categories\";i:5028;s:50:\"apihelp-expandtemplates-paramvalue-prop-properties\";i:5029;s:48:\"apihelp-expandtemplates-paramvalue-prop-volatile\";i:5030;s:43:\"apihelp-expandtemplates-paramvalue-prop-ttl\";i:5031;s:47:\"apihelp-expandtemplates-paramvalue-prop-modules\";i:5032;s:52:\"apihelp-expandtemplates-paramvalue-prop-jsconfigvars\";i:5033;s:59:\"apihelp-expandtemplates-paramvalue-prop-encodedjsconfigvars\";i:5034;s:49:\"apihelp-expandtemplates-paramvalue-prop-parsetree\";i:5035;s:45:\"apihelp-expandtemplates-param-includecomments\";i:5036;s:41:\"apihelp-expandtemplates-param-generatexml\";i:5037;s:46:\"apihelp-expandtemplates-param-showstrategykeys\";i:5038;s:38:\"apihelp-expandtemplates-example-simple\";i:5039;s:33:\"apihelp-feedcontributions-summary\";i:5040;s:42:\"apihelp-feedcontributions-param-feedformat\";i:5041;s:36:\"apihelp-feedcontributions-param-user\";i:5042;s:41:\"apihelp-feedcontributions-param-namespace\";i:5043;s:36:\"apihelp-feedcontributions-param-year\";i:5044;s:37:\"apihelp-feedcontributions-param-month\";i:5045;s:41:\"apihelp-feedcontributions-param-tagfilter\";i:5046;s:43:\"apihelp-feedcontributions-param-deletedonly\";i:5047;s:39:\"apihelp-feedcontributions-param-toponly\";i:5048;s:39:\"apihelp-feedcontributions-param-newonly\";i:5049;s:41:\"apihelp-feedcontributions-param-hideminor\";i:5050;s:44:\"apihelp-feedcontributions-param-showsizediff\";i:5051;s:40:\"apihelp-feedcontributions-example-simple\";i:5052;s:33:\"apihelp-feedrecentchanges-summary\";i:5053;s:42:\"apihelp-feedrecentchanges-param-feedformat\";i:5054;s:41:\"apihelp-feedrecentchanges-param-namespace\";i:5055;s:38:\"apihelp-feedrecentchanges-param-invert\";i:5056;s:42:\"apihelp-feedrecentchanges-param-associated\";i:5057;s:36:\"apihelp-feedrecentchanges-param-days\";i:5058;s:37:\"apihelp-feedrecentchanges-param-limit\";i:5059;s:36:\"apihelp-feedrecentchanges-param-from\";i:5060;s:41:\"apihelp-feedrecentchanges-param-hideminor\";i:5061;s:40:\"apihelp-feedrecentchanges-param-hidebots\";i:5062;s:41:\"apihelp-feedrecentchanges-param-hideanons\";i:5063;s:39:\"apihelp-feedrecentchanges-param-hideliu\";i:5064;s:45:\"apihelp-feedrecentchanges-param-hidepatrolled\";i:5065;s:42:\"apihelp-feedrecentchanges-param-hidemyself\";i:5066;s:50:\"apihelp-feedrecentchanges-param-hidecategorization\";i:5067;s:41:\"apihelp-feedrecentchanges-param-tagfilter\";i:5068;s:38:\"apihelp-feedrecentchanges-param-target\";i:5069;s:44:\"apihelp-feedrecentchanges-param-showlinkedto\";i:5070;s:40:\"apihelp-feedrecentchanges-example-simple\";i:5071;s:40:\"apihelp-feedrecentchanges-example-30days\";i:5072;s:29:\"apihelp-feedwatchlist-summary\";i:5073;s:38:\"apihelp-feedwatchlist-param-feedformat\";i:5074;s:33:\"apihelp-feedwatchlist-param-hours\";i:5075;s:42:\"apihelp-feedwatchlist-param-linktosections\";i:5076;s:37:\"apihelp-feedwatchlist-example-default\";i:5077;s:37:\"apihelp-feedwatchlist-example-all6hrs\";i:5078;s:26:\"apihelp-filerevert-summary\";i:5079;s:33:\"apihelp-filerevert-param-filename\";i:5080;s:32:\"apihelp-filerevert-param-comment\";i:5081;s:36:\"apihelp-filerevert-param-archivename\";i:5082;s:33:\"apihelp-filerevert-example-revert\";i:5083;s:20:\"apihelp-help-summary\";i:5084;s:26:\"apihelp-help-param-modules\";i:5085;s:29:\"apihelp-help-param-submodules\";i:5086;s:38:\"apihelp-help-param-recursivesubmodules\";i:5087;s:29:\"apihelp-help-param-helpformat\";i:5088;s:23:\"apihelp-help-param-wrap\";i:5089;s:22:\"apihelp-help-param-toc\";i:5090;s:25:\"apihelp-help-example-main\";i:5091;s:31:\"apihelp-help-example-submodules\";i:5092;s:30:\"apihelp-help-example-recursive\";i:5093;s:25:\"apihelp-help-example-help\";i:5094;s:26:\"apihelp-help-example-query\";i:5095;s:27:\"apihelp-imagerotate-summary\";i:5096;s:34:\"apihelp-imagerotate-param-rotation\";i:5097;s:30:\"apihelp-imagerotate-param-tags\";i:5098;s:34:\"apihelp-imagerotate-example-simple\";i:5099;s:37:\"apihelp-imagerotate-example-generator\";i:5100;s:22:\"apihelp-import-summary\";i:5101;s:35:\"apihelp-import-extended-description\";i:5102;s:28:\"apihelp-import-param-summary\";i:5103;s:24:\"apihelp-import-param-xml\";i:5104;s:36:\"apihelp-import-param-interwikiprefix\";i:5105;s:37:\"apihelp-import-param-assignknownusers\";i:5106;s:36:\"apihelp-import-param-interwikisource\";i:5107;s:34:\"apihelp-import-param-interwikipage\";i:5108;s:32:\"apihelp-import-param-fullhistory\";i:5109;s:30:\"apihelp-import-param-templates\";i:5110;s:30:\"apihelp-import-param-namespace\";i:5111;s:29:\"apihelp-import-param-rootpage\";i:5112;s:25:\"apihelp-import-param-tags\";i:5113;s:29:\"apihelp-import-example-import\";i:5114;s:27:\"apihelp-linkaccount-summary\";i:5115;s:32:\"apihelp-linkaccount-example-link\";i:5116;s:21:\"apihelp-login-summary\";i:5117;s:34:\"apihelp-login-extended-description\";i:5118;s:49:\"apihelp-login-extended-description-nobotpasswords\";i:5119;s:24:\"apihelp-login-param-name\";i:5120;s:28:\"apihelp-login-param-password\";i:5121;s:26:\"apihelp-login-param-domain\";i:5122;s:25:\"apihelp-login-param-token\";i:5123;s:27:\"apihelp-login-example-login\";i:5124;s:22:\"apihelp-logout-summary\";i:5125;s:29:\"apihelp-logout-example-logout\";i:5126;s:26:\"apihelp-managetags-summary\";i:5127;s:34:\"apihelp-managetags-param-operation\";i:5128;s:28:\"apihelp-managetags-param-tag\";i:5129;s:31:\"apihelp-managetags-param-reason\";i:5130;s:39:\"apihelp-managetags-param-ignorewarnings\";i:5131;s:29:\"apihelp-managetags-param-tags\";i:5132;s:33:\"apihelp-managetags-example-create\";i:5133;s:33:\"apihelp-managetags-example-delete\";i:5134;s:35:\"apihelp-managetags-example-activate\";i:5135;s:37:\"apihelp-managetags-example-deactivate\";i:5136;s:28:\"apihelp-mergehistory-summary\";i:5137;s:31:\"apihelp-mergehistory-param-from\";i:5138;s:33:\"apihelp-mergehistory-param-fromid\";i:5139;s:29:\"apihelp-mergehistory-param-to\";i:5140;s:31:\"apihelp-mergehistory-param-toid\";i:5141;s:36:\"apihelp-mergehistory-param-timestamp\";i:5142;s:33:\"apihelp-mergehistory-param-reason\";i:5143;s:34:\"apihelp-mergehistory-example-merge\";i:5144;s:44:\"apihelp-mergehistory-example-merge-timestamp\";i:5145;s:20:\"apihelp-move-summary\";i:5146;s:23:\"apihelp-move-param-from\";i:5147;s:25:\"apihelp-move-param-fromid\";i:5148;s:21:\"apihelp-move-param-to\";i:5149;s:25:\"apihelp-move-param-reason\";i:5150;s:27:\"apihelp-move-param-movetalk\";i:5151;s:31:\"apihelp-move-param-movesubpages\";i:5152;s:29:\"apihelp-move-param-noredirect\";i:5153;s:24:\"apihelp-move-param-watch\";i:5154;s:26:\"apihelp-move-param-unwatch\";i:5155;s:28:\"apihelp-move-param-watchlist\";i:5156;s:34:\"apihelp-move-param-watchlistexpiry\";i:5157;s:33:\"apihelp-move-param-ignorewarnings\";i:5158;s:23:\"apihelp-move-param-tags\";i:5159;s:25:\"apihelp-move-example-move\";i:5160;s:26:\"apihelp-opensearch-summary\";i:5161;s:31:\"apihelp-opensearch-param-search\";i:5162;s:30:\"apihelp-opensearch-param-limit\";i:5163;s:34:\"apihelp-opensearch-param-namespace\";i:5164;s:32:\"apihelp-opensearch-param-suggest\";i:5165;s:34:\"apihelp-opensearch-param-redirects\";i:5166;s:31:\"apihelp-opensearch-param-format\";i:5167;s:40:\"apihelp-opensearch-param-warningsaserror\";i:5168;s:29:\"apihelp-opensearch-example-te\";i:5169;s:23:\"apihelp-options-summary\";i:5170;s:36:\"apihelp-options-extended-description\";i:5171;s:27:\"apihelp-options-param-reset\";i:5172;s:32:\"apihelp-options-param-resetkinds\";i:5173;s:28:\"apihelp-options-param-change\";i:5174;s:32:\"apihelp-options-param-optionname\";i:5175;s:33:\"apihelp-options-param-optionvalue\";i:5176;s:29:\"apihelp-options-example-reset\";i:5177;s:30:\"apihelp-options-example-change\";i:5178;s:31:\"apihelp-options-example-complex\";i:5179;s:25:\"apihelp-paraminfo-summary\";i:5180;s:31:\"apihelp-paraminfo-param-modules\";i:5181;s:34:\"apihelp-paraminfo-param-helpformat\";i:5182;s:36:\"apihelp-paraminfo-param-querymodules\";i:5183;s:34:\"apihelp-paraminfo-param-mainmodule\";i:5184;s:37:\"apihelp-paraminfo-param-pagesetmodule\";i:5185;s:37:\"apihelp-paraminfo-param-formatmodules\";i:5186;s:27:\"apihelp-paraminfo-example-1\";i:5187;s:27:\"apihelp-paraminfo-example-2\";i:5188;s:21:\"apihelp-parse-summary\";i:5189;s:34:\"apihelp-parse-extended-description\";i:5190;s:25:\"apihelp-parse-param-title\";i:5191;s:24:\"apihelp-parse-param-text\";i:5192;s:25:\"apihelp-parse-param-revid\";i:5193;s:27:\"apihelp-parse-param-summary\";i:5194;s:24:\"apihelp-parse-param-page\";i:5195;s:26:\"apihelp-parse-param-pageid\";i:5196;s:29:\"apihelp-parse-param-redirects\";i:5197;s:25:\"apihelp-parse-param-oldid\";i:5198;s:24:\"apihelp-parse-param-prop\";i:5199;s:34:\"apihelp-parse-paramvalue-prop-text\";i:5200;s:39:\"apihelp-parse-paramvalue-prop-langlinks\";i:5201;s:40:\"apihelp-parse-paramvalue-prop-categories\";i:5202;s:44:\"apihelp-parse-paramvalue-prop-categorieshtml\";i:5203;s:35:\"apihelp-parse-paramvalue-prop-links\";i:5204;s:39:\"apihelp-parse-paramvalue-prop-templates\";i:5205;s:36:\"apihelp-parse-paramvalue-prop-images\";i:5206;s:43:\"apihelp-parse-paramvalue-prop-externallinks\";i:5207;s:38:\"apihelp-parse-paramvalue-prop-sections\";i:5208;s:35:\"apihelp-parse-paramvalue-prop-revid\";i:5209;s:42:\"apihelp-parse-paramvalue-prop-displaytitle\";i:5210;s:38:\"apihelp-parse-paramvalue-prop-subtitle\";i:5211;s:39:\"apihelp-parse-paramvalue-prop-headitems\";i:5212;s:38:\"apihelp-parse-paramvalue-prop-headhtml\";i:5213;s:37:\"apihelp-parse-paramvalue-prop-modules\";i:5214;s:42:\"apihelp-parse-paramvalue-prop-jsconfigvars\";i:5215;s:49:\"apihelp-parse-paramvalue-prop-encodedjsconfigvars\";i:5216;s:40:\"apihelp-parse-paramvalue-prop-indicators\";i:5217;s:37:\"apihelp-parse-paramvalue-prop-iwlinks\";i:5218;s:38:\"apihelp-parse-paramvalue-prop-wikitext\";i:5219;s:40:\"apihelp-parse-paramvalue-prop-properties\";i:5220;s:45:\"apihelp-parse-paramvalue-prop-limitreportdata\";i:5221;s:45:\"apihelp-parse-paramvalue-prop-limitreporthtml\";i:5222;s:39:\"apihelp-parse-paramvalue-prop-parsetree\";i:5223;s:43:\"apihelp-parse-paramvalue-prop-parsewarnings\";i:5224;s:47:\"apihelp-parse-paramvalue-prop-parsewarningshtml\";i:5225;s:35:\"apihelp-parse-param-wrapoutputclass\";i:5226;s:23:\"apihelp-parse-param-pst\";i:5227;s:27:\"apihelp-parse-param-onlypst\";i:5228;s:38:\"apihelp-parse-param-effectivelanglinks\";i:5229;s:27:\"apihelp-parse-param-section\";i:5230;s:32:\"apihelp-parse-param-sectiontitle\";i:5231;s:38:\"apihelp-parse-param-disablelimitreport\";i:5232;s:29:\"apihelp-parse-param-disablepp\";i:5233;s:38:\"apihelp-parse-param-disableeditsection\";i:5234;s:45:\"apihelp-parse-param-disablestylededuplication\";i:5235;s:36:\"apihelp-parse-param-showstrategykeys\";i:5236;s:31:\"apihelp-parse-param-generatexml\";i:5237;s:27:\"apihelp-parse-param-preview\";i:5238;s:34:\"apihelp-parse-param-sectionpreview\";i:5239;s:30:\"apihelp-parse-param-disabletoc\";i:5240;s:27:\"apihelp-parse-param-useskin\";i:5241;s:33:\"apihelp-parse-param-contentformat\";i:5242;s:32:\"apihelp-parse-param-contentmodel\";i:5243;s:26:\"apihelp-parse-example-page\";i:5244;s:26:\"apihelp-parse-example-text\";i:5245;s:31:\"apihelp-parse-example-texttitle\";i:5246;s:29:\"apihelp-parse-example-summary\";i:5247;s:22:\"apihelp-patrol-summary\";i:5248;s:25:\"apihelp-patrol-param-rcid\";i:5249;s:26:\"apihelp-patrol-param-revid\";i:5250;s:25:\"apihelp-patrol-param-tags\";i:5251;s:27:\"apihelp-patrol-example-rcid\";i:5252;s:28:\"apihelp-patrol-example-revid\";i:5253;s:23:\"apihelp-protect-summary\";i:5254;s:27:\"apihelp-protect-param-title\";i:5255;s:28:\"apihelp-protect-param-pageid\";i:5256;s:33:\"apihelp-protect-param-protections\";i:5257;s:28:\"apihelp-protect-param-expiry\";i:5258;s:28:\"apihelp-protect-param-reason\";i:5259;s:26:\"apihelp-protect-param-tags\";i:5260;s:29:\"apihelp-protect-param-cascade\";i:5261;s:27:\"apihelp-protect-param-watch\";i:5262;s:31:\"apihelp-protect-param-watchlist\";i:5263;s:37:\"apihelp-protect-param-watchlistexpiry\";i:5264;s:31:\"apihelp-protect-example-protect\";i:5265;s:33:\"apihelp-protect-example-unprotect\";i:5266;s:34:\"apihelp-protect-example-unprotect2\";i:5267;s:21:\"apihelp-purge-summary\";i:5268;s:35:\"apihelp-purge-param-forcelinkupdate\";i:5269;s:44:\"apihelp-purge-param-forcerecursivelinkupdate\";i:5270;s:28:\"apihelp-purge-example-simple\";i:5271;s:31:\"apihelp-purge-example-generator\";i:5272;s:21:\"apihelp-query-summary\";i:5273;s:34:\"apihelp-query-extended-description\";i:5274;s:24:\"apihelp-query-param-prop\";i:5275;s:24:\"apihelp-query-param-list\";i:5276;s:24:\"apihelp-query-param-meta\";i:5277;s:32:\"apihelp-query-param-indexpageids\";i:5278;s:26:\"apihelp-query-param-export\";i:5279;s:32:\"apihelp-query-param-exportnowrap\";i:5280;s:32:\"apihelp-query-param-exportschema\";i:5281;s:25:\"apihelp-query-param-iwurl\";i:5282;s:31:\"apihelp-query-param-rawcontinue\";i:5283;s:31:\"apihelp-query-example-revisions\";i:5284;s:30:\"apihelp-query-example-allpages\";i:5285;s:35:\"apihelp-query+allcategories-summary\";i:5286;s:38:\"apihelp-query+allcategories-param-from\";i:5287;s:36:\"apihelp-query+allcategories-param-to\";i:5288;s:40:\"apihelp-query+allcategories-param-prefix\";i:5289;s:37:\"apihelp-query+allcategories-param-dir\";i:5290;s:37:\"apihelp-query+allcategories-param-min\";i:5291;s:37:\"apihelp-query+allcategories-param-max\";i:5292;s:39:\"apihelp-query+allcategories-param-limit\";i:5293;s:38:\"apihelp-query+allcategories-param-prop\";i:5294;s:48:\"apihelp-query+allcategories-paramvalue-prop-size\";i:5295;s:50:\"apihelp-query+allcategories-paramvalue-prop-hidden\";i:5296;s:40:\"apihelp-query+allcategories-example-size\";i:5297;s:45:\"apihelp-query+allcategories-example-generator\";i:5298;s:41:\"apihelp-query+alldeletedrevisions-summary\";i:5299;s:52:\"apihelp-query+alldeletedrevisions-paraminfo-useronly\";i:5300;s:55:\"apihelp-query+alldeletedrevisions-paraminfo-nonuseronly\";i:5301;s:45:\"apihelp-query+alldeletedrevisions-param-start\";i:5302;s:43:\"apihelp-query+alldeletedrevisions-param-end\";i:5303;s:44:\"apihelp-query+alldeletedrevisions-param-from\";i:5304;s:42:\"apihelp-query+alldeletedrevisions-param-to\";i:5305;s:46:\"apihelp-query+alldeletedrevisions-param-prefix\";i:5306;s:43:\"apihelp-query+alldeletedrevisions-param-tag\";i:5307;s:44:\"apihelp-query+alldeletedrevisions-param-user\";i:5308;s:51:\"apihelp-query+alldeletedrevisions-param-excludeuser\";i:5309;s:49:\"apihelp-query+alldeletedrevisions-param-namespace\";i:5310;s:60:\"apihelp-query+alldeletedrevisions-param-miser-user-namespace\";i:5311;s:54:\"apihelp-query+alldeletedrevisions-param-generatetitles\";i:5312;s:46:\"apihelp-query+alldeletedrevisions-example-user\";i:5313;s:49:\"apihelp-query+alldeletedrevisions-example-ns-main\";i:5314;s:35:\"apihelp-query+allfileusages-summary\";i:5315;s:38:\"apihelp-query+allfileusages-param-from\";i:5316;s:36:\"apihelp-query+allfileusages-param-to\";i:5317;s:40:\"apihelp-query+allfileusages-param-prefix\";i:5318;s:40:\"apihelp-query+allfileusages-param-unique\";i:5319;s:38:\"apihelp-query+allfileusages-param-prop\";i:5320;s:47:\"apihelp-query+allfileusages-paramvalue-prop-ids\";i:5321;s:49:\"apihelp-query+allfileusages-paramvalue-prop-title\";i:5322;s:39:\"apihelp-query+allfileusages-param-limit\";i:5323;s:37:\"apihelp-query+allfileusages-param-dir\";i:5324;s:37:\"apihelp-query+allfileusages-example-b\";i:5325;s:42:\"apihelp-query+allfileusages-example-unique\";i:5326;s:52:\"apihelp-query+allfileusages-example-unique-generator\";i:5327;s:45:\"apihelp-query+allfileusages-example-generator\";i:5328;s:31:\"apihelp-query+allimages-summary\";i:5329;s:34:\"apihelp-query+allimages-param-sort\";i:5330;s:33:\"apihelp-query+allimages-param-dir\";i:5331;s:34:\"apihelp-query+allimages-param-from\";i:5332;s:32:\"apihelp-query+allimages-param-to\";i:5333;s:35:\"apihelp-query+allimages-param-start\";i:5334;s:33:\"apihelp-query+allimages-param-end\";i:5335;s:36:\"apihelp-query+allimages-param-prefix\";i:5336;s:37:\"apihelp-query+allimages-param-minsize\";i:5337;s:37:\"apihelp-query+allimages-param-maxsize\";i:5338;s:34:\"apihelp-query+allimages-param-sha1\";i:5339;s:40:\"apihelp-query+allimages-param-sha1base36\";i:5340;s:34:\"apihelp-query+allimages-param-user\";i:5341;s:40:\"apihelp-query+allimages-param-filterbots\";i:5342;s:34:\"apihelp-query+allimages-param-mime\";i:5343;s:35:\"apihelp-query+allimages-param-limit\";i:5344;s:33:\"apihelp-query+allimages-example-b\";i:5345;s:38:\"apihelp-query+allimages-example-recent\";i:5346;s:41:\"apihelp-query+allimages-example-mimetypes\";i:5347;s:41:\"apihelp-query+allimages-example-generator\";i:5348;s:30:\"apihelp-query+alllinks-summary\";i:5349;s:33:\"apihelp-query+alllinks-param-from\";i:5350;s:31:\"apihelp-query+alllinks-param-to\";i:5351;s:35:\"apihelp-query+alllinks-param-prefix\";i:5352;s:35:\"apihelp-query+alllinks-param-unique\";i:5353;s:33:\"apihelp-query+alllinks-param-prop\";i:5354;s:42:\"apihelp-query+alllinks-paramvalue-prop-ids\";i:5355;s:44:\"apihelp-query+alllinks-paramvalue-prop-title\";i:5356;s:38:\"apihelp-query+alllinks-param-namespace\";i:5357;s:34:\"apihelp-query+alllinks-param-limit\";i:5358;s:32:\"apihelp-query+alllinks-param-dir\";i:5359;s:32:\"apihelp-query+alllinks-example-b\";i:5360;s:37:\"apihelp-query+alllinks-example-unique\";i:5361;s:47:\"apihelp-query+alllinks-example-unique-generator\";i:5362;s:40:\"apihelp-query+alllinks-example-generator\";i:5363;s:33:\"apihelp-query+allmessages-summary\";i:5364;s:40:\"apihelp-query+allmessages-param-messages\";i:5365;s:36:\"apihelp-query+allmessages-param-prop\";i:5366;s:44:\"apihelp-query+allmessages-param-enableparser\";i:5367;s:41:\"apihelp-query+allmessages-param-nocontent\";i:5368;s:44:\"apihelp-query+allmessages-param-includelocal\";i:5369;s:36:\"apihelp-query+allmessages-param-args\";i:5370;s:38:\"apihelp-query+allmessages-param-filter\";i:5371;s:42:\"apihelp-query+allmessages-param-customised\";i:5372;s:36:\"apihelp-query+allmessages-param-lang\";i:5373;s:36:\"apihelp-query+allmessages-param-from\";i:5374;s:34:\"apihelp-query+allmessages-param-to\";i:5375;s:37:\"apihelp-query+allmessages-param-title\";i:5376;s:38:\"apihelp-query+allmessages-param-prefix\";i:5377;s:37:\"apihelp-query+allmessages-example-ipb\";i:5378;s:36:\"apihelp-query+allmessages-example-de\";i:5379;s:30:\"apihelp-query+allpages-summary\";i:5380;s:33:\"apihelp-query+allpages-param-from\";i:5381;s:31:\"apihelp-query+allpages-param-to\";i:5382;s:35:\"apihelp-query+allpages-param-prefix\";i:5383;s:38:\"apihelp-query+allpages-param-namespace\";i:5384;s:40:\"apihelp-query+allpages-param-filterredir\";i:5385;s:36:\"apihelp-query+allpages-param-minsize\";i:5386;s:36:\"apihelp-query+allpages-param-maxsize\";i:5387;s:35:\"apihelp-query+allpages-param-prtype\";i:5388;s:36:\"apihelp-query+allpages-param-prlevel\";i:5389;s:44:\"apihelp-query+allpages-param-prfiltercascade\";i:5390;s:34:\"apihelp-query+allpages-param-limit\";i:5391;s:32:\"apihelp-query+allpages-param-dir\";i:5392;s:44:\"apihelp-query+allpages-param-filterlanglinks\";i:5393;s:37:\"apihelp-query+allpages-param-prexpiry\";i:5394;s:32:\"apihelp-query+allpages-example-b\";i:5395;s:40:\"apihelp-query+allpages-example-generator\";i:5396;s:50:\"apihelp-query+allpages-example-generator-revisions\";i:5397;s:34:\"apihelp-query+allredirects-summary\";i:5398;s:37:\"apihelp-query+allredirects-param-from\";i:5399;s:35:\"apihelp-query+allredirects-param-to\";i:5400;s:39:\"apihelp-query+allredirects-param-prefix\";i:5401;s:39:\"apihelp-query+allredirects-param-unique\";i:5402;s:37:\"apihelp-query+allredirects-param-prop\";i:5403;s:46:\"apihelp-query+allredirects-paramvalue-prop-ids\";i:5404;s:48:\"apihelp-query+allredirects-paramvalue-prop-title\";i:5405;s:51:\"apihelp-query+allredirects-paramvalue-prop-fragment\";i:5406;s:52:\"apihelp-query+allredirects-paramvalue-prop-interwiki\";i:5407;s:42:\"apihelp-query+allredirects-param-namespace\";i:5408;s:38:\"apihelp-query+allredirects-param-limit\";i:5409;s:36:\"apihelp-query+allredirects-param-dir\";i:5410;s:36:\"apihelp-query+allredirects-example-b\";i:5411;s:41:\"apihelp-query+allredirects-example-unique\";i:5412;s:51:\"apihelp-query+allredirects-example-unique-generator\";i:5413;s:44:\"apihelp-query+allredirects-example-generator\";i:5414;s:34:\"apihelp-query+allrevisions-summary\";i:5415;s:38:\"apihelp-query+allrevisions-param-start\";i:5416;s:36:\"apihelp-query+allrevisions-param-end\";i:5417;s:37:\"apihelp-query+allrevisions-param-user\";i:5418;s:44:\"apihelp-query+allrevisions-param-excludeuser\";i:5419;s:42:\"apihelp-query+allrevisions-param-namespace\";i:5420;s:47:\"apihelp-query+allrevisions-param-generatetitles\";i:5421;s:39:\"apihelp-query+allrevisions-example-user\";i:5422;s:41:\"apihelp-query+allrevisions-example-ns-any\";i:5423;s:36:\"apihelp-query+mystashedfiles-summary\";i:5424;s:39:\"apihelp-query+mystashedfiles-param-prop\";i:5425;s:49:\"apihelp-query+mystashedfiles-paramvalue-prop-size\";i:5426;s:49:\"apihelp-query+mystashedfiles-paramvalue-prop-type\";i:5427;s:40:\"apihelp-query+mystashedfiles-param-limit\";i:5428;s:43:\"apihelp-query+mystashedfiles-example-simple\";i:5429;s:38:\"apihelp-query+alltransclusions-summary\";i:5430;s:41:\"apihelp-query+alltransclusions-param-from\";i:5431;s:39:\"apihelp-query+alltransclusions-param-to\";i:5432;s:43:\"apihelp-query+alltransclusions-param-prefix\";i:5433;s:43:\"apihelp-query+alltransclusions-param-unique\";i:5434;s:41:\"apihelp-query+alltransclusions-param-prop\";i:5435;s:50:\"apihelp-query+alltransclusions-paramvalue-prop-ids\";i:5436;s:52:\"apihelp-query+alltransclusions-paramvalue-prop-title\";i:5437;s:46:\"apihelp-query+alltransclusions-param-namespace\";i:5438;s:42:\"apihelp-query+alltransclusions-param-limit\";i:5439;s:40:\"apihelp-query+alltransclusions-param-dir\";i:5440;s:40:\"apihelp-query+alltransclusions-example-b\";i:5441;s:45:\"apihelp-query+alltransclusions-example-unique\";i:5442;s:55:\"apihelp-query+alltransclusions-example-unique-generator\";i:5443;s:48:\"apihelp-query+alltransclusions-example-generator\";i:5444;s:30:\"apihelp-query+allusers-summary\";i:5445;s:33:\"apihelp-query+allusers-param-from\";i:5446;s:31:\"apihelp-query+allusers-param-to\";i:5447;s:35:\"apihelp-query+allusers-param-prefix\";i:5448;s:32:\"apihelp-query+allusers-param-dir\";i:5449;s:34:\"apihelp-query+allusers-param-group\";i:5450;s:41:\"apihelp-query+allusers-param-excludegroup\";i:5451;s:35:\"apihelp-query+allusers-param-rights\";i:5452;s:33:\"apihelp-query+allusers-param-prop\";i:5453;s:48:\"apihelp-query+allusers-paramvalue-prop-blockinfo\";i:5454;s:45:\"apihelp-query+allusers-paramvalue-prop-groups\";i:5455;s:53:\"apihelp-query+allusers-paramvalue-prop-implicitgroups\";i:5456;s:45:\"apihelp-query+allusers-paramvalue-prop-rights\";i:5457;s:48:\"apihelp-query+allusers-paramvalue-prop-editcount\";i:5458;s:51:\"apihelp-query+allusers-paramvalue-prop-registration\";i:5459;s:49:\"apihelp-query+allusers-paramvalue-prop-centralids\";i:5460;s:34:\"apihelp-query+allusers-param-limit\";i:5461;s:42:\"apihelp-query+allusers-param-witheditsonly\";i:5462;s:40:\"apihelp-query+allusers-param-activeusers\";i:5463;s:41:\"apihelp-query+allusers-param-attachedwiki\";i:5464;s:32:\"apihelp-query+allusers-example-y\";i:5465;s:37:\"apihelp-query+authmanagerinfo-summary\";i:5466;s:62:\"apihelp-query+authmanagerinfo-param-securitysensitiveoperation\";i:5467;s:47:\"apihelp-query+authmanagerinfo-param-requestsfor\";i:5468;s:43:\"apihelp-query+authmanagerinfo-example-login\";i:5469;s:50:\"apihelp-query+authmanagerinfo-example-login-merged\";i:5470;s:64:\"apihelp-query+authmanagerinfo-example-securitysensitiveoperation\";i:5471;s:31:\"apihelp-query+backlinks-summary\";i:5472;s:35:\"apihelp-query+backlinks-param-title\";i:5473;s:36:\"apihelp-query+backlinks-param-pageid\";i:5474;s:39:\"apihelp-query+backlinks-param-namespace\";i:5475;s:33:\"apihelp-query+backlinks-param-dir\";i:5476;s:41:\"apihelp-query+backlinks-param-filterredir\";i:5477;s:35:\"apihelp-query+backlinks-param-limit\";i:5478;s:38:\"apihelp-query+backlinks-param-redirect\";i:5479;s:38:\"apihelp-query+backlinks-example-simple\";i:5480;s:41:\"apihelp-query+backlinks-example-generator\";i:5481;s:28:\"apihelp-query+blocks-summary\";i:5482;s:32:\"apihelp-query+blocks-param-start\";i:5483;s:30:\"apihelp-query+blocks-param-end\";i:5484;s:30:\"apihelp-query+blocks-param-ids\";i:5485;s:32:\"apihelp-query+blocks-param-users\";i:5486;s:29:\"apihelp-query+blocks-param-ip\";i:5487;s:32:\"apihelp-query+blocks-param-limit\";i:5488;s:31:\"apihelp-query+blocks-param-prop\";i:5489;s:39:\"apihelp-query+blocks-paramvalue-prop-id\";i:5490;s:41:\"apihelp-query+blocks-paramvalue-prop-user\";i:5491;s:43:\"apihelp-query+blocks-paramvalue-prop-userid\";i:5492;s:39:\"apihelp-query+blocks-paramvalue-prop-by\";i:5493;s:41:\"apihelp-query+blocks-paramvalue-prop-byid\";i:5494;s:46:\"apihelp-query+blocks-paramvalue-prop-timestamp\";i:5495;s:43:\"apihelp-query+blocks-paramvalue-prop-expiry\";i:5496;s:43:\"apihelp-query+blocks-paramvalue-prop-reason\";i:5497;s:42:\"apihelp-query+blocks-paramvalue-prop-range\";i:5498;s:42:\"apihelp-query+blocks-paramvalue-prop-flags\";i:5499;s:49:\"apihelp-query+blocks-paramvalue-prop-restrictions\";i:5500;s:31:\"apihelp-query+blocks-param-show\";i:5501;s:35:\"apihelp-query+blocks-example-simple\";i:5502;s:34:\"apihelp-query+blocks-example-users\";i:5503;s:32:\"apihelp-query+categories-summary\";i:5504;s:35:\"apihelp-query+categories-param-prop\";i:5505;s:48:\"apihelp-query+categories-paramvalue-prop-sortkey\";i:5506;s:50:\"apihelp-query+categories-paramvalue-prop-timestamp\";i:5507;s:47:\"apihelp-query+categories-paramvalue-prop-hidden\";i:5508;s:35:\"apihelp-query+categories-param-show\";i:5509;s:36:\"apihelp-query+categories-param-limit\";i:5510;s:41:\"apihelp-query+categories-param-categories\";i:5511;s:34:\"apihelp-query+categories-param-dir\";i:5512;s:39:\"apihelp-query+categories-example-simple\";i:5513;s:42:\"apihelp-query+categories-example-generator\";i:5514;s:34:\"apihelp-query+categoryinfo-summary\";i:5515;s:41:\"apihelp-query+categoryinfo-example-simple\";i:5516;s:37:\"apihelp-query+categorymembers-summary\";i:5517;s:41:\"apihelp-query+categorymembers-param-title\";i:5518;s:42:\"apihelp-query+categorymembers-param-pageid\";i:5519;s:40:\"apihelp-query+categorymembers-param-prop\";i:5520;s:49:\"apihelp-query+categorymembers-paramvalue-prop-ids\";i:5521;s:51:\"apihelp-query+categorymembers-paramvalue-prop-title\";i:5522;s:53:\"apihelp-query+categorymembers-paramvalue-prop-sortkey\";i:5523;s:59:\"apihelp-query+categorymembers-paramvalue-prop-sortkeyprefix\";i:5524;s:50:\"apihelp-query+categorymembers-paramvalue-prop-type\";i:5525;s:55:\"apihelp-query+categorymembers-paramvalue-prop-timestamp\";i:5526;s:45:\"apihelp-query+categorymembers-param-namespace\";i:5527;s:40:\"apihelp-query+categorymembers-param-type\";i:5528;s:41:\"apihelp-query+categorymembers-param-limit\";i:5529;s:40:\"apihelp-query+categorymembers-param-sort\";i:5530;s:39:\"apihelp-query+categorymembers-param-dir\";i:5531;s:41:\"apihelp-query+categorymembers-param-start\";i:5532;s:39:\"apihelp-query+categorymembers-param-end\";i:5533;s:51:\"apihelp-query+categorymembers-param-starthexsortkey\";i:5534;s:49:\"apihelp-query+categorymembers-param-endhexsortkey\";i:5535;s:54:\"apihelp-query+categorymembers-param-startsortkeyprefix\";i:5536;s:52:\"apihelp-query+categorymembers-param-endsortkeyprefix\";i:5537;s:48:\"apihelp-query+categorymembers-param-startsortkey\";i:5538;s:46:\"apihelp-query+categorymembers-param-endsortkey\";i:5539;s:44:\"apihelp-query+categorymembers-example-simple\";i:5540;s:47:\"apihelp-query+categorymembers-example-generator\";i:5541;s:34:\"apihelp-query+contributors-summary\";i:5542;s:38:\"apihelp-query+contributors-param-group\";i:5543;s:45:\"apihelp-query+contributors-param-excludegroup\";i:5544;s:39:\"apihelp-query+contributors-param-rights\";i:5545;s:46:\"apihelp-query+contributors-param-excluderights\";i:5546;s:38:\"apihelp-query+contributors-param-limit\";i:5547;s:41:\"apihelp-query+contributors-example-simple\";i:5548;s:38:\"apihelp-query+deletedrevisions-summary\";i:5549;s:51:\"apihelp-query+deletedrevisions-extended-description\";i:5550;s:42:\"apihelp-query+deletedrevisions-param-start\";i:5551;s:40:\"apihelp-query+deletedrevisions-param-end\";i:5552;s:40:\"apihelp-query+deletedrevisions-param-tag\";i:5553;s:41:\"apihelp-query+deletedrevisions-param-user\";i:5554;s:48:\"apihelp-query+deletedrevisions-param-excludeuser\";i:5555;s:45:\"apihelp-query+deletedrevisions-example-titles\";i:5556;s:45:\"apihelp-query+deletedrevisions-example-revids\";i:5557;s:33:\"apihelp-query+deletedrevs-summary\";i:5558;s:46:\"apihelp-query+deletedrevs-extended-description\";i:5559;s:41:\"apihelp-query+deletedrevs-paraminfo-modes\";i:5560;s:37:\"apihelp-query+deletedrevs-param-start\";i:5561;s:35:\"apihelp-query+deletedrevs-param-end\";i:5562;s:36:\"apihelp-query+deletedrevs-param-from\";i:5563;s:34:\"apihelp-query+deletedrevs-param-to\";i:5564;s:38:\"apihelp-query+deletedrevs-param-prefix\";i:5565;s:38:\"apihelp-query+deletedrevs-param-unique\";i:5566;s:35:\"apihelp-query+deletedrevs-param-tag\";i:5567;s:36:\"apihelp-query+deletedrevs-param-user\";i:5568;s:43:\"apihelp-query+deletedrevs-param-excludeuser\";i:5569;s:41:\"apihelp-query+deletedrevs-param-namespace\";i:5570;s:37:\"apihelp-query+deletedrevs-param-limit\";i:5571;s:36:\"apihelp-query+deletedrevs-param-prop\";i:5572;s:39:\"apihelp-query+deletedrevs-example-mode1\";i:5573;s:39:\"apihelp-query+deletedrevs-example-mode2\";i:5574;s:44:\"apihelp-query+deletedrevs-example-mode3-main\";i:5575;s:44:\"apihelp-query+deletedrevs-example-mode3-talk\";i:5576;s:30:\"apihelp-query+disabled-summary\";i:5577;s:36:\"apihelp-query+duplicatefiles-summary\";i:5578;s:40:\"apihelp-query+duplicatefiles-param-limit\";i:5579;s:38:\"apihelp-query+duplicatefiles-param-dir\";i:5580;s:44:\"apihelp-query+duplicatefiles-param-localonly\";i:5581;s:43:\"apihelp-query+duplicatefiles-example-simple\";i:5582;s:46:\"apihelp-query+duplicatefiles-example-generated\";i:5583;s:32:\"apihelp-query+embeddedin-summary\";i:5584;s:36:\"apihelp-query+embeddedin-param-title\";i:5585;s:37:\"apihelp-query+embeddedin-param-pageid\";i:5586;s:40:\"apihelp-query+embeddedin-param-namespace\";i:5587;s:34:\"apihelp-query+embeddedin-param-dir\";i:5588;s:42:\"apihelp-query+embeddedin-param-filterredir\";i:5589;s:36:\"apihelp-query+embeddedin-param-limit\";i:5590;s:39:\"apihelp-query+embeddedin-example-simple\";i:5591;s:42:\"apihelp-query+embeddedin-example-generator\";i:5592;s:30:\"apihelp-query+extlinks-summary\";i:5593;s:34:\"apihelp-query+extlinks-param-limit\";i:5594;s:37:\"apihelp-query+extlinks-param-protocol\";i:5595;s:34:\"apihelp-query+extlinks-param-query\";i:5596;s:38:\"apihelp-query+extlinks-param-expandurl\";i:5597;s:37:\"apihelp-query+extlinks-example-simple\";i:5598;s:33:\"apihelp-query+exturlusage-summary\";i:5599;s:36:\"apihelp-query+exturlusage-param-prop\";i:5600;s:45:\"apihelp-query+exturlusage-paramvalue-prop-ids\";i:5601;s:47:\"apihelp-query+exturlusage-paramvalue-prop-title\";i:5602;s:45:\"apihelp-query+exturlusage-paramvalue-prop-url\";i:5603;s:40:\"apihelp-query+exturlusage-param-protocol\";i:5604;s:37:\"apihelp-query+exturlusage-param-query\";i:5605;s:41:\"apihelp-query+exturlusage-param-namespace\";i:5606;s:37:\"apihelp-query+exturlusage-param-limit\";i:5607;s:41:\"apihelp-query+exturlusage-param-expandurl\";i:5608;s:40:\"apihelp-query+exturlusage-example-simple\";i:5609;s:33:\"apihelp-query+filearchive-summary\";i:5610;s:36:\"apihelp-query+filearchive-param-from\";i:5611;s:34:\"apihelp-query+filearchive-param-to\";i:5612;s:38:\"apihelp-query+filearchive-param-prefix\";i:5613;s:37:\"apihelp-query+filearchive-param-limit\";i:5614;s:35:\"apihelp-query+filearchive-param-dir\";i:5615;s:36:\"apihelp-query+filearchive-param-sha1\";i:5616;s:42:\"apihelp-query+filearchive-param-sha1base36\";i:5617;s:36:\"apihelp-query+filearchive-param-prop\";i:5618;s:46:\"apihelp-query+filearchive-paramvalue-prop-sha1\";i:5619;s:51:\"apihelp-query+filearchive-paramvalue-prop-timestamp\";i:5620;s:46:\"apihelp-query+filearchive-paramvalue-prop-user\";i:5621;s:46:\"apihelp-query+filearchive-paramvalue-prop-size\";i:5622;s:52:\"apihelp-query+filearchive-paramvalue-prop-dimensions\";i:5623;s:53:\"apihelp-query+filearchive-paramvalue-prop-description\";i:5624;s:59:\"apihelp-query+filearchive-paramvalue-prop-parseddescription\";i:5625;s:46:\"apihelp-query+filearchive-paramvalue-prop-mime\";i:5626;s:51:\"apihelp-query+filearchive-paramvalue-prop-mediatype\";i:5627;s:50:\"apihelp-query+filearchive-paramvalue-prop-metadata\";i:5628;s:50:\"apihelp-query+filearchive-paramvalue-prop-bitdepth\";i:5629;s:53:\"apihelp-query+filearchive-paramvalue-prop-archivename\";i:5630;s:40:\"apihelp-query+filearchive-example-simple\";i:5631;s:34:\"apihelp-query+filerepoinfo-summary\";i:5632;s:37:\"apihelp-query+filerepoinfo-param-prop\";i:5633;s:49:\"apihelp-query+filerepoinfo-paramvalue-prop-apiurl\";i:5634;s:54:\"apihelp-query+filerepoinfo-paramvalue-prop-articlepath\";i:5635;s:52:\"apihelp-query+filerepoinfo-paramvalue-prop-canUpload\";i:5636;s:54:\"apihelp-query+filerepoinfo-paramvalue-prop-displayname\";i:5637;s:50:\"apihelp-query+filerepoinfo-paramvalue-prop-favicon\";i:5638;s:59:\"apihelp-query+filerepoinfo-paramvalue-prop-fetchDescription\";i:5639;s:57:\"apihelp-query+filerepoinfo-paramvalue-prop-initialCapital\";i:5640;s:48:\"apihelp-query+filerepoinfo-paramvalue-prop-local\";i:5641;s:47:\"apihelp-query+filerepoinfo-paramvalue-prop-name\";i:5642;s:50:\"apihelp-query+filerepoinfo-paramvalue-prop-rootUrl\";i:5643;s:55:\"apihelp-query+filerepoinfo-paramvalue-prop-scriptDirUrl\";i:5644;s:49:\"apihelp-query+filerepoinfo-paramvalue-prop-server\";i:5645;s:51:\"apihelp-query+filerepoinfo-paramvalue-prop-thumbUrl\";i:5646;s:46:\"apihelp-query+filerepoinfo-paramvalue-prop-url\";i:5647;s:41:\"apihelp-query+filerepoinfo-example-simple\";i:5648;s:31:\"apihelp-query+fileusage-summary\";i:5649;s:34:\"apihelp-query+fileusage-param-prop\";i:5650;s:46:\"apihelp-query+fileusage-paramvalue-prop-pageid\";i:5651;s:45:\"apihelp-query+fileusage-paramvalue-prop-title\";i:5652;s:48:\"apihelp-query+fileusage-paramvalue-prop-redirect\";i:5653;s:39:\"apihelp-query+fileusage-param-namespace\";i:5654;s:35:\"apihelp-query+fileusage-param-limit\";i:5655;s:34:\"apihelp-query+fileusage-param-show\";i:5656;s:38:\"apihelp-query+fileusage-example-simple\";i:5657;s:41:\"apihelp-query+fileusage-example-generator\";i:5658;s:31:\"apihelp-query+imageinfo-summary\";i:5659;s:34:\"apihelp-query+imageinfo-param-prop\";i:5660;s:49:\"apihelp-query+imageinfo-paramvalue-prop-timestamp\";i:5661;s:44:\"apihelp-query+imageinfo-paramvalue-prop-user\";i:5662;s:46:\"apihelp-query+imageinfo-paramvalue-prop-userid\";i:5663;s:47:\"apihelp-query+imageinfo-paramvalue-prop-comment\";i:5664;s:53:\"apihelp-query+imageinfo-paramvalue-prop-parsedcomment\";i:5665;s:54:\"apihelp-query+imageinfo-paramvalue-prop-canonicaltitle\";i:5666;s:43:\"apihelp-query+imageinfo-paramvalue-prop-url\";i:5667;s:44:\"apihelp-query+imageinfo-paramvalue-prop-size\";i:5668;s:50:\"apihelp-query+imageinfo-paramvalue-prop-dimensions\";i:5669;s:44:\"apihelp-query+imageinfo-paramvalue-prop-sha1\";i:5670;s:44:\"apihelp-query+imageinfo-paramvalue-prop-mime\";i:5671;s:49:\"apihelp-query+imageinfo-paramvalue-prop-thumbmime\";i:5672;s:49:\"apihelp-query+imageinfo-paramvalue-prop-mediatype\";i:5673;s:48:\"apihelp-query+imageinfo-paramvalue-prop-metadata\";i:5674;s:54:\"apihelp-query+imageinfo-paramvalue-prop-commonmetadata\";i:5675;s:51:\"apihelp-query+imageinfo-paramvalue-prop-extmetadata\";i:5676;s:51:\"apihelp-query+imageinfo-paramvalue-prop-archivename\";i:5677;s:48:\"apihelp-query+imageinfo-paramvalue-prop-bitdepth\";i:5678;s:53:\"apihelp-query+imageinfo-paramvalue-prop-uploadwarning\";i:5679;s:47:\"apihelp-query+imageinfo-paramvalue-prop-badfile\";i:5680;s:35:\"apihelp-query+imageinfo-param-limit\";i:5681;s:35:\"apihelp-query+imageinfo-param-start\";i:5682;s:33:\"apihelp-query+imageinfo-param-end\";i:5683;s:38:\"apihelp-query+imageinfo-param-urlwidth\";i:5684;s:39:\"apihelp-query+imageinfo-param-urlheight\";i:5685;s:45:\"apihelp-query+imageinfo-param-metadataversion\";i:5686;s:49:\"apihelp-query+imageinfo-param-extmetadatalanguage\";i:5687;s:50:\"apihelp-query+imageinfo-param-extmetadatamultilang\";i:5688;s:47:\"apihelp-query+imageinfo-param-extmetadatafilter\";i:5689;s:38:\"apihelp-query+imageinfo-param-urlparam\";i:5690;s:49:\"apihelp-query+imageinfo-param-badfilecontexttitle\";i:5691;s:39:\"apihelp-query+imageinfo-param-localonly\";i:5692;s:38:\"apihelp-query+imageinfo-example-simple\";i:5693;s:37:\"apihelp-query+imageinfo-example-dated\";i:5694;s:28:\"apihelp-query+images-summary\";i:5695;s:32:\"apihelp-query+images-param-limit\";i:5696;s:33:\"apihelp-query+images-param-images\";i:5697;s:30:\"apihelp-query+images-param-dir\";i:5698;s:35:\"apihelp-query+images-example-simple\";i:5699;s:38:\"apihelp-query+images-example-generator\";i:5700;s:32:\"apihelp-query+imageusage-summary\";i:5701;s:36:\"apihelp-query+imageusage-param-title\";i:5702;s:37:\"apihelp-query+imageusage-param-pageid\";i:5703;s:40:\"apihelp-query+imageusage-param-namespace\";i:5704;s:34:\"apihelp-query+imageusage-param-dir\";i:5705;s:42:\"apihelp-query+imageusage-param-filterredir\";i:5706;s:36:\"apihelp-query+imageusage-param-limit\";i:5707;s:39:\"apihelp-query+imageusage-param-redirect\";i:5708;s:39:\"apihelp-query+imageusage-example-simple\";i:5709;s:42:\"apihelp-query+imageusage-example-generator\";i:5710;s:26:\"apihelp-query+info-summary\";i:5711;s:29:\"apihelp-query+info-param-prop\";i:5712;s:45:\"apihelp-query+info-paramvalue-prop-protection\";i:5713;s:41:\"apihelp-query+info-paramvalue-prop-talkid\";i:5714;s:42:\"apihelp-query+info-paramvalue-prop-watched\";i:5715;s:43:\"apihelp-query+info-paramvalue-prop-watchers\";i:5716;s:51:\"apihelp-query+info-paramvalue-prop-visitingwatchers\";i:5717;s:56:\"apihelp-query+info-paramvalue-prop-notificationtimestamp\";i:5718;s:44:\"apihelp-query+info-paramvalue-prop-subjectid\";i:5719;s:49:\"apihelp-query+info-paramvalue-prop-associatedpage\";i:5720;s:38:\"apihelp-query+info-paramvalue-prop-url\";i:5721;s:43:\"apihelp-query+info-paramvalue-prop-readable\";i:5722;s:42:\"apihelp-query+info-paramvalue-prop-preload\";i:5723;s:47:\"apihelp-query+info-paramvalue-prop-displaytitle\";i:5724;s:48:\"apihelp-query+info-paramvalue-prop-varianttitles\";i:5725;s:46:\"apihelp-query+info-paramvalue-prop-linkclasses\";i:5726;s:36:\"apihelp-query+info-param-linkcontext\";i:5727;s:36:\"apihelp-query+info-param-testactions\";i:5728;s:42:\"apihelp-query+info-param-testactionsdetail\";i:5729;s:55:\"apihelp-query+info-paramvalue-testactionsdetail-boolean\";i:5730;s:52:\"apihelp-query+info-paramvalue-testactionsdetail-full\";i:5731;s:53:\"apihelp-query+info-paramvalue-testactionsdetail-quick\";i:5732;s:33:\"apihelp-query+info-example-simple\";i:5733;s:37:\"apihelp-query+info-example-protection\";i:5734;s:33:\"apihelp-query+iwbacklinks-summary\";i:5735;s:46:\"apihelp-query+iwbacklinks-extended-description\";i:5736;s:38:\"apihelp-query+iwbacklinks-param-prefix\";i:5737;s:37:\"apihelp-query+iwbacklinks-param-title\";i:5738;s:37:\"apihelp-query+iwbacklinks-param-limit\";i:5739;s:36:\"apihelp-query+iwbacklinks-param-prop\";i:5740;s:50:\"apihelp-query+iwbacklinks-paramvalue-prop-iwprefix\";i:5741;s:49:\"apihelp-query+iwbacklinks-paramvalue-prop-iwtitle\";i:5742;s:35:\"apihelp-query+iwbacklinks-param-dir\";i:5743;s:40:\"apihelp-query+iwbacklinks-example-simple\";i:5744;s:43:\"apihelp-query+iwbacklinks-example-generator\";i:5745;s:29:\"apihelp-query+iwlinks-summary\";i:5746;s:31:\"apihelp-query+iwlinks-param-url\";i:5747;s:32:\"apihelp-query+iwlinks-param-prop\";i:5748;s:41:\"apihelp-query+iwlinks-paramvalue-prop-url\";i:5749;s:33:\"apihelp-query+iwlinks-param-limit\";i:5750;s:34:\"apihelp-query+iwlinks-param-prefix\";i:5751;s:33:\"apihelp-query+iwlinks-param-title\";i:5752;s:31:\"apihelp-query+iwlinks-param-dir\";i:5753;s:36:\"apihelp-query+iwlinks-example-simple\";i:5754;s:35:\"apihelp-query+langbacklinks-summary\";i:5755;s:48:\"apihelp-query+langbacklinks-extended-description\";i:5756;s:38:\"apihelp-query+langbacklinks-param-lang\";i:5757;s:39:\"apihelp-query+langbacklinks-param-title\";i:5758;s:39:\"apihelp-query+langbacklinks-param-limit\";i:5759;s:38:\"apihelp-query+langbacklinks-param-prop\";i:5760;s:50:\"apihelp-query+langbacklinks-paramvalue-prop-lllang\";i:5761;s:51:\"apihelp-query+langbacklinks-paramvalue-prop-lltitle\";i:5762;s:37:\"apihelp-query+langbacklinks-param-dir\";i:5763;s:42:\"apihelp-query+langbacklinks-example-simple\";i:5764;s:45:\"apihelp-query+langbacklinks-example-generator\";i:5765;s:31:\"apihelp-query+langlinks-summary\";i:5766;s:35:\"apihelp-query+langlinks-param-limit\";i:5767;s:33:\"apihelp-query+langlinks-param-url\";i:5768;s:34:\"apihelp-query+langlinks-param-prop\";i:5769;s:43:\"apihelp-query+langlinks-paramvalue-prop-url\";i:5770;s:48:\"apihelp-query+langlinks-paramvalue-prop-langname\";i:5771;s:47:\"apihelp-query+langlinks-paramvalue-prop-autonym\";i:5772;s:34:\"apihelp-query+langlinks-param-lang\";i:5773;s:35:\"apihelp-query+langlinks-param-title\";i:5774;s:33:\"apihelp-query+langlinks-param-dir\";i:5775;s:44:\"apihelp-query+langlinks-param-inlanguagecode\";i:5776;s:38:\"apihelp-query+langlinks-example-simple\";i:5777;s:34:\"apihelp-query+languageinfo-summary\";i:5778;s:47:\"apihelp-query+languageinfo-extended-description\";i:5779;s:37:\"apihelp-query+languageinfo-param-prop\";i:5780;s:47:\"apihelp-query+languageinfo-paramvalue-prop-code\";i:5781;s:48:\"apihelp-query+languageinfo-paramvalue-prop-bcp47\";i:5782;s:46:\"apihelp-query+languageinfo-paramvalue-prop-dir\";i:5783;s:50:\"apihelp-query+languageinfo-paramvalue-prop-autonym\";i:5784;s:47:\"apihelp-query+languageinfo-paramvalue-prop-name\";i:5785;s:52:\"apihelp-query+languageinfo-paramvalue-prop-fallbacks\";i:5786;s:51:\"apihelp-query+languageinfo-paramvalue-prop-variants\";i:5787;s:37:\"apihelp-query+languageinfo-param-code\";i:5788;s:41:\"apihelp-query+languageinfo-example-simple\";i:5789;s:50:\"apihelp-query+languageinfo-example-autonym-name-de\";i:5790;s:56:\"apihelp-query+languageinfo-example-fallbacks-variants-oc\";i:5791;s:44:\"apihelp-query+languageinfo-example-bcp47-dir\";i:5792;s:27:\"apihelp-query+links-summary\";i:5793;s:35:\"apihelp-query+links-param-namespace\";i:5794;s:31:\"apihelp-query+links-param-limit\";i:5795;s:32:\"apihelp-query+links-param-titles\";i:5796;s:29:\"apihelp-query+links-param-dir\";i:5797;s:34:\"apihelp-query+links-example-simple\";i:5798;s:37:\"apihelp-query+links-example-generator\";i:5799;s:38:\"apihelp-query+links-example-namespaces\";i:5800;s:31:\"apihelp-query+linkshere-summary\";i:5801;s:34:\"apihelp-query+linkshere-param-prop\";i:5802;s:46:\"apihelp-query+linkshere-paramvalue-prop-pageid\";i:5803;s:45:\"apihelp-query+linkshere-paramvalue-prop-title\";i:5804;s:48:\"apihelp-query+linkshere-paramvalue-prop-redirect\";i:5805;s:39:\"apihelp-query+linkshere-param-namespace\";i:5806;s:35:\"apihelp-query+linkshere-param-limit\";i:5807;s:34:\"apihelp-query+linkshere-param-show\";i:5808;s:38:\"apihelp-query+linkshere-example-simple\";i:5809;s:41:\"apihelp-query+linkshere-example-generator\";i:5810;s:31:\"apihelp-query+logevents-summary\";i:5811;s:34:\"apihelp-query+logevents-param-prop\";i:5812;s:43:\"apihelp-query+logevents-paramvalue-prop-ids\";i:5813;s:45:\"apihelp-query+logevents-paramvalue-prop-title\";i:5814;s:44:\"apihelp-query+logevents-paramvalue-prop-type\";i:5815;s:44:\"apihelp-query+logevents-paramvalue-prop-user\";i:5816;s:46:\"apihelp-query+logevents-paramvalue-prop-userid\";i:5817;s:49:\"apihelp-query+logevents-paramvalue-prop-timestamp\";i:5818;s:47:\"apihelp-query+logevents-paramvalue-prop-comment\";i:5819;s:53:\"apihelp-query+logevents-paramvalue-prop-parsedcomment\";i:5820;s:47:\"apihelp-query+logevents-paramvalue-prop-details\";i:5821;s:44:\"apihelp-query+logevents-paramvalue-prop-tags\";i:5822;s:34:\"apihelp-query+logevents-param-type\";i:5823;s:36:\"apihelp-query+logevents-param-action\";i:5824;s:35:\"apihelp-query+logevents-param-start\";i:5825;s:33:\"apihelp-query+logevents-param-end\";i:5826;s:34:\"apihelp-query+logevents-param-user\";i:5827;s:35:\"apihelp-query+logevents-param-title\";i:5828;s:39:\"apihelp-query+logevents-param-namespace\";i:5829;s:36:\"apihelp-query+logevents-param-prefix\";i:5830;s:33:\"apihelp-query+logevents-param-tag\";i:5831;s:35:\"apihelp-query+logevents-param-limit\";i:5832;s:38:\"apihelp-query+logevents-example-simple\";i:5833;s:35:\"apihelp-query+pagepropnames-summary\";i:5834;s:39:\"apihelp-query+pagepropnames-param-limit\";i:5835;s:42:\"apihelp-query+pagepropnames-example-simple\";i:5836;s:31:\"apihelp-query+pageprops-summary\";i:5837;s:34:\"apihelp-query+pageprops-param-prop\";i:5838;s:38:\"apihelp-query+pageprops-example-simple\";i:5839;s:35:\"apihelp-query+pageswithprop-summary\";i:5840;s:42:\"apihelp-query+pageswithprop-param-propname\";i:5841;s:38:\"apihelp-query+pageswithprop-param-prop\";i:5842;s:47:\"apihelp-query+pageswithprop-paramvalue-prop-ids\";i:5843;s:49:\"apihelp-query+pageswithprop-paramvalue-prop-title\";i:5844;s:49:\"apihelp-query+pageswithprop-paramvalue-prop-value\";i:5845;s:39:\"apihelp-query+pageswithprop-param-limit\";i:5846;s:37:\"apihelp-query+pageswithprop-param-dir\";i:5847;s:42:\"apihelp-query+pageswithprop-example-simple\";i:5848;s:45:\"apihelp-query+pageswithprop-example-generator\";i:5849;s:34:\"apihelp-query+prefixsearch-summary\";i:5850;s:47:\"apihelp-query+prefixsearch-extended-description\";i:5851;s:39:\"apihelp-query+prefixsearch-param-search\";i:5852;s:42:\"apihelp-query+prefixsearch-param-namespace\";i:5853;s:38:\"apihelp-query+prefixsearch-param-limit\";i:5854;s:39:\"apihelp-query+prefixsearch-param-offset\";i:5855;s:41:\"apihelp-query+prefixsearch-example-simple\";i:5856;s:40:\"apihelp-query+prefixsearch-param-profile\";i:5857;s:37:\"apihelp-query+protectedtitles-summary\";i:5858;s:45:\"apihelp-query+protectedtitles-param-namespace\";i:5859;s:41:\"apihelp-query+protectedtitles-param-level\";i:5860;s:41:\"apihelp-query+protectedtitles-param-limit\";i:5861;s:41:\"apihelp-query+protectedtitles-param-start\";i:5862;s:39:\"apihelp-query+protectedtitles-param-end\";i:5863;s:40:\"apihelp-query+protectedtitles-param-prop\";i:5864;s:55:\"apihelp-query+protectedtitles-paramvalue-prop-timestamp\";i:5865;s:50:\"apihelp-query+protectedtitles-paramvalue-prop-user\";i:5866;s:52:\"apihelp-query+protectedtitles-paramvalue-prop-userid\";i:5867;s:53:\"apihelp-query+protectedtitles-paramvalue-prop-comment\";i:5868;s:59:\"apihelp-query+protectedtitles-paramvalue-prop-parsedcomment\";i:5869;s:52:\"apihelp-query+protectedtitles-paramvalue-prop-expiry\";i:5870;s:51:\"apihelp-query+protectedtitles-paramvalue-prop-level\";i:5871;s:44:\"apihelp-query+protectedtitles-example-simple\";i:5872;s:47:\"apihelp-query+protectedtitles-example-generator\";i:5873;s:31:\"apihelp-query+querypage-summary\";i:5874;s:34:\"apihelp-query+querypage-param-page\";i:5875;s:35:\"apihelp-query+querypage-param-limit\";i:5876;s:44:\"apihelp-query+querypage-example-ancientpages\";i:5877;s:28:\"apihelp-query+random-summary\";i:5878;s:41:\"apihelp-query+random-extended-description\";i:5879;s:36:\"apihelp-query+random-param-namespace\";i:5880;s:32:\"apihelp-query+random-param-limit\";i:5881;s:35:\"apihelp-query+random-param-redirect\";i:5882;s:38:\"apihelp-query+random-param-filterredir\";i:5883;s:35:\"apihelp-query+random-example-simple\";i:5884;s:38:\"apihelp-query+random-example-generator\";i:5885;s:35:\"apihelp-query+recentchanges-summary\";i:5886;s:39:\"apihelp-query+recentchanges-param-start\";i:5887;s:37:\"apihelp-query+recentchanges-param-end\";i:5888;s:43:\"apihelp-query+recentchanges-param-namespace\";i:5889;s:38:\"apihelp-query+recentchanges-param-user\";i:5890;s:45:\"apihelp-query+recentchanges-param-excludeuser\";i:5891;s:37:\"apihelp-query+recentchanges-param-tag\";i:5892;s:38:\"apihelp-query+recentchanges-param-slot\";i:5893;s:38:\"apihelp-query+recentchanges-param-prop\";i:5894;s:48:\"apihelp-query+recentchanges-paramvalue-prop-user\";i:5895;s:50:\"apihelp-query+recentchanges-paramvalue-prop-userid\";i:5896;s:51:\"apihelp-query+recentchanges-paramvalue-prop-comment\";i:5897;s:57:\"apihelp-query+recentchanges-paramvalue-prop-parsedcomment\";i:5898;s:49:\"apihelp-query+recentchanges-paramvalue-prop-flags\";i:5899;s:53:\"apihelp-query+recentchanges-paramvalue-prop-timestamp\";i:5900;s:49:\"apihelp-query+recentchanges-paramvalue-prop-title\";i:5901;s:47:\"apihelp-query+recentchanges-paramvalue-prop-ids\";i:5902;s:49:\"apihelp-query+recentchanges-paramvalue-prop-sizes\";i:5903;s:52:\"apihelp-query+recentchanges-paramvalue-prop-redirect\";i:5904;s:53:\"apihelp-query+recentchanges-paramvalue-prop-patrolled\";i:5905;s:57:\"apihelp-query+recentchanges-paramvalue-prop-autopatrolled\";i:5906;s:51:\"apihelp-query+recentchanges-paramvalue-prop-loginfo\";i:5907;s:48:\"apihelp-query+recentchanges-paramvalue-prop-tags\";i:5908;s:48:\"apihelp-query+recentchanges-paramvalue-prop-sha1\";i:5909;s:38:\"apihelp-query+recentchanges-param-show\";i:5910;s:39:\"apihelp-query+recentchanges-param-limit\";i:5911;s:38:\"apihelp-query+recentchanges-param-type\";i:5912;s:41:\"apihelp-query+recentchanges-param-toponly\";i:5913;s:39:\"apihelp-query+recentchanges-param-title\";i:5914;s:51:\"apihelp-query+recentchanges-param-generaterevisions\";i:5915;s:42:\"apihelp-query+recentchanges-example-simple\";i:5916;s:45:\"apihelp-query+recentchanges-example-generator\";i:5917;s:31:\"apihelp-query+redirects-summary\";i:5918;s:34:\"apihelp-query+redirects-param-prop\";i:5919;s:46:\"apihelp-query+redirects-paramvalue-prop-pageid\";i:5920;s:45:\"apihelp-query+redirects-paramvalue-prop-title\";i:5921;s:48:\"apihelp-query+redirects-paramvalue-prop-fragment\";i:5922;s:39:\"apihelp-query+redirects-param-namespace\";i:5923;s:35:\"apihelp-query+redirects-param-limit\";i:5924;s:34:\"apihelp-query+redirects-param-show\";i:5925;s:38:\"apihelp-query+redirects-example-simple\";i:5926;s:41:\"apihelp-query+redirects-example-generator\";i:5927;s:31:\"apihelp-query+revisions-summary\";i:5928;s:44:\"apihelp-query+revisions-extended-description\";i:5929;s:48:\"apihelp-query+revisions-paraminfo-singlepageonly\";i:5930;s:37:\"apihelp-query+revisions-param-startid\";i:5931;s:35:\"apihelp-query+revisions-param-endid\";i:5932;s:35:\"apihelp-query+revisions-param-start\";i:5933;s:33:\"apihelp-query+revisions-param-end\";i:5934;s:34:\"apihelp-query+revisions-param-user\";i:5935;s:41:\"apihelp-query+revisions-param-excludeuser\";i:5936;s:33:\"apihelp-query+revisions-param-tag\";i:5937;s:39:\"apihelp-query+revisions-example-content\";i:5938;s:37:\"apihelp-query+revisions-example-last5\";i:5939;s:38:\"apihelp-query+revisions-example-first5\";i:5940;s:44:\"apihelp-query+revisions-example-first5-after\";i:5941;s:52:\"apihelp-query+revisions-example-first5-not-localhost\";i:5942;s:43:\"apihelp-query+revisions-example-first5-user\";i:5943;s:39:\"apihelp-query+revisions+base-param-prop\";i:5944;s:48:\"apihelp-query+revisions+base-paramvalue-prop-ids\";i:5945;s:50:\"apihelp-query+revisions+base-paramvalue-prop-flags\";i:5946;s:54:\"apihelp-query+revisions+base-paramvalue-prop-timestamp\";i:5947;s:49:\"apihelp-query+revisions+base-paramvalue-prop-user\";i:5948;s:51:\"apihelp-query+revisions+base-paramvalue-prop-userid\";i:5949;s:49:\"apihelp-query+revisions+base-paramvalue-prop-size\";i:5950;s:53:\"apihelp-query+revisions+base-paramvalue-prop-slotsize\";i:5951;s:49:\"apihelp-query+revisions+base-paramvalue-prop-sha1\";i:5952;s:53:\"apihelp-query+revisions+base-paramvalue-prop-slotsha1\";i:5953;s:57:\"apihelp-query+revisions+base-paramvalue-prop-contentmodel\";i:5954;s:52:\"apihelp-query+revisions+base-paramvalue-prop-comment\";i:5955;s:58:\"apihelp-query+revisions+base-paramvalue-prop-parsedcomment\";i:5956;s:52:\"apihelp-query+revisions+base-paramvalue-prop-content\";i:5957;s:49:\"apihelp-query+revisions+base-paramvalue-prop-tags\";i:5958;s:50:\"apihelp-query+revisions+base-paramvalue-prop-roles\";i:5959;s:54:\"apihelp-query+revisions+base-paramvalue-prop-parsetree\";i:5960;s:40:\"apihelp-query+revisions+base-param-slots\";i:5961;s:40:\"apihelp-query+revisions+base-param-limit\";i:5962;s:50:\"apihelp-query+revisions+base-param-expandtemplates\";i:5963;s:46:\"apihelp-query+revisions+base-param-generatexml\";i:5964;s:40:\"apihelp-query+revisions+base-param-parse\";i:5965;s:42:\"apihelp-query+revisions+base-param-section\";i:5966;s:41:\"apihelp-query+revisions+base-param-diffto\";i:5967;s:45:\"apihelp-query+revisions+base-param-difftotext\";i:5968;s:48:\"apihelp-query+revisions+base-param-difftotextpst\";i:5969;s:48:\"apihelp-query+revisions+base-param-contentformat\";i:5970;s:28:\"apihelp-query+search-summary\";i:5971;s:33:\"apihelp-query+search-param-search\";i:5972;s:36:\"apihelp-query+search-param-namespace\";i:5973;s:31:\"apihelp-query+search-param-what\";i:5974;s:31:\"apihelp-query+search-param-info\";i:5975;s:31:\"apihelp-query+search-param-prop\";i:5976;s:36:\"apihelp-query+search-param-qiprofile\";i:5977;s:41:\"apihelp-query+search-paramvalue-prop-size\";i:5978;s:46:\"apihelp-query+search-paramvalue-prop-wordcount\";i:5979;s:46:\"apihelp-query+search-paramvalue-prop-timestamp\";i:5980;s:44:\"apihelp-query+search-paramvalue-prop-snippet\";i:5981;s:49:\"apihelp-query+search-paramvalue-prop-titlesnippet\";i:5982;s:52:\"apihelp-query+search-paramvalue-prop-redirectsnippet\";i:5983;s:50:\"apihelp-query+search-paramvalue-prop-redirecttitle\";i:5984;s:51:\"apihelp-query+search-paramvalue-prop-sectionsnippet\";i:5985;s:49:\"apihelp-query+search-paramvalue-prop-sectiontitle\";i:5986;s:52:\"apihelp-query+search-paramvalue-prop-categorysnippet\";i:5987;s:48:\"apihelp-query+search-paramvalue-prop-isfilematch\";i:5988;s:50:\"apihelp-query+search-paramvalue-prop-extensiondata\";i:5989;s:42:\"apihelp-query+search-paramvalue-prop-score\";i:5990;s:47:\"apihelp-query+search-paramvalue-prop-hasrelated\";i:5991;s:32:\"apihelp-query+search-param-limit\";i:5992;s:36:\"apihelp-query+search-param-interwiki\";i:5993;s:34:\"apihelp-query+search-param-backend\";i:5994;s:41:\"apihelp-query+search-param-enablerewrites\";i:5995;s:31:\"apihelp-query+search-param-sort\";i:5996;s:35:\"apihelp-query+search-example-simple\";i:5997;s:33:\"apihelp-query+search-example-text\";i:5998;s:38:\"apihelp-query+search-example-generator\";i:5999;s:30:\"apihelp-query+siteinfo-summary\";i:6000;s:33:\"apihelp-query+siteinfo-param-prop\";i:6001;s:46:\"apihelp-query+siteinfo-paramvalue-prop-general\";i:6002;s:49:\"apihelp-query+siteinfo-paramvalue-prop-namespaces\";i:6003;s:55:\"apihelp-query+siteinfo-paramvalue-prop-namespacealiases\";i:6004;s:57:\"apihelp-query+siteinfo-paramvalue-prop-specialpagealiases\";i:6005;s:49:\"apihelp-query+siteinfo-paramvalue-prop-magicwords\";i:6006;s:49:\"apihelp-query+siteinfo-paramvalue-prop-statistics\";i:6007;s:51:\"apihelp-query+siteinfo-paramvalue-prop-interwikimap\";i:6008;s:48:\"apihelp-query+siteinfo-paramvalue-prop-dbrepllag\";i:6009;s:49:\"apihelp-query+siteinfo-paramvalue-prop-usergroups\";i:6010;s:48:\"apihelp-query+siteinfo-paramvalue-prop-libraries\";i:6011;s:49:\"apihelp-query+siteinfo-paramvalue-prop-extensions\";i:6012;s:53:\"apihelp-query+siteinfo-paramvalue-prop-fileextensions\";i:6013;s:49:\"apihelp-query+siteinfo-paramvalue-prop-rightsinfo\";i:6014;s:51:\"apihelp-query+siteinfo-paramvalue-prop-restrictions\";i:6015;s:48:\"apihelp-query+siteinfo-paramvalue-prop-languages\";i:6016;s:55:\"apihelp-query+siteinfo-paramvalue-prop-languagevariants\";i:6017;s:44:\"apihelp-query+siteinfo-paramvalue-prop-skins\";i:6018;s:52:\"apihelp-query+siteinfo-paramvalue-prop-extensiontags\";i:6019;s:52:\"apihelp-query+siteinfo-paramvalue-prop-functionhooks\";i:6020;s:48:\"apihelp-query+siteinfo-paramvalue-prop-showhooks\";i:6021;s:48:\"apihelp-query+siteinfo-paramvalue-prop-variables\";i:6022;s:48:\"apihelp-query+siteinfo-paramvalue-prop-protocols\";i:6023;s:53:\"apihelp-query+siteinfo-paramvalue-prop-defaultoptions\";i:6024;s:51:\"apihelp-query+siteinfo-paramvalue-prop-uploaddialog\";i:6025;s:37:\"apihelp-query+siteinfo-param-filteriw\";i:6026;s:38:\"apihelp-query+siteinfo-param-showalldb\";i:6027;s:42:\"apihelp-query+siteinfo-param-numberingroup\";i:6028;s:43:\"apihelp-query+siteinfo-param-inlanguagecode\";i:6029;s:37:\"apihelp-query+siteinfo-example-simple\";i:6030;s:40:\"apihelp-query+siteinfo-example-interwiki\";i:6031;s:37:\"apihelp-query+siteinfo-example-replag\";i:6032;s:36:\"apihelp-query+stashimageinfo-summary\";i:6033;s:42:\"apihelp-query+stashimageinfo-param-filekey\";i:6034;s:45:\"apihelp-query+stashimageinfo-param-sessionkey\";i:6035;s:43:\"apihelp-query+stashimageinfo-example-simple\";i:6036;s:43:\"apihelp-query+stashimageinfo-example-params\";i:6037;s:26:\"apihelp-query+tags-summary\";i:6038;s:30:\"apihelp-query+tags-param-limit\";i:6039;s:29:\"apihelp-query+tags-param-prop\";i:6040;s:39:\"apihelp-query+tags-paramvalue-prop-name\";i:6041;s:46:\"apihelp-query+tags-paramvalue-prop-displayname\";i:6042;s:46:\"apihelp-query+tags-paramvalue-prop-description\";i:6043;s:43:\"apihelp-query+tags-paramvalue-prop-hitcount\";i:6044;s:42:\"apihelp-query+tags-paramvalue-prop-defined\";i:6045;s:41:\"apihelp-query+tags-paramvalue-prop-source\";i:6046;s:41:\"apihelp-query+tags-paramvalue-prop-active\";i:6047;s:33:\"apihelp-query+tags-example-simple\";i:6048;s:31:\"apihelp-query+templates-summary\";i:6049;s:39:\"apihelp-query+templates-param-namespace\";i:6050;s:35:\"apihelp-query+templates-param-limit\";i:6051;s:39:\"apihelp-query+templates-param-templates\";i:6052;s:33:\"apihelp-query+templates-param-dir\";i:6053;s:38:\"apihelp-query+templates-example-simple\";i:6054;s:41:\"apihelp-query+templates-example-generator\";i:6055;s:42:\"apihelp-query+templates-example-namespaces\";i:6056;s:28:\"apihelp-query+tokens-summary\";i:6057;s:31:\"apihelp-query+tokens-param-type\";i:6058;s:35:\"apihelp-query+tokens-example-simple\";i:6059;s:34:\"apihelp-query+tokens-example-types\";i:6060;s:35:\"apihelp-query+transcludedin-summary\";i:6061;s:38:\"apihelp-query+transcludedin-param-prop\";i:6062;s:50:\"apihelp-query+transcludedin-paramvalue-prop-pageid\";i:6063;s:49:\"apihelp-query+transcludedin-paramvalue-prop-title\";i:6064;s:52:\"apihelp-query+transcludedin-paramvalue-prop-redirect\";i:6065;s:43:\"apihelp-query+transcludedin-param-namespace\";i:6066;s:39:\"apihelp-query+transcludedin-param-limit\";i:6067;s:38:\"apihelp-query+transcludedin-param-show\";i:6068;s:42:\"apihelp-query+transcludedin-example-simple\";i:6069;s:45:\"apihelp-query+transcludedin-example-generator\";i:6070;s:34:\"apihelp-query+usercontribs-summary\";i:6071;s:38:\"apihelp-query+usercontribs-param-limit\";i:6072;s:38:\"apihelp-query+usercontribs-param-start\";i:6073;s:36:\"apihelp-query+usercontribs-param-end\";i:6074;s:37:\"apihelp-query+usercontribs-param-user\";i:6075;s:43:\"apihelp-query+usercontribs-param-userprefix\";i:6076;s:40:\"apihelp-query+usercontribs-param-userids\";i:6077;s:42:\"apihelp-query+usercontribs-param-namespace\";i:6078;s:37:\"apihelp-query+usercontribs-param-prop\";i:6079;s:46:\"apihelp-query+usercontribs-paramvalue-prop-ids\";i:6080;s:48:\"apihelp-query+usercontribs-paramvalue-prop-title\";i:6081;s:52:\"apihelp-query+usercontribs-paramvalue-prop-timestamp\";i:6082;s:50:\"apihelp-query+usercontribs-paramvalue-prop-comment\";i:6083;s:56:\"apihelp-query+usercontribs-paramvalue-prop-parsedcomment\";i:6084;s:47:\"apihelp-query+usercontribs-paramvalue-prop-size\";i:6085;s:51:\"apihelp-query+usercontribs-paramvalue-prop-sizediff\";i:6086;s:48:\"apihelp-query+usercontribs-paramvalue-prop-flags\";i:6087;s:52:\"apihelp-query+usercontribs-paramvalue-prop-patrolled\";i:6088;s:56:\"apihelp-query+usercontribs-paramvalue-prop-autopatrolled\";i:6089;s:47:\"apihelp-query+usercontribs-paramvalue-prop-tags\";i:6090;s:37:\"apihelp-query+usercontribs-param-show\";i:6091;s:36:\"apihelp-query+usercontribs-param-tag\";i:6092;s:40:\"apihelp-query+usercontribs-param-toponly\";i:6093;s:39:\"apihelp-query+usercontribs-example-user\";i:6094;s:43:\"apihelp-query+usercontribs-example-ipprefix\";i:6095;s:30:\"apihelp-query+userinfo-summary\";i:6096;s:33:\"apihelp-query+userinfo-param-prop\";i:6097;s:48:\"apihelp-query+userinfo-paramvalue-prop-blockinfo\";i:6098;s:45:\"apihelp-query+userinfo-paramvalue-prop-hasmsg\";i:6099;s:45:\"apihelp-query+userinfo-paramvalue-prop-groups\";i:6100;s:55:\"apihelp-query+userinfo-paramvalue-prop-groupmemberships\";i:6101;s:53:\"apihelp-query+userinfo-paramvalue-prop-implicitgroups\";i:6102;s:45:\"apihelp-query+userinfo-paramvalue-prop-rights\";i:6103;s:55:\"apihelp-query+userinfo-paramvalue-prop-changeablegroups\";i:6104;s:46:\"apihelp-query+userinfo-paramvalue-prop-options\";i:6105;s:48:\"apihelp-query+userinfo-paramvalue-prop-editcount\";i:6106;s:49:\"apihelp-query+userinfo-paramvalue-prop-ratelimits\";i:6107;s:60:\"apihelp-query+userinfo-paramvalue-prop-theoreticalratelimits\";i:6108;s:47:\"apihelp-query+userinfo-paramvalue-prop-realname\";i:6109;s:44:\"apihelp-query+userinfo-paramvalue-prop-email\";i:6110;s:49:\"apihelp-query+userinfo-paramvalue-prop-acceptlang\";i:6111;s:55:\"apihelp-query+userinfo-paramvalue-prop-registrationdate\";i:6112;s:50:\"apihelp-query+userinfo-paramvalue-prop-unreadcount\";i:6113;s:49:\"apihelp-query+userinfo-paramvalue-prop-centralids\";i:6114;s:52:\"apihelp-query+userinfo-paramvalue-prop-latestcontrib\";i:6115;s:41:\"apihelp-query+userinfo-param-attachedwiki\";i:6116;s:37:\"apihelp-query+userinfo-example-simple\";i:6117;s:35:\"apihelp-query+userinfo-example-data\";i:6118;s:27:\"apihelp-query+users-summary\";i:6119;s:30:\"apihelp-query+users-param-prop\";i:6120;s:45:\"apihelp-query+users-paramvalue-prop-blockinfo\";i:6121;s:42:\"apihelp-query+users-paramvalue-prop-groups\";i:6122;s:52:\"apihelp-query+users-paramvalue-prop-groupmemberships\";i:6123;s:50:\"apihelp-query+users-paramvalue-prop-implicitgroups\";i:6124;s:42:\"apihelp-query+users-paramvalue-prop-rights\";i:6125;s:45:\"apihelp-query+users-paramvalue-prop-editcount\";i:6126;s:48:\"apihelp-query+users-paramvalue-prop-registration\";i:6127;s:45:\"apihelp-query+users-paramvalue-prop-emailable\";i:6128;s:42:\"apihelp-query+users-paramvalue-prop-gender\";i:6129;s:46:\"apihelp-query+users-paramvalue-prop-centralids\";i:6130;s:45:\"apihelp-query+users-paramvalue-prop-cancreate\";i:6131;s:38:\"apihelp-query+users-param-attachedwiki\";i:6132;s:31:\"apihelp-query+users-param-users\";i:6133;s:33:\"apihelp-query+users-param-userids\";i:6134;s:34:\"apihelp-query+users-example-simple\";i:6135;s:31:\"apihelp-query+watchlist-summary\";i:6136;s:36:\"apihelp-query+watchlist-param-allrev\";i:6137;s:35:\"apihelp-query+watchlist-param-start\";i:6138;s:33:\"apihelp-query+watchlist-param-end\";i:6139;s:39:\"apihelp-query+watchlist-param-namespace\";i:6140;s:34:\"apihelp-query+watchlist-param-user\";i:6141;s:41:\"apihelp-query+watchlist-param-excludeuser\";i:6142;s:35:\"apihelp-query+watchlist-param-limit\";i:6143;s:34:\"apihelp-query+watchlist-param-prop\";i:6144;s:43:\"apihelp-query+watchlist-paramvalue-prop-ids\";i:6145;s:45:\"apihelp-query+watchlist-paramvalue-prop-title\";i:6146;s:45:\"apihelp-query+watchlist-paramvalue-prop-flags\";i:6147;s:44:\"apihelp-query+watchlist-paramvalue-prop-user\";i:6148;s:46:\"apihelp-query+watchlist-paramvalue-prop-userid\";i:6149;s:47:\"apihelp-query+watchlist-paramvalue-prop-comment\";i:6150;s:53:\"apihelp-query+watchlist-paramvalue-prop-parsedcomment\";i:6151;s:49:\"apihelp-query+watchlist-paramvalue-prop-timestamp\";i:6152;s:46:\"apihelp-query+watchlist-paramvalue-prop-patrol\";i:6153;s:50:\"apihelp-query+watchlist-paramvalue-prop-autopatrol\";i:6154;s:45:\"apihelp-query+watchlist-paramvalue-prop-sizes\";i:6155;s:61:\"apihelp-query+watchlist-paramvalue-prop-notificationtimestamp\";i:6156;s:47:\"apihelp-query+watchlist-paramvalue-prop-loginfo\";i:6157;s:44:\"apihelp-query+watchlist-paramvalue-prop-tags\";i:6158;s:34:\"apihelp-query+watchlist-param-show\";i:6159;s:34:\"apihelp-query+watchlist-param-type\";i:6160;s:44:\"apihelp-query+watchlist-paramvalue-type-edit\";i:6161;s:48:\"apihelp-query+watchlist-paramvalue-type-external\";i:6162;s:43:\"apihelp-query+watchlist-paramvalue-type-new\";i:6163;s:43:\"apihelp-query+watchlist-paramvalue-type-log\";i:6164;s:50:\"apihelp-query+watchlist-paramvalue-type-categorize\";i:6165;s:35:\"apihelp-query+watchlist-param-owner\";i:6166;s:35:\"apihelp-query+watchlist-param-token\";i:6167;s:38:\"apihelp-query+watchlist-example-simple\";i:6168;s:37:\"apihelp-query+watchlist-example-props\";i:6169;s:38:\"apihelp-query+watchlist-example-expiry\";i:6170;s:38:\"apihelp-query+watchlist-example-allrev\";i:6171;s:41:\"apihelp-query+watchlist-example-generator\";i:6172;s:45:\"apihelp-query+watchlist-example-generator-rev\";i:6173;s:39:\"apihelp-query+watchlist-example-wlowner\";i:6174;s:34:\"apihelp-query+watchlistraw-summary\";i:6175;s:42:\"apihelp-query+watchlistraw-param-namespace\";i:6176;s:38:\"apihelp-query+watchlistraw-param-limit\";i:6177;s:37:\"apihelp-query+watchlistraw-param-prop\";i:6178;s:50:\"apihelp-query+watchlistraw-paramvalue-prop-changed\";i:6179;s:37:\"apihelp-query+watchlistraw-param-show\";i:6180;s:38:\"apihelp-query+watchlistraw-param-owner\";i:6181;s:38:\"apihelp-query+watchlistraw-param-token\";i:6182;s:36:\"apihelp-query+watchlistraw-param-dir\";i:6183;s:42:\"apihelp-query+watchlistraw-param-fromtitle\";i:6184;s:40:\"apihelp-query+watchlistraw-param-totitle\";i:6185;s:41:\"apihelp-query+watchlistraw-example-simple\";i:6186;s:44:\"apihelp-query+watchlistraw-example-generator\";i:6187;s:40:\"apihelp-removeauthenticationdata-summary\";i:6188;s:47:\"apihelp-removeauthenticationdata-example-simple\";i:6189;s:29:\"apihelp-resetpassword-summary\";i:6190;s:51:\"apihelp-resetpassword-extended-description-noroutes\";i:6191;s:32:\"apihelp-resetpassword-param-user\";i:6192;s:33:\"apihelp-resetpassword-param-email\";i:6193;s:34:\"apihelp-resetpassword-example-user\";i:6194;s:35:\"apihelp-resetpassword-example-email\";i:6195;s:30:\"apihelp-revisiondelete-summary\";i:6196;s:33:\"apihelp-revisiondelete-param-type\";i:6197;s:35:\"apihelp-revisiondelete-param-target\";i:6198;s:32:\"apihelp-revisiondelete-param-ids\";i:6199;s:33:\"apihelp-revisiondelete-param-hide\";i:6200;s:33:\"apihelp-revisiondelete-param-show\";i:6201;s:37:\"apihelp-revisiondelete-param-suppress\";i:6202;s:35:\"apihelp-revisiondelete-param-reason\";i:6203;s:33:\"apihelp-revisiondelete-param-tags\";i:6204;s:39:\"apihelp-revisiondelete-example-revision\";i:6205;s:34:\"apihelp-revisiondelete-example-log\";i:6206;s:24:\"apihelp-rollback-summary\";i:6207;s:37:\"apihelp-rollback-extended-description\";i:6208;s:28:\"apihelp-rollback-param-title\";i:6209;s:29:\"apihelp-rollback-param-pageid\";i:6210;s:27:\"apihelp-rollback-param-tags\";i:6211;s:27:\"apihelp-rollback-param-user\";i:6212;s:30:\"apihelp-rollback-param-summary\";i:6213;s:30:\"apihelp-rollback-param-markbot\";i:6214;s:32:\"apihelp-rollback-param-watchlist\";i:6215;s:38:\"apihelp-rollback-param-watchlistexpiry\";i:6216;s:31:\"apihelp-rollback-example-simple\";i:6217;s:32:\"apihelp-rollback-example-summary\";i:6218;s:19:\"apihelp-rsd-summary\";i:6219;s:26:\"apihelp-rsd-example-simple\";i:6220;s:40:\"apihelp-setnotificationtimestamp-summary\";i:6221;s:53:\"apihelp-setnotificationtimestamp-extended-description\";i:6222;s:54:\"apihelp-setnotificationtimestamp-param-entirewatchlist\";i:6223;s:48:\"apihelp-setnotificationtimestamp-param-timestamp\";i:6224;s:46:\"apihelp-setnotificationtimestamp-param-torevid\";i:6225;s:53:\"apihelp-setnotificationtimestamp-param-newerthanrevid\";i:6226;s:44:\"apihelp-setnotificationtimestamp-example-all\";i:6227;s:45:\"apihelp-setnotificationtimestamp-example-page\";i:6228;s:54:\"apihelp-setnotificationtimestamp-example-pagetimestamp\";i:6229;s:49:\"apihelp-setnotificationtimestamp-example-allpages\";i:6230;s:31:\"apihelp-setpagelanguage-summary\";i:6231;s:53:\"apihelp-setpagelanguage-extended-description-disabled\";i:6232;s:35:\"apihelp-setpagelanguage-param-title\";i:6233;s:36:\"apihelp-setpagelanguage-param-pageid\";i:6234;s:34:\"apihelp-setpagelanguage-param-lang\";i:6235;s:36:\"apihelp-setpagelanguage-param-reason\";i:6236;s:34:\"apihelp-setpagelanguage-param-tags\";i:6237;s:40:\"apihelp-setpagelanguage-example-language\";i:6238;s:39:\"apihelp-setpagelanguage-example-default\";i:6239;s:25:\"apihelp-stashedit-summary\";i:6240;s:38:\"apihelp-stashedit-extended-description\";i:6241;s:29:\"apihelp-stashedit-param-title\";i:6242;s:31:\"apihelp-stashedit-param-section\";i:6243;s:36:\"apihelp-stashedit-param-sectiontitle\";i:6244;s:28:\"apihelp-stashedit-param-text\";i:6245;s:39:\"apihelp-stashedit-param-stashedtexthash\";i:6246;s:36:\"apihelp-stashedit-param-contentmodel\";i:6247;s:37:\"apihelp-stashedit-param-contentformat\";i:6248;s:33:\"apihelp-stashedit-param-baserevid\";i:6249;s:31:\"apihelp-stashedit-param-summary\";i:6250;s:19:\"apihelp-tag-summary\";i:6251;s:22:\"apihelp-tag-param-rcid\";i:6252;s:23:\"apihelp-tag-param-revid\";i:6253;s:23:\"apihelp-tag-param-logid\";i:6254;s:21:\"apihelp-tag-param-add\";i:6255;s:24:\"apihelp-tag-param-remove\";i:6256;s:24:\"apihelp-tag-param-reason\";i:6257;s:22:\"apihelp-tag-param-tags\";i:6258;s:23:\"apihelp-tag-example-rev\";i:6259;s:23:\"apihelp-tag-example-log\";i:6260;s:23:\"apihelp-unblock-summary\";i:6261;s:24:\"apihelp-unblock-param-id\";i:6262;s:26:\"apihelp-unblock-param-user\";i:6263;s:28:\"apihelp-unblock-param-userid\";i:6264;s:28:\"apihelp-unblock-param-reason\";i:6265;s:26:\"apihelp-unblock-param-tags\";i:6266;s:26:\"apihelp-unblock-example-id\";i:6267;s:28:\"apihelp-unblock-example-user\";i:6268;s:24:\"apihelp-undelete-summary\";i:6269;s:37:\"apihelp-undelete-extended-description\";i:6270;s:28:\"apihelp-undelete-param-title\";i:6271;s:29:\"apihelp-undelete-param-reason\";i:6272;s:27:\"apihelp-undelete-param-tags\";i:6273;s:33:\"apihelp-undelete-param-timestamps\";i:6274;s:30:\"apihelp-undelete-param-fileids\";i:6275;s:32:\"apihelp-undelete-param-watchlist\";i:6276;s:38:\"apihelp-undelete-param-watchlistexpiry\";i:6277;s:29:\"apihelp-undelete-example-page\";i:6278;s:34:\"apihelp-undelete-example-revisions\";i:6279;s:29:\"apihelp-unlinkaccount-summary\";i:6280;s:36:\"apihelp-unlinkaccount-example-simple\";i:6281;s:22:\"apihelp-upload-summary\";i:6282;s:35:\"apihelp-upload-extended-description\";i:6283;s:29:\"apihelp-upload-param-filename\";i:6284;s:28:\"apihelp-upload-param-comment\";i:6285;s:25:\"apihelp-upload-param-tags\";i:6286;s:25:\"apihelp-upload-param-text\";i:6287;s:26:\"apihelp-upload-param-watch\";i:6288;s:30:\"apihelp-upload-param-watchlist\";i:6289;s:36:\"apihelp-upload-param-watchlistexpiry\";i:6290;s:35:\"apihelp-upload-param-ignorewarnings\";i:6291;s:25:\"apihelp-upload-param-file\";i:6292;s:24:\"apihelp-upload-param-url\";i:6293;s:28:\"apihelp-upload-param-filekey\";i:6294;s:31:\"apihelp-upload-param-sessionkey\";i:6295;s:26:\"apihelp-upload-param-stash\";i:6296;s:29:\"apihelp-upload-param-filesize\";i:6297;s:27:\"apihelp-upload-param-offset\";i:6298;s:26:\"apihelp-upload-param-chunk\";i:6299;s:26:\"apihelp-upload-param-async\";i:6300;s:32:\"apihelp-upload-param-checkstatus\";i:6301;s:26:\"apihelp-upload-example-url\";i:6302;s:30:\"apihelp-upload-example-filekey\";i:6303;s:26:\"apihelp-userrights-summary\";i:6304;s:29:\"apihelp-userrights-param-user\";i:6305;s:31:\"apihelp-userrights-param-userid\";i:6306;s:28:\"apihelp-userrights-param-add\";i:6307;s:31:\"apihelp-userrights-param-expiry\";i:6308;s:31:\"apihelp-userrights-param-remove\";i:6309;s:31:\"apihelp-userrights-param-reason\";i:6310;s:29:\"apihelp-userrights-param-tags\";i:6311;s:31:\"apihelp-userrights-example-user\";i:6312;s:33:\"apihelp-userrights-example-userid\";i:6313;s:33:\"apihelp-userrights-example-expiry\";i:6314;s:32:\"apihelp-validatepassword-summary\";i:6315;s:45:\"apihelp-validatepassword-extended-description\";i:6316;s:39:\"apihelp-validatepassword-param-password\";i:6317;s:35:\"apihelp-validatepassword-param-user\";i:6318;s:36:\"apihelp-validatepassword-param-email\";i:6319;s:39:\"apihelp-validatepassword-param-realname\";i:6320;s:34:\"apihelp-validatepassword-example-1\";i:6321;s:34:\"apihelp-validatepassword-example-2\";i:6322;s:21:\"apihelp-watch-summary\";i:6323;s:25:\"apihelp-watch-param-title\";i:6324;s:26:\"apihelp-watch-param-expiry\";i:6325;s:27:\"apihelp-watch-param-unwatch\";i:6326;s:27:\"apihelp-watch-example-watch\";i:6327;s:34:\"apihelp-watch-example-watch-expiry\";i:6328;s:29:\"apihelp-watch-example-unwatch\";i:6329;s:31:\"apihelp-watch-example-generator\";i:6330;s:30:\"apihelp-format-example-generic\";i:6331;s:32:\"apihelp-format-param-wrappedhtml\";i:6332;s:20:\"apihelp-json-summary\";i:6333;s:27:\"apihelp-json-param-callback\";i:6334;s:23:\"apihelp-json-param-utf8\";i:6335;s:24:\"apihelp-json-param-ascii\";i:6336;s:32:\"apihelp-json-param-formatversion\";i:6337;s:39:\"apihelp-json-paramvalue-formatversion-1\";i:6338;s:39:\"apihelp-json-paramvalue-formatversion-2\";i:6339;s:44:\"apihelp-json-paramvalue-formatversion-latest\";i:6340;s:22:\"apihelp-jsonfm-summary\";i:6341;s:20:\"apihelp-none-summary\";i:6342;s:19:\"apihelp-php-summary\";i:6343;s:31:\"apihelp-php-param-formatversion\";i:6344;s:38:\"apihelp-php-paramvalue-formatversion-1\";i:6345;s:38:\"apihelp-php-paramvalue-formatversion-2\";i:6346;s:43:\"apihelp-php-paramvalue-formatversion-latest\";i:6347;s:21:\"apihelp-phpfm-summary\";i:6348;s:21:\"apihelp-rawfm-summary\";i:6349;s:19:\"apihelp-xml-summary\";i:6350;s:22:\"apihelp-xml-param-xslt\";i:6351;s:37:\"apihelp-xml-param-includexmlnamespace\";i:6352;s:21:\"apihelp-xmlfm-summary\";i:6353;s:16:\"api-format-title\";i:6354;s:29:\"api-format-prettyprint-header\";i:6355;s:39:\"api-format-prettyprint-header-only-html\";i:6356;s:41:\"api-format-prettyprint-header-hyperlinked\";i:6357;s:29:\"api-format-prettyprint-status\";i:6358;s:22:\"api-login-fail-aborted\";i:6359;s:30:\"api-login-fail-aborted-nobotpw\";i:6360;s:33:\"api-login-fail-badsessionprovider\";i:6361;s:25:\"api-login-fail-sameorigin\";i:6362;s:24:\"api-pageset-param-titles\";i:6363;s:25:\"api-pageset-param-pageids\";i:6364;s:24:\"api-pageset-param-revids\";i:6365;s:27:\"api-pageset-param-generator\";i:6366;s:37:\"api-pageset-param-redirects-generator\";i:6367;s:39:\"api-pageset-param-redirects-nogenerator\";i:6368;s:31:\"api-pageset-param-converttitles\";i:6369;s:14:\"api-help-title\";i:6370;s:13:\"api-help-lead\";i:6371;s:20:\"api-help-main-header\";i:6372;s:28:\"api-help-undocumented-module\";i:6373;s:14:\"api-help-flags\";i:6374;s:24:\"api-help-flag-deprecated\";i:6375;s:22:\"api-help-flag-internal\";i:6376;s:24:\"api-help-flag-readrights\";i:6377;s:25:\"api-help-flag-writerights\";i:6378;s:26:\"api-help-flag-mustbeposted\";i:6379;s:23:\"api-help-flag-generator\";i:6380;s:15:\"api-help-source\";i:6381;s:23:\"api-help-source-unknown\";i:6382;s:16:\"api-help-license\";i:6383;s:23:\"api-help-license-noname\";i:6384;s:24:\"api-help-license-unknown\";i:6385;s:18:\"api-help-help-urls\";i:6386;s:19:\"api-help-parameters\";i:6387;s:25:\"api-help-param-deprecated\";i:6388;s:31:\"api-help-param-deprecated-label\";i:6389;s:23:\"api-help-param-internal\";i:6390;s:29:\"api-help-param-internal-label\";i:6391;s:24:\"api-help-param-templated\";i:6392;s:34:\"api-help-param-templated-var-first\";i:6393;s:28:\"api-help-param-templated-var\";i:6394;s:25:\"api-help-datatypes-header\";i:6395;s:22:\"api-help-datatypes-top\";i:6396;s:25:\"api-help-datatype-boolean\";i:6397;s:24:\"api-help-datatype-expiry\";i:6398;s:27:\"api-help-datatype-timestamp\";i:6399;s:31:\"api-help-templatedparams-header\";i:6400;s:24:\"api-help-templatedparams\";i:6401;s:26:\"api-help-param-type-expiry\";i:6402;s:25:\"api-help-param-type-limit\";i:6403;s:35:\"api-help-param-type-presenceboolean\";i:6404;s:29:\"api-help-param-type-timestamp\";i:6405;s:24:\"api-help-param-type-enum\";i:6406;s:29:\"api-help-param-multi-separate\";i:6407;s:24:\"api-help-param-multi-all\";i:6408;s:28:\"api-help-param-default-empty\";i:6409;s:20:\"api-help-param-token\";i:6410;s:26:\"api-help-param-token-webui\";i:6411;s:37:\"api-help-param-disabled-in-miser-mode\";i:6412;s:36:\"api-help-param-limited-in-miser-mode\";i:6413;s:24:\"api-help-param-direction\";i:6414;s:23:\"api-help-param-continue\";i:6415;s:29:\"api-help-param-no-description\";i:6416;s:17:\"api-help-examples\";i:6417;s:20:\"api-help-permissions\";i:6418;s:31:\"api-help-permissions-granted-to\";i:6419;s:28:\"api-help-right-apihighlimits\";i:6420;s:27:\"api-help-open-in-apisandbox\";i:6421;s:32:\"api-help-no-extended-description\";i:6422;s:34:\"api-help-authmanager-general-usage\";i:6423;s:35:\"api-help-authmanagerhelper-requests\";i:6424;s:34:\"api-help-authmanagerhelper-request\";i:6425;s:40:\"api-help-authmanagerhelper-messageformat\";i:6426;s:45:\"api-help-authmanagerhelper-mergerequestfields\";i:6427;s:40:\"api-help-authmanagerhelper-preservestate\";i:6428;s:36:\"api-help-authmanagerhelper-returnurl\";i:6429;s:35:\"api-help-authmanagerhelper-continue\";i:6430;s:44:\"api-help-authmanagerhelper-additional-params\";i:6431;s:27:\"apierror-allimages-redirect\";i:6432;s:37:\"apierror-allpages-generator-redirects\";i:6433;s:27:\"apierror-appendnotsupported\";i:6434;s:22:\"apierror-articleexists\";i:6435;s:25:\"apierror-assertanonfailed\";i:6436;s:24:\"apierror-assertbotfailed\";i:6437;s:30:\"apierror-assertnameduserfailed\";i:6438;s:25:\"apierror-assertuserfailed\";i:6439;s:20:\"apierror-autoblocked\";i:6440;s:32:\"apierror-bad-badfilecontexttitle\";i:6441;s:33:\"apierror-badconfig-resulttoosmall\";i:6442;s:20:\"apierror-badcontinue\";i:6443;s:16:\"apierror-baddiff\";i:6444;s:18:\"apierror-baddiffto\";i:6445;s:26:\"apierror-badformat-generic\";i:6446;s:18:\"apierror-badformat\";i:6447;s:34:\"apierror-badgenerator-notgenerator\";i:6448;s:29:\"apierror-badgenerator-unknown\";i:6449;s:14:\"apierror-badip\";i:6450;s:15:\"apierror-badmd5\";i:6451;s:31:\"apierror-badmodule-badsubmodule\";i:6452;s:31:\"apierror-badmodule-nosubmodules\";i:6453;s:21:\"apierror-badparameter\";i:6454;s:17:\"apierror-badquery\";i:6455;s:21:\"apierror-badtimestamp\";i:6456;s:17:\"apierror-badtoken\";i:6457;s:18:\"apierror-badupload\";i:6458;s:15:\"apierror-badurl\";i:6459;s:16:\"apierror-baduser\";i:6460;s:31:\"apierror-badvalue-notmultivalue\";i:6461;s:28:\"apierror-bad-watchlist-token\";i:6462;s:24:\"apierror-blockedfrommail\";i:6463;s:16:\"apierror-blocked\";i:6464;s:24:\"apierror-blocked-partial\";i:6465;s:25:\"apierror-botsnotsupported\";i:6466;s:33:\"apierror-cannot-async-upload-file\";i:6467;s:29:\"apierror-cannotreauthenticate\";i:6468;s:24:\"apierror-cannotviewtitle\";i:6469;s:24:\"apierror-cantblock-email\";i:6470;s:18:\"apierror-cantblock\";i:6471;s:31:\"apierror-cantchangecontentmodel\";i:6472;s:17:\"apierror-canthide\";i:6473;s:26:\"apierror-cantimport-upload\";i:6474;s:19:\"apierror-cantimport\";i:6475;s:33:\"apierror-cantoverwrite-sharedfile\";i:6476;s:17:\"apierror-cantsend\";i:6477;s:21:\"apierror-cantundelete\";i:6478;s:33:\"apierror-cantview-deleted-comment\";i:6479;s:37:\"apierror-cantview-deleted-description\";i:6480;s:34:\"apierror-cantview-deleted-metadata\";i:6481;s:42:\"apierror-cantview-deleted-revision-content\";i:6482;s:29:\"apierror-changeauth-norequest\";i:6483;s:40:\"apierror-changecontentmodel-missingtitle\";i:6484;s:43:\"apierror-changecontentmodel-nodirectediting\";i:6485;s:40:\"apierror-changecontentmodel-cannotbeused\";i:6486;s:42:\"apierror-changecontentmodel-cannot-convert\";i:6487;s:24:\"apierror-chunk-too-small\";i:6488;s:21:\"apierror-cidrtoobroad\";i:6489;s:33:\"apierror-compare-maintextrequired\";i:6490;s:25:\"apierror-compare-no-title\";i:6491;s:34:\"apierror-compare-nosuchfromsection\";i:6492;s:32:\"apierror-compare-nosuchtosection\";i:6493;s:31:\"apierror-compare-nofromrevision\";i:6494;s:23:\"apierror-compare-notext\";i:6495;s:29:\"apierror-compare-notorevision\";i:6496;s:26:\"apierror-concurrency-limit\";i:6497;s:36:\"apierror-compare-relative-to-deleted\";i:6498;s:36:\"apierror-compare-relative-to-nothing\";i:6499;s:38:\"apierror-contentserializationexception\";i:6500;s:22:\"apierror-contenttoobig\";i:6501;s:30:\"apierror-contentmodel-mismatch\";i:6502;s:28:\"apierror-copyuploadbaddomain\";i:6503;s:25:\"apierror-copyuploadbadurl\";i:6504;s:27:\"apierror-create-titleexists\";i:6505;s:19:\"apierror-csp-report\";i:6506;s:34:\"apierror-deletedrevs-param-not-1-2\";i:6507;s:32:\"apierror-deletedrevs-param-not-3\";i:6508;s:29:\"apierror-edit-invalidredirect\";i:6509;s:24:\"apierror-emptynewsection\";i:6510;s:18:\"apierror-emptypage\";i:6511;s:24:\"apierror-exceptioncaught\";i:6512;s:28:\"apierror-exceptioncaughttype\";i:6513;s:25:\"apierror-filedoesnotexist\";i:6514;s:35:\"apierror-fileexists-sharedrepo-perm\";i:6515;s:19:\"apierror-filenopath\";i:6516;s:32:\"apierror-filetypecannotberotated\";i:6517;s:18:\"apierror-formatphp\";i:6518;s:28:\"apierror-imageusage-badtitle\";i:6519;s:28:\"apierror-import-unknownerror\";i:6520;s:38:\"apierror-integeroutofrange-abovebotmax\";i:6521;s:35:\"apierror-integeroutofrange-abovemax\";i:6522;s:39:\"apierror-integeroutofrange-belowminimum\";i:6523;s:24:\"apierror-invalidcategory\";i:6524;s:22:\"apierror-invalid-chunk\";i:6525;s:22:\"apierror-invalidexpiry\";i:6526;s:25:\"apierror-invalid-file-key\";i:6527;s:20:\"apierror-invalidlang\";i:6528;s:22:\"apierror-invalidmethod\";i:6529;s:24:\"apierror-invalidoldimage\";i:6530;s:38:\"apierror-invalidparammix-cannotusewith\";i:6531;s:36:\"apierror-invalidparammix-mustusewith\";i:6532;s:42:\"apierror-invalidparammix-parse-new-section\";i:6533;s:24:\"apierror-invalidparammix\";i:6534;s:23:\"apierror-invalidsection\";i:6535;s:30:\"apierror-invalidsha1base36hash\";i:6536;s:24:\"apierror-invalidsha1hash\";i:6537;s:21:\"apierror-invalidtitle\";i:6538;s:24:\"apierror-invalidurlparam\";i:6539;s:20:\"apierror-invaliduser\";i:6540;s:22:\"apierror-invaliduserid\";i:6541;s:17:\"apierror-maxbytes\";i:6542;s:17:\"apierror-maxchars\";i:6543;s:23:\"apierror-maxlag-generic\";i:6544;s:15:\"apierror-maxlag\";i:6545;s:27:\"apierror-mimesearchdisabled\";i:6546;s:30:\"apierror-missingcontent-pageid\";i:6547;s:29:\"apierror-missingcontent-revid\";i:6548;s:34:\"apierror-missingcontent-revid-role\";i:6549;s:37:\"apierror-missingparam-at-least-one-of\";i:6550;s:28:\"apierror-missingparam-one-of\";i:6551;s:21:\"apierror-missingparam\";i:6552;s:26:\"apierror-missingrev-pageid\";i:6553;s:25:\"apierror-missingrev-title\";i:6554;s:32:\"apierror-missingtitle-createonly\";i:6555;s:21:\"apierror-missingtitle\";i:6556;s:28:\"apierror-missingtitle-byname\";i:6557;s:23:\"apierror-moduledisabled\";i:6558;s:29:\"apierror-multival-only-one-of\";i:6559;s:18:\"apierror-multpages\";i:6560;s:34:\"apierror-mustbeloggedin-changeauth\";i:6561;s:31:\"apierror-mustbeloggedin-generic\";i:6562;s:36:\"apierror-mustbeloggedin-linkaccounts\";i:6563;s:34:\"apierror-mustbeloggedin-removeauth\";i:6564;s:35:\"apierror-mustbeloggedin-uploadstash\";i:6565;s:23:\"apierror-mustbeloggedin\";i:6566;s:21:\"apierror-mustbeposted\";i:6567;s:23:\"apierror-mustpostparams\";i:6568;s:19:\"apierror-noapiwrite\";i:6569;s:18:\"apierror-nochanges\";i:6570;s:25:\"apierror-nodeleteablefile\";i:6571;s:26:\"apierror-no-direct-editing\";i:6572;s:20:\"apierror-noedit-anon\";i:6573;s:15:\"apierror-noedit\";i:6574;s:29:\"apierror-noimageredirect-anon\";i:6575;s:24:\"apierror-noimageredirect\";i:6576;s:20:\"apierror-nosuchlogid\";i:6577;s:21:\"apierror-nosuchpageid\";i:6578;s:19:\"apierror-nosuchrcid\";i:6579;s:20:\"apierror-nosuchrevid\";i:6580;s:22:\"apierror-nosuchsection\";i:6581;s:27:\"apierror-nosuchsection-what\";i:6582;s:21:\"apierror-nosuchuserid\";i:6583;s:17:\"apierror-notarget\";i:6584;s:23:\"apierror-notpatrollable\";i:6585;s:23:\"apierror-nouploadmodule\";i:6586;s:33:\"apierror-opensearch-json-warnings\";i:6587;s:24:\"apierror-pagecannotexist\";i:6588;s:20:\"apierror-pagedeleted\";i:6589;s:26:\"apierror-pagelang-disabled\";i:6590;s:19:\"apierror-paramempty\";i:6591;s:30:\"apierror-parsetree-notwikitext\";i:6592;s:36:\"apierror-parsetree-notwikitext-title\";i:6593;s:19:\"apierror-pastexpiry\";i:6594;s:25:\"apierror-permissiondenied\";i:6595;s:33:\"apierror-permissiondenied-generic\";i:6596;s:36:\"apierror-permissiondenied-patrolflag\";i:6597;s:33:\"apierror-permissiondenied-unblock\";i:6598;s:29:\"apierror-prefixsearchdisabled\";i:6599;s:30:\"apierror-promised-nonwrite-api\";i:6600;s:30:\"apierror-protect-invalidaction\";i:6601;s:29:\"apierror-protect-invalidlevel\";i:6602;s:20:\"apierror-ratelimited\";i:6603;s:22:\"apierror-readapidenied\";i:6604;s:17:\"apierror-readonly\";i:6605;s:23:\"apierror-reauthenticate\";i:6606;s:28:\"apierror-redirect-appendonly\";i:6607;s:33:\"apierror-revdel-mutuallyexclusive\";i:6608;s:26:\"apierror-revdel-needtarget\";i:6609;s:27:\"apierror-revdel-paramneeded\";i:6610;s:24:\"apierror-revisions-badid\";i:6611;s:27:\"apierror-revisions-norevids\";i:6612;s:29:\"apierror-revisions-singlepage\";i:6613;s:21:\"apierror-revwrongpage\";i:6614;s:23:\"apierror-searchdisabled\";i:6615;s:29:\"apierror-sectionreplacefailed\";i:6616;s:29:\"apierror-sectionsnotsupported\";i:6617;s:34:\"apierror-sectionsnotsupported-what\";i:6618;s:13:\"apierror-show\";i:6619;s:34:\"apierror-siteinfo-includealldenied\";i:6620;s:25:\"apierror-sizediffdisabled\";i:6621;s:21:\"apierror-spamdetected\";i:6622;s:32:\"apierror-specialpage-cantexecute\";i:6623;s:28:\"apierror-stashedfilenotfound\";i:6624;s:30:\"apierror-stashedit-missingtext\";i:6625;s:23:\"apierror-stashexception\";i:6626;s:29:\"apierror-stashfailed-complete\";i:6627;s:30:\"apierror-stashfailed-nosession\";i:6628;s:25:\"apierror-stashfilestorage\";i:6629;s:25:\"apierror-stashinvalidfile\";i:6630;s:27:\"apierror-stashnosuchfilekey\";i:6631;s:25:\"apierror-stashpathinvalid\";i:6632;s:24:\"apierror-stashwrongowner\";i:6633;s:24:\"apierror-stashzerolength\";i:6634;s:22:\"apierror-systemblocked\";i:6635;s:38:\"apierror-templateexpansion-notwikitext\";i:6636;s:23:\"apierror-toofewexpiries\";i:6637;s:22:\"apierror-toomanyvalues\";i:6638;s:22:\"apierror-unknownaction\";i:6639;s:30:\"apierror-unknownerror-editpage\";i:6640;s:28:\"apierror-unknownerror-nocode\";i:6641;s:21:\"apierror-unknownerror\";i:6642;s:22:\"apierror-unknownformat\";i:6643;s:27:\"apierror-unrecognizedparams\";i:6644;s:26:\"apierror-unrecognizedvalue\";i:6645;s:24:\"apierror-unsupportedrepo\";i:6646;s:29:\"apierror-upload-filekeyneeded\";i:6647;s:33:\"apierror-upload-filekeynotallowed\";i:6648;s:26:\"apierror-upload-inprogress\";i:6649;s:29:\"apierror-upload-missingresult\";i:6650;s:23:\"apierror-urlparamnormal\";i:6651;s:23:\"apierror-writeapidenied\";i:6652;s:39:\"apiwarn-alldeletedrevisions-performance\";i:6653;s:19:\"apiwarn-badurlparam\";i:6654;s:15:\"apiwarn-badutf8\";i:6655;s:34:\"apiwarn-checktoken-percentencoding\";i:6656;s:23:\"apiwarn-compare-no-next\";i:6657;s:23:\"apiwarn-compare-no-prev\";i:6658;s:30:\"apiwarn-compare-nocontentmodel\";i:6659;s:31:\"apiwarn-deprecation-deletedrevs\";i:6660;s:33:\"apiwarn-deprecation-httpsexpected\";i:6661;s:31:\"apiwarn-deprecation-login-botpw\";i:6662;s:33:\"apiwarn-deprecation-login-nobotpw\";i:6663;s:31:\"apiwarn-deprecation-login-token\";i:6664;s:32:\"apiwarn-deprecation-missingparam\";i:6665;s:29:\"apiwarn-deprecation-parameter\";i:6666;s:35:\"apiwarn-deprecation-parse-headitems\";i:6667;s:45:\"apiwarn-deprecation-post-without-content-type\";i:6668;s:29:\"apiwarn-deprecation-purge-get\";i:6669;s:35:\"apiwarn-deprecation-withreplacement\";i:6670;s:20:\"apiwarn-difftohidden\";i:6671;s:26:\"apiwarn-errorprinterfailed\";i:6672;s:40:\"apiwarn-ignoring-invalid-templated-value\";i:6673;s:23:\"apiwarn-invalidcategory\";i:6674;s:20:\"apiwarn-invalidtitle\";i:6675;s:31:\"apiwarn-invalidxmlstylesheetext\";i:6676;s:28:\"apiwarn-invalidxmlstylesheet\";i:6677;s:30:\"apiwarn-invalidxmlstylesheetns\";i:6678;s:26:\"apiwarn-moduleswithoutvars\";i:6679;s:15:\"apiwarn-notfile\";i:6680;s:30:\"apiwarn-nothumb-noimagehandler\";i:6681;s:28:\"apiwarn-parse-nocontentmodel\";i:6682;s:30:\"apiwarn-parse-revidwithouttext\";i:6683;s:30:\"apiwarn-parse-titlewithouttext\";i:6684;s:26:\"apiwarn-redirectsandrevids\";i:6685;s:21:\"apiwarn-tokens-origin\";i:6686;s:23:\"apiwarn-truncatedresult\";i:6687;s:27:\"apiwarn-unclearnowtimestamp\";i:6688;s:26:\"apiwarn-unrecognizedvalues\";i:6689;s:24:\"apiwarn-unsupportedarray\";i:6690;s:21:\"apiwarn-urlparamwidth\";i:6691;s:33:\"apiwarn-validationfailed-badchars\";i:6692;s:32:\"apiwarn-validationfailed-badpref\";i:6693;s:34:\"apiwarn-validationfailed-cannotset\";i:6694;s:35:\"apiwarn-validationfailed-keytoolong\";i:6695;s:24:\"apiwarn-validationfailed\";i:6696;s:18:\"apiwarn-wgdebugapi\";i:6697;s:20:\"api-feed-error-title\";i:6698;s:16:\"api-usage-docref\";i:6699;s:25:\"api-usage-mailinglist-ref\";i:6700;s:19:\"api-exception-trace\";i:6701;s:18:\"api-credits-header\";i:6702;s:11:\"api-credits\";i:6703;s:20:\"rest-prefix-mismatch\";i:6704;s:17:\"rest-wrong-method\";i:6705;s:13:\"rest-no-match\";i:6706;s:22:\"rest-nonexistent-title\";i:6707;s:31:\"rest-nonexistent-title-revision\";i:6708;s:25:\"rest-nonexistent-revision\";i:6709;s:21:\"rest-nonexistent-user\";i:6710;s:17:\"rest-invalid-user\";i:6711;s:27:\"rest-permission-denied-anon\";i:6712;s:28:\"rest-permission-denied-title\";i:6713;s:31:\"rest-permission-denied-revision\";i:6714;s:28:\"rest-resource-limit-exceeded\";i:6715;s:36:\"rest-pagehistory-incompatible-params\";i:6716;s:34:\"rest-pagehistory-param-range-error\";i:6717;s:32:\"rest-pagehistory-timestamp-error\";i:6718;s:39:\"rest-pagehistorycount-type-unrecognized\";i:6719;s:40:\"rest-pagehistorycount-parameters-invalid\";i:6720;s:26:\"rest-compare-page-mismatch\";i:6721;s:30:\"rest-compare-permission-denied\";i:6722;s:24:\"rest-compare-nonexistent\";i:6723;s:25:\"rest-compare-inaccessible\";i:6724;s:26:\"rest-compare-wrong-content\";i:6725;s:22:\"rest-compare-wikidiff2\";i:6726;s:40:\"rest-pagehistorycount-too-many-revisions\";i:6727;s:17:\"rest-search-error\";i:6728;s:27:\"rest-page-source-type-error\";i:6729;s:16:\"rest-no-revision\";i:6730;s:25:\"rest-media-too-many-links\";i:6731;s:23:\"rest-html-backend-error\";i:6732;s:18:\"rest-bad-json-body\";i:6733;s:26:\"rest-json-body-parse-error\";i:6734;s:23:\"rest-missing-body-field\";i:6735;s:22:\"rest-bad-content-model\";i:6736;s:30:\"rest-update-cannot-create-page\";i:6737;s:26:\"rest-extraneous-csrf-token\";i:6738;s:21:\"rest-cannot-load-file\";i:6739;s:28:\"rest-cross-origin-anon-write\";i:6740;s:30:\"ooui-outline-control-move-down\";i:6741;s:28:\"ooui-outline-control-move-up\";i:6742;s:27:\"ooui-outline-control-remove\";i:6743;s:17:\"ooui-toolbar-more\";i:6744;s:21:\"ooui-toolgroup-expand\";i:6745;s:23:\"ooui-toolgroup-collapse\";i:6746;s:16:\"ooui-item-remove\";i:6747;s:26:\"ooui-dialog-message-accept\";i:6748;s:26:\"ooui-dialog-message-reject\";i:6749;s:25:\"ooui-dialog-process-error\";i:6750;s:27:\"ooui-dialog-process-dismiss\";i:6751;s:25:\"ooui-dialog-process-retry\";i:6752;s:28:\"ooui-dialog-process-continue\";i:6753;s:26:\"ooui-combobox-button-label\";i:6754;s:29:\"ooui-selectfile-button-select\";i:6755;s:38:\"ooui-selectfile-button-select-multiple\";i:6756;s:29:\"ooui-selectfile-not-supported\";i:6757;s:27:\"ooui-selectfile-placeholder\";i:6758;s:36:\"ooui-selectfile-dragdrop-placeholder\";i:6759;s:45:\"ooui-selectfile-dragdrop-placeholder-multiple\";i:6760;s:41:\"ooui-popup-widget-close-button-aria-label\";i:6761;s:15:\"ooui-field-help\";i:6762;s:22:\"paramvalidator-badbool\";i:6763;s:24:\"paramvalidator-badexpiry\";i:6764;s:33:\"paramvalidator-badexpiry-duration\";i:6765;s:37:\"paramvalidator-badexpiry-duration-max\";i:6766;s:29:\"paramvalidator-badexpiry-past\";i:6767;s:23:\"paramvalidator-badfloat\";i:6768;s:33:\"paramvalidator-badfloat-notfinite\";i:6769;s:25:\"paramvalidator-badinteger\";i:6770;s:27:\"paramvalidator-badtimestamp\";i:6771;s:34:\"paramvalidator-badupload-cantwrite\";i:6772;s:33:\"paramvalidator-badupload-formsize\";i:6773;s:32:\"paramvalidator-badupload-inisize\";i:6774;s:31:\"paramvalidator-badupload-nofile\";i:6775;s:33:\"paramvalidator-badupload-notmpdir\";i:6776;s:34:\"paramvalidator-badupload-notupload\";i:6777;s:32:\"paramvalidator-badupload-partial\";i:6778;s:31:\"paramvalidator-badupload-phpext\";i:6779;s:33:\"paramvalidator-badvalue-enummulti\";i:6780;s:36:\"paramvalidator-badvalue-enumnotmulti\";i:6781;s:31:\"paramvalidator-deprecated-value\";i:6782;s:26:\"paramvalidator-emptystring\";i:6783;s:23:\"paramvalidator-maxbytes\";i:6784;s:23:\"paramvalidator-maxchars\";i:6785;s:27:\"paramvalidator-missingparam\";i:6786;s:23:\"paramvalidator-notmulti\";i:6787;s:29:\"paramvalidator-outofrange-max\";i:6788;s:32:\"paramvalidator-outofrange-minmax\";i:6789;s:29:\"paramvalidator-outofrange-min\";i:6790;s:31:\"paramvalidator-param-deprecated\";i:6791;s:30:\"paramvalidator-param-sensitive\";i:6792;s:28:\"paramvalidator-toomanyvalues\";i:6793;s:34:\"paramvalidator-unclearnowtimestamp\";i:6794;s:33:\"paramvalidator-unrecognizedvalues\";i:6795;s:27:\"paramvalidator-help-default\";i:6796;s:33:\"paramvalidator-help-default-empty\";i:6797;s:30:\"paramvalidator-help-deprecated\";i:6798;s:34:\"paramvalidator-help-multi-separate\";i:6799;s:29:\"paramvalidator-help-multi-max\";i:6800;s:36:\"paramvalidator-help-multi-max-simple\";i:6801;s:29:\"paramvalidator-help-multi-all\";i:6802;s:28:\"paramvalidator-help-required\";i:6803;s:32:\"paramvalidator-help-type-boolean\";i:6804;s:42:\"paramvalidator-help-type-enum-can-be-empty\";i:6805;s:29:\"paramvalidator-help-type-enum\";i:6806;s:31:\"paramvalidator-help-type-expiry\";i:6807;s:30:\"paramvalidator-help-type-float\";i:6808;s:32:\"paramvalidator-help-type-integer\";i:6809;s:30:\"paramvalidator-help-type-limit\";i:6810;s:35:\"paramvalidator-help-type-number-max\";i:6811;s:38:\"paramvalidator-help-type-number-minmax\";i:6812;s:35:\"paramvalidator-help-type-number-min\";i:6813;s:40:\"paramvalidator-help-type-presenceboolean\";i:6814;s:40:\"paramvalidator-help-type-string-maxbytes\";i:6815;s:40:\"paramvalidator-help-type-string-maxchars\";i:6816;s:34:\"paramvalidator-help-type-timestamp\";i:6817;s:31:\"paramvalidator-help-type-upload\";i:6818;s:26:\"minerva-last-modified-date\";i:6819;s:21:\"minerva-watchlist-cta\";i:6820;s:22:\"minerva-talk-add-topic\";i:6821;s:32:\"mobile-frontend-cookies-required\";i:6822;s:27:\"mobile-frontend-editor-edit\";i:6823;s:16:\"minerva-download\";i:6824;s:37:\"mobile-frontend-editor-redlink-create\";i:6825;s:38:\"mobile-frontend-editor-redlink-explain\";i:6826;s:36:\"mobile-frontend-editor-redlink-leave\";i:6827;s:23:\"mobile-frontend-history\";i:6828;s:27:\"mobile-frontend-home-button\";i:6829;s:40:\"mobile-frontend-language-article-heading\";i:6830;s:39:\"mobile-frontend-languages-not-available\";i:6831;s:40:\"mobile-frontend-main-menu-button-tooltip\";i:6832;s:39:\"mobile-frontend-main-menu-contributions\";i:6833;s:31:\"mobile-frontend-main-menu-login\";i:6834;s:32:\"mobile-frontend-main-menu-logout\";i:6835;s:32:\"mobile-frontend-main-menu-nearby\";i:6836;s:34:\"mobile-frontend-main-menu-settings\";i:6837;s:35:\"mobile-frontend-main-menu-watchlist\";i:6838;s:32:\"mobile-frontend-meta-data-issues\";i:6839;s:43:\"mobile-frontend-meta-data-issues-categories\";i:6840;s:39:\"mobile-frontend-meta-data-issues-header\";i:6841;s:39:\"minerva-meta-data-issues-section-header\";i:6842;s:44:\"mobile-frontend-meta-data-issues-header-talk\";i:6843;s:37:\"mobile-frontend-meta-data-issues-talk\";i:6844;s:36:\"mobile-frontend-notifications-filter\";i:6845;s:39:\"mobile-frontend-pageaction-edit-tooltip\";i:6846;s:27:\"mobile-frontend-placeholder\";i:6847;s:29:\"mobile-frontend-random-button\";i:6848;s:31:\"mobile-frontend-redirected-from\";i:6849;s:37:\"mobile-frontend-talk-back-to-filepage\";i:6850;s:33:\"mobile-frontend-talk-back-to-page\";i:6851;s:40:\"mobile-frontend-talk-back-to-projectpage\";i:6852;s:37:\"mobile-frontend-talk-back-to-userpage\";i:6853;s:35:\"mobile-frontend-user-button-tooltip\";i:6854;s:32:\"mobile-frontend-user-newmessages\";i:6855;s:39:\"mobile-frontend-user-page-contributions\";i:6856;s:38:\"mobile-frontend-user-page-member-since\";i:6857;s:30:\"mobile-frontend-user-page-talk\";i:6858;s:24:\"minerva-user-menu-button\";i:6859;s:23:\"minerva-user-navigation\";i:6860;s:29:\"minerva-page-actions-overflow\";i:6861;s:25:\"minerva-page-actions-info\";i:6862;s:30:\"minerva-page-actions-permalink\";i:6863;s:30:\"minerva-page-actions-backlinks\";i:6864;s:25:\"minerva-page-actions-cite\";i:6865;s:25:\"minerva-page-actions-move\";i:6866;s:27:\"minerva-page-actions-delete\";i:6867;s:28:\"minerva-page-actions-protect\";i:6868;s:30:\"minerva-page-actions-unprotect\";i:6869;s:32:\"minerva-page-actions-user-groups\";i:6870;s:25:\"minerva-page-actions-logs\";i:6871;s:29:\"minerva-page-actions-wikibase\";i:6872;s:38:\"minerva-page-actions-language-switcher\";i:6873;s:28:\"minerva-page-actions-history\";i:6874;s:22:\"minerva-talk-explained\";i:6875;s:28:\"minerva-talk-explained-empty\";i:6876;s:22:\"minerva-talk-full-page\";i:6877;s:27:\"minerva-talk-topic-feedback\";i:6878;s:26:\"minerva-talk-reply-success\";i:6879;s:16:\"skinname-minerva\";i:6880;s:17:\"minerva-skin-desc\";i:6881;s:29:\"skin-minerva-issue-learn-more\";i:6882;s:48:\"skin-minerva-mobile-option-MinervaShowCategories\";i:6883;s:60:\"skin-minerva-mobile-option-MinervaShowCategories-description\";i:6884;s:56:\"skin-minerva-mobile-option-MinervaPageIssuesNewTreatment\";i:6885;s:68:\"skin-minerva-mobile-option-MinervaPageIssuesNewTreatment-description\";i:6886;s:57:\"skin-minerva-recentchanges-warning-enhanced-not-supported\";i:6887;s:11:\"minerva.css\";i:6888;s:10:\"minerva.js\";i:6889;s:17:\"skinname-monobook\";i:6890;s:13:\"monobook-desc\";i:6891;s:12:\"monobook.css\";i:6892;s:11:\"monobook.js\";i:6893;s:18:\"monobook-jumptotop\";i:6894;s:23:\"monobook-jumptopersonal\";i:6895;s:25:\"monobook-jumptonavigation\";i:6896;s:21:\"monobook-jumptosearch\";i:6897;s:21:\"monobook-more-actions\";i:6898;s:15:\"cactions-mobile\";i:6899;s:23:\"monobook-cactions-label\";i:6900;s:27:\"monobook-notifications-link\";i:6901;s:32:\"monobook-notifications-link-none\";i:6902;s:21:\"monobook-view-history\";i:6903;s:24:\"monobook-action-undelete\";i:6904;s:26:\"monobook-action-addsection\";i:6905;s:17:\"skinname-timeless\";i:6906;s:13:\"timeless-desc\";i:6907;s:18:\"timeless-anonymous\";i:6908;s:19:\"timeless-loggedinas\";i:6909;s:20:\"timeless-notloggedin\";i:6910;s:17:\"timeless-userpage\";i:6911;s:17:\"timeless-talkpage\";i:6912;s:16:\"timeless-pagelog\";i:6913;s:13:\"timeless-more\";i:6914;s:18:\"timeless-sitetools\";i:6915;s:20:\"timeless-pageactions\";i:6916;s:22:\"timeless-userpagetools\";i:6917;s:26:\"timeless-action-addsection\";i:6918;s:18:\"timeless-view-view\";i:6919;s:17:\"timeless-pagemisc\";i:6920;s:19:\"timeless-namespaces\";i:6921;s:18:\"timeless-pagetools\";i:6922;s:18:\"timeless-languages\";i:6923;s:17:\"timeless-projects\";i:6924;s:18:\"timeless-sitetitle\";i:6925;s:12:\"timeless.css\";i:6926;s:11:\"timeless.js\";i:6927;s:21:\"timeless-view-history\";i:6928;s:24:\"timeless-action-undelete\";i:6929;s:15:\"skinname-vector\";i:6930;s:20:\"skinname-vector-2022\";i:6931;s:26:\"vector-specialversion-name\";i:6932;s:22:\"tooltip-pt-watchlist-2\";i:6933;s:16:\"vector-skin-desc\";i:6934;s:34:\"prefs-vector-enable-vector-1-label\";i:6935;s:33:\"prefs-vector-enable-vector-1-help\";i:6936;s:14:\"vector-opt-out\";i:6937;s:22:\"vector-opt-out-tooltip\";i:6938;s:10:\"vector.css\";i:6939;s:9:\"vector.js\";i:6940;s:28:\"vector-action-toggle-sidebar\";i:6941;s:16:\"vector-languages\";i:6942;s:33:\"vector-language-button-aria-label\";i:6943;s:28:\"vector-language-button-label\";i:6944;s:31:\"vector-language-redirect-to-top\";i:6945;s:38:\"vector-language-variant-switcher-label\";i:6946;s:24:\"vector-action-addsection\";i:6947;s:20:\"vector-action-delete\";i:6948;s:18:\"vector-action-move\";i:6949;s:21:\"vector-action-protect\";i:6950;s:22:\"vector-action-undelete\";i:6951;s:23:\"vector-action-unprotect\";i:6952;s:18:\"vector-view-create\";i:6953;s:16:\"vector-view-edit\";i:6954;s:19:\"vector-view-history\";i:6955;s:16:\"vector-view-view\";i:6956;s:22:\"vector-view-viewsource\";i:6957;s:23:\"vector-jumptonavigation\";i:6958;s:19:\"vector-jumptosearch\";i:6959;s:20:\"vector-jumptocontent\";i:6960;s:19:\"vector-more-actions\";i:6961;s:20:\"vector-search-loader\";i:6962;s:31:\"vector-searchsuggest-containing\";i:6963;s:17:\"vector-intro-page\";i:6964;s:27:\"vector-anon-user-menu-pages\";i:6965;s:33:\"vector-anon-user-menu-pages-learn\";i:6966;s:33:\"vector-anon-user-menu-pages-label\";i:6967;s:26:\"vector-personal-more-label\";i:6968;s:24:\"vector-main-menu-tooltip\";i:6969;s:35:\"tooltip-vector-anon-user-menu-title\";i:6970;s:29:\"vector-menu-checkbox-expanded\";i:6971;s:30:\"vector-menu-checkbox-collapsed\";i:6972;s:12:\"visualeditor\";i:6973;s:35:\"visualeditor-aliencontextitem-title\";i:6974;s:30:\"visualeditor-aliennode-tooltip\";i:6975;s:30:\"visualeditor-align-desc-center\";i:6976;s:31:\"visualeditor-align-desc-default\";i:6977;s:28:\"visualeditor-align-desc-left\";i:6978;s:28:\"visualeditor-align-desc-none\";i:6979;s:29:\"visualeditor-align-desc-right\";i:6980;s:32:\"visualeditor-align-widget-center\";i:6981;s:33:\"visualeditor-align-widget-default\";i:6982;s:30:\"visualeditor-align-widget-left\";i:6983;s:31:\"visualeditor-align-widget-right\";i:6984;s:39:\"visualeditor-alignablecontextitem-title\";i:6985;s:41:\"visualeditor-annotationbutton-big-tooltip\";i:6986;s:42:\"visualeditor-annotationbutton-bold-tooltip\";i:6987;s:42:\"visualeditor-annotationbutton-code-tooltip\";i:6988;s:44:\"visualeditor-annotationbutton-italic-tooltip\";i:6989;s:46:\"visualeditor-annotationbutton-language-tooltip\";i:6990;s:42:\"visualeditor-annotationbutton-link-tooltip\";i:6991;s:43:\"visualeditor-annotationbutton-small-tooltip\";i:6992;s:51:\"visualeditor-annotationbutton-strikethrough-tooltip\";i:6993;s:47:\"visualeditor-annotationbutton-subscript-tooltip\";i:6994;s:49:\"visualeditor-annotationbutton-superscript-tooltip\";i:6995;s:47:\"visualeditor-annotationbutton-underline-tooltip\";i:6996;s:29:\"visualeditor-changedesc-align\";i:6997;s:31:\"visualeditor-changedesc-changed\";i:6998;s:36:\"visualeditor-changedesc-changed-diff\";i:6999;s:31:\"visualeditor-changedesc-comment\";i:7000;s:36:\"visualeditor-changedesc-comment-diff\";i:7001;s:33:\"visualeditor-changedesc-direction\";i:7002;s:34:\"visualeditor-changedesc-image-size\";i:7003;s:32:\"visualeditor-changedesc-language\";i:7004;s:34:\"visualeditor-changedesc-link-added\";i:7005;s:33:\"visualeditor-changedesc-link-href\";i:7006;s:38:\"visualeditor-changedesc-link-href-diff\";i:7007;s:36:\"visualeditor-changedesc-link-removed\";i:7008;s:35:\"visualeditor-changedesc-list-indent\";i:7009;s:36:\"visualeditor-changedesc-list-outdent\";i:7010;s:30:\"visualeditor-changedesc-no-key\";i:7011;s:27:\"visualeditor-changedesc-set\";i:7012;s:39:\"visualeditor-changedesc-textstyle-added\";i:7013;s:41:\"visualeditor-changedesc-textstyle-removed\";i:7014;s:31:\"visualeditor-changedesc-unknown\";i:7015;s:29:\"visualeditor-changedesc-unset\";i:7016;s:22:\"visualeditor-changedir\";i:7017;s:31:\"visualeditor-changedir-tool-ltr\";i:7018;s:31:\"visualeditor-changedir-tool-rtl\";i:7019;s:32:\"visualeditor-clearbutton-tooltip\";i:7020;s:27:\"visualeditor-clipboard-copy\";i:7021;s:32:\"visualeditor-clipboard-copy-fail\";i:7022;s:35:\"visualeditor-clipboard-copy-success\";i:7023;s:26:\"visualeditor-clipboard-cut\";i:7024;s:28:\"visualeditor-clipboard-paste\";i:7025;s:36:\"visualeditor-clipboard-paste-special\";i:7026;s:34:\"visualeditor-command-dialog-cancel\";i:7027;s:35:\"visualeditor-command-dialog-confirm\";i:7028;s:41:\"visualeditor-command-dialog-focus-context\";i:7029;s:49:\"visualeditor-commentannotationcontextitem-comment\";i:7030;s:34:\"visualeditor-commentinspector-edit\";i:7031;s:35:\"visualeditor-commentinspector-title\";i:7032;s:37:\"visualeditor-commentinspector-tooltip\";i:7033;s:31:\"visualeditor-content-select-all\";i:7034;s:42:\"visualeditor-contextitemwidget-label-close\";i:7035;s:43:\"visualeditor-contextitemwidget-label-remove\";i:7036;s:46:\"visualeditor-contextitemwidget-label-secondary\";i:7037;s:41:\"visualeditor-contextitemwidget-label-view\";i:7038;s:27:\"visualeditor-debugbar-close\";i:7039;s:32:\"visualeditor-debugbar-inputdebug\";i:7040;s:30:\"visualeditor-debugbar-logrange\";i:7041;s:31:\"visualeditor-debugbar-showmodel\";i:7042;s:38:\"visualeditor-debugbar-showtransactions\";i:7043;s:37:\"visualeditor-debugbar-startfilibuster\";i:7044;s:36:\"visualeditor-debugbar-stopfilibuster\";i:7045;s:34:\"visualeditor-debugbar-testsquasher\";i:7046;s:33:\"visualeditor-debugbar-updatemodel\";i:7047;s:32:\"visualeditor-dialog-action-apply\";i:7048;s:33:\"visualeditor-dialog-action-cancel\";i:7049;s:31:\"visualeditor-dialog-action-done\";i:7050;s:33:\"visualeditor-dialog-action-goback\";i:7051;s:33:\"visualeditor-dialog-action-insert\";i:7052;s:38:\"visualeditor-dialog-command-help-title\";i:7053;s:25:\"visualeditor-dialog-error\";i:7054;s:33:\"visualeditor-dialog-error-dismiss\";i:7055;s:43:\"visualeditor-dialog-language-auto-direction\";i:7056;s:41:\"visualeditor-dialog-language-search-title\";i:7057;s:33:\"visualeditor-dialog-table-caption\";i:7058;s:31:\"visualeditor-dialog-table-title\";i:7059;s:28:\"visualeditor-diff-moved-down\";i:7060;s:26:\"visualeditor-diff-moved-up\";i:7061;s:28:\"visualeditor-diff-no-changes\";i:7062;s:27:\"visualeditor-diff-timed-out\";i:7063;s:32:\"visualeditor-dimensionswidget-px\";i:7064;s:35:\"visualeditor-dimensionswidget-times\";i:7065;s:39:\"visualeditor-find-and-replace-diacritic\";i:7066;s:51:\"visualeditor-find-and-replace-diacritic-unavailable\";i:7067;s:34:\"visualeditor-find-and-replace-done\";i:7068;s:39:\"visualeditor-find-and-replace-find-text\";i:7069;s:43:\"visualeditor-find-and-replace-invalid-regex\";i:7070;s:40:\"visualeditor-find-and-replace-match-case\";i:7071;s:41:\"visualeditor-find-and-replace-next-button\";i:7072;s:45:\"visualeditor-find-and-replace-previous-button\";i:7073;s:48:\"visualeditor-find-and-replace-regular-expression\";i:7074;s:48:\"visualeditor-find-and-replace-replace-all-button\";i:7075;s:44:\"visualeditor-find-and-replace-replace-button\";i:7076;s:42:\"visualeditor-find-and-replace-replace-text\";i:7077;s:37:\"visualeditor-find-and-replace-results\";i:7078;s:35:\"visualeditor-find-and-replace-title\";i:7079;s:34:\"visualeditor-find-and-replace-word\";i:7080;s:45:\"visualeditor-formatdropdown-format-blockquote\";i:7081;s:48:\"visualeditor-formatdropdown-format-heading-label\";i:7082;s:43:\"visualeditor-formatdropdown-format-heading1\";i:7083;s:43:\"visualeditor-formatdropdown-format-heading2\";i:7084;s:43:\"visualeditor-formatdropdown-format-heading3\";i:7085;s:43:\"visualeditor-formatdropdown-format-heading4\";i:7086;s:43:\"visualeditor-formatdropdown-format-heading5\";i:7087;s:43:\"visualeditor-formatdropdown-format-heading6\";i:7088;s:44:\"visualeditor-formatdropdown-format-paragraph\";i:7089;s:47:\"visualeditor-formatdropdown-format-preformatted\";i:7090;s:33:\"visualeditor-formatdropdown-title\";i:7091;s:22:\"visualeditor-help-tool\";i:7092;s:39:\"visualeditor-historybutton-redo-tooltip\";i:7093;s:39:\"visualeditor-historybutton-undo-tooltip\";i:7094;s:35:\"visualeditor-horizontalrule-tooltip\";i:7095;s:45:\"visualeditor-indentationbutton-indent-tooltip\";i:7096;s:46:\"visualeditor-indentationbutton-outdent-tooltip\";i:7097;s:36:\"visualeditor-inspector-close-tooltip\";i:7098;s:37:\"visualeditor-inspector-remove-tooltip\";i:7099;s:20:\"visualeditor-key-alt\";i:7100;s:26:\"visualeditor-key-backspace\";i:7101;s:21:\"visualeditor-key-ctrl\";i:7102;s:23:\"visualeditor-key-delete\";i:7103;s:21:\"visualeditor-key-down\";i:7104;s:20:\"visualeditor-key-end\";i:7105;s:22:\"visualeditor-key-enter\";i:7106;s:23:\"visualeditor-key-escape\";i:7107;s:21:\"visualeditor-key-home\";i:7108;s:23:\"visualeditor-key-insert\";i:7109;s:21:\"visualeditor-key-left\";i:7110;s:21:\"visualeditor-key-meta\";i:7111;s:26:\"visualeditor-key-page-down\";i:7112;s:24:\"visualeditor-key-page-up\";i:7113;s:22:\"visualeditor-key-right\";i:7114;s:22:\"visualeditor-key-shift\";i:7115;s:22:\"visualeditor-key-space\";i:7116;s:20:\"visualeditor-key-tab\";i:7117;s:19:\"visualeditor-key-up\";i:7118;s:46:\"visualeditor-language-search-input-placeholder\";i:7119;s:43:\"visualeditor-languageannotation-description\";i:7120;s:52:\"visualeditor-languageannotation-description-with-dir\";i:7121;s:35:\"visualeditor-languagecontext-remove\";i:7122;s:36:\"visualeditor-languageinspector-title\";i:7123;s:48:\"visualeditor-languageinspector-widget-changelang\";i:7124;s:53:\"visualeditor-languageinspector-widget-label-direction\";i:7125;s:52:\"visualeditor-languageinspector-widget-label-langcode\";i:7126;s:52:\"visualeditor-languageinspector-widget-label-language\";i:7127;s:37:\"visualeditor-linkcontext-label-change\";i:7128;s:39:\"visualeditor-linkcontext-label-fallback\";i:7129;s:36:\"visualeditor-linkcontext-label-label\";i:7130;s:31:\"visualeditor-linkcontext-remove\";i:7131;s:32:\"visualeditor-linkinspector-title\";i:7132;s:36:\"visualeditor-linkinspector-title-add\";i:7133;s:37:\"visualeditor-linkinspector-title-edit\";i:7134;s:38:\"visualeditor-listbutton-bullet-tooltip\";i:7135;s:37:\"visualeditor-listbutton-check-tooltip\";i:7136;s:38:\"visualeditor-listbutton-number-tooltip\";i:7137;s:47:\"visualeditor-mediasizewidget-label-defaulterror\";i:7138;s:40:\"visualeditor-mediasizewidget-label-scale\";i:7139;s:48:\"visualeditor-mediasizewidget-label-scale-percent\";i:7140;s:47:\"visualeditor-mediasizewidget-sizeoptions-custom\";i:7141;s:48:\"visualeditor-mediasizewidget-sizeoptions-default\";i:7142;s:46:\"visualeditor-mediasizewidget-sizeoptions-scale\";i:7143;s:29:\"visualeditor-pagemenu-tooltip\";i:7144;s:38:\"visualeditor-rebase-client-author-name\";i:7145;s:37:\"visualeditor-rebase-client-connecting\";i:7146;s:47:\"visualeditor-rebase-client-document-create-edit\";i:7147;s:40:\"visualeditor-rebase-client-document-name\";i:7148;s:44:\"visualeditor-rebase-corrupted-document-error\";i:7149;s:44:\"visualeditor-rebase-corrupted-document-title\";i:7150;s:42:\"visualeditor-rebase-missing-document-error\";i:7151;s:42:\"visualeditor-rebase-missing-document-title\";i:7152;s:32:\"visualeditor-shortcuts-clipboard\";i:7153;s:29:\"visualeditor-shortcuts-dialog\";i:7154;s:33:\"visualeditor-shortcuts-formatting\";i:7155;s:30:\"visualeditor-shortcuts-history\";i:7156;s:29:\"visualeditor-shortcuts-insert\";i:7157;s:28:\"visualeditor-shortcuts-other\";i:7158;s:38:\"visualeditor-shortcuts-sequence-notice\";i:7159;s:33:\"visualeditor-shortcuts-text-style\";i:7160;s:24:\"visualeditor-slug-insert\";i:7161;s:44:\"visualeditor-specialcharacter-button-tooltip\";i:7162;s:49:\"visualeditor-specialcharacter-group-label-accents\";i:7163;s:54:\"visualeditor-specialcharacter-group-label-mathematical\";i:7164;s:49:\"visualeditor-specialcharacter-group-label-symbols\";i:7165;s:47:\"visualeditor-specialcharacter-group-set-accents\";i:7166;s:52:\"visualeditor-specialcharacter-group-set-mathematical\";i:7167;s:47:\"visualeditor-specialcharacter-group-set-symbols\";i:7168;s:44:\"visualeditor-specialcharacterinspector-title\";i:7169;s:26:\"visualeditor-table-caption\";i:7170;s:30:\"visualeditor-table-context-col\";i:7171;s:30:\"visualeditor-table-context-row\";i:7172;s:41:\"visualeditor-table-contextitem-properties\";i:7173;s:50:\"visualeditor-table-contextitem-selectionmode-cells\";i:7174;s:53:\"visualeditor-table-contextitem-selectionmode-contents\";i:7175;s:29:\"visualeditor-table-delete-col\";i:7176;s:29:\"visualeditor-table-delete-row\";i:7177;s:30:\"visualeditor-table-format-data\";i:7178;s:32:\"visualeditor-table-format-header\";i:7179;s:35:\"visualeditor-table-insert-col-after\";i:7180;s:36:\"visualeditor-table-insert-col-before\";i:7181;s:35:\"visualeditor-table-insert-row-after\";i:7182;s:36:\"visualeditor-table-insert-row-before\";i:7183;s:31:\"visualeditor-table-insert-table\";i:7184;s:30:\"visualeditor-table-merge-cells\";i:7185;s:36:\"visualeditor-table-merge-cells-merge\";i:7186;s:38:\"visualeditor-table-merge-cells-unmerge\";i:7187;s:33:\"visualeditor-table-move-col-after\";i:7188;s:34:\"visualeditor-table-move-col-before\";i:7189;s:33:\"visualeditor-table-move-row-after\";i:7190;s:34:\"visualeditor-table-move-row-before\";i:7191;s:22:\"visualeditor-table-sum\";i:7192;s:34:\"visualeditor-tablecell-contextitem\";i:7193;s:30:\"visualeditor-tablecell-tooltip\";i:7194;s:35:\"visualeditor-toolbar-format-tooltip\";i:7195;s:28:\"visualeditor-toolbar-history\";i:7196;s:27:\"visualeditor-toolbar-insert\";i:7197;s:37:\"visualeditor-toolbar-paragraph-format\";i:7198;s:30:\"visualeditor-toolbar-structure\";i:7199;s:34:\"visualeditor-toolbar-style-tooltip\";i:7200;s:26:\"visualeditor-toolbar-table\";i:7201;s:31:\"visualeditor-toolbar-text-style\";i:7202;s:23:\"accesskey-ca-editsource\";i:7203;s:20:\"accesskey-ca-ve-edit\";i:7204;s:18:\"collabpad-doctitle\";i:7205;s:25:\"collabpad-import-subtitle\";i:7206;s:9:\"collabpad\";i:7207;s:23:\"tooltip-ca-createsource\";i:7208;s:21:\"tooltip-ca-editsource\";i:7209;s:18:\"tooltip-ca-ve-edit\";i:7210;s:34:\"visualeditor-advancedsettings-tool\";i:7211;s:44:\"visualeditor-annotations-default-description\";i:7212;s:36:\"visualeditor-annotations-default-end\";i:7213;s:38:\"visualeditor-annotations-default-start\";i:7214;s:47:\"visualeditor-annotations-extended-documentation\";i:7215;s:44:\"visualeditor-autosave-modified-prompt-accept\";i:7216;s:45:\"visualeditor-autosave-modified-prompt-message\";i:7217;s:44:\"visualeditor-autosave-modified-prompt-reject\";i:7218;s:43:\"visualeditor-autosave-modified-prompt-title\";i:7219;s:40:\"visualeditor-autosave-not-recovered-text\";i:7220;s:41:\"visualeditor-autosave-not-recovered-title\";i:7221;s:36:\"visualeditor-autosave-recovered-text\";i:7222;s:37:\"visualeditor-autosave-recovered-title\";i:7223;s:31:\"visualeditor-backbutton-tooltip\";i:7224;s:25:\"visualeditor-beta-warning\";i:7225;s:27:\"visualeditor-browserwarning\";i:7226;s:44:\"visualeditor-ca-createlocaldescriptionsource\";i:7227;s:28:\"visualeditor-ca-createsource\";i:7228;s:42:\"visualeditor-ca-editlocaldescriptionsource\";i:7229;s:26:\"visualeditor-ca-editsource\";i:7230;s:34:\"visualeditor-ca-editsource-section\";i:7231;s:25:\"visualeditor-ca-ve-create\";i:7232;s:23:\"visualeditor-ca-ve-edit\";i:7233;s:31:\"visualeditor-ca-ve-edit-section\";i:7234;s:28:\"visualeditor-categories-tool\";i:7235;s:41:\"visualeditor-changedesc-mwlanguagevariant\";i:7236;s:34:\"visualeditor-changedesc-mwredirect\";i:7237;s:38:\"visualeditor-changedesc-mwtransclusion\";i:7238;s:17:\"visualeditor-desc\";i:7239;s:32:\"visualeditor-descriptionpagelink\";i:7240;s:41:\"visualeditor-dialog-media-alttext-section\";i:7241;s:46:\"visualeditor-dialog-media-alttext-section-help\";i:7242;s:38:\"visualeditor-dialog-media-change-image\";i:7243;s:38:\"visualeditor-dialog-media-choose-image\";i:7244;s:50:\"visualeditor-dialog-media-content-description-link\";i:7245;s:42:\"visualeditor-dialog-media-content-filename\";i:7246;s:41:\"visualeditor-dialog-media-content-section\";i:7247;s:46:\"visualeditor-dialog-media-content-section-help\";i:7248;s:32:\"visualeditor-dialog-media-goback\";i:7249;s:37:\"visualeditor-dialog-media-info-artist\";i:7250;s:40:\"visualeditor-dialog-media-info-audiofile\";i:7251;s:38:\"visualeditor-dialog-media-info-created\";i:7252;s:37:\"visualeditor-dialog-media-info-credit\";i:7253;s:41:\"visualeditor-dialog-media-info-dateformat\";i:7254;s:39:\"visualeditor-dialog-media-info-ellipsis\";i:7255;s:47:\"visualeditor-dialog-media-info-imagedescription\";i:7256;s:47:\"visualeditor-dialog-media-info-licenseshortname\";i:7257;s:42:\"visualeditor-dialog-media-info-meta-artist\";i:7258;s:39:\"visualeditor-dialog-media-info-moreinfo\";i:7259;s:39:\"visualeditor-dialog-media-info-readmore\";i:7260;s:40:\"visualeditor-dialog-media-info-separator\";i:7261;s:39:\"visualeditor-dialog-media-info-uploaded\";i:7262;s:39:\"visualeditor-dialog-media-page-advanced\";i:7263;s:38:\"visualeditor-dialog-media-page-general\";i:7264;s:41:\"visualeditor-dialog-media-position-center\";i:7265;s:43:\"visualeditor-dialog-media-position-checkbox\";i:7266;s:48:\"visualeditor-dialog-media-position-checkbox-help\";i:7267;s:39:\"visualeditor-dialog-media-position-left\";i:7268;s:39:\"visualeditor-dialog-media-position-none\";i:7269;s:40:\"visualeditor-dialog-media-position-right\";i:7270;s:42:\"visualeditor-dialog-media-position-section\";i:7271;s:47:\"visualeditor-dialog-media-position-section-help\";i:7272;s:30:\"visualeditor-dialog-media-save\";i:7273;s:43:\"visualeditor-dialog-media-search-tab-search\";i:7274;s:43:\"visualeditor-dialog-media-search-tab-upload\";i:7275;s:38:\"visualeditor-dialog-media-searchselect\";i:7276;s:43:\"visualeditor-dialog-media-size-choosecustom\";i:7277;s:44:\"visualeditor-dialog-media-size-choosedefault\";i:7278;s:41:\"visualeditor-dialog-media-size-choosefull\";i:7279;s:38:\"visualeditor-dialog-media-size-section\";i:7280;s:43:\"visualeditor-dialog-media-size-section-help\";i:7281;s:41:\"visualeditor-dialog-media-thumbdimensions\";i:7282;s:31:\"visualeditor-dialog-media-title\";i:7283;s:37:\"visualeditor-dialog-media-type-border\";i:7284;s:36:\"visualeditor-dialog-media-type-frame\";i:7285;s:40:\"visualeditor-dialog-media-type-frameless\";i:7286;s:35:\"visualeditor-dialog-media-type-none\";i:7287;s:38:\"visualeditor-dialog-media-type-section\";i:7288;s:43:\"visualeditor-dialog-media-type-section-help\";i:7289;s:36:\"visualeditor-dialog-media-type-thumb\";i:7290;s:32:\"visualeditor-dialog-media-upload\";i:7291;s:47:\"visualeditor-dialog-meta-advancedsettings-label\";i:7292;s:49:\"visualeditor-dialog-meta-advancedsettings-section\";i:7293;s:53:\"visualeditor-dialog-meta-categories-addcategory-label\";i:7294;s:44:\"visualeditor-dialog-meta-categories-category\";i:7295;s:46:\"visualeditor-dialog-meta-categories-data-label\";i:7296;s:52:\"visualeditor-dialog-meta-categories-defaultsort-help\";i:7297;s:53:\"visualeditor-dialog-meta-categories-defaultsort-label\";i:7298;s:42:\"visualeditor-dialog-meta-categories-hidden\";i:7299;s:63:\"visualeditor-dialog-meta-categories-input-hiddencategorieslabel\";i:7300;s:65:\"visualeditor-dialog-meta-categories-input-matchingcategorieslabel\";i:7301;s:59:\"visualeditor-dialog-meta-categories-input-movecategorylabel\";i:7302;s:58:\"visualeditor-dialog-meta-categories-input-newcategorylabel\";i:7303;s:53:\"visualeditor-dialog-meta-categories-input-placeholder\";i:7304;s:43:\"visualeditor-dialog-meta-categories-missing\";i:7305;s:43:\"visualeditor-dialog-meta-categories-options\";i:7306;s:43:\"visualeditor-dialog-meta-categories-section\";i:7307;s:49:\"visualeditor-dialog-meta-categories-sortkey-label\";i:7308;s:45:\"visualeditor-dialog-meta-languages-code-label\";i:7309;s:40:\"visualeditor-dialog-meta-languages-label\";i:7310;s:45:\"visualeditor-dialog-meta-languages-link-label\";i:7311;s:45:\"visualeditor-dialog-meta-languages-name-label\";i:7312;s:47:\"visualeditor-dialog-meta-languages-readonlynote\";i:7313;s:42:\"visualeditor-dialog-meta-languages-section\";i:7314;s:46:\"visualeditor-dialog-meta-settings-displaytitle\";i:7315;s:53:\"visualeditor-dialog-meta-settings-displaytitle-enable\";i:7316;s:51:\"visualeditor-dialog-meta-settings-displaytitle-help\";i:7317;s:48:\"visualeditor-dialog-meta-settings-hiddencat-help\";i:7318;s:49:\"visualeditor-dialog-meta-settings-hiddencat-label\";i:7319;s:47:\"visualeditor-dialog-meta-settings-index-default\";i:7320;s:47:\"visualeditor-dialog-meta-settings-index-disable\";i:7321;s:45:\"visualeditor-dialog-meta-settings-index-force\";i:7322;s:44:\"visualeditor-dialog-meta-settings-index-help\";i:7323;s:45:\"visualeditor-dialog-meta-settings-index-label\";i:7324;s:39:\"visualeditor-dialog-meta-settings-label\";i:7325;s:60:\"visualeditor-dialog-meta-settings-newsectioneditlink-default\";i:7326;s:60:\"visualeditor-dialog-meta-settings-newsectioneditlink-disable\";i:7327;s:58:\"visualeditor-dialog-meta-settings-newsectioneditlink-force\";i:7328;s:57:\"visualeditor-dialog-meta-settings-newsectioneditlink-help\";i:7329;s:58:\"visualeditor-dialog-meta-settings-newsectioneditlink-label\";i:7330;s:55:\"visualeditor-dialog-meta-settings-nocontentconvert-help\";i:7331;s:56:\"visualeditor-dialog-meta-settings-nocontentconvert-label\";i:7332;s:52:\"visualeditor-dialog-meta-settings-noeditsection-help\";i:7333;s:53:\"visualeditor-dialog-meta-settings-noeditsection-label\";i:7334;s:48:\"visualeditor-dialog-meta-settings-nogallery-help\";i:7335;s:49:\"visualeditor-dialog-meta-settings-nogallery-label\";i:7336;s:53:\"visualeditor-dialog-meta-settings-notitleconvert-help\";i:7337;s:54:\"visualeditor-dialog-meta-settings-notitleconvert-label\";i:7338;s:47:\"visualeditor-dialog-meta-settings-redirect-help\";i:7339;s:48:\"visualeditor-dialog-meta-settings-redirect-label\";i:7340;s:54:\"visualeditor-dialog-meta-settings-redirect-placeholder\";i:7341;s:53:\"visualeditor-dialog-meta-settings-redirect-statichelp\";i:7342;s:54:\"visualeditor-dialog-meta-settings-redirect-staticlabel\";i:7343;s:41:\"visualeditor-dialog-meta-settings-section\";i:7344;s:45:\"visualeditor-dialog-meta-settings-toc-default\";i:7345;s:45:\"visualeditor-dialog-meta-settings-toc-disable\";i:7346;s:43:\"visualeditor-dialog-meta-settings-toc-force\";i:7347;s:42:\"visualeditor-dialog-meta-settings-toc-help\";i:7348;s:43:\"visualeditor-dialog-meta-settings-toc-label\";i:7349;s:48:\"visualeditor-dialog-meta-templatesused-noresults\";i:7350;s:30:\"visualeditor-dialog-meta-title\";i:7351;s:35:\"visualeditor-dialog-table-collapsed\";i:7352;s:37:\"visualeditor-dialog-table-collapsible\";i:7353;s:34:\"visualeditor-dialog-table-sortable\";i:7354;s:35:\"visualeditor-dialog-table-wikitable\";i:7355;s:35:\"visualeditor-dialog-template-insert\";i:7356;s:34:\"visualeditor-dialog-template-title\";i:7357;s:44:\"visualeditor-dialog-transclusion-action-save\";i:7358;s:48:\"visualeditor-dialog-transclusion-absent-template\";i:7359;s:59:\"visualeditor-dialog-transclusion-template-title-nonexistent\";i:7360;s:56:\"visualeditor-dialog-transclusion-template-title-modifier\";i:7361;s:53:\"visualeditor-dialog-transclusion-template-widget-aria\";i:7362;s:62:\"visualeditor-dialog-transclusion-template-widget-aria-selected\";i:7363;s:69:\"visualeditor-dialog-transclusion-template-widget-aria-selected-single\";i:7364;s:44:\"visualeditor-dialog-transclusion-add-content\";i:7365;s:45:\"visualeditor-dialog-transclusion-add-wikitext\";i:7366;s:42:\"visualeditor-dialog-transclusion-add-param\";i:7367;s:54:\"visualeditor-dialog-transclusion-add-param-error-alias\";i:7368;s:59:\"visualeditor-dialog-transclusion-add-param-error-deprecated\";i:7369;s:64:\"visualeditor-dialog-transclusion-add-param-error-exists-selected\";i:7370;s:66:\"visualeditor-dialog-transclusion-add-param-error-exists-unselected\";i:7371;s:63:\"visualeditor-dialog-transclusion-add-param-error-forbidden-char\";i:7372;s:47:\"visualeditor-dialog-transclusion-add-param-help\";i:7373;s:54:\"visualeditor-dialog-transclusion-add-param-placeholder\";i:7374;s:47:\"visualeditor-dialog-transclusion-add-param-save\";i:7375;s:45:\"visualeditor-dialog-transclusion-add-template\";i:7376;s:55:\"visualeditor-dialog-transclusion-add-undocumented-param\";i:7377;s:57:\"visualeditor-dialog-transclusion-back-confirmation-prompt\";i:7378;s:58:\"visualeditor-dialog-transclusion-close-confirmation-prompt\";i:7379;s:49:\"visualeditor-dialog-transclusion-collapse-options\";i:7380;s:53:\"visualeditor-dialog-transclusion-confirmation-discard\";i:7381;s:52:\"visualeditor-dialog-transclusion-confirmation-reject\";i:7382;s:40:\"visualeditor-dialog-transclusion-content\";i:7383;s:56:\"visualeditor-dialog-transclusion-contextitem-description\";i:7384;s:52:\"visualeditor-dialog-transclusion-contextitem-loading\";i:7385;s:47:\"visualeditor-dialog-transclusion-expand-options\";i:7386;s:51:\"visualeditor-dialog-transclusion-filter-hide-unused\";i:7387;s:48:\"visualeditor-dialog-transclusion-filter-no-match\";i:7388;s:51:\"visualeditor-dialog-transclusion-filter-placeholder\";i:7389;s:48:\"visualeditor-dialog-transclusion-filter-show-all\";i:7390;s:45:\"visualeditor-dialog-transclusion-filter-title\";i:7391;s:43:\"visualeditor-dialog-transclusion-help-title\";i:7392;s:45:\"visualeditor-dialog-transclusion-help-message\";i:7393;s:51:\"visualeditor-dialog-transclusion-help-page-feedback\";i:7394;s:47:\"visualeditor-dialog-transclusion-help-page-help\";i:7395;s:52:\"visualeditor-dialog-transclusion-help-page-shortcuts\";i:7396;s:53:\"visualeditor-dialog-transclusion-deprecated-parameter\";i:7397;s:65:\"visualeditor-dialog-transclusion-deprecated-parameter-description\";i:7398;s:40:\"visualeditor-dialog-transclusion-loading\";i:7399;s:58:\"visualeditor-dialog-transclusion-more-template-description\";i:7400;s:50:\"visualeditor-dialog-transclusion-multipart-message\";i:7401;s:58:\"visualeditor-dialog-transclusion-no-parameters-description\";i:7402;s:61:\"visualeditor-dialog-transclusion-no-template-data-description\";i:7403;s:56:\"visualeditor-dialog-transclusion-no-template-description\";i:7404;s:40:\"visualeditor-dialog-transclusion-options\";i:7405;s:46:\"visualeditor-dialog-transclusion-param-default\";i:7406;s:46:\"visualeditor-dialog-transclusion-param-example\";i:7407;s:51:\"visualeditor-dialog-transclusion-param-example-long\";i:7408;s:43:\"visualeditor-dialog-transclusion-param-info\";i:7409;s:51:\"visualeditor-dialog-transclusion-param-info-missing\";i:7410;s:65:\"visualeditor-dialog-transclusion-param-selection-aria-description\";i:7411;s:59:\"visualeditor-dialog-transclusion-param-selection-aria-label\";i:7412;s:51:\"visualeditor-dialog-transclusion-param-undocumented\";i:7413;s:44:\"visualeditor-dialog-transclusion-placeholder\";i:7414;s:62:\"visualeditor-dialog-transclusion-placeholder-input-placeholder\";i:7415;s:45:\"visualeditor-dialog-transclusion-raw-fallback\";i:7416;s:47:\"visualeditor-dialog-transclusion-remove-content\";i:7417;s:45:\"visualeditor-dialog-transclusion-remove-param\";i:7418;s:48:\"visualeditor-dialog-transclusion-remove-template\";i:7419;s:51:\"visualeditor-dialog-transclusion-required-parameter\";i:7420;s:63:\"visualeditor-dialog-transclusion-required-parameter-description\";i:7421;s:65:\"visualeditor-dialog-transclusion-required-parameter-dialog-cancel\";i:7422;s:61:\"visualeditor-dialog-transclusion-required-parameter-dialog-ok\";i:7423;s:64:\"visualeditor-dialog-transclusion-required-parameter-dialog-title\";i:7424;s:60:\"visualeditor-dialog-transclusion-required-parameter-is-blank\";i:7425;s:45:\"visualeditor-dialog-transclusion-see-template\";i:7426;s:54:\"visualeditor-dialog-transclusion-title-insert-template\";i:7427;s:60:\"visualeditor-dialog-transclusion-title-insert-known-template\";i:7428;s:58:\"visualeditor-dialog-transclusion-title-edit-known-template\";i:7429;s:56:\"visualeditor-dialog-transclusion-title-edit-transclusion\";i:7430;s:48:\"visualeditor-dialog-transclusion-template-search\";i:7431;s:53:\"visualeditor-dialog-transclusion-template-search-help\";i:7432;s:58:\"visualeditor-dialog-transclusion-templates-menu-aria-label\";i:7433;s:49:\"visualeditor-dialog-transclusion-feedback-message\";i:7434;s:41:\"visualeditor-dialog-transclusion-wikitext\";i:7435;s:53:\"visualeditor-dialog-transclusion-wikitext-widget-aria\";i:7436;s:62:\"visualeditor-dialog-transclusion-wikitext-widget-aria-selected\";i:7437;s:69:\"visualeditor-dialog-transclusion-wikitext-widget-aria-selected-single\";i:7438;s:39:\"visualeditor-dialogbutton-media-tooltip\";i:7439;s:38:\"visualeditor-dialogbutton-meta-tooltip\";i:7440;s:42:\"visualeditor-dialogbutton-template-tooltip\";i:7441;s:38:\"visualeditor-dismissible-message-close\";i:7442;s:31:\"visualeditor-donebutton-tooltip\";i:7443;s:25:\"visualeditor-editconflict\";i:7444;s:34:\"visualeditor-editingtabdialog-body\";i:7445;s:32:\"visualeditor-editingtabdialog-ok\";i:7446;s:35:\"visualeditor-editingtabdialog-title\";i:7447;s:29:\"visualeditor-editnotices-tool\";i:7448;s:32:\"visualeditor-editnotices-tooltip\";i:7449;s:24:\"visualeditor-editsummary\";i:7450;s:45:\"visualeditor-editsummary-characters-remaining\";i:7451;s:35:\"visualeditor-educationpopup-dismiss\";i:7452;s:28:\"visualeditor-expandable-less\";i:7453;s:28:\"visualeditor-expandable-more\";i:7454;s:36:\"visualeditor-feedback-defaultmessage\";i:7455;s:46:\"visualeditor-formatdropdown-format-mw-heading1\";i:7456;s:46:\"visualeditor-formatdropdown-format-mw-heading2\";i:7457;s:46:\"visualeditor-formatdropdown-format-mw-heading3\";i:7458;s:46:\"visualeditor-formatdropdown-format-mw-heading4\";i:7459;s:46:\"visualeditor-formatdropdown-format-mw-heading5\";i:7460;s:46:\"visualeditor-formatdropdown-format-mw-heading6\";i:7461;s:41:\"visualeditor-generating-wikitext-progress\";i:7462;s:37:\"visualeditor-includes-noinclude-start\";i:7463;s:35:\"visualeditor-includes-noinclude-end\";i:7464;s:39:\"visualeditor-includes-onlyinclude-start\";i:7465;s:37:\"visualeditor-includes-onlyinclude-end\";i:7466;s:33:\"visualeditor-includes-includeonly\";i:7467;s:43:\"visualeditor-includes-noinclude-description\";i:7468;s:45:\"visualeditor-includes-onlyinclude-description\";i:7469;s:45:\"visualeditor-includes-includeonly-description\";i:7470;s:35:\"visualeditor-includes-documentation\";i:7471;s:27:\"visualeditor-languages-tool\";i:7472;s:47:\"visualeditor-linkinspector-button-link-external\";i:7473;s:47:\"visualeditor-linkinspector-button-link-internal\";i:7474;s:44:\"visualeditor-linkinspector-convert-link-isbn\";i:7475;s:44:\"visualeditor-linkinspector-convert-link-pmid\";i:7476;s:43:\"visualeditor-linkinspector-convert-link-rfc\";i:7477;s:46:\"visualeditor-linkinspector-educationpopup-text\";i:7478;s:47:\"visualeditor-linkinspector-educationpopup-title\";i:7479;s:40:\"visualeditor-linkinspector-illegal-title\";i:7480;s:43:\"visualeditor-linkinspector-invalid-external\";i:7481;s:40:\"visualeditor-linknodeinspector-add-label\";i:7482;s:36:\"visualeditor-linknodeinspector-title\";i:7483;s:48:\"visualeditor-magiclinknodeinspector-convert-link\";i:7484;s:46:\"visualeditor-magiclinknodeinspector-title-isbn\";i:7485;s:46:\"visualeditor-magiclinknodeinspector-title-pmid\";i:7486;s:45:\"visualeditor-magiclinknodeinspector-title-rfc\";i:7487;s:34:\"visualeditor-mainnamespacepagelink\";i:7488;s:30:\"visualeditor-media-title-audio\";i:7489;s:30:\"visualeditor-media-title-image\";i:7490;s:30:\"visualeditor-media-title-video\";i:7491;s:22:\"visualeditor-meta-tool\";i:7492;s:31:\"visualeditor-mweditmode-tooltip\";i:7493;s:38:\"visualeditor-mweditmodesource-progress\";i:7494;s:42:\"visualeditor-mweditmodesource-tool-current\";i:7495;s:46:\"visualeditor-mweditmodesource-tool-unavailable\";i:7496;s:44:\"visualeditor-mweditmodesource-warning-cancel\";i:7497;s:52:\"visualeditor-mweditmodesource-warning-switch-discard\";i:7498;s:36:\"visualeditor-mweditmodeve-popup-body\";i:7499;s:37:\"visualeditor-mweditmodeve-popup-title\";i:7500;s:34:\"visualeditor-mweditmodeve-progress\";i:7501;s:35:\"visualeditor-mweditmodeve-showagain\";i:7502;s:31:\"visualeditor-mweditmodeve-title\";i:7503;s:38:\"visualeditor-mweditmodeve-tool-current\";i:7504;s:42:\"visualeditor-mweditmodeve-tool-unavailable\";i:7505;s:33:\"visualeditor-mweditmodeve-warning\";i:7506;s:36:\"visualeditor-mweditmodewt-popup-body\";i:7507;s:37:\"visualeditor-mweditmodewt-popup-title\";i:7508;s:41:\"visualeditor-mwgallerycontext-description\";i:7509;s:48:\"visualeditor-mwgallerydialog-caption-field-label\";i:7510;s:54:\"visualeditor-mwgallerydialog-caption-input-placeholder\";i:7511;s:40:\"visualeditor-mwgallerydialog-card-images\";i:7512;s:41:\"visualeditor-mwgallerydialog-card-options\";i:7513;s:48:\"visualeditor-mwgallerydialog-classes-field-label\";i:7514;s:54:\"visualeditor-mwgallerydialog-classes-input-placeholder\";i:7515;s:50:\"visualeditor-mwgallerydialog-empty-gallery-message\";i:7516;s:48:\"visualeditor-mwgallerydialog-heights-field-label\";i:7517;s:54:\"visualeditor-mwgallerydialog-heights-input-placeholder\";i:7518;s:54:\"visualeditor-mwgallerydialog-image-caption-placeholder\";i:7519;s:56:\"visualeditor-mwgallerydialog-mode-dropdown-label-nolines\";i:7520;s:55:\"visualeditor-mwgallerydialog-mode-dropdown-label-packed\";i:7521;s:61:\"visualeditor-mwgallerydialog-mode-dropdown-label-packed-hover\";i:7522;s:63:\"visualeditor-mwgallerydialog-mode-dropdown-label-packed-overlay\";i:7523;s:58:\"visualeditor-mwgallerydialog-mode-dropdown-label-slideshow\";i:7524;s:60:\"visualeditor-mwgallerydialog-mode-dropdown-label-traditional\";i:7525;s:45:\"visualeditor-mwgallerydialog-mode-field-label\";i:7526;s:47:\"visualeditor-mwgallerydialog-perrow-field-label\";i:7527;s:48:\"visualeditor-mwgallerydialog-remove-button-label\";i:7528;s:48:\"visualeditor-mwgallerydialog-search-button-label\";i:7529;s:54:\"visualeditor-mwgallerydialog-show-filename-field-label\";i:7530;s:47:\"visualeditor-mwgallerydialog-styles-field-label\";i:7531;s:53:\"visualeditor-mwgallerydialog-styles-input-placeholder\";i:7532;s:34:\"visualeditor-mwgallerydialog-title\";i:7533;s:47:\"visualeditor-mwgallerydialog-widths-field-label\";i:7534;s:53:\"visualeditor-mwgallerydialog-widths-input-placeholder\";i:7535;s:39:\"visualeditor-mwlanguagevariant-disabled\";i:7536;s:37:\"visualeditor-mwlanguagevariant-filter\";i:7537;s:35:\"visualeditor-mwlanguagevariant-name\";i:7538;s:37:\"visualeditor-mwlanguagevariant-oneway\";i:7539;s:37:\"visualeditor-mwlanguagevariant-twoway\";i:7540;s:38:\"visualeditor-mwlanguagevariant-unknown\";i:7541;s:55:\"visualeditor-mwlanguagevariantcontextitem-flag-describe\";i:7542;s:53:\"visualeditor-mwlanguagevariantcontextitem-flag-hidden\";i:7543;s:52:\"visualeditor-mwlanguagevariantcontextitem-flag-title\";i:7544;s:57:\"visualeditor-mwlanguagevariantcontextitem-rule-code-label\";i:7545;s:69:\"visualeditor-mwlanguagevariantcontextitem-rule-invalid-language-label\";i:7546;s:57:\"visualeditor-mwlanguagevariantcontextitem-rule-name-label\";i:7547;s:62:\"visualeditor-mwlanguagevariantcontextitem-rule-text-from-label\";i:7548;s:60:\"visualeditor-mwlanguagevariantcontextitem-rule-text-to-label\";i:7549;s:64:\"visualeditor-mwlanguagevariantcontextitem-rule-text-twoway-label\";i:7550;s:56:\"visualeditor-mwlanguagevariantcontextitem-title-disabled\";i:7551;s:54:\"visualeditor-mwlanguagevariantcontextitem-title-filter\";i:7552;s:52:\"visualeditor-mwlanguagevariantcontextitem-title-name\";i:7553;s:54:\"visualeditor-mwlanguagevariantcontextitem-title-oneway\";i:7554;s:54:\"visualeditor-mwlanguagevariantcontextitem-title-twoway\";i:7555;s:55:\"visualeditor-mwlanguagevariantcontextitem-title-unknown\";i:7556;s:60:\"visualeditor-mwlanguagevariantinspector-disabled-placeholder\";i:7557;s:58:\"visualeditor-mwlanguagevariantinspector-filter-langs-label\";i:7558;s:64:\"visualeditor-mwlanguagevariantinspector-filter-langs-placeholder\";i:7559;s:57:\"visualeditor-mwlanguagevariantinspector-filter-text-label\";i:7560;s:63:\"visualeditor-mwlanguagevariantinspector-filter-text-placeholder\";i:7561;s:57:\"visualeditor-mwlanguagevariantinspector-oneway-add-button\";i:7562;s:59:\"visualeditor-mwlanguagevariantinspector-oneway-clear-button\";i:7563;s:68:\"visualeditor-mwlanguagevariantinspector-oneway-from-text-placeholder\";i:7564;s:66:\"visualeditor-mwlanguagevariantinspector-oneway-to-text-placeholder\";i:7565;s:54:\"visualeditor-mwlanguagevariantinspector-title-disabled\";i:7566;s:52:\"visualeditor-mwlanguagevariantinspector-title-filter\";i:7567;s:50:\"visualeditor-mwlanguagevariantinspector-title-name\";i:7568;s:52:\"visualeditor-mwlanguagevariantinspector-title-oneway\";i:7569;s:52:\"visualeditor-mwlanguagevariantinspector-title-twoway\";i:7570;s:57:\"visualeditor-mwlanguagevariantinspector-twoway-add-button\";i:7571;s:59:\"visualeditor-mwlanguagevariantinspector-twoway-clear-button\";i:7572;s:63:\"visualeditor-mwlanguagevariantinspector-twoway-text-placeholder\";i:7573;s:32:\"visualeditor-mwpredialog-convert\";i:7574;s:30:\"visualeditor-mwpredialog-title\";i:7575;s:29:\"visualeditor-mwsignature-tool\";i:7576;s:40:\"visualeditor-parameter-input-placeholder\";i:7577;s:34:\"visualeditor-parameter-search-more\";i:7578;s:39:\"visualeditor-parameter-search-no-unused\";i:7579;s:37:\"visualeditor-parameter-search-unknown\";i:7580;s:39:\"visualeditor-preference-betatempdisable\";i:7581;s:40:\"visualeditor-preference-core-description\";i:7582;s:44:\"visualeditor-preference-core-discussion-link\";i:7583;s:38:\"visualeditor-preference-core-info-link\";i:7584;s:34:\"visualeditor-preference-core-label\";i:7585;s:30:\"visualeditor-preference-enable\";i:7586;s:53:\"visualeditor-preference-newwikitexteditor-description\";i:7587;s:57:\"visualeditor-preference-newwikitexteditor-discussion-link\";i:7588;s:48:\"visualeditor-preference-newwikitexteditor-enable\";i:7589;s:51:\"visualeditor-preference-newwikitexteditor-info-link\";i:7590;s:47:\"visualeditor-preference-newwikitexteditor-label\";i:7591;s:28:\"visualeditor-preference-tabs\";i:7592;s:38:\"visualeditor-preference-tabs-multi-tab\";i:7593;s:38:\"visualeditor-preference-tabs-prefer-ve\";i:7594;s:38:\"visualeditor-preference-tabs-prefer-wt\";i:7595;s:42:\"visualeditor-preference-tabs-remember-last\";i:7596;s:50:\"visualeditor-preference-visualdiffpage-description\";i:7597;s:54:\"visualeditor-preference-visualdiffpage-discussion-link\";i:7598;s:48:\"visualeditor-preference-visualdiffpage-info-link\";i:7599;s:44:\"visualeditor-preference-visualdiffpage-label\";i:7600;s:41:\"visualeditor-quick-access-characters.json\";i:7601;s:33:\"visualeditor-rebase-client-export\";i:7602;s:39:\"visualeditor-rebase-client-export-start\";i:7603;s:33:\"visualeditor-rebase-client-import\";i:7604;s:38:\"visualeditor-rebase-client-import-name\";i:7605;s:37:\"visualeditor-rebase-client-title-help\";i:7606;s:21:\"visualeditor-recreate\";i:7607;s:33:\"visualeditor-redirect-description\";i:7608;s:38:\"visualeditor-savedialog-error-badtoken\";i:7609;s:37:\"visualeditor-savedialog-identify-anon\";i:7610;s:41:\"visualeditor-savedialog-identify-trylogin\";i:7611;s:37:\"visualeditor-savedialog-identify-user\";i:7612;s:48:\"visualeditor-savedialog-keyboard-shortcut-submit\";i:7613;s:36:\"visualeditor-savedialog-label-create\";i:7614;s:43:\"visualeditor-savedialog-label-publish-short\";i:7615;s:49:\"visualeditor-savedialog-label-publish-short-start\";i:7616;s:36:\"visualeditor-savedialog-label-report\";i:7617;s:46:\"visualeditor-savedialog-label-resolve-conflict\";i:7618;s:44:\"visualeditor-savedialog-label-resume-editing\";i:7619;s:36:\"visualeditor-savedialog-label-review\";i:7620;s:41:\"visualeditor-savedialog-label-review-good\";i:7621;s:40:\"visualeditor-savedialog-label-save-short\";i:7622;s:46:\"visualeditor-savedialog-label-save-short-start\";i:7623;s:48:\"visualeditor-savedialog-label-visual-diff-report\";i:7624;s:40:\"visualeditor-savedialog-review-nosummary\";i:7625;s:37:\"visualeditor-savedialog-review-visual\";i:7626;s:39:\"visualeditor-savedialog-review-wikitext\";i:7627;s:38:\"visualeditor-savedialog-title-conflict\";i:7628;s:37:\"visualeditor-savedialog-title-preview\";i:7629;s:36:\"visualeditor-savedialog-title-review\";i:7630;s:34:\"visualeditor-savedialog-title-save\";i:7631;s:37:\"visualeditor-savedialog-warning-dirty\";i:7632;s:22:\"visualeditor-saveerror\";i:7633;s:37:\"visualeditor-section-body-placeholder\";i:7634;s:38:\"visualeditor-section-title-placeholder\";i:7635;s:27:\"visualeditor-serializeerror\";i:7636;s:36:\"visualeditor-loaderror-revidconflict\";i:7637;s:32:\"visualeditor-loaderror-wrongmode\";i:7638;s:26:\"visualeditor-settings-tool\";i:7639;s:43:\"visualeditor-special-characters-group-other\";i:7640;s:43:\"visualeditor-template-tools-definition.json\";i:7641;s:31:\"visualeditor-templatesused-tool\";i:7642;s:24:\"visualeditor-title-error\";i:7643;s:19:\"visualeditor-toload\";i:7644;s:39:\"visualeditor-tooltip-non-breaking-space\";i:7645;s:34:\"visualeditor-usernamespacepagelink\";i:7646;s:26:\"visualeditor-version-label\";i:7647;s:30:\"visualeditor-wikitext-progress\";i:7648;s:29:\"visualeditor-wikitext-warning\";i:7649;s:34:\"visualeditor-wikitext-warning-link\";i:7650;s:35:\"visualeditor-wikitext-warning-title\";i:7651;s:34:\"visualeditor-wikitextconvert-title\";i:7652;s:36:\"visualeditor-wikitextconvert-message\";i:7653;s:36:\"visualeditor-wikitextconvert-convert\";i:7654;s:33:\"apierror-visualeditor-badcachekey\";i:7655;s:32:\"apierror-visualeditor-difffailed\";i:7656;s:42:\"apierror-visualeditor-docserver-http-error\";i:7657;s:36:\"apierror-visualeditor-docserver-http\";i:7658;s:44:\"apierror-visualeditor-docserver-unconfigured\";i:7659;s:31:\"apierror-visualeditor-docserver\";i:7660;s:36:\"apierror-visualeditor-latestnotfound\";i:7661;s:32:\"apihelp-visualeditor-description\";i:7662;s:40:\"apihelp-visualeditor-param-basetimestamp\";i:7663;s:34:\"apihelp-visualeditor-param-badetag\";i:7664;s:35:\"apihelp-visualeditor-param-cachekey\";i:7665;s:36:\"apihelp-visualeditor-param-editintro\";i:7666;s:31:\"apihelp-visualeditor-param-etag\";i:7667;s:33:\"apihelp-visualeditor-param-format\";i:7668;s:31:\"apihelp-visualeditor-param-html\";i:7669;s:32:\"apihelp-visualeditor-param-oldid\";i:7670;s:34:\"apihelp-visualeditor-param-paction\";i:7671;s:31:\"apihelp-visualeditor-param-page\";i:7672;s:34:\"apihelp-visualeditor-param-preload\";i:7673;s:40:\"apihelp-visualeditor-param-preloadparams\";i:7674;s:30:\"apihelp-visualeditor-param-pst\";i:7675;s:34:\"apihelp-visualeditor-param-section\";i:7676;s:41:\"apihelp-visualeditor-param-starttimestamp\";i:7677;s:32:\"apihelp-visualeditor-param-stash\";i:7678;s:35:\"apihelp-visualeditor-param-wikitext\";i:7679;s:28:\"apihelp-visualeditor-summary\";i:7680;s:36:\"apihelp-visualeditoredit-description\";i:7681;s:44:\"apihelp-visualeditoredit-param-basetimestamp\";i:7682;s:39:\"apihelp-visualeditoredit-param-cachekey\";i:7683;s:40:\"apihelp-visualeditoredit-param-captchaid\";i:7684;s:42:\"apihelp-visualeditoredit-param-captchaword\";i:7685;s:38:\"apihelp-visualeditoredit-param-plugins\";i:7686;s:44:\"apihelp-visualeditoredit-param-data-{plugin}\";i:7687;s:35:\"apihelp-visualeditoredit-param-etag\";i:7688;s:35:\"apihelp-visualeditoredit-param-html\";i:7689;s:36:\"apihelp-visualeditoredit-param-minor\";i:7690;s:40:\"apihelp-visualeditoredit-param-needcheck\";i:7691;s:36:\"apihelp-visualeditoredit-param-oldid\";i:7692;s:38:\"apihelp-visualeditoredit-param-paction\";i:7693;s:35:\"apihelp-visualeditoredit-param-page\";i:7694;s:38:\"apihelp-visualeditoredit-param-section\";i:7695;s:43:\"apihelp-visualeditoredit-param-sectiontitle\";i:7696;s:45:\"apihelp-visualeditoredit-param-starttimestamp\";i:7697;s:38:\"apihelp-visualeditoredit-param-summary\";i:7698;s:35:\"apihelp-visualeditoredit-param-tags\";i:7699;s:40:\"apihelp-visualeditoredit-param-watchlist\";i:7700;s:39:\"apihelp-visualeditoredit-param-wikitext\";i:7701;s:32:\"apihelp-visualeditoredit-summary\";i:7702;s:16:\"tag-visualeditor\";i:7703;s:28:\"tag-visualeditor-description\";i:7704;s:26:\"tag-visualeditor-needcheck\";i:7705;s:38:\"tag-visualeditor-needcheck-description\";i:7706;s:25:\"tag-visualeditor-wikitext\";i:7707;s:37:\"tag-visualeditor-wikitext-description\";i:7708;s:25:\"tag-visualeditor-switched\";i:7709;s:37:\"tag-visualeditor-switched-description\";i:7710;s:26:\"visualeditor-feedback-link\";i:7711;s:33:\"visualeditor-feedback-source-link\";i:7712;s:26:\"visualeditor-feedback-tool\";i:7713;s:23:\"visualeditor-help-label\";i:7714;s:22:\"visualeditor-help-link\";i:7715;s:23:\"visualeditor-help-title\";i:7716;s:33:\"visualeditor-welcomedialog-action\";i:7717;s:34:\"visualeditor-welcomedialog-content\";i:7718;s:41:\"visualeditor-welcomedialog-content-thanks\";i:7719;s:33:\"visualeditor-welcomedialog-switch\";i:7720;s:36:\"visualeditor-welcomedialog-switch-ve\";i:7721;s:32:\"visualeditor-welcomedialog-title\";}}'),
+('en','magicWords','a:171:{s:1:\"!\";a:2:{i:0;i:1;i:1;s:1:\"!\";}s:12:\"anchorencode\";a:2:{i:0;i:0;i:1;s:12:\"ANCHORENCODE\";}s:11:\"articlepath\";a:2:{i:0;i:0;i:1;s:11:\"ARTICLEPATH\";}s:12:\"basepagename\";a:2:{i:0;i:1;i:1;s:12:\"BASEPAGENAME\";}s:13:\"basepagenamee\";a:2:{i:0;i:1;i:1;s:13:\"BASEPAGENAMEE\";}s:4:\"bidi\";a:2:{i:0;i:0;i:1;s:5:\"BIDI:\";}s:12:\"canonicalurl\";a:2:{i:0;i:0;i:1;s:13:\"CANONICALURL:\";}s:13:\"canonicalurle\";a:2:{i:0;i:0;i:1;s:14:\"CANONICALURLE:\";}s:16:\"cascadingsources\";a:2:{i:0;i:1;i:1;s:16:\"CASCADINGSOURCES\";}s:15:\"contentlanguage\";a:3:{i:0;i:1;i:1;s:15:\"CONTENTLANGUAGE\";i:2;s:11:\"CONTENTLANG\";}s:10:\"currentday\";a:2:{i:0;i:1;i:1;s:10:\"CURRENTDAY\";}s:11:\"currentday2\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTDAY2\";}s:14:\"currentdayname\";a:2:{i:0;i:1;i:1;s:14:\"CURRENTDAYNAME\";}s:10:\"currentdow\";a:2:{i:0;i:1;i:1;s:10:\"CURRENTDOW\";}s:11:\"currenthour\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTHOUR\";}s:12:\"currentmonth\";a:3:{i:0;i:1;i:1;s:12:\"CURRENTMONTH\";i:2;s:13:\"CURRENTMONTH2\";}s:13:\"currentmonth1\";a:2:{i:0;i:1;i:1;s:13:\"CURRENTMONTH1\";}s:18:\"currentmonthabbrev\";a:2:{i:0;i:1;i:1;s:18:\"CURRENTMONTHABBREV\";}s:16:\"currentmonthname\";a:2:{i:0;i:1;i:1;s:16:\"CURRENTMONTHNAME\";}s:19:\"currentmonthnamegen\";a:2:{i:0;i:1;i:1;s:19:\"CURRENTMONTHNAMEGEN\";}s:11:\"currenttime\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTTIME\";}s:16:\"currenttimestamp\";a:2:{i:0;i:1;i:1;s:16:\"CURRENTTIMESTAMP\";}s:14:\"currentversion\";a:2:{i:0;i:1;i:1;s:14:\"CURRENTVERSION\";}s:11:\"currentweek\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTWEEK\";}s:11:\"currentyear\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTYEAR\";}s:11:\"defaultsort\";a:4:{i:0;i:1;i:1;s:12:\"DEFAULTSORT:\";i:2;s:15:\"DEFAULTSORTKEY:\";i:3;s:20:\"DEFAULTCATEGORYSORT:\";}s:19:\"defaultsort_noerror\";a:2:{i:0;i:0;i:1;s:7:\"noerror\";}s:21:\"defaultsort_noreplace\";a:2:{i:0;i:0;i:1;s:9:\"noreplace\";}s:13:\"directionmark\";a:3:{i:0;i:1;i:1;s:13:\"DIRECTIONMARK\";i:2;s:7:\"DIRMARK\";}s:12:\"displaytitle\";a:2:{i:0;i:1;i:1;s:12:\"DISPLAYTITLE\";}s:20:\"displaytitle_noerror\";a:2:{i:0;i:0;i:1;s:7:\"noerror\";}s:22:\"displaytitle_noreplace\";a:2:{i:0;i:0;i:1;s:9:\"noreplace\";}s:20:\"expectunusedcategory\";a:2:{i:0;i:1;i:1;s:24:\"__EXPECTUNUSEDCATEGORY__\";}s:8:\"filepath\";a:2:{i:0;i:0;i:1;s:9:\"FILEPATH:\";}s:8:\"forcetoc\";a:2:{i:0;i:0;i:1;s:12:\"__FORCETOC__\";}s:10:\"formatdate\";a:3:{i:0;i:0;i:1;s:10:\"formatdate\";i:2;s:10:\"dateformat\";}s:9:\"formatnum\";a:2:{i:0;i:0;i:1;s:9:\"FORMATNUM\";}s:12:\"fullpagename\";a:2:{i:0;i:1;i:1;s:12:\"FULLPAGENAME\";}s:13:\"fullpagenamee\";a:2:{i:0;i:1;i:1;s:13:\"FULLPAGENAMEE\";}s:7:\"fullurl\";a:2:{i:0;i:0;i:1;s:8:\"FULLURL:\";}s:8:\"fullurle\";a:2:{i:0;i:0;i:1;s:9:\"FULLURLE:\";}s:6:\"gender\";a:2:{i:0;i:0;i:1;s:7:\"GENDER:\";}s:7:\"grammar\";a:2:{i:0;i:0;i:1;s:8:\"GRAMMAR:\";}s:9:\"hiddencat\";a:2:{i:0;i:1;i:1;s:13:\"__HIDDENCAT__\";}s:7:\"img_alt\";a:2:{i:0;i:1;i:1;s:6:\"alt=$1\";}s:12:\"img_baseline\";a:2:{i:0;i:1;i:1;s:8:\"baseline\";}s:10:\"img_border\";a:2:{i:0;i:1;i:1;s:6:\"border\";}s:10:\"img_bottom\";a:2:{i:0;i:1;i:1;s:6:\"bottom\";}s:10:\"img_center\";a:3:{i:0;i:1;i:1;s:6:\"center\";i:2;s:6:\"centre\";}s:9:\"img_class\";a:2:{i:0;i:1;i:1;s:8:\"class=$1\";}s:10:\"img_framed\";a:4:{i:0;i:1;i:1;s:5:\"frame\";i:2;s:6:\"framed\";i:3;s:8:\"enframed\";}s:13:\"img_frameless\";a:2:{i:0;i:1;i:1;s:9:\"frameless\";}s:8:\"img_lang\";a:2:{i:0;i:1;i:1;s:7:\"lang=$1\";}s:8:\"img_left\";a:2:{i:0;i:1;i:1;s:4:\"left\";}s:8:\"img_link\";a:2:{i:0;i:1;i:1;s:7:\"link=$1\";}s:15:\"img_manualthumb\";a:3:{i:0;i:1;i:1;s:12:\"thumbnail=$1\";i:2;s:8:\"thumb=$1\";}s:10:\"img_middle\";a:2:{i:0;i:1;i:1;s:6:\"middle\";}s:8:\"img_none\";a:2:{i:0;i:1;i:1;s:4:\"none\";}s:8:\"img_page\";a:3:{i:0;i:1;i:1;s:7:\"page=$1\";i:2;s:7:\"page $1\";}s:9:\"img_right\";a:2:{i:0;i:1;i:1;s:5:\"right\";}s:7:\"img_sub\";a:2:{i:0;i:1;i:1;s:3:\"sub\";}s:9:\"img_super\";a:3:{i:0;i:1;i:1;s:5:\"super\";i:2;s:3:\"sup\";}s:15:\"img_text_bottom\";a:2:{i:0;i:1;i:1;s:11:\"text-bottom\";}s:12:\"img_text_top\";a:2:{i:0;i:1;i:1;s:8:\"text-top\";}s:13:\"img_thumbnail\";a:3:{i:0;i:1;i:1;s:5:\"thumb\";i:2;s:9:\"thumbnail\";}s:7:\"img_top\";a:2:{i:0;i:1;i:1;s:3:\"top\";}s:11:\"img_upright\";a:4:{i:0;i:1;i:1;s:7:\"upright\";i:2;s:10:\"upright=$1\";i:3;s:10:\"upright $1\";}s:9:\"img_width\";a:2:{i:0;i:1;i:1;s:4:\"$1px\";}s:5:\"index\";a:2:{i:0;i:1;i:1;s:9:\"__INDEX__\";}s:3:\"int\";a:2:{i:0;i:0;i:1;s:4:\"INT:\";}s:8:\"language\";a:2:{i:0;i:0;i:1;s:10:\"#LANGUAGE:\";}s:2:\"lc\";a:2:{i:0;i:0;i:1;s:3:\"LC:\";}s:7:\"lcfirst\";a:2:{i:0;i:0;i:1;s:8:\"LCFIRST:\";}s:8:\"localday\";a:2:{i:0;i:1;i:1;s:8:\"LOCALDAY\";}s:9:\"localday2\";a:2:{i:0;i:1;i:1;s:9:\"LOCALDAY2\";}s:12:\"localdayname\";a:2:{i:0;i:1;i:1;s:12:\"LOCALDAYNAME\";}s:8:\"localdow\";a:2:{i:0;i:1;i:1;s:8:\"LOCALDOW\";}s:9:\"localhour\";a:2:{i:0;i:1;i:1;s:9:\"LOCALHOUR\";}s:10:\"localmonth\";a:3:{i:0;i:1;i:1;s:10:\"LOCALMONTH\";i:2;s:11:\"LOCALMONTH2\";}s:11:\"localmonth1\";a:2:{i:0;i:1;i:1;s:11:\"LOCALMONTH1\";}s:16:\"localmonthabbrev\";a:2:{i:0;i:1;i:1;s:16:\"LOCALMONTHABBREV\";}s:14:\"localmonthname\";a:2:{i:0;i:1;i:1;s:14:\"LOCALMONTHNAME\";}s:17:\"localmonthnamegen\";a:2:{i:0;i:1;i:1;s:17:\"LOCALMONTHNAMEGEN\";}s:9:\"localtime\";a:2:{i:0;i:1;i:1;s:9:\"LOCALTIME\";}s:14:\"localtimestamp\";a:2:{i:0;i:1;i:1;s:14:\"LOCALTIMESTAMP\";}s:8:\"localurl\";a:2:{i:0;i:0;i:1;s:9:\"LOCALURL:\";}s:9:\"localurle\";a:2:{i:0;i:0;i:1;s:10:\"LOCALURLE:\";}s:9:\"localweek\";a:2:{i:0;i:1;i:1;s:9:\"LOCALWEEK\";}s:9:\"localyear\";a:2:{i:0;i:1;i:1;s:9:\"LOCALYEAR\";}s:3:\"msg\";a:2:{i:0;i:0;i:1;s:4:\"MSG:\";}s:5:\"msgnw\";a:2:{i:0;i:0;i:1;s:6:\"MSGNW:\";}s:9:\"namespace\";a:2:{i:0;i:1;i:1;s:9:\"NAMESPACE\";}s:10:\"namespacee\";a:2:{i:0;i:1;i:1;s:10:\"NAMESPACEE\";}s:15:\"namespacenumber\";a:2:{i:0;i:1;i:1;s:15:\"NAMESPACENUMBER\";}s:14:\"newsectionlink\";a:2:{i:0;i:1;i:1;s:18:\"__NEWSECTIONLINK__\";}s:15:\"nocommafysuffix\";a:2:{i:0;i:0;i:1;s:5:\"NOSEP\";}s:16:\"nocontentconvert\";a:3:{i:0;i:0;i:1;s:20:\"__NOCONTENTCONVERT__\";i:2;s:8:\"__NOCC__\";}s:13:\"noeditsection\";a:2:{i:0;i:0;i:1;s:17:\"__NOEDITSECTION__\";}s:9:\"nogallery\";a:2:{i:0;i:0;i:1;s:13:\"__NOGALLERY__\";}s:7:\"noindex\";a:2:{i:0;i:1;i:1;s:11:\"__NOINDEX__\";}s:16:\"nonewsectionlink\";a:2:{i:0;i:1;i:1;s:20:\"__NONEWSECTIONLINK__\";}s:14:\"notitleconvert\";a:3:{i:0;i:0;i:1;s:18:\"__NOTITLECONVERT__\";i:2;s:8:\"__NOTC__\";}s:5:\"notoc\";a:2:{i:0;i:0;i:1;s:9:\"__NOTOC__\";}s:2:\"ns\";a:2:{i:0;i:0;i:1;s:3:\"NS:\";}s:3:\"nse\";a:2:{i:0;i:0;i:1;s:4:\"NSE:\";}s:13:\"numberingroup\";a:3:{i:0;i:1;i:1;s:13:\"NUMBERINGROUP\";i:2;s:10:\"NUMINGROUP\";}s:19:\"numberofactiveusers\";a:2:{i:0;i:1;i:1;s:19:\"NUMBEROFACTIVEUSERS\";}s:14:\"numberofadmins\";a:2:{i:0;i:1;i:1;s:14:\"NUMBEROFADMINS\";}s:16:\"numberofarticles\";a:2:{i:0;i:1;i:1;s:16:\"NUMBEROFARTICLES\";}s:13:\"numberofedits\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFEDITS\";}s:13:\"numberoffiles\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFFILES\";}s:13:\"numberofpages\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFPAGES\";}s:13:\"numberofusers\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFUSERS\";}s:7:\"padleft\";a:2:{i:0;i:0;i:1;s:7:\"PADLEFT\";}s:8:\"padright\";a:2:{i:0;i:0;i:1;s:8:\"PADRIGHT\";}s:6:\"pageid\";a:2:{i:0;i:0;i:1;s:6:\"PAGEID\";}s:12:\"pagelanguage\";a:2:{i:0;i:1;i:1;s:12:\"PAGELANGUAGE\";}s:8:\"pagename\";a:2:{i:0;i:1;i:1;s:8:\"PAGENAME\";}s:9:\"pagenamee\";a:2:{i:0;i:1;i:1;s:9:\"PAGENAMEE\";}s:15:\"pagesincategory\";a:3:{i:0;i:1;i:1;s:15:\"PAGESINCATEGORY\";i:2;s:10:\"PAGESINCAT\";}s:19:\"pagesincategory_all\";a:2:{i:0;i:0;i:1;s:3:\"all\";}s:21:\"pagesincategory_files\";a:2:{i:0;i:0;i:1;s:5:\"files\";}s:21:\"pagesincategory_pages\";a:2:{i:0;i:0;i:1;s:5:\"pages\";}s:23:\"pagesincategory_subcats\";a:2:{i:0;i:0;i:1;s:7:\"subcats\";}s:16:\"pagesinnamespace\";a:3:{i:0;i:1;i:1;s:17:\"PAGESINNAMESPACE:\";i:2;s:10:\"PAGESINNS:\";}s:8:\"pagesize\";a:2:{i:0;i:1;i:1;s:8:\"PAGESIZE\";}s:6:\"plural\";a:2:{i:0;i:0;i:1;s:7:\"PLURAL:\";}s:16:\"protectionexpiry\";a:2:{i:0;i:1;i:1;s:16:\"PROTECTIONEXPIRY\";}s:15:\"protectionlevel\";a:2:{i:0;i:1;i:1;s:15:\"PROTECTIONLEVEL\";}s:3:\"raw\";a:2:{i:0;i:0;i:1;s:4:\"RAW:\";}s:9:\"rawsuffix\";a:2:{i:0;i:1;i:1;s:1:\"R\";}s:8:\"redirect\";a:2:{i:0;i:0;i:1;s:9:\"#REDIRECT\";}s:11:\"revisionday\";a:2:{i:0;i:1;i:1;s:11:\"REVISIONDAY\";}s:12:\"revisionday2\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONDAY2\";}s:10:\"revisionid\";a:2:{i:0;i:1;i:1;s:10:\"REVISIONID\";}s:13:\"revisionmonth\";a:2:{i:0;i:1;i:1;s:13:\"REVISIONMONTH\";}s:14:\"revisionmonth1\";a:2:{i:0;i:1;i:1;s:14:\"REVISIONMONTH1\";}s:12:\"revisionsize\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONSIZE\";}s:17:\"revisiontimestamp\";a:2:{i:0;i:1;i:1;s:17:\"REVISIONTIMESTAMP\";}s:12:\"revisionuser\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONUSER\";}s:12:\"revisionyear\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONYEAR\";}s:12:\"rootpagename\";a:2:{i:0;i:1;i:1;s:12:\"ROOTPAGENAME\";}s:13:\"rootpagenamee\";a:2:{i:0;i:1;i:1;s:13:\"ROOTPAGENAMEE\";}s:9:\"safesubst\";a:2:{i:0;i:0;i:1;s:10:\"SAFESUBST:\";}s:10:\"scriptpath\";a:2:{i:0;i:0;i:1;s:10:\"SCRIPTPATH\";}s:6:\"server\";a:2:{i:0;i:0;i:1;s:6:\"SERVER\";}s:10:\"servername\";a:2:{i:0;i:0;i:1;s:10:\"SERVERNAME\";}s:8:\"sitename\";a:2:{i:0;i:1;i:1;s:8:\"SITENAME\";}s:7:\"special\";a:2:{i:0;i:0;i:1;s:7:\"special\";}s:8:\"speciale\";a:2:{i:0;i:0;i:1;s:8:\"speciale\";}s:14:\"staticredirect\";a:2:{i:0;i:1;i:1;s:18:\"__STATICREDIRECT__\";}s:9:\"stylepath\";a:2:{i:0;i:0;i:1;s:9:\"STYLEPATH\";}s:15:\"subjectpagename\";a:3:{i:0;i:1;i:1;s:15:\"SUBJECTPAGENAME\";i:2;s:15:\"ARTICLEPAGENAME\";}s:16:\"subjectpagenamee\";a:3:{i:0;i:1;i:1;s:16:\"SUBJECTPAGENAMEE\";i:2;s:16:\"ARTICLEPAGENAMEE\";}s:12:\"subjectspace\";a:3:{i:0;i:1;i:1;s:12:\"SUBJECTSPACE\";i:2;s:12:\"ARTICLESPACE\";}s:13:\"subjectspacee\";a:3:{i:0;i:1;i:1;s:13:\"SUBJECTSPACEE\";i:2;s:13:\"ARTICLESPACEE\";}s:11:\"subpagename\";a:2:{i:0;i:1;i:1;s:11:\"SUBPAGENAME\";}s:12:\"subpagenamee\";a:2:{i:0;i:1;i:1;s:12:\"SUBPAGENAMEE\";}s:5:\"subst\";a:2:{i:0;i:0;i:1;s:6:\"SUBST:\";}s:3:\"tag\";a:2:{i:0;i:0;i:1;s:3:\"tag\";}s:12:\"talkpagename\";a:2:{i:0;i:1;i:1;s:12:\"TALKPAGENAME\";}s:13:\"talkpagenamee\";a:2:{i:0;i:1;i:1;s:13:\"TALKPAGENAMEE\";}s:9:\"talkspace\";a:2:{i:0;i:1;i:1;s:9:\"TALKSPACE\";}s:10:\"talkspacee\";a:2:{i:0;i:1;i:1;s:10:\"TALKSPACEE\";}s:3:\"toc\";a:2:{i:0;i:0;i:1;s:7:\"__TOC__\";}s:2:\"uc\";a:2:{i:0;i:0;i:1;s:3:\"UC:\";}s:7:\"ucfirst\";a:2:{i:0;i:0;i:1;s:8:\"UCFIRST:\";}s:9:\"urlencode\";a:2:{i:0;i:0;i:1;s:10:\"URLENCODE:\";}s:8:\"url_path\";a:2:{i:0;i:0;i:1;s:4:\"PATH\";}s:9:\"url_query\";a:2:{i:0;i:0;i:1;s:5:\"QUERY\";}s:8:\"url_wiki\";a:2:{i:0;i:0;i:1;s:4:\"WIKI\";}}'),
+('en','messages:1movedto2','s:22:\"moved [[$1]] to [[$2]]\";'),
+('en','messages:1movedto2_redir','s:36:\"moved [[$1]] to [[$2]] over redirect\";'),
+('en','messages:about','s:5:\"About\";'),
+('en','messages:aboutpage','s:13:\"Project:About\";'),
+('en','messages:aboutsite','s:18:\"About {{SITENAME}}\";'),
+('en','messages:accesskey-blockip-block','s:1:\"s\";'),
+('en','messages:accesskey-ca-addsection','s:1:\"+\";'),
+('en','messages:accesskey-ca-delete','s:1:\"d\";'),
+('en','messages:accesskey-ca-edit','s:1:\"e\";'),
+('en','messages:accesskey-ca-editsource','s:1:\"e\";'),
+('en','messages:accesskey-ca-history','s:1:\"h\";'),
+('en','messages:accesskey-ca-move','s:1:\"m\";'),
+('en','messages:accesskey-ca-nstab-category','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-help','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-image','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-main','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-media','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-mediawiki','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-project','s:1:\"a\";'),
+('en','messages:accesskey-ca-nstab-special','s:0:\"\";'),
+('en','messages:accesskey-ca-nstab-template','s:1:\"c\";'),
+('en','messages:accesskey-ca-nstab-user','s:1:\"c\";'),
+('en','messages:accesskey-ca-protect','s:1:\"=\";'),
+('en','messages:accesskey-ca-talk','s:1:\"t\";'),
+('en','messages:accesskey-ca-undelete','s:1:\"d\";'),
+('en','messages:accesskey-ca-unprotect','s:1:\"=\";'),
+('en','messages:accesskey-ca-unwatch','s:1:\"w\";'),
+('en','messages:accesskey-ca-ve-edit','s:1:\"v\";'),
+('en','messages:accesskey-ca-view','s:0:\"\";'),
+('en','messages:accesskey-ca-viewsource','s:1:\"e\";'),
+('en','messages:accesskey-ca-watch','s:1:\"w\";'),
+('en','messages:accesskey-compareselectedversions','s:1:\"v\";'),
+('en','messages:accesskey-diff','s:1:\"v\";'),
+('en','messages:accesskey-export','s:1:\"s\";'),
+('en','messages:accesskey-feed-atom','s:0:\"\";'),
+('en','messages:accesskey-feed-rss','s:0:\"\";'),
+('en','messages:accesskey-import','s:1:\"s\";'),
+('en','messages:accesskey-minoredit','s:1:\"i\";'),
+('en','messages:accesskey-n-currentevents','s:0:\"\";'),
+('en','messages:accesskey-n-help','s:0:\"\";'),
+('en','messages:accesskey-n-help-mediawiki','s:0:\"\";'),
+('en','messages:accesskey-n-mainpage','s:1:\"z\";'),
+('en','messages:accesskey-n-mainpage-description','s:1:\"z\";'),
+('en','messages:accesskey-n-portal','s:0:\"\";'),
+('en','messages:accesskey-n-randompage','s:1:\"x\";'),
+('en','messages:accesskey-n-recentchanges','s:1:\"r\";'),
+('en','messages:accesskey-p-logo','s:0:\"\";'),
+('en','messages:accesskey-preferences-save','s:1:\"s\";'),
+('en','messages:accesskey-preview','s:1:\"p\";'),
+('en','messages:accesskey-pt-anoncontribs','s:1:\"y\";'),
+('en','messages:accesskey-pt-anontalk','s:1:\"n\";'),
+('en','messages:accesskey-pt-anonuserpage','s:1:\".\";'),
+('en','messages:accesskey-pt-createaccount','s:0:\"\";'),
+('en','messages:accesskey-pt-login','s:1:\"o\";'),
+('en','messages:accesskey-pt-login-private','s:1:\"o\";'),
+('en','messages:accesskey-pt-logout','s:0:\"\";'),
+('en','messages:accesskey-pt-mycontris','s:1:\"y\";'),
+('en','messages:accesskey-pt-mytalk','s:1:\"n\";'),
+('en','messages:accesskey-pt-preferences','s:0:\"\";'),
+('en','messages:accesskey-pt-userpage','s:1:\".\";'),
+('en','messages:accesskey-pt-watchlist','s:1:\"l\";'),
+('en','messages:accesskey-publish','s:1:\"s\";'),
+('en','messages:accesskey-save','s:1:\"s\";'),
+('en','messages:accesskey-search','s:1:\"f\";'),
+('en','messages:accesskey-search-fulltext','s:0:\"\";'),
+('en','messages:accesskey-search-go','s:0:\"\";'),
+('en','messages:accesskey-summary','s:1:\"b\";'),
+('en','messages:accesskey-t-contributions','s:0:\"\";'),
+('en','messages:accesskey-t-emailuser','s:0:\"\";'),
+('en','messages:accesskey-t-info','s:0:\"\";'),
+('en','messages:accesskey-t-permalink','s:0:\"\";'),
+('en','messages:accesskey-t-print','s:1:\"p\";'),
+('en','messages:accesskey-t-recentchangeslinked','s:1:\"k\";'),
+('en','messages:accesskey-t-specialpages','s:1:\"q\";'),
+('en','messages:accesskey-t-upload','s:1:\"u\";'),
+('en','messages:accesskey-t-whatlinkshere','s:1:\"j\";'),
+('en','messages:accesskey-upload','s:1:\"s\";'),
+('en','messages:accesskey-userrights-set','s:1:\"s\";'),
+('en','messages:accesskey-watch','s:1:\"w\";'),
+('en','messages:accesskey-watchlist-expiry','s:0:\"\";'),
+('en','messages:accesskey-watchlistedit-normal-submit','s:1:\"s\";'),
+('en','messages:accesskey-watchlistedit-raw-submit','s:1:\"s\";'),
+('en','messages:accmailtext','s:173:\"A randomly generated password for [[User talk:$1|$1]] has been sent to $2. It can be changed on the [[Special:ChangePassword|change password]] page upon logging in.\";'),
+('en','messages:accmailtitle','s:13:\"Password sent\";'),
+('en','messages:accountcreated','s:15:\"Account created\";'),
+('en','messages:accountcreatedtext','s:91:\"The user account for [[{{ns:User}}:$1|$1]] ([[{{ns:User talk}}:$1|talk]]) has been created.\";'),
+('en','messages:acct_creation_throttle_hit','s:249:\"Visitors to this wiki using your IP address have created {{PLURAL:$1|1 account|$1 accounts}} in the last $2, which is the maximum allowed in this time period.\nAs a result, visitors using this IP address cannot create any more accounts at the moment.\";'),
+('en','messages:action-addsection','s:9:\"Add topic\";'),
+('en','messages:action-apihighlimits','s:32:\"use higher limits in API queries\";'),
+('en','messages:action-applychangetags','s:34:\"apply tags along with your changes\";'),
+('en','messages:action-autoconfirmed','s:39:\"not be affected by IP-based rate limits\";'),
+('en','messages:action-autocreateaccount','s:47:\"automatically create this external user account\";'),
+('en','messages:action-autopatrol','s:34:\"have your edit marked as patrolled\";'),
+('en','messages:action-bigdelete','s:33:\"delete pages with large histories\";'),
+('en','messages:action-block','s:28:\"block this user from editing\";'),
+('en','messages:action-blockemail','s:31:\"block a user from sending email\";'),
+('en','messages:action-bot','s:34:\"be treated as an automated process\";'),
+('en','messages:action-browsearchive','s:20:\"search deleted pages\";'),
+('en','messages:action-changetags','s:69:\"add and remove arbitrary tags on individual revisions and log entries\";'),
+('en','messages:action-createaccount','s:24:\"create this user account\";'),
+('en','messages:action-createpage','s:16:\"create this page\";'),
+('en','messages:action-createtalk','s:27:\"create this discussion page\";'),
+('en','messages:action-delete','s:16:\"delete this page\";'),
+('en','messages:action-delete-redirect','s:35:\"overwrite single revision redirects\";'),
+('en','messages:action-deletechangetags','s:29:\"delete tags from the database\";'),
+('en','messages:action-deletedhistory','s:29:\"view a page\'s deleted history\";'),
+('en','messages:action-deletedtext','s:26:\"view deleted revision text\";'),
+('en','messages:action-deletelogentry','s:18:\"delete log entries\";'),
+('en','messages:action-deleterevision','s:16:\"delete revisions\";'),
+('en','messages:action-edit','s:14:\"edit this page\";'),
+('en','messages:action-editcontentmodel','s:32:\"edit the content model of a page\";'),
+('en','messages:action-editinterface','s:23:\"edit the user interface\";'),
+('en','messages:action-editmyoptions','s:21:\"edit your preferences\";'),
+('en','messages:action-editmyprivateinfo','s:29:\"edit your private information\";'),
+('en','messages:action-editmyusercss','s:28:\"edit your own user CSS files\";'),
+('en','messages:action-editmyuserjs','s:35:\"edit your own user JavaScript files\";'),
+('en','messages:action-editmyuserjson','s:29:\"edit your own user JSON files\";'),
+('en','messages:action-editmyuserjsredirect','s:54:\"edit your own user JavaScript files that are redirects\";'),
+('en','messages:action-editmywatchlist','s:19:\"edit your watchlist\";'),
+('en','messages:action-editprotected','s:53:\"edit pages protected as \"{{int:protect-level-sysop}}\"\";'),
+('en','messages:action-editsemiprotected','s:61:\"edit pages protected as \"{{int:protect-level-autoconfirmed}}\"\";'),
+('en','messages:action-editsitecss','s:17:\"edit sitewide CSS\";'),
+('en','messages:action-editsitejs','s:24:\"edit sitewide JavaScript\";'),
+('en','messages:action-editsitejson','s:18:\"edit sitewide JSON\";'),
+('en','messages:action-editusercss','s:27:\"edit other users\' CSS files\";'),
+('en','messages:action-edituserjs','s:34:\"edit other users\' JavaScript files\";'),
+('en','messages:action-edituserjson','s:28:\"edit other users\' JSON files\";'),
+('en','messages:action-hideuser','s:43:\"block a username, hiding it from the public\";'),
+('en','messages:action-history','s:29:\"view the history of this page\";'),
+('en','messages:action-import','s:30:\"import pages from another wiki\";'),
+('en','messages:action-importupload','s:31:\"import pages from a file upload\";'),
+('en','messages:action-ipblock-exempt','s:46:\"bypass IP blocks, auto-blocks and range blocks\";'),
+('en','messages:action-managechangetags','s:28:\"create and (de)activate tags\";'),
+('en','messages:action-markbotedits','s:35:\"mark rolled-back edits as bot edits\";'),
+('en','messages:action-mergehistory','s:30:\"merge the history of this page\";'),
+('en','messages:action-minoredit','s:23:\"mark this edit as minor\";'),
+('en','messages:action-move','s:14:\"move this page\";'),
+('en','messages:action-move-categorypages','s:19:\"move category pages\";'),
+('en','messages:action-move-rootuserpages','s:20:\"move root user pages\";'),
+('en','messages:action-move-subpages','s:32:\"move this page, and its subpages\";'),
+('en','messages:action-movefile','s:14:\"move this file\";'),
+('en','messages:action-nominornewtalk','s:72:\"not have minor edits to discussion pages trigger the new messages prompt\";'),
+('en','messages:action-noratelimit','s:30:\"not be affected by rate limits\";'),
+('en','messages:action-override-export-depth','s:54:\"export pages including linked pages up to a depth of 5\";'),
+('en','messages:action-pagelang','s:24:\"change the page language\";'),
+('en','messages:action-patrol','s:31:\"mark others\' edits as patrolled\";'),
+('en','messages:action-patrolmarks','s:32:\"view recent changes patrol marks\";'),
+('en','messages:action-protect','s:40:\"change protection settings for this page\";'),
+('en','messages:action-purge','s:15:\"purge this page\";'),
+('en','messages:action-read','s:14:\"read this page\";'),
+('en','messages:action-reupload','s:28:\"overwrite this existing file\";'),
+('en','messages:action-reupload-own','s:44:\"overwrite existing files uploaded by oneself\";'),
+('en','messages:action-reupload-shared','s:41:\"override this file on a shared repository\";'),
+('en','messages:action-rollback','s:72:\"quickly rollback the edits of the last user who edited a particular page\";'),
+('en','messages:action-sendemail','s:11:\"send emails\";'),
+('en','messages:action-siteadmin','s:27:\"lock or unlock the database\";'),
+('en','messages:action-suppressionlog','s:21:\"view this private log\";'),
+('en','messages:action-suppressredirect','s:56:\"not create redirects from source pages when moving pages\";'),
+('en','messages:action-suppressrevision','s:35:\"review and restore hidden revisions\";'),
+('en','messages:action-unblockself','s:15:\"unblock oneself\";'),
+('en','messages:action-undelete','s:14:\"undelete pages\";'),
+('en','messages:action-unprotect','s:17:\"Change protection\";'),
+('en','messages:action-unwatchedpages','s:32:\"view the list of unwatched pages\";'),
+('en','messages:action-upload','s:16:\"upload this file\";'),
+('en','messages:action-upload_by_url','s:27:\"upload this file from a URL\";'),
+('en','messages:action-userrights','s:20:\"edit all user rights\";'),
+('en','messages:action-userrights-interwiki','s:40:\"edit user rights of users on other wikis\";'),
+('en','messages:action-viewdeleted','s:8:\"View $1?\";'),
+('en','messages:action-viewmyprivateinfo','s:29:\"view your private information\";'),
+('en','messages:action-viewmywatchlist','s:19:\"view your watchlist\";'),
+('en','messages:action-viewsource','s:11:\"View source\";'),
+('en','messages:action-viewsuppressed','s:35:\"view revisions hidden from any user\";'),
+('en','messages:action-writeapi','s:17:\"use the write API\";'),
+('en','messages:actioncomplete','s:15:\"Action complete\";'),
+('en','messages:actionfailed','s:13:\"Action failed\";'),
+('en','messages:actions','s:7:\"Actions\";'),
+('en','messages:actionthrottled','s:16:\"Action throttled\";'),
+('en','messages:actionthrottledtext','s:179:\"As an anti-abuse measure, you are limited from performing this action too many times in a short space of time, and you have exceeded this limit.\nPlease try again in a few minutes.\";'),
+('en','messages:activeusers','s:17:\"Active users list\";'),
+('en','messages:activeusers-count','s:69:\"$1 {{PLURAL:$1|action|actions}} in the last {{PLURAL:$3|day|$3 days}}\";'),
+('en','messages:activeusers-excludegroups','s:34:\"Exclude users belonging to groups:\";'),
+('en','messages:activeusers-from','s:26:\"Display users starting at:\";'),
+('en','messages:activeusers-groups','s:34:\"Display users belonging to groups:\";'),
+('en','messages:activeusers-intro','s:96:\"This is a list of users who had some kind of activity within the last $1 {{PLURAL:$1|day|days}}.\";'),
+('en','messages:activeusers-noresult','s:15:\"No users found.\";'),
+('en','messages:activeusers-submit','s:20:\"Display active users\";'),
+('en','messages:activeusers-summary','s:0:\"\";'),
+('en','messages:addedwatchexpiry-options-label','s:22:\"Watchlist time period:\";'),
+('en','messages:addedwatchexpiryhours','s:106:\"\"[[:$1]]\" and its discussion page have been added to your [[Special:Watchlist|watchlist]] for a few hours.\";'),
+('en','messages:addedwatchexpiryhours-talk','s:106:\"\"[[:$1]]\" and its associated page have been added to your [[Special:Watchlist|watchlist]] for a few hours.\";'),
+('en','messages:addedwatchexpirytext','s:97:\"\"[[:$1]]\" and its discussion page have been added to your [[Special:Watchlist|watchlist]] for $2.\";'),
+('en','messages:addedwatchexpirytext-talk','s:97:\"\"[[:$1]]\" and its associated page have been added to your [[Special:Watchlist|watchlist]] for $2.\";'),
+('en','messages:addedwatchindefinitelytext','s:102:\"\"[[:$1]]\" and its discussion page have been added to your [[Special:Watchlist|watchlist]] permanently.\";'),
+('en','messages:addedwatchindefinitelytext-talk','s:102:\"\"[[:$1]]\" and its associated page have been added to your [[Special:Watchlist|watchlist]] permanently.\";'),
+('en','messages:addedwatchtext','s:90:\"\"[[:$1]]\" and its discussion page have been added to your [[Special:Watchlist|watchlist]].\";'),
+('en','messages:addedwatchtext-short','s:47:\"The page \"$1\" has been added to your watchlist.\";'),
+('en','messages:addedwatchtext-talk','s:90:\"\"[[:$1]]\" and its associated page have been added to your [[Special:Watchlist|watchlist]].\";'),
+('en','messages:addsection','s:1:\"+\";'),
+('en','messages:addsection-editintro','s:0:\"\";'),
+('en','messages:addsection-preload','s:0:\"\";'),
+('en','messages:addwatch','s:16:\"Add to watchlist\";'),
+('en','messages:ago','s:6:\"$1 ago\";'),
+('en','messages:all-logs-page','s:15:\"All public logs\";'),
+('en','messages:allarticles','s:9:\"All pages\";'),
+('en','messages:allinnamespace','s:24:\"All pages ($1 namespace)\";'),
+('en','messages:alllogstext','s:184:\"Combined display of all available logs of {{SITENAME}}.\nYou can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).\";'),
+('en','messages:allmessages','s:15:\"System messages\";'),
+('en','messages:allmessages-filter','s:30:\"Filter by customization state:\";'),
+('en','messages:allmessages-filter-all','s:3:\"All\";'),
+('en','messages:allmessages-filter-legend','s:6:\"Filter\";'),
+('en','messages:allmessages-filter-modified','s:8:\"Modified\";'),
+('en','messages:allmessages-filter-submit','s:6:\"Filter\";'),
+('en','messages:allmessages-filter-translate','s:9:\"Translate\";'),
+('en','messages:allmessages-filter-unmodified','s:10:\"Unmodified\";'),
+('en','messages:allmessages-language','s:9:\"Language:\";'),
+('en','messages:allmessages-not-supported-database','s:91:\"This page cannot be used because $wgUseDatabaseMessages has been disabled.\";'),
+('en','messages:allmessages-prefix','s:17:\"Filter by prefix:\";'),
+('en','messages:allmessagescurrent','s:20:\"Current message text\";'),
+('en','messages:allmessagesdefault','s:20:\"Default message text\";'),
+('en','messages:allmessagesname','s:4:\"Name\";'),
+('en','messages:allmessagestext','s:287:\"This is a list of system messages available in the MediaWiki namespace.\nPlease visit [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation MediaWiki Localisation] and [https://translatewiki.net translatewiki.net] if you wish to contribute to the generic MediaWiki localisation.\";'),
+('en','messages:allowemail','s:29:\"Allow other users to email me\";'),
+('en','messages:allpages','s:9:\"All pages\";'),
+('en','messages:allpages-bad-ns','s:42:\"{{SITENAME}} does not have namespace \"$1\".\";'),
+('en','messages:allpages-hide-redirects','s:14:\"Hide redirects\";'),
+('en','messages:allpages-summary','s:0:\"\";'),
+('en','messages:allpagesbadtitle','s:148:\"The given page title was invalid or had an inter-language or inter-wiki prefix.\nIt may contain one or more characters that cannot be used in titles.\";'),
+('en','messages:allpagesfrom','s:26:\"Display pages starting at:\";'),
+('en','messages:allpagesprefix','s:26:\"Display pages with prefix:\";'),
+('en','messages:allpagessubmit','s:2:\"Go\";'),
+('en','messages:allpagesto','s:24:\"Display pages ending at:\";'),
+('en','messages:alreadyrolled','s:356:\"Cannot rollback the last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]).\nSomeone else has edited or rolled back the page already.\n\nThe last edit to the page was by [[User:$3|$3]] ([[User talk:$3|talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).\";'),
+('en','messages:ancientpages','s:12:\"Oldest pages\";'),
+('en','messages:ancientpages-summary','s:0:\"\";'),
+('en','messages:and','s:8:\" and\";'),
+('en','messages:anoncontribs','s:13:\"Contributions\";'),
+('en','messages:anoneditwarning','s:267:\"Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you [$1 log in] or [$2 create an account], your edits will be attributed to your username, along with other benefits.\";'),
+('en','messages:anonnotice','s:1:\"-\";'),
+('en','messages:anononlyblock','s:10:\"anon. only\";'),
+('en','messages:anonpreviewwarning','s:99:\"You are not logged in. Publishing will record your IP address in this page\'s edit history.\";'),
+('en','messages:anontalk','s:4:\"Talk\";'),
+('en','messages:anontalkpagetext','s:469:\"----\nThis is the discussion page for an anonymous user who has not created an account yet, or who does not use it.\nWe therefore have to use the numerical IP address to identify them.\nSuch an IP address can be shared by several users.\nIf you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:CreateAccount|create an account]] or [[Special:UserLogin|log in]] to avoid future confusion with other anonymous users.\";'),
+('en','messages:anonuser','s:30:\"{{SITENAME}} anonymous user $1\";'),
+('en','messages:anonusers','s:50:\"{{SITENAME}} anonymous {{PLURAL:$2|user|users}} $1\";'),
+('en','messages:anonymous','s:50:\"Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}\";'),
+('en','messages:api-clientside-error-aborted','s:24:\"The request was aborted.\";'),
+('en','messages:api-clientside-error-http','s:31:\"Server returned error: HTTP $1.\";'),
+('en','messages:api-clientside-error-invalidresponse','s:29:\"Invalid response from server.\";'),
+('en','messages:api-clientside-error-noconnect','s:96:\"Could not connect to the server. Make sure you have a working internet connection and try again.\";'),
+('en','messages:api-clientside-error-timeout','s:52:\"The server did not respond within the expected time.\";'),
+('en','messages:api-credits','s:370:\"API developers:\n* Yuri Astrakhan (creator, lead developer Sep 2006–Sep 2007)\n* Roan Kattouw (lead developer Sep 2007–2009)\n* Victor Vasiliev\n* Bryan Tong Minh\n* Sam Reed\n* Brad Jorsch (lead developer 2013–present)\n\nPlease send your comments, suggestions and questions to mediawiki-api@lists.wikimedia.org\nor file a bug report at https://phabricator.wikimedia.org/.\";'),
+('en','messages:api-credits-header','s:7:\"Credits\";'),
+('en','messages:api-error-badtoken','s:26:\"Internal error: Bad token.\";'),
+('en','messages:api-error-emptypage','s:41:\"Creating new, empty pages is not allowed.\";'),
+('en','messages:api-error-publishfailed','s:56:\"Internal error: Server failed to publish temporary file.\";'),
+('en','messages:api-error-stashfailed','s:54:\"Internal error: Server failed to store temporary file.\";'),
+('en','messages:api-error-unknown-warning','s:22:\"Unknown warning: \"$1\".\";'),
+('en','messages:api-error-unknownerror','s:20:\"Unknown error: \"$1\".\";'),
+('en','messages:api-exception-trace','s:15:\"$1 at $2($3)\n$4\";'),
+('en','messages:api-feed-error-title','s:10:\"Error ($1)\";'),
+('en','messages:api-format-prettyprint-header','s:391:\"This is the HTML representation of the $1 format. HTML is good for debugging, but is unsuitable for application use.\n\nSpecify the format parameter to change the output format. To see the non-HTML representation of the $1 format, set format=$2.\n\nSee the [[mw:Special:MyLanguage/API|complete documentation]], or the [[Special:ApiHelp/main|API help]] for more information.\";'),
+('en','messages:api-format-prettyprint-header-hyperlinked','s:377:\"This is the HTML representation of the $1 format. HTML is good for debugging, but is unsuitable for application use.\n\nSpecify the format parameter to change the output format. To see the non-HTML representation of the $1 format, set [$3 format=$2].\n\nSee the [[mw:API|complete documentation]], or the [[Special:ApiHelp/main|API help]] for more information.\";'),
+('en','messages:api-format-prettyprint-header-only-html','s:219:\"This is an HTML representation intended for debugging, and is unsuitable for application use.\n\nSee the [[mw:Special:MyLanguage/API|complete documentation]], or the [[Special:ApiHelp/main|API help]] for more information.\";'),
+('en','messages:api-format-prettyprint-status','s:55:\"This response would be returned with HTTP status $1 $2.\";'),
+('en','messages:api-format-title','s:20:\"MediaWiki API result\";'),
+('en','messages:api-help-authmanager-general-usage','s:1251:\"The general procedure to use this module is:\n# Fetch the fields available from [[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]] with amirequestsfor=$4, and a $5 token from [[Special:ApiHelp/query+tokens|action=query&meta=tokens]].\n# Present the fields to the user, and obtain their submission.\n# Post to this module, supplying $1returnurl and any relevant fields.\n# Check the status in the response.\n#* If you received PASS or FAIL, you\'re done. The operation either succeeded or it didn\'t.\n#* If you received UI, present the new fields to the user and obtain their submission. Then post to this module with $1continue and the relevant fields set, and repeat step 4.\n#* If you received REDIRECT, direct the user to the redirecttarget and wait for the return to $1returnurl. Then post to this module with $1continue and any fields passed to the return URL, and repeat step 4.\n#* If you received RESTART, that means the authentication worked but we don\'t have a linked user account. You might treat this as UI or as FAIL.\";'),
+('en','messages:api-help-authmanagerhelper-additional-params','s:341:\"This module accepts additional parameters depending on the available authentication requests. Use [[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]] with amirequestsfor=$1 (or a previous response from this module, if applicable) to determine the requests available and the fields that they use.\";'),
+('en','messages:api-help-authmanagerhelper-continue','s:149:\"This request is a continuation after an earlier UI or REDIRECT response. Either this or $1returnurl is required.\";'),
+('en','messages:api-help-authmanagerhelper-mergerequestfields','s:71:\"Merge field information for all authentication requests into one array.\";'),
+('en','messages:api-help-authmanagerhelper-messageformat','s:37:\"Format to use for returning messages.\";'),
+('en','messages:api-help-authmanagerhelper-preservestate','s:65:\"Preserve state from a previous failed login attempt, if possible.\";'),
+('en','messages:api-help-authmanagerhelper-request','s:191:\"Use this authentication request, by the id returned from [[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]] with amirequestsfor=$1.\";'),
+('en','messages:api-help-authmanagerhelper-requests','s:243:\"Only use these authentication requests, by the id returned from [[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]] with amirequestsfor=$1 or from a previous response from this module.\";'),
+('en','messages:api-help-authmanagerhelper-returnurl','s:514:\"Return URL for third-party authentication flows, must be absolute. Either this or $1continue is required.\n\nUpon receiving a REDIRECT response, you will typically open a browser or web view to the specified redirecttarget URL for a third-party authentication flow. When that completes, the third party will send the browser or web view to this URL. You should extract any query or POST parameters from the URL and pass them as a $1continue request to this API module.\";'),
+('en','messages:api-help-datatype-boolean','s:168:\"Boolean parameters work like HTML checkboxes: if the parameter is specified, regardless of value, it is considered true. For a false value, omit the parameter entirely.\";'),
+('en','messages:api-help-datatype-expiry','s:230:\"Expiry values be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). For no expiry, use infinite, indefinite, infinity or never.\";'),
+('en','messages:api-help-datatype-timestamp','s:388:\"Timestamps may be specified in several formats, see [[mw:Special:MyLanguage/Timestamp|the Timestamp library input formats documented on mediawiki.org]] for details. ISO 8601 date and time is recommended: 2001-01-15T14:56:00Z. Additionally, the string now may be used to specify the current timestamp.\";'),
+('en','messages:api-help-datatypes-header','s:10:\"Data types\";'),
+('en','messages:api-help-datatypes-top','s:616:\"Input to MediaWiki should be NFC-normalized UTF-8. MediaWiki may attempt to convert other input, but this may cause some operations (such as [[Special:ApiHelp/edit|edits]] with MD5 checks) to fail.\n\nParameters that take multiple values are normally submitted with the values separated using the pipe character, e.g. param=value1|value2 or param=value1%7Cvalue2. If a value must contain the pipe character, use U+001F (Unit Separator) as the separator \'\'and\'\' prefix the value with U+001F, e.g. param=%1Fvalue1%1Fvalue2.\n\nSome parameter types in API requests need further explanation:\";'),
+('en','messages:api-help-examples','s:31:\"{{PLURAL:$1|Example|Examples}}:\";'),
+('en','messages:api-help-flag-deprecated','s:26:\"This module is deprecated.\";'),
+('en','messages:api-help-flag-generator','s:39:\"This module can be used as a generator.\";'),
+('en','messages:api-help-flag-internal','s:94:\"This module is internal or unstable. Its operation may change without notice.\";'),
+('en','messages:api-help-flag-mustbeposted','s:39:\"This module only accepts POST requests.\";'),
+('en','messages:api-help-flag-readrights','s:33:\"This module requires read rights.\";'),
+('en','messages:api-help-flag-writerights','s:34:\"This module requires write rights.\";'),
+('en','messages:api-help-flags','s:0:\"\";'),
+('en','messages:api-help-help-urls','s:0:\"\";'),
+('en','messages:api-help-lead','s:152:\"This is an auto-generated MediaWiki API documentation page.\n\nDocumentation and examples: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page\";'),
+('en','messages:api-help-license','s:18:\"License: [[$1|$2]]\";'),
+('en','messages:api-help-license-noname','s:24:\"License: [[$1|See link]]\";'),
+('en','messages:api-help-license-unknown','s:53:\"License: unknown\";'),
+('en','messages:api-help-main-header','s:11:\"Main module\";'),
+('en','messages:api-help-no-extended-description','s:0:\"\";'),
+('en','messages:api-help-open-in-apisandbox','s:32:\"[open in sandbox]\";'),
+('en','messages:api-help-param-continue','s:54:\"When more results are available, use this to continue.\";'),
+('en','messages:api-help-param-default-empty','s:51:\"Default: (empty)\";'),
+('en','messages:api-help-param-deprecated','s:11:\"Deprecated.\";'),
+('en','messages:api-help-param-deprecated-label','s:10:\"deprecated\";'),
+('en','messages:api-help-param-direction','s:174:\"In which direction to enumerate:\n;newer:List oldest first. Note: $1start has to be before $1end.\n;older:List newest first (default). Note: $1start has to be later than $1end.\";'),
+('en','messages:api-help-param-disabled-in-miser-mode','s:73:\"Disabled due to [[mw:Special:MyLanguage/Manual:$wgMiserMode|miser mode]].\";'),
+('en','messages:api-help-param-internal','s:9:\"Internal.\";'),
+('en','messages:api-help-param-internal-label','s:8:\"internal\";'),
+('en','messages:api-help-param-limited-in-miser-mode','s:226:\"Note: Due to [[mw:Special:MyLanguage/Manual:$wgMiserMode|miser mode]], using this may result in fewer than $1limit results returned before continuing; in extreme cases, zero results may be returned.\";'),
+('en','messages:api-help-param-multi-all','s:41:\"To specify all values, use $1.\";'),
+('en','messages:api-help-param-multi-separate','s:89:\"Separate values with | or [[Special:ApiHelp/main#main/datatypes|alternative]].\";'),
+('en','messages:api-help-param-no-description','s:51:\"(no description)\";'),
+('en','messages:api-help-param-templated','s:105:\"This is a [[Special:ApiHelp/main#main/templatedparams|templated parameter]]. When making the request, $2.\";'),
+('en','messages:api-help-param-templated-var','s:54:\"{$1} with values of $2\";'),
+('en','messages:api-help-param-templated-var-first','s:97:\"{$1} in the parameter\'s name should be replaced with values of $2\";'),
+('en','messages:api-help-param-token','s:85:\"A \"$1\" token retrieved from [[Special:ApiHelp/query+tokens|action=query&meta=tokens]]\";'),
+('en','messages:api-help-param-token-webui','s:65:\"For compatibility, the token used in the web UI is also accepted.\";'),
+('en','messages:api-help-param-type-enum','s:144:\"{{PLURAL:$1|1=One of the following values|2=Values (separate with {{!}} or [[Special:ApiHelp/main#main/datatypes|alternative]])}}: $2\";'),
+('en','messages:api-help-param-type-expiry','s:103:\"Type: {{PLURAL:$1|1=expiry|2=list of expiries}} ([[Special:ApiHelp/main#main/datatype/expiry|details]])\";'),
+('en','messages:api-help-param-type-limit','s:31:\"Type: integer or max\";'),
+('en','messages:api-help-param-type-presenceboolean','s:70:\"Type: boolean ([[Special:ApiHelp/main#main/datatype/boolean|details]])\";'),
+('en','messages:api-help-param-type-timestamp','s:119:\"Type: {{PLURAL:$1|1=timestamp|2=list of timestamps}} ([[Special:ApiHelp/main#main/datatype/timestamp|allowed formats]])\";'),
+('en','messages:api-help-parameters','s:35:\"{{PLURAL:$1|Parameter|Parameters}}:\";'),
+('en','messages:api-help-permissions','s:37:\"{{PLURAL:$1|Permission|Permissions}}:\";'),
+('en','messages:api-help-permissions-granted-to','s:28:\"{{PLURAL:$1|Granted to}}: $2\";'),
+('en','messages:api-help-right-apihighlimits','s:135:\"Use higher limits in API queries (slow queries: $1; fast queries: $2). The limits for slow queries also apply to multivalue parameters.\";'),
+('en','messages:api-help-source','s:10:\"Source: $1\";'),
+('en','messages:api-help-source-unknown','s:52:\"Source: unknown\";'),
+('en','messages:api-help-templatedparams','s:560:\"Templated parameters support cases where an API module needs a value for each value of some other parameter. For example, if there were an API module to request fruit, it might have a parameter fruits to specify which fruits are being requested and a templated parameter {fruit}-quantity to specify how many of each fruit to request. An API client that wants 1 apple, 5 bananas, and 20 strawberries could then make a request like fruits=apples|bananas|strawberries&apples-quantity=1&bananas-quantity=5&strawberries-quantity=20.\";'),
+('en','messages:api-help-templatedparams-header','s:20:\"Templated parameters\";'),
+('en','messages:api-help-title','s:18:\"MediaWiki API help\";'),
+('en','messages:api-help-undocumented-module','s:31:\"No documentation for module $1.\";'),
+('en','messages:api-login-fail-aborted','s:277:\"Authentication requires user interaction, which is not supported by action=login. To be able to login with action=login, see [[Special:BotPasswords]]. To continue using main-account login, see [[Special:ApiHelp/clientlogin|action=clientlogin]].\";'),
+('en','messages:api-login-fail-aborted-nobotpw','s:170:\"Authentication requires user interaction, which is not supported by action=login. To log in, see [[Special:ApiHelp/clientlogin|action=clientlogin]].\";'),
+('en','messages:api-login-fail-badsessionprovider','s:28:\"Cannot log in when using $1.\";'),
+('en','messages:api-login-fail-sameorigin','s:57:\"Cannot log in when the same-origin policy is not applied.\";'),
+('en','messages:api-pageset-param-converttitles','s:171:\"Convert titles to other variants if necessary. Only works if the wiki\'s content language supports variant conversion. Languages that support variant conversion include $1.\";'),
+('en','messages:api-pageset-param-generator','s:166:\"Get the list of pages to work on by executing the specified query module.\n\nNote: Generator parameter names must be prefixed with a \"g\", see examples.\";'),
+('en','messages:api-pageset-param-pageids','s:30:\"A list of page IDs to work on.\";'),
+('en','messages:api-pageset-param-redirects-generator','s:151:\"Automatically resolve redirects in $1titles, $1pageids, and $1revids, and in pages returned by $1generator.\";'),
+('en','messages:api-pageset-param-redirects-nogenerator','s:102:\"Automatically resolve redirects in $1titles, $1pageids, and $1revids.\";'),
+('en','messages:api-pageset-param-revids','s:34:\"A list of revision IDs to work on.\";'),
+('en','messages:api-pageset-param-titles','s:28:\"A list of titles to work on.\";'),
+('en','messages:api-usage-docref','s:21:\"See $1 for API usage.\";'),
+('en','messages:api-usage-mailinglist-ref','s:204:\"Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes.\";'),
+('en','messages:apierror-allimages-redirect','s:122:\"Use gaifilterredir=nonredirects instead of redirects when using allimages as a generator.\";'),
+('en','messages:apierror-allpages-generator-redirects','s:121:\"Use gapfilterredir=nonredirects instead of redirects when using allpages as a generator.\";'),
+('en','messages:apierror-appendnotsupported','s:45:\"Can\'t append to pages using content model $1.\";'),
+('en','messages:apierror-articleexists','s:57:\"The article you tried to create has been created already.\";'),
+('en','messages:apierror-assertanonfailed','s:67:\"You are no longer logged out, so the action could not be completed.\";'),
+('en','messages:apierror-assertbotfailed','s:81:\"You do not have the bot right, so the action could not be completed.\";'),
+('en','messages:apierror-assertnameduserfailed','s:74:\"You are no longer logged in as \"$1\", so the action could not be completed.\";'),
+('en','messages:apierror-assertuserfailed','s:66:\"You are no longer logged in, so the action could not be completed.\";'),
+('en','messages:apierror-autoblocked','s:86:\"Your IP address has been blocked automatically, because it was used by a blocked user.\";'),
+('en','messages:apierror-bad-badfilecontexttitle','s:60:\"Invalid title in $1badfilecontexttitle parameter.\";'),
+('en','messages:apierror-bad-watchlist-token','s:90:\"Incorrect watchlist token provided. Please set a correct token in [[Special:Preferences]].\";'),
+('en','messages:apierror-badconfig-resulttoosmall','s:105:\"The value of $wgAPIMaxResultSize on this wiki is too small to hold basic result information.\";'),
+('en','messages:apierror-badcontinue','s:90:\"Invalid continue param. You should pass the original value returned by the previous query.\";'),
+('en','messages:apierror-baddiff','s:108:\"The diff cannot be retrieved. One or both revisions do not exist or you do not have permission to view them.\";'),
+('en','messages:apierror-baddiffto','s:109:\"$1diffto must be set to a non-negative number, prev, next or cur.\";'),
+('en','messages:apierror-badformat','s:73:\"The requested format $1 is not supported for content model $2 used by $3.\";'),
+('en','messages:apierror-badformat-generic','s:62:\"The requested format $1 is not supported for content model $2.\";'),
+('en','messages:apierror-badgenerator-notgenerator','s:51:\"Module $1 cannot be used as a generator.\";'),
+('en','messages:apierror-badgenerator-unknown','s:32:\"Unknown generator=$1.\";'),
+('en','messages:apierror-badip','s:26:\"IP parameter is not valid.\";'),
+('en','messages:apierror-badmd5','s:36:\"The supplied MD5 hash was incorrect.\";'),
+('en','messages:apierror-badmodule-badsubmodule','s:56:\"The module $1 does not have a submodule \"$2\".\";'),
+('en','messages:apierror-badmodule-nosubmodules','s:43:\"The module $1 has no submodules.\";'),
+('en','messages:apierror-badparameter','s:42:\"Invalid value for parameter $1.\";'),
+('en','messages:apierror-badquery','s:14:\"Invalid query.\";'),
+('en','messages:apierror-badtimestamp','s:57:\"Invalid value \"$2\" for timestamp parameter $1.\";'),
+('en','messages:apierror-badtoken','s:19:\"Invalid CSRF token.\";'),
+('en','messages:apierror-badupload','s:190:\"File upload parameter $1 is not a file upload; be sure to use multipart/form-data for your POST and include a filename in the Content-Disposition header.\";'),
+('en','messages:apierror-badurl','s:51:\"Invalid value \"$2\" for URL parameter $1.\";'),
+('en','messages:apierror-baduser','s:52:\"Invalid value \"$2\" for user parameter $1.\";'),
+('en','messages:apierror-badvalue-notmultivalue','s:75:\"U+001F multi-value separation may only be used for multi-valued parameters.\";'),
+('en','messages:apierror-blocked','s:35:\"You have been blocked from editing.\";'),
+('en','messages:apierror-blocked-partial','s:45:\"You have been blocked from editing this page.\";'),
+('en','messages:apierror-blockedfrommail','s:41:\"You have been blocked from sending email.\";'),
+('en','messages:apierror-botsnotsupported','s:41:\"This interface is not supported for bots.\";'),
+('en','messages:apierror-cannot-async-upload-file','s:292:\"The parameters async and file cannot be combined. If you want asynchronous processing of your uploaded file, first upload it to stash (using the stash parameter) and then publish the stashed file asynchronously (using filekey and async).\";'),
+('en','messages:apierror-cannotreauthenticate','s:65:\"This action is not available as your identity cannot be verified.\";'),
+('en','messages:apierror-cannotviewtitle','s:31:\"You are not allowed to view $1.\";'),
+('en','messages:apierror-cantblock','s:41:\"You don\'t have permission to block users.\";'),
+('en','messages:apierror-cantblock-email','s:77:\"You don\'t have permission to block users from sending email through the wiki.\";'),
+('en','messages:apierror-cantchangecontentmodel','s:64:\"You don\'t have permission to change the content model of a page.\";'),
+('en','messages:apierror-canthide','s:64:\"You don\'t have permission to hide user names from the block log.\";'),
+('en','messages:apierror-cantimport','s:42:\"You don\'t have permission to import pages.\";'),
+('en','messages:apierror-cantimport-upload','s:51:\"You don\'t have permission to import uploaded pages.\";'),
+('en','messages:apierror-cantoverwrite-sharedfile','s:92:\"The target file exists on a shared repository and you do not have permission to override it.\";'),
+('en','messages:apierror-cantsend','s:144:\"You are not logged in, you do not have a confirmed email address, or you are not allowed to send email to other users, so you cannot send email.\";'),
+('en','messages:apierror-cantundelete','s:93:\"Couldn\'t undelete: the requested revisions may not exist, or may have been undeleted already.\";'),
+('en','messages:apierror-cantview-deleted-comment','s:51:\"You don\'t have permission to view deleted comments.\";'),
+('en','messages:apierror-cantview-deleted-description','s:64:\"You don\'t have permission to view descriptions of deleted files.\";'),
+('en','messages:apierror-cantview-deleted-metadata','s:60:\"You don\'t have permission to view metadata of deleted files.\";'),
+('en','messages:apierror-cantview-deleted-revision-content','s:63:\"You don\'t have permission to view content of deleted revisions.\";'),
+('en','messages:apierror-changeauth-norequest','s:32:\"Failed to create change request.\";'),
+('en','messages:apierror-changecontentmodel-cannot-convert','s:53:\"Could not convert $1 to content model $2\";'),
+('en','messages:apierror-changecontentmodel-cannotbeused','s:50:\"Content model $1 cannot be used on $2\";'),
+('en','messages:apierror-changecontentmodel-missingtitle','s:126:\"The page you specified doesn\'t exist. To create a new page with a custom content model, use the action=edit module.\";'),
+('en','messages:apierror-changecontentmodel-nodirectediting','s:61:\"Content model $1 does not support direct editing\";'),
+('en','messages:apierror-chunk-too-small','s:71:\"Minimum chunk size is $1 {{PLURAL:$1|byte|bytes}} for non-final chunks.\";'),
+('en','messages:apierror-cidrtoobroad','s:49:\"$1 CIDR ranges broader than /$2 are not accepted.\";'),
+('en','messages:apierror-compare-maintextrequired','s:124:\"Parameter $1text-main is required when $1slots contains main (cannot delete the main slot).\";'),
+('en','messages:apierror-compare-no-title','s:101:\"Cannot pre-save transform without a title. Try specifying fromtitle or totitle.\";'),
+('en','messages:apierror-compare-nofromrevision','s:91:\"No \'from\' revision. Specify fromrev, fromtitle, or fromid.\";'),
+('en','messages:apierror-compare-nosuchfromsection','s:45:\"There is no section $1 in the \'from\' content.\";'),
+('en','messages:apierror-compare-nosuchtosection','s:43:\"There is no section $1 in the \'to\' content.\";'),
+('en','messages:apierror-compare-notext','s:61:\"Parameter $1 cannot be used without $2.\";'),
+('en','messages:apierror-compare-notorevision','s:83:\"No \'to\' revision. Specify torev, totitle, or toid.\";'),
+('en','messages:apierror-compare-relative-to-deleted','s:67:\"Cannot use torelative=$1 relative to a deleted revision.\";'),
+('en','messages:apierror-compare-relative-to-nothing','s:63:\"No \'from\' revision for torelative to be relative to.\";'),
+('en','messages:apierror-concurrency-limit','s:105:\"A concurrency limit has been exceeded. Please wait for each request to return before submitting the next.\";'),
+('en','messages:apierror-contentmodel-mismatch','s:129:\"The content you supplied has $1 content model, which differs from the current content model of the page $2.\";'),
+('en','messages:apierror-contentserializationexception','s:32:\"Content serialization failed: $1\";'),
+('en','messages:apierror-contenttoobig','s:95:\"The content you supplied exceeds the article size limit of $1 {{PLURAL:$1|kibibyte|kibibytes}}.\";'),
+('en','messages:apierror-copyuploadbaddomain','s:48:\"Uploads by URL are not allowed from this domain.\";'),
+('en','messages:apierror-copyuploadbadurl','s:33:\"Upload not allowed from this URL.\";'),
+('en','messages:apierror-create-titleexists','s:58:\"Existing titles can\'t be protected with create.\";'),
+('en','messages:apierror-csp-report','s:32:\"Error processing CSP report: $1.\";'),
+('en','messages:apierror-deletedrevs-param-not-1-2','s:59:\"The $1 parameter cannot be used in modes 1 or 2.\";'),
+('en','messages:apierror-deletedrevs-param-not-3','s:53:\"The $1 parameter cannot be used in mode 3.\";'),
+('en','messages:apierror-edit-invalidredirect','s:90:\"Cannot edit $1 while following redirects, as target $2 is not valid.\";'),
+('en','messages:apierror-emptynewsection','s:44:\"Creating empty new sections is not possible.\";'),
+('en','messages:apierror-emptypage','s:41:\"Creating new, empty pages is not allowed.\";'),
+('en','messages:apierror-exceptioncaught','s:25:\"[$1] Exception caught: $2\";'),
+('en','messages:apierror-exceptioncaughttype','s:32:\"[$1] Caught exception of type $2\";'),
+('en','messages:apierror-filedoesnotexist','s:20:\"File does not exist.\";'),
+('en','messages:apierror-fileexists-sharedrepo-perm','s:106:\"The target file exists on a shared repository. Use the ignorewarnings parameter to override it.\";'),
+('en','messages:apierror-filenopath','s:27:\"Cannot get local file path.\";'),
+('en','messages:apierror-filetypecannotberotated','s:28:\"File type cannot be rotated.\";'),
+('en','messages:apierror-formatphp','s:110:\"This response cannot be represented using format=php. See https://phabricator.wikimedia.org/T68776.\";'),
+('en','messages:apierror-imageusage-badtitle','s:43:\"The title for $1 must be a file.\";'),
+('en','messages:apierror-import-unknownerror','s:28:\"Unknown error on import: $1.\";'),
+('en','messages:apierror-integeroutofrange-abovebotmax','s:64:\"$1 may not be over $2 (set to $3) for bots or sysops.\";'),
+('en','messages:apierror-integeroutofrange-abovemax','s:55:\"$1 may not be over $2 (set to $3) for users.\";'),
+('en','messages:apierror-integeroutofrange-belowminimum','s:50:\"$1 may not be less than $2 (set to $3).\";'),
+('en','messages:apierror-invalid-chunk','s:60:\"Offset plus current chunk is greater than claimed file size.\";'),
+('en','messages:apierror-invalid-file-key','s:21:\"Not a valid file key.\";'),
+('en','messages:apierror-invalidcategory','s:43:\"The category name you entered is not valid.\";'),
+('en','messages:apierror-invalidexpiry','s:25:\"Invalid expiry time \"$1\".\";'),
+('en','messages:apierror-invalidlang','s:50:\"Invalid language code for parameter $1.\";'),
+('en','messages:apierror-invalidmethod','s:48:\"Invalid HTTP method. Consider using GET or POST.\";'),
+('en','messages:apierror-invalidoldimage','s:56:\"The oldimage parameter has an invalid format.\";'),
+('en','messages:apierror-invalidparammix','s:57:\"The {{PLURAL:$2|parameters}} $1 can not be used together.\";'),
+('en','messages:apierror-invalidparammix-cannotusewith','s:62:\"The $1 parameter cannot be used with $2.\";'),
+('en','messages:apierror-invalidparammix-mustusewith','s:64:\"The $1 parameter may only be used with $2.\";'),
+('en','messages:apierror-invalidparammix-parse-new-section','s:166:\"section=new cannot be combined with the oldid, pageid or page parameters. Please use title and text.\";'),
+('en','messages:apierror-invalidsection','s:78:\"The section parameter must be a valid section ID or new.\";'),
+('en','messages:apierror-invalidsha1base36hash','s:42:\"The SHA1Base36 hash provided is not valid.\";'),
+('en','messages:apierror-invalidsha1hash','s:36:\"The SHA1 hash provided is not valid.\";'),
+('en','messages:apierror-invalidtitle','s:15:\"Bad title \"$1\".\";'),
+('en','messages:apierror-invalidurlparam','s:59:\"Invalid value for $1urlparam ($2=$3).\";'),
+('en','messages:apierror-invaliduser','s:22:\"Invalid username \"$1\".\";'),
+('en','messages:apierror-invaliduserid','s:35:\"User ID $1 is not valid.\";'),
+('en','messages:apierror-maxbytes','s:73:\"Parameter $1 cannot be longer than $2 {{PLURAL:$2|byte|bytes}}\";'),
+('en','messages:apierror-maxchars','s:83:\"Parameter $1 cannot be longer than $2 {{PLURAL:$2|character|characters}}\";'),
+('en','messages:apierror-maxlag','s:55:\"Waiting for $2: $1 {{PLURAL:$1|second|seconds}} lagged.\";'),
+('en','messages:apierror-maxlag-generic','s:70:\"Waiting for a database server: $1 {{PLURAL:$1|second|seconds}} lagged.\";'),
+('en','messages:apierror-mimesearchdisabled','s:38:\"MIME search is disabled in Miser Mode.\";'),
+('en','messages:apierror-missingcontent-pageid','s:31:\"Missing content for page ID $1.\";'),
+('en','messages:apierror-missingcontent-revid','s:35:\"Missing content for revision ID $1.\";'),
+('en','messages:apierror-missingcontent-revid-role','s:47:\"Missing content for revision ID $1 for role $2.\";'),
+('en','messages:apierror-missingparam','s:40:\"The $1 parameter must be set.\";'),
+('en','messages:apierror-missingparam-at-least-one-of','s:74:\"{{PLURAL:$2|The parameter|At least one of the parameters}} $1 is required.\";'),
+('en','messages:apierror-missingparam-one-of','s:65:\"{{PLURAL:$2|The parameter|One of the parameters}} $1 is required.\";'),
+('en','messages:apierror-missingrev-pageid','s:34:\"No current revision of page ID $1.\";'),
+('en','messages:apierror-missingrev-title','s:32:\"No current revision of title $1.\";'),
+('en','messages:apierror-missingtitle','s:37:\"The page you specified doesn\'t exist.\";'),
+('en','messages:apierror-missingtitle-byname','s:26:\"The page $1 doesn\'t exist.\";'),
+('en','messages:apierror-missingtitle-createonly','s:60:\"Missing titles can only be protected with create.\";'),
+('en','messages:apierror-moduledisabled','s:43:\"The $1 module has been disabled.\";'),
+('en','messages:apierror-multival-only-one-of','s:73:\"{{PLURAL:$3|Only|Only one of}} $2 is allowed for parameter $1.\";'),
+('en','messages:apierror-multpages','s:50:\"$1 may only be used with a single page.\";'),
+('en','messages:apierror-mustbeloggedin','s:28:\"You must be logged in to $1.\";'),
+('en','messages:apierror-mustbeloggedin-changeauth','s:52:\"You must be logged in to change authentication data.\";'),
+('en','messages:apierror-mustbeloggedin-generic','s:22:\"You must be logged in.\";'),
+('en','messages:apierror-mustbeloggedin-linkaccounts','s:39:\"You must be logged in to link accounts.\";'),
+('en','messages:apierror-mustbeloggedin-removeauth','s:52:\"You must be logged in to remove authentication data.\";'),
+('en','messages:apierror-mustbeloggedin-uploadstash','s:54:\"The upload stash is only available to logged-in users.\";'),
+('en','messages:apierror-mustbeposted','s:49:\"The $1 module requires a POST request.\";'),
+('en','messages:apierror-mustpostparams','s:118:\"The following {{PLURAL:$2|parameter was|parameters were}} found in the query string, but must be in the POST body: $1.\";'),
+('en','messages:apierror-no-direct-editing','s:72:\"Direct editing via API is not supported for content model $1 used by $2.\";'),
+('en','messages:apierror-noapiwrite','s:49:\"Editing of this wiki through the API is disabled.\";'),
+('en','messages:apierror-nochanges','s:26:\"No changes were requested.\";'),
+('en','messages:apierror-nodeleteablefile','s:32:\"No such old version of the file.\";'),
+('en','messages:apierror-noedit','s:40:\"You don\'t have permission to edit pages.\";'),
+('en','messages:apierror-noedit-anon','s:33:\"Anonymous users can\'t edit pages.\";'),
+('en','messages:apierror-noimageredirect','s:52:\"You don\'t have permission to create image redirects.\";'),
+('en','messages:apierror-noimageredirect-anon','s:45:\"Anonymous users can\'t create image redirects.\";'),
+('en','messages:apierror-nosuchlogid','s:33:\"There is no log entry with ID $1.\";'),
+('en','messages:apierror-nosuchpageid','s:28:\"There is no page with ID $1.\";'),
+('en','messages:apierror-nosuchrcid','s:37:\"There is no recent change with ID $1.\";'),
+('en','messages:apierror-nosuchrevid','s:32:\"There is no revision with ID $1.\";'),
+('en','messages:apierror-nosuchsection','s:23:\"There is no section $1.\";'),
+('en','messages:apierror-nosuchsection-what','s:29:\"There is no section $1 in $2.\";'),
+('en','messages:apierror-nosuchuserid','s:28:\"There is no user with ID $1.\";'),
+('en','messages:apierror-notarget','s:54:\"You have not specified a valid target for this action.\";'),
+('en','messages:apierror-notpatrollable','s:52:\"The revision r$1 can\'t be patrolled as it\'s too old.\";'),
+('en','messages:apierror-nouploadmodule','s:21:\"No upload module set.\";'),
+('en','messages:apierror-opensearch-json-warnings','s:57:\"Warnings cannot be represented in OpenSearch JSON format.\";'),
+('en','messages:apierror-pagecannotexist','s:37:\"Namespace doesn\'t allow actual pages.\";'),
+('en','messages:apierror-pagedeleted','s:58:\"The page has been deleted since you fetched its timestamp.\";'),
+('en','messages:apierror-pagelang-disabled','s:60:\"Changing the language of a page is not allowed on this wiki.\";'),
+('en','messages:apierror-paramempty','s:45:\"The parameter $1 may not be empty.\";'),
+('en','messages:apierror-parsetree-notwikitext','s:65:\"prop=parsetree is only supported for wikitext content.\";'),
+('en','messages:apierror-parsetree-notwikitext-title','s:91:\"prop=parsetree is only supported for wikitext content. $1 uses content model $2.\";'),
+('en','messages:apierror-pastexpiry','s:32:\"Expiry time \"$1\" is in the past.\";'),
+('en','messages:apierror-permissiondenied','s:32:\"You don\'t have permission to $1.\";'),
+('en','messages:apierror-permissiondenied-generic','s:18:\"Permission denied.\";'),
+('en','messages:apierror-permissiondenied-patrolflag','s:97:\"You need the patrol or patrolmarks right to request the patrolled flag.\";'),
+('en','messages:apierror-permissiondenied-unblock','s:43:\"You don\'t have permission to unblock users.\";'),
+('en','messages:apierror-prefixsearchdisabled','s:40:\"Prefix search is disabled in Miser Mode.\";'),
+('en','messages:apierror-promised-nonwrite-api','s:99:\"The Promise-Non-Write-API-Action HTTP header cannot be sent to write-mode API modules.\";'),
+('en','messages:apierror-protect-invalidaction','s:29:\"Invalid protection type \"$1\".\";'),
+('en','messages:apierror-protect-invalidlevel','s:30:\"Invalid protection level \"$1\".\";'),
+('en','messages:apierror-ratelimited','s:69:\"You\'ve exceeded your rate limit. Please wait some time and try again.\";'),
+('en','messages:apierror-readapidenied','s:44:\"You need read permission to use this module.\";'),
+('en','messages:apierror-readonly','s:40:\"The wiki is currently in read-only mode.\";'),
+('en','messages:apierror-reauthenticate','s:75:\"You have not authenticated recently in this session, please reauthenticate.\";'),
+('en','messages:apierror-redirect-appendonly','s:174:\"You have attempted to edit using the redirect-following mode, which must be used in conjunction with section=new, prependtext, or appendtext.\";'),
+('en','messages:apierror-revdel-mutuallyexclusive','s:74:\"The same field cannot be used in both hide and show.\";'),
+('en','messages:apierror-revdel-needtarget','s:48:\"A target title is required for this RevDel type.\";'),
+('en','messages:apierror-revdel-paramneeded','s:74:\"At least one value is required for hide and/or show.\";'),
+('en','messages:apierror-revisions-badid','s:50:\"No revision was found for parameter $1.\";'),
+('en','messages:apierror-revisions-norevids','s:244:\"The revids parameter may not be used with the list options ($1limit, $1startid, $1endid, $1dir=newer, $1user, $1excludeuser, $1start, and $1end).\";'),
+('en','messages:apierror-revisions-singlepage','s:313:\"titles, pageids or a generator was used to supply multiple pages, but the $1limit, $1startid, $1endid, $1dir=newer, $1user, $1excludeuser, $1start, and $1end parameters may only be used on a single page.\";'),
+('en','messages:apierror-revwrongpage','s:28:\"r$1 is not a revision of $2.\";'),
+('en','messages:apierror-searchdisabled','s:33:\"$1 search is disabled.\";'),
+('en','messages:apierror-sectionreplacefailed','s:32:\"Could not merge updated section.\";'),
+('en','messages:apierror-sectionsnotsupported','s:48:\"Sections are not supported for content model $1.\";'),
+('en','messages:apierror-sectionsnotsupported-what','s:33:\"Sections are not supported by $1.\";'),
+('en','messages:apierror-show','s:68:\"Incorrect parameter - mutually exclusive values may not be supplied.\";'),
+('en','messages:apierror-siteinfo-includealldenied','s:73:\"Cannot view all servers\' info unless $wgShowHostnames is true.\";'),
+('en','messages:apierror-sizediffdisabled','s:42:\"Size difference is disabled in Miser Mode.\";'),
+('en','messages:apierror-spamdetected','s:76:\"Your edit was refused because it contained a spam fragment: $1.\";'),
+('en','messages:apierror-specialpage-cantexecute','s:67:\"You don\'t have permission to view the results of this special page.\";'),
+('en','messages:apierror-stashedfilenotfound','s:41:\"Could not find the file in the stash: $1.\";'),
+('en','messages:apierror-stashedit-missingtext','s:42:\"No stashed text found with the given hash.\";'),
+('en','messages:apierror-stashexception','s:2:\"$1\";'),
+('en','messages:apierror-stashfailed-complete','s:62:\"Chunked upload is already completed, check status for details.\";'),
+('en','messages:apierror-stashfailed-nosession','s:40:\"No chunked upload session with this key.\";'),
+('en','messages:apierror-stashfilestorage','s:39:\"Could not store upload in the stash: $1\";'),
+('en','messages:apierror-stashinvalidfile','s:21:\"Invalid stashed file.\";'),
+('en','messages:apierror-stashnosuchfilekey','s:20:\"No such filekey: $1.\";'),
+('en','messages:apierror-stashpathinvalid','s:53:\"File key of improper format or otherwise invalid: $1.\";'),
+('en','messages:apierror-stashwrongowner','s:15:\"Wrong owner: $1\";'),
+('en','messages:apierror-stashzerolength','s:65:\"File is of zero length, and could not be stored in the stash: $1.\";'),
+('en','messages:apierror-systemblocked','s:49:\"You have been blocked automatically by MediaWiki.\";'),
+('en','messages:apierror-templateexpansion-notwikitext','s:84:\"Template expansion is only supported for wikitext content. $1 uses content model $2.\";'),
+('en','messages:apierror-toofewexpiries','s:102:\"$1 expiry {{PLURAL:$1|timestamp was|timestamps were}} provided where $2 {{PLURAL:$2|was|were}} needed.\";'),
+('en','messages:apierror-toomanyvalues','s:70:\"Too many values supplied for parameter $1. The limit is $2.\";'),
+('en','messages:apierror-unknownaction','s:55:\"The action specified, $1, is not recognized.\";'),
+('en','messages:apierror-unknownerror','s:20:\"Unknown error: \"$1\".\";'),
+('en','messages:apierror-unknownerror-editpage','s:27:\"Unknown EditPage error: $1.\";'),
+('en','messages:apierror-unknownerror-nocode','s:14:\"Unknown error.\";'),
+('en','messages:apierror-unknownformat','s:25:\"Unrecognized format \"$1\".\";'),
+('en','messages:apierror-unrecognizedparams','s:52:\"Unrecognized {{PLURAL:$2|parameter|parameters}}: $1.\";'),
+('en','messages:apierror-unrecognizedvalue','s:51:\"Unrecognized value for parameter $1: $2.\";'),
+('en','messages:apierror-unsupportedrepo','s:59:\"Local file repository does not support querying all images.\";'),
+('en','messages:apierror-upload-filekeyneeded','s:68:\"Must supply a filekey when offset is non-zero.\";'),
+('en','messages:apierror-upload-filekeynotallowed','s:63:\"Cannot supply a filekey when offset is 0.\";'),
+('en','messages:apierror-upload-inprogress','s:38:\"Upload from stash already in progress.\";'),
+('en','messages:apierror-upload-missingresult','s:25:\"No result in status data.\";'),
+('en','messages:apierror-urlparamnormal','s:44:\"Could not normalize image parameters for $1.\";'),
+('en','messages:apierror-visualeditor-badcachekey','s:43:\"No cached serialization found with that key\";'),
+('en','messages:apierror-visualeditor-difffailed','s:11:\"Diff failed\";'),
+('en','messages:apierror-visualeditor-docserver','s:58:\"Error contacting the Parsoid/RESTBase server (no response)\";'),
+('en','messages:apierror-visualeditor-docserver-http','s:54:\"Error contacting the Parsoid/RESTBase server (HTTP $1)\";'),
+('en','messages:apierror-visualeditor-docserver-http-error','s:48:\"Error contacting the Parsoid/RESTBase server: $1\";'),
+('en','messages:apierror-visualeditor-docserver-unconfigured','s:120:\"The VirtualRESTService for the document server is not defined; see https://www.mediawiki.org/wiki/Extension:VisualEditor\";'),
+('en','messages:apierror-visualeditor-latestnotfound','s:40:\"Could not find latest revision for title\";'),
+('en','messages:apierror-writeapidenied','s:53:\"You\'re not allowed to edit this wiki through the API.\";'),
+('en','messages:apihelp','s:8:\"API help\";'),
+('en','messages:apihelp-block-example-ip-simple','s:67:\"Block IP address 192.0.2.5 for three days with a reason.\";'),
+('en','messages:apihelp-block-example-user-complex','s:108:\"Block user Vandal indefinitely with a reason, and prevent new account creation and email sending.\";'),
+('en','messages:apihelp-block-param-actionrestrictions','s:103:\"List of actions to block the user from performing. Only applies when partial is set to true.\";'),
+('en','messages:apihelp-block-param-allowusertalk','s:142:\"Allow the user to edit their own talk page (depends on [[mw:Special:MyLanguage/Manual:$wgBlockAllowsUTEdit|$wgBlockAllowsUTEdit]]).\";'),
+('en','messages:apihelp-block-param-anononly','s:78:\"Block anonymous users only (i.e. disable anonymous edits for this IP address).\";'),
+('en','messages:apihelp-block-param-autoblock','s:101:\"Automatically block the last used IP address, and any subsequent IP addresses they try to login from.\";'),
+('en','messages:apihelp-block-param-expiry','s:233:\"Expiry time. May be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). If set to infinite, indefinite, or never, the block will never expire.\";'),
+('en','messages:apihelp-block-param-hidename','s:81:\"Hide the username from the block log. (Requires the hideuser right).\";'),
+('en','messages:apihelp-block-param-namespacerestrictions','s:106:\"List of namespace IDs to block the user from editing. Only applies when partial is set to true.\";'),
+('en','messages:apihelp-block-param-nocreate','s:25:\"Prevent account creation.\";'),
+('en','messages:apihelp-block-param-noemail','s:95:\"Prevent user from sending email through the wiki. (Requires the blockemail right).\";'),
+('en','messages:apihelp-block-param-pagerestrictions','s:99:\"List of titles to block the user from editing. Only applies when partial is set to true.\";'),
+('en','messages:apihelp-block-param-partial','s:73:\"Block user from specific pages or namespaces rather than the entire site.\";'),
+('en','messages:apihelp-block-param-reason','s:17:\"Reason for block.\";'),
+('en','messages:apihelp-block-param-reblock','s:61:\"If the user is already blocked, overwrite the existing block.\";'),
+('en','messages:apihelp-block-param-tags','s:51:\"Change tags to apply to the entry in the block log.\";'),
+('en','messages:apihelp-block-param-user','s:14:\"User to block.\";'),
+('en','messages:apihelp-block-param-userid','s:49:\"Specify $1user=#ID instead.\";'),
+('en','messages:apihelp-block-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-block-param-watchuser','s:53:\"Watch the user\'s or IP address\'s user and talk pages.\";'),
+('en','messages:apihelp-block-summary','s:13:\"Block a user.\";'),
+('en','messages:apihelp-changeauthenticationdata-example-password','s:76:\"Attempt to change the current user\'s password to ExamplePassword.\";'),
+('en','messages:apihelp-changeauthenticationdata-summary','s:48:\"Change authentication data for the current user.\";'),
+('en','messages:apihelp-changecontentmodel-example','s:64:\"Change the main page to have the text content model\";'),
+('en','messages:apihelp-changecontentmodel-param-bot','s:46:\"Mark the content model change with a bot flag.\";'),
+('en','messages:apihelp-changecontentmodel-param-model','s:33:\"Content model of the new content.\";'),
+('en','messages:apihelp-changecontentmodel-param-pageid','s:99:\"Page ID of the page to change the contentmodel of. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-changecontentmodel-param-summary','s:33:\"Edit summary and log entry reason\";'),
+('en','messages:apihelp-changecontentmodel-param-tags','s:47:\"Change tags to apply to the log entry and edit.\";'),
+('en','messages:apihelp-changecontentmodel-param-title','s:98:\"Title of the page to change the contentmodel of. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-changecontentmodel-summary','s:34:\"Change the content model of a page\";'),
+('en','messages:apihelp-checktoken-example-simple','s:45:\"Test the validity of a csrf token.\";'),
+('en','messages:apihelp-checktoken-param-maxtokenage','s:45:\"Maximum allowed age of the token, in seconds.\";'),
+('en','messages:apihelp-checktoken-param-token','s:14:\"Token to test.\";'),
+('en','messages:apihelp-checktoken-param-type','s:27:\"Type of token being tested.\";'),
+('en','messages:apihelp-checktoken-summary','s:104:\"Check the validity of a token from [[Special:ApiHelp/query+tokens|action=query&meta=tokens]].\";'),
+('en','messages:apihelp-clearhasmsg-example-1','s:56:\"Clear the hasmsg flag for the current user.\";'),
+('en','messages:apihelp-clearhasmsg-summary','s:57:\"Clears the hasmsg flag for the current user.\";'),
+('en','messages:apihelp-clientlogin-example-login','s:112:\"Start the process of logging in to the wiki as user Example with password ExamplePassword.\";'),
+('en','messages:apihelp-clientlogin-example-login2','s:129:\"Continue logging in after a UI response for two-factor auth, supplying an OATHToken of 987654.\";'),
+('en','messages:apihelp-clientlogin-summary','s:46:\"Log in to the wiki using the interactive flow.\";'),
+('en','messages:apihelp-compare-example-1','s:39:\"Create a diff between revision 1 and 2.\";'),
+('en','messages:apihelp-compare-extended-description','s:114:\"A revision number, a page title, a page ID, text, or a relative reference for both \"from\" and \"to\" must be passed.\";'),
+('en','messages:apihelp-compare-param-fromcontentformat','s:84:\"Specify fromslots=main and use fromcontentformat-main instead.\";'),
+('en','messages:apihelp-compare-param-fromcontentformat-{slot}','s:64:\"Content serialization format of fromtext-{slot}.\";'),
+('en','messages:apihelp-compare-param-fromcontentmodel','s:83:\"Specify fromslots=main and use fromcontentmodel-main instead.\";'),
+('en','messages:apihelp-compare-param-fromcontentmodel-{slot}','s:116:\"Content model of fromtext-{slot}. If not supplied, it will be guessed based on the other parameters.\";'),
+('en','messages:apihelp-compare-param-fromid','s:25:\"First page ID to compare.\";'),
+('en','messages:apihelp-compare-param-frompst','s:59:\"Do a pre-save transform on fromtext-{slot}.\";'),
+('en','messages:apihelp-compare-param-fromrev','s:26:\"First revision to compare.\";'),
+('en','messages:apihelp-compare-param-fromsection','s:63:\"Only use the specified section of the specified \'from\' content.\";'),
+('en','messages:apihelp-compare-param-fromsection-{slot}','s:241:\"When fromtext-{slot} is the content of a single section, this is the section identifier. It will be merged into the revision specified by fromtitle, fromid or fromrev as if for a section edit.\";'),
+('en','messages:apihelp-compare-param-fromslots','s:326:\"Override content of the revision specified by fromtitle, fromid or fromrev.\n\nThis parameter specifies the slots that are to be modified. Use fromtext-{slot}, fromcontentmodel-{slot}, and fromcontentformat-{slot} to specify content for each slot.\";'),
+('en','messages:apihelp-compare-param-fromtext','s:75:\"Specify fromslots=main and use fromtext-main instead.\";'),
+('en','messages:apihelp-compare-param-fromtext-{slot}','s:78:\"Text of the specified slot. If omitted, the slot is removed from the revision.\";'),
+('en','messages:apihelp-compare-param-fromtitle','s:23:\"First title to compare.\";'),
+('en','messages:apihelp-compare-param-prop','s:35:\"Which pieces of information to get.\";'),
+('en','messages:apihelp-compare-param-slots','s:85:\"Return individual diffs for these slots, rather than one combined diff for all slots.\";'),
+('en','messages:apihelp-compare-param-tocontentformat','s:80:\"Specify toslots=main and use tocontentformat-main instead.\";'),
+('en','messages:apihelp-compare-param-tocontentformat-{slot}','s:62:\"Content serialization format of totext-{slot}.\";'),
+('en','messages:apihelp-compare-param-tocontentmodel','s:79:\"Specify toslots=main and use tocontentmodel-main instead.\";'),
+('en','messages:apihelp-compare-param-tocontentmodel-{slot}','s:114:\"Content model of totext-{slot}. If not supplied, it will be guessed based on the other parameters.\";'),
+('en','messages:apihelp-compare-param-toid','s:26:\"Second page ID to compare.\";'),
+('en','messages:apihelp-compare-param-topst','s:45:\"Do a pre-save transform on totext.\";'),
+('en','messages:apihelp-compare-param-torelative','s:165:\"Use a revision relative to the revision determined from fromtitle, fromid or fromrev. All of the other \'to\' options will be ignored.\";'),
+('en','messages:apihelp-compare-param-torev','s:27:\"Second revision to compare.\";'),
+('en','messages:apihelp-compare-param-tosection','s:61:\"Only use the specified section of the specified \'to\' content.\";'),
+('en','messages:apihelp-compare-param-tosection-{slot}','s:233:\"When totext-{slot} is the content of a single section, this is the section identifier. It will be merged into the revision specified by totitle, toid or torev as if for a section edit.\";'),
+('en','messages:apihelp-compare-param-toslots','s:314:\"Override content of the revision specified by totitle, toid or torev.\n\nThis parameter specifies the slots that are to be modified. Use totext-{slot}, tocontentmodel-{slot}, and tocontentformat-{slot} to specify content for each slot.\";'),
+('en','messages:apihelp-compare-param-totext','s:71:\"Specify toslots=main and use totext-main instead.\";'),
+('en','messages:apihelp-compare-param-totext-{slot}','s:78:\"Text of the specified slot. If omitted, the slot is removed from the revision.\";'),
+('en','messages:apihelp-compare-param-totitle','s:24:\"Second title to compare.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-comment','s:179:\"The comment on the \'from\' and \'to\' revisions. If the comment has been revision deleted, a fromcommenthidden or tocommenthidden property will be returned.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-diff','s:14:\"The diff HTML.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-diffsize','s:36:\"The size of the diff HTML, in bytes.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-ids','s:59:\"The page and revision IDs of the \'from\' and \'to\' revisions.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-parsedcomment','s:186:\"The parsed comment on the \'from\' and \'to\' revisions. If the comment has been revision deleted, a fromcommenthidden or tocommenthidden property will be returned.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-rel','s:75:\"The revision IDs of the revision previous to \'from\' and after \'to\', if any.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-size','s:42:\"The size of the \'from\' and \'to\' revisions.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-title','s:49:\"The page titles of the \'from\' and \'to\' revisions.\";'),
+('en','messages:apihelp-compare-paramvalue-prop-user','s:179:\"The user name and ID of the \'from\' and \'to\' revisions. If the user has been revision deleted, a fromuserhidden or touserhidden property will be returned.\";'),
+('en','messages:apihelp-compare-summary','s:37:\"Get the difference between two pages.\";'),
+('en','messages:apihelp-createaccount-example-create','s:103:\"Start the process of creating the user Example with the password ExamplePassword.\";'),
+('en','messages:apihelp-createaccount-param-preservestate','s:349:\"If [[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]] returned true for hasprimarypreservedstate, requests marked as primary-required should be omitted. If it returned a non-empty value for preservedusername, that username must be used for the username parameter.\";'),
+('en','messages:apihelp-createaccount-summary','s:26:\"Create a new user account.\";'),
+('en','messages:apihelp-cspreport-param-reportonly','s:71:\"Mark as being a report from a monitoring policy, not an enforced policy\";'),
+('en','messages:apihelp-cspreport-param-source','s:56:\"What generated the CSP header that triggered this report\";'),
+('en','messages:apihelp-cspreport-summary','s:166:\"Used by browsers to report violations of the Content Security Policy. This module should never be used, except when used automatically by a CSP compliant web browser.\";'),
+('en','messages:apihelp-delete-example-reason','s:78:\"Delete the Main Page with the reason Preparing for move.\";'),
+('en','messages:apihelp-delete-example-simple','s:32:\"Delete the Main Page.\";'),
+('en','messages:apihelp-delete-param-deletetalk','s:35:\"Delete the talk page, if it exists.\";'),
+('en','messages:apihelp-delete-param-oldimage','s:134:\"The name of the old image to delete as provided by [[Special:ApiHelp/query+imageinfo|action=query&prop=imageinfo&iiprop=archivename]].\";'),
+('en','messages:apihelp-delete-param-pageid','s:79:\"Page ID of the page to delete. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-delete-param-reason','s:84:\"Reason for the deletion. If not set, an automatically generated reason will be used.\";'),
+('en','messages:apihelp-delete-param-tags','s:54:\"Change tags to apply to the entry in the deletion log.\";'),
+('en','messages:apihelp-delete-param-title','s:78:\"Title of the page to delete. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-delete-param-unwatch','s:50:\"Remove the page from the current user\'s watchlist.\";'),
+('en','messages:apihelp-delete-param-watch','s:45:\"Add the page to the current user\'s watchlist.\";'),
+('en','messages:apihelp-delete-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-delete-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-delete-summary','s:14:\"Delete a page.\";'),
+('en','messages:apihelp-disabled-summary','s:30:\"This module has been disabled.\";'),
+('en','messages:apihelp-edit-example-edit','s:12:\"Edit a page.\";'),
+('en','messages:apihelp-edit-example-prepend','s:47:\"Prepend __NOTOC__ to a page.\";'),
+('en','messages:apihelp-edit-example-undo','s:52:\"Undo revisions 13579 through 13585 with autosummary.\";'),
+('en','messages:apihelp-edit-param-appendtext','s:127:\"Add this text to the end of the page. Overrides $1text.\n\nUse $1section=new to append a new section, rather than this parameter.\";'),
+('en','messages:apihelp-edit-param-baserevid','s:211:\"ID of the base revision, used to detect edit conflicts. May be obtained through [[Special:ApiHelp/query+revisions|action=query&prop=revisions]]. Self-conflicts cause the edit to fail unless basetimestamp is set.\";'),
+('en','messages:apihelp-edit-param-basetimestamp','s:196:\"Timestamp of the base revision, used to detect edit conflicts. May be obtained through [[Special:ApiHelp/query+revisions|action=query&prop=revisions&rvprop=timestamp]]. Self-conflicts are ignored.\";'),
+('en','messages:apihelp-edit-param-bot','s:29:\"Mark this edit as a bot edit.\";'),
+('en','messages:apihelp-edit-param-contentformat','s:53:\"Content serialization format used for the input text.\";'),
+('en','messages:apihelp-edit-param-contentmodel','s:33:\"Content model of the new content.\";'),
+('en','messages:apihelp-edit-param-createonly','s:41:\"Don\'t edit the page if it exists already.\";'),
+('en','messages:apihelp-edit-param-md5','s:159:\"The MD5 hash of the $1text parameter, or the $1prependtext and $1appendtext parameters concatenated. If set, the edit won\'t be done unless the hash is correct.\";'),
+('en','messages:apihelp-edit-param-minor','s:31:\"Mark this edit as a minor edit.\";'),
+('en','messages:apihelp-edit-param-nocreate','s:41:\"Throw an error if the page doesn\'t exist.\";'),
+('en','messages:apihelp-edit-param-notminor','s:100:\"Do not mark this edit as a minor edit even if the \"{{int:tog-minordefault}}\" user preference is set.\";'),
+('en','messages:apihelp-edit-param-pageid','s:77:\"Page ID of the page to edit. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-edit-param-prependtext','s:61:\"Add this text to the beginning of the page. Overrides $1text.\";'),
+('en','messages:apihelp-edit-param-recreate','s:71:\"Override any errors about the page having been deleted in the meantime.\";'),
+('en','messages:apihelp-edit-param-redirect','s:32:\"Automatically resolve redirects.\";'),
+('en','messages:apihelp-edit-param-section','s:142:\"Section identifier. 0 for the top section, new for a new section. Often a positive integer, but can also be non-numeric.\";'),
+('en','messages:apihelp-edit-param-sectiontitle','s:28:\"The title for a new section.\";'),
+('en','messages:apihelp-edit-param-starttimestamp','s:242:\"Timestamp when the editing process began, used to detect edit conflicts. An appropriate value may be obtained using [[Special:ApiHelp/main|curtimestamp]] when beginning the edit process (e.g. when loading the page content to edit).\";'),
+('en','messages:apihelp-edit-param-summary','s:82:\"Edit summary. Also section title when $1section=new and $1sectiontitle is not set.\";'),
+('en','messages:apihelp-edit-param-tags','s:37:\"Change tags to apply to the revision.\";'),
+('en','messages:apihelp-edit-param-text','s:13:\"Page content.\";'),
+('en','messages:apihelp-edit-param-title','s:76:\"Title of the page to edit. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-edit-param-token','s:94:\"The token should always be sent as the last parameter, or at least after the $1text parameter.\";'),
+('en','messages:apihelp-edit-param-undo','s:69:\"Undo this revision. Overrides $1text, $1prependtext and $1appendtext.\";'),
+('en','messages:apihelp-edit-param-undoafter','s:79:\"Undo all revisions from $1undo to this one. If not set, just undo one revision.\";'),
+('en','messages:apihelp-edit-param-unwatch','s:50:\"Remove the page from the current user\'s watchlist.\";'),
+('en','messages:apihelp-edit-param-watch','s:45:\"Add the page to the current user\'s watchlist.\";'),
+('en','messages:apihelp-edit-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-edit-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-edit-summary','s:22:\"Create and edit pages.\";'),
+('en','messages:apihelp-emailuser-example-email','s:80:\"Send an email to the user WikiSysop with the text Content.\";'),
+('en','messages:apihelp-emailuser-param-ccme','s:31:\"Send a copy of this mail to me.\";'),
+('en','messages:apihelp-emailuser-param-subject','s:15:\"Subject header.\";'),
+('en','messages:apihelp-emailuser-param-target','s:26:\"User to send the email to.\";'),
+('en','messages:apihelp-emailuser-param-text','s:11:\"Email body.\";'),
+('en','messages:apihelp-emailuser-summary','s:13:\"Email a user.\";'),
+('en','messages:apihelp-expandtemplates-example-simple','s:68:\"Expand the wikitext and similar variables.\";'),
+('en','messages:apihelp-expandtemplates-param-showstrategykeys','s:71:\"Whether to include internal merge strategy information in jsconfigvars.\";'),
+('en','messages:apihelp-expandtemplates-param-text','s:20:\"Wikitext to convert.\";'),
+('en','messages:apihelp-expandtemplates-param-title','s:18:\"Title of the page.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-categories','s:84:\"Any categories present in the input that are not represented in the wikitext output.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-encodedjsconfigvars','s:83:\"Gives the JavaScript configuration variables specific to the page as a JSON string.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-jsconfigvars','s:66:\"Gives the JavaScript configuration variables specific to the page.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-modules','s:203:\"Any ResourceLoader modules that parser functions have requested be added to the output. Either jsconfigvars or encodedjsconfigvars must be requested jointly with modules.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-parsetree','s:32:\"The XML parse tree of the input.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-properties','s:64:\"Page properties defined by expanded magic words in the wikitext.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-ttl','s:72:\"The maximum time after which caches of the result should be invalidated.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-volatile','s:82:\"Whether the output is volatile and should not be reused elsewhere within the page.\";'),
+('en','messages:apihelp-expandtemplates-paramvalue-prop-wikitext','s:22:\"The expanded wikitext.\";'),
+('en','messages:apihelp-expandtemplates-summary','s:38:\"Expands all templates within wikitext.\";'),
+('en','messages:apihelp-feedcontributions-example-simple','s:49:\"Return contributions for user Example.\";'),
+('en','messages:apihelp-feedcontributions-param-deletedonly','s:32:\"Show only deleted contributions.\";'),
+('en','messages:apihelp-feedcontributions-param-feedformat','s:23:\"The format of the feed.\";'),
+('en','messages:apihelp-feedcontributions-param-hideminor','s:17:\"Hide minor edits.\";'),
+('en','messages:apihelp-feedcontributions-param-month','s:25:\"From month (and earlier).\";'),
+('en','messages:apihelp-feedcontributions-param-namespace','s:47:\"Which namespace to filter the contributions by.\";'),
+('en','messages:apihelp-feedcontributions-param-newonly','s:40:\"Only show edits that are page creations.\";'),
+('en','messages:apihelp-feedcontributions-param-showsizediff','s:43:\"Show the size difference between revisions.\";'),
+('en','messages:apihelp-feedcontributions-param-tagfilter','s:42:\"Filter contributions that have these tags.\";'),
+('en','messages:apihelp-feedcontributions-param-toponly','s:46:\"Only show edits that are the latest revisions.\";'),
+('en','messages:apihelp-feedcontributions-param-user','s:40:\"What users to get the contributions for.\";'),
+('en','messages:apihelp-feedcontributions-param-year','s:24:\"From year (and earlier).\";'),
+('en','messages:apihelp-feedcontributions-summary','s:36:\"Returns a user\'s contributions feed.\";'),
+('en','messages:apihelp-feedrecentchanges-example-30days','s:32:\"Show recent changes for 30 days.\";'),
+('en','messages:apihelp-feedrecentchanges-example-simple','s:20:\"Show recent changes.\";'),
+('en','messages:apihelp-feedrecentchanges-param-associated','s:44:\"Include associated (talk or main) namespace.\";'),
+('en','messages:apihelp-feedrecentchanges-param-days','s:29:\"Days to limit the results to.\";'),
+('en','messages:apihelp-feedrecentchanges-param-feedformat','s:23:\"The format of the feed.\";'),
+('en','messages:apihelp-feedrecentchanges-param-from','s:24:\"Show changes since then.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hideanons','s:37:\"Hide changes made by anonymous users.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hidebots','s:26:\"Hide changes made by bots.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hidecategorization','s:33:\"Hide category membership changes.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hideliu','s:38:\"Hide changes made by registered users.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hideminor','s:19:\"Hide minor changes.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hidemyself','s:38:\"Hide changes made by the current user.\";'),
+('en','messages:apihelp-feedrecentchanges-param-hidepatrolled','s:23:\"Hide patrolled changes.\";'),
+('en','messages:apihelp-feedrecentchanges-param-invert','s:36:\"All namespaces but the selected one.\";'),
+('en','messages:apihelp-feedrecentchanges-param-limit','s:36:\"Maximum number of results to return.\";'),
+('en','messages:apihelp-feedrecentchanges-param-namespace','s:34:\"Namespace to limit the results to.\";'),
+('en','messages:apihelp-feedrecentchanges-param-showlinkedto','s:58:\"Show changes on pages linked to the selected page instead.\";'),
+('en','messages:apihelp-feedrecentchanges-param-tagfilter','s:14:\"Filter by tag.\";'),
+('en','messages:apihelp-feedrecentchanges-param-target','s:49:\"Show only changes on pages linked from this page.\";'),
+('en','messages:apihelp-feedrecentchanges-summary','s:30:\"Returns a recent changes feed.\";'),
+('en','messages:apihelp-feedwatchlist-example-all6hrs','s:54:\"Show all changes to watched pages in the past 6 hours.\";'),
+('en','messages:apihelp-feedwatchlist-example-default','s:24:\"Show the watchlist feed.\";'),
+('en','messages:apihelp-feedwatchlist-param-feedformat','s:23:\"The format of the feed.\";'),
+('en','messages:apihelp-feedwatchlist-param-hours','s:52:\"List pages modified within this many hours from now.\";'),
+('en','messages:apihelp-feedwatchlist-param-linktosections','s:46:\"Link directly to changed sections if possible.\";'),
+('en','messages:apihelp-feedwatchlist-summary','s:25:\"Returns a watchlist feed.\";'),
+('en','messages:apihelp-filerevert-example-revert','s:77:\"Revert Wiki.png to the version of 2011-03-05T15:27:40Z.\";'),
+('en','messages:apihelp-filerevert-param-archivename','s:42:\"Archive name of the revision to revert to.\";'),
+('en','messages:apihelp-filerevert-param-comment','s:15:\"Upload comment.\";'),
+('en','messages:apihelp-filerevert-param-filename','s:42:\"Target filename, without the File: prefix.\";'),
+('en','messages:apihelp-filerevert-summary','s:32:\"Revert a file to an old version.\";'),
+('en','messages:apihelp-format-example-generic','s:41:\"Return the query result in the $1 format.\";'),
+('en','messages:apihelp-format-param-wrappedhtml','s:86:\"Return the pretty-printed HTML and associated ResourceLoader modules as a JSON object.\";'),
+('en','messages:apihelp-help-example-help','s:32:\"Help for the help module itself.\";'),
+('en','messages:apihelp-help-example-main','s:25:\"Help for the main module.\";'),
+('en','messages:apihelp-help-example-query','s:30:\"Help for two query submodules.\";'),
+('en','messages:apihelp-help-example-recursive','s:21:\"All help in one page.\";'),
+('en','messages:apihelp-help-example-submodules','s:56:\"Help for action=query and all its submodules.\";'),
+('en','messages:apihelp-help-param-helpformat','s:26:\"Format of the help output.\";'),
+('en','messages:apihelp-help-param-modules','s:159:\"Modules to display help for (values of the action and format parameters, or main). Can specify submodules with a +.\";'),
+('en','messages:apihelp-help-param-recursivesubmodules','s:40:\"Include help for submodules recursively.\";'),
+('en','messages:apihelp-help-param-submodules','s:48:\"Include help for submodules of the named module.\";'),
+('en','messages:apihelp-help-param-toc','s:47:\"Include a table of contents in the HTML output.\";'),
+('en','messages:apihelp-help-param-wrap','s:53:\"Wrap the output in a standard API response structure.\";'),
+('en','messages:apihelp-help-summary','s:39:\"Display help for the specified modules.\";'),
+('en','messages:apihelp-imagerotate-example-generator','s:72:\"Rotate all images in Category:Flip by 180 degrees.\";'),
+('en','messages:apihelp-imagerotate-example-simple','s:60:\"Rotate File:Example.png by 90 degrees.\";'),
+('en','messages:apihelp-imagerotate-param-rotation','s:34:\"Degrees to rotate image clockwise.\";'),
+('en','messages:apihelp-imagerotate-param-tags','s:45:\"Tags to apply to the entry in the upload log.\";'),
+('en','messages:apihelp-imagerotate-summary','s:26:\"Rotate one or more images.\";'),
+('en','messages:apihelp-import-example-import','s:72:\"Import [[meta:Help:ParserFunctions]] to namespace 100 with full history.\";'),
+('en','messages:apihelp-import-extended-description','s:140:\"Note that the HTTP POST must be done as a file upload (i.e. using multipart/form-data) when sending a file for the xml parameter.\";'),
+('en','messages:apihelp-import-param-assignknownusers','s:64:\"Assign edits to local users where the named user exists locally.\";'),
+('en','messages:apihelp-import-param-fullhistory','s:77:\"For interwiki imports: import the full history, not just the current version.\";'),
+('en','messages:apihelp-import-param-interwikipage','s:38:\"For interwiki imports: page to import.\";'),
+('en','messages:apihelp-import-param-interwikiprefix','s:128:\"For uploaded imports: interwiki prefix to apply to unknown user names (and known users if $1assignknownusers is set).\";'),
+('en','messages:apihelp-import-param-interwikisource','s:43:\"For interwiki imports: wiki to import from.\";'),
+('en','messages:apihelp-import-param-namespace','s:77:\"Import to this namespace. Cannot be used together with $1rootpage.\";'),
+('en','messages:apihelp-import-param-rootpage','s:84:\"Import as subpage of this page. Cannot be used together with $1namespace.\";'),
+('en','messages:apihelp-import-param-summary','s:25:\"Log entry import summary.\";'),
+('en','messages:apihelp-import-param-tags','s:99:\"Change tags to apply to the entry in the import log and to the null revision on the imported pages.\";'),
+('en','messages:apihelp-import-param-templates','s:61:\"For interwiki imports: import all included templates as well.\";'),
+('en','messages:apihelp-import-param-xml','s:18:\"Uploaded XML file.\";'),
+('en','messages:apihelp-import-summary','s:53:\"Import a page from another wiki, or from an XML file.\";'),
+('en','messages:apihelp-json-param-ascii','s:126:\"If specified, encodes all non-ASCII using hexadecimal escape sequences. Default when formatversion is 1.\";'),
+('en','messages:apihelp-json-param-callback','s:113:\"If specified, wraps the output into a given function call. For safety, all user-specific data will be restricted.\";'),
+('en','messages:apihelp-json-param-formatversion','s:17:\"Output formatting\";'),
+('en','messages:apihelp-json-param-utf8','s:190:\"If specified, encodes most (but not all) non-ASCII characters as UTF-8 instead of replacing them with hexadecimal escape sequences. Default when formatversion is not 1.\";'),
+('en','messages:apihelp-json-paramvalue-formatversion-1','s:94:\"Backwards-compatible format (XML-style booleans, * keys for content nodes, etc.).\";'),
+('en','messages:apihelp-json-paramvalue-formatversion-2','s:14:\"Modern format.\";'),
+('en','messages:apihelp-json-paramvalue-formatversion-latest','s:75:\"Use the latest format (currently 2), may change without warning.\";'),
+('en','messages:apihelp-json-summary','s:27:\"Output data in JSON format.\";'),
+('en','messages:apihelp-jsonfm-summary','s:50:\"Output data in JSON format (pretty-print in HTML).\";'),
+('en','messages:apihelp-link','s:25:\"[[Special:ApiHelp/$1|$2]]\";'),
+('en','messages:apihelp-linkaccount-example-link','s:67:\"Start the process of linking to an account from Example.\";'),
+('en','messages:apihelp-linkaccount-summary','s:64:\"Link an account from a third-party provider to the current user.\";'),
+('en','messages:apihelp-login-example-login','s:7:\"Log in.\";'),
+('en','messages:apihelp-login-extended-description','s:253:\"This action should only be used in combination with [[Special:BotPasswords]]; use for main-account login is deprecated and may fail without warning. To safely log in to the main account, use [[Special:ApiHelp/clientlogin|action=clientlogin]].\";'),
+('en','messages:apihelp-login-extended-description-nobotpasswords','s:140:\"This action is deprecated and may fail without warning. To safely log in, use [[Special:ApiHelp/clientlogin|action=clientlogin]].\";'),
+('en','messages:apihelp-login-param-domain','s:18:\"Domain (optional).\";'),
+('en','messages:apihelp-login-param-name','s:10:\"User name.\";'),
+('en','messages:apihelp-login-param-password','s:9:\"Password.\";'),
+('en','messages:apihelp-login-param-token','s:38:\"Login token obtained in first request.\";'),
+('en','messages:apihelp-login-summary','s:38:\"Log in and get authentication cookies.\";'),
+('en','messages:apihelp-logout-example-logout','s:25:\"Log the current user out.\";'),
+('en','messages:apihelp-logout-summary','s:31:\"Log out and clear session data.\";'),
+('en','messages:apihelp-main-extended-description','s:1339:\"
Testing: For ease of testing API requests, see [[Special:ApiSandbox]].
\";'), +('en','messages:apihelp-main-param-action','s:24:\"Which action to perform.\";'), +('en','messages:apihelp-main-param-assert','s:155:\"Verify that the user is logged in if set to user, not logged in if set to anon, or has the bot user right if bot.\";'), +('en','messages:apihelp-main-param-assertuser','s:42:\"Verify the current user is the named user.\";'), +('en','messages:apihelp-main-param-curtimestamp','s:44:\"Include the current timestamp in the result.\";'), +('en','messages:apihelp-main-param-errorformat','s:47:\"Format to use for warning and error text output\";'), +('en','messages:apihelp-main-param-errorlang','s:336:\"Language to use for warnings and errors. [[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]] with siprop=languages returns a list of language codes, or specify content to use this wiki\'s content language, or specify uselang to use the same value as the uselang parameter.\";'), +('en','messages:apihelp-main-param-errorsuselocal','s:95:\"If given, error texts will use locally-customized messages from the {{ns:MediaWiki}} namespace.\";'), +('en','messages:apihelp-main-param-format','s:25:\"The format of the output.\";'), +('en','messages:apihelp-main-param-maxage','s:101:\"Set themax-age HTTP cache control header to this many seconds. Errors are never cached.\";'),
+('en','messages:apihelp-main-param-maxlag','s:488:\"Maximum lag can be used when MediaWiki is installed on a database replicated cluster. To save actions causing any more site replication lag, this parameter can make the client wait until the replication lag is less than the specified value. In case of excessive lag, error code maxlag is returned with a message like Waiting for $host: $lag seconds lagged.Origin header exactly, so it has to be set to something like https://en.wikipedia.org or https://meta.wikimedia.org. If this parameter does not match the Origin header, a 403 response will be returned. If this parameter matches the Origin header and the origin is allowed, the Access-Control-Allow-Origin and Access-Control-Allow-Credentials headers will be set.\n\nFor non-authenticated requests, specify the value *. This will cause the Access-Control-Allow-Origin header to be set, but Access-Control-Allow-Credentials will be false and all user-specific data will be restricted.\";'),
+('en','messages:apihelp-main-param-requestid','s:91:\"Any value given here will be included in the response. May be used to distinguish requests.\";'),
+('en','messages:apihelp-main-param-responselanginfo','s:89:\"Include the languages used for uselang and errorlang in the result.\";'),
+('en','messages:apihelp-main-param-servedby','s:60:\"Include the hostname that served the request in the results.\";'),
+('en','messages:apihelp-main-param-smaxage','s:102:\"Set the s-maxage HTTP cache control header to this many seconds. Errors are never cached.\";'),
+('en','messages:apihelp-main-param-uselang','s:322:\"Language to use for message translations. [[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]] with siprop=languages returns a list of language codes, or specify user to use the current user\'s language preference, or specify content to use this wiki\'s content language.\";'),
+('en','messages:apihelp-main-param-variant','s:85:\"Variant of the language. Only works if the base language supports variant conversion.\";'),
+('en','messages:apihelp-main-paramvalue-errorformat-bc','s:100:\"Format used prior to MediaWiki 1.29. errorlang and errorsuselocal are ignored.\";'),
+('en','messages:apihelp-main-paramvalue-errorformat-html','s:4:\"HTML\";'),
+('en','messages:apihelp-main-paramvalue-errorformat-none','s:37:\"No text output, only the error codes.\";'),
+('en','messages:apihelp-main-paramvalue-errorformat-plaintext','s:54:\"Wikitext with HTML tags removed and entities replaced.\";'),
+('en','messages:apihelp-main-paramvalue-errorformat-raw','s:27:\"Message key and parameters.\";'),
+('en','messages:apihelp-main-paramvalue-errorformat-wikitext','s:18:\"Unparsed wikitext.\";'),
+('en','messages:apihelp-main-summary','s:0:\"\";'),
+('en','messages:apihelp-managetags-example-activate','s:90:\"Activate a tag named spam with the reason For use in edit patrolling\";'),
+('en','messages:apihelp-managetags-example-create','s:88:\"Create a tag named spam with the reason For use in edit patrolling\";'),
+('en','messages:apihelp-managetags-example-deactivate','s:84:\"Deactivate a tag named spam with the reason No longer required\";'),
+('en','messages:apihelp-managetags-example-delete','s:71:\"Delete the vandlaism tag with the reason Misspelt\";'),
+('en','messages:apihelp-managetags-param-ignorewarnings','s:68:\"Whether to ignore any warnings that are issued during the operation.\";'),
+('en','messages:apihelp-managetags-param-operation','s:379:\"Which operation to perform:\n;create:Create a new change tag for manual use.\n;delete:Remove a change tag from the database, including removing the tag from all revisions, recent change entries and log entries on which it is used.\n;activate:Activate a change tag, allowing users to apply it manually.\n;deactivate:Deactivate a change tag, preventing users from applying it manually.\";'),
+('en','messages:apihelp-managetags-param-reason','s:78:\"An optional reason for creating, deleting, activating or deactivating the tag.\";'),
+('en','messages:apihelp-managetags-param-tag','s:277:\"Tag to create, delete, activate or deactivate. For tag creation, the tag must not exist. For tag deletion, the tag must exist. For tag activation, the tag must exist and not be in use by an extension. For tag deactivation, the tag must be currently active and manually defined.\";'),
+('en','messages:apihelp-managetags-param-tags','s:60:\"Change tags to apply to the entry in the tag management log.\";'),
+('en','messages:apihelp-managetags-summary','s:49:\"Perform management tasks relating to change tags.\";'),
+('en','messages:apihelp-mergehistory-example-merge','s:71:\"Merge the entire history of Oldpage into Newpage.\";'),
+('en','messages:apihelp-mergehistory-example-merge-timestamp','s:116:\"Merge the page revisions of Oldpage dating up to 2015-12-31T04:37:41Z into Newpage.\";'),
+('en','messages:apihelp-mergehistory-param-from','s:102:\"Title of the page from which history will be merged. Cannot be used together with $1fromid.\";'),
+('en','messages:apihelp-mergehistory-param-fromid','s:102:\"Page ID of the page from which history will be merged. Cannot be used together with $1from.\";'),
+('en','messages:apihelp-mergehistory-param-reason','s:29:\"Reason for the history merge.\";'),
+('en','messages:apihelp-mergehistory-param-timestamp','s:208:\"Timestamp up to which revisions will be moved from the source page\'s history to the destination page\'s history. If omitted, the entire page history of the source page will be merged into the destination page.\";'),
+('en','messages:apihelp-mergehistory-param-to','s:98:\"Title of the page to which history will be merged. Cannot be used together with $1toid.\";'),
+('en','messages:apihelp-mergehistory-param-toid','s:98:\"Page ID of the page to which history will be merged. Cannot be used together with $1to.\";'),
+('en','messages:apihelp-mergehistory-summary','s:21:\"Merge page histories.\";'),
+('en','messages:apihelp-move-example-move','s:76:\"Move Badtitle to Goodtitle without leaving a redirect.\";'),
+('en','messages:apihelp-move-param-from','s:78:\"Title of the page to rename. Cannot be used together with $1fromid.\";'),
+('en','messages:apihelp-move-param-fromid','s:78:\"Page ID of the page to rename. Cannot be used together with $1from.\";'),
+('en','messages:apihelp-move-param-ignorewarnings','s:20:\"Ignore any warnings.\";'),
+('en','messages:apihelp-move-param-movesubpages','s:31:\"Rename subpages, if applicable.\";'),
+('en','messages:apihelp-move-param-movetalk','s:35:\"Rename the talk page, if it exists.\";'),
+('en','messages:apihelp-move-param-noredirect','s:24:\"Don\'t create a redirect.\";'),
+('en','messages:apihelp-move-param-reason','s:22:\"Reason for the rename.\";'),
+('en','messages:apihelp-move-param-tags','s:99:\"Change tags to apply to the entry in the move log and to the null revision on the destination page.\";'),
+('en','messages:apihelp-move-param-to','s:28:\"Title to rename the page to.\";'),
+('en','messages:apihelp-move-param-unwatch','s:67:\"Remove the page and the redirect from the current user\'s watchlist.\";'),
+('en','messages:apihelp-move-param-watch','s:62:\"Add the page and the redirect to the current user\'s watchlist.\";'),
+('en','messages:apihelp-move-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-move-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-move-summary','s:12:\"Move a page.\";'),
+('en','messages:apihelp-no-such-module','s:22:\"Module \"$1\" not found.\";'),
+('en','messages:apihelp-none-summary','s:15:\"Output nothing.\";'),
+('en','messages:apihelp-opensearch-example-te','s:40:\"Find pages beginning with Te.\";'),
+('en','messages:apihelp-opensearch-param-format','s:25:\"The format of the output.\";'),
+('en','messages:apihelp-opensearch-param-limit','s:36:\"Maximum number of results to return.\";'),
+('en','messages:apihelp-opensearch-param-namespace','s:90:\"Namespaces to search. Ignored if $1search begins with a valid namespace prefix.\";'),
+('en','messages:apihelp-opensearch-param-redirects','s:231:\"How to handle redirects:\n;return:Return the redirect itself.\n;resolve:Return the target page. May return fewer than $1limit results.\nFor historical reasons, the default is \"return\" for $1format=json and \"resolve\" for other formats.\";'),
+('en','messages:apihelp-opensearch-param-search','s:14:\"Search string.\";'),
+('en','messages:apihelp-opensearch-param-suggest','s:15:\"No longer used.\";'),
+('en','messages:apihelp-opensearch-param-warningsaserror','s:97:\"If warnings are raised with format=json, return an API error instead of ignoring them.\";'),
+('en','messages:apihelp-opensearch-summary','s:46:\"Search the wiki using the OpenSearch protocol.\";'),
+('en','messages:apihelp-options-example-change','s:60:\"Change skin and hideminor preferences.\";'),
+('en','messages:apihelp-options-example-complex','s:72:\"Reset all preferences, then set skin and nickname.\";'),
+('en','messages:apihelp-options-example-reset','s:22:\"Reset all preferences.\";'),
+('en','messages:apihelp-options-extended-description','s:183:\"Only options which are registered in core or in one of installed extensions, or options with keys prefixed with userjs- (intended to be used by user scripts), can be set.\";'),
+('en','messages:apihelp-options-param-change','s:358:\"List of changes, formatted name=value (e.g. skin=vector). If no value is given (not even an equals sign), e.g., optionname|otheroption|..., the option will be reset to its default value. If any value passed contains the pipe character (|), use the [[Special:ApiHelp/main#main/datatypes|alternative multiple-value separator]] for correct operation.\";'),
+('en','messages:apihelp-options-param-optionname','s:89:\"The name of the option that should be set to the value given by $1optionvalue.\";'),
+('en','messages:apihelp-options-param-optionvalue','s:62:\"The value for the option specified by $1optionname.\";'),
+('en','messages:apihelp-options-param-reset','s:40:\"Resets preferences to the site defaults.\";'),
+('en','messages:apihelp-options-param-resetkinds','s:76:\"List of types of options to reset when the $1reset option is set.\";'),
+('en','messages:apihelp-options-summary','s:39:\"Change preferences of the current user.\";'),
+('en','messages:apihelp-paraminfo-example-1','s:269:\"Show info for [[Special:ApiHelp/parse|action=parse]], [[Special:ApiHelp/jsonfm|format=jsonfm]], [[Special:ApiHelp/query+allpages|action=query&list=allpages]], and [[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]].\";'),
+('en','messages:apihelp-paraminfo-example-2','s:82:\"Show info for all submodules of [[Special:ApiHelp/query|action=query]].\";'),
+('en','messages:apihelp-paraminfo-param-formatmodules','s:101:\"List of format module names (value of format parameter). Use $1modules instead.\";'),
+('en','messages:apihelp-paraminfo-param-helpformat','s:23:\"Format of help strings.\";'),
+('en','messages:apihelp-paraminfo-param-mainmodule','s:97:\"Get information about the main (top-level) module as well. Use $1modules=main instead.\";'),
+('en','messages:apihelp-paraminfo-param-modules','s:241:\"List of module names (values of the action and format parameters, or main). Can specify submodules with a +, or all submodules with +*, or all submodules recursively with +**.\";'),
+('en','messages:apihelp-paraminfo-param-pagesetmodule','s:81:\"Get information about the pageset module (providing titles= and friends) as well.\";'),
+('en','messages:apihelp-paraminfo-param-querymodules','s:177:\"List of query module names (value of prop, meta or list parameter). Use $1modules=query+foo instead of $1querymodules=foo.\";'),
+('en','messages:apihelp-paraminfo-summary','s:37:\"Obtain information about API modules.\";'),
+('en','messages:apihelp-parse-example-page','s:13:\"Parse a page.\";'),
+('en','messages:apihelp-parse-example-summary','s:16:\"Parse a summary.\";'),
+('en','messages:apihelp-parse-example-text','s:15:\"Parse wikitext.\";'),
+('en','messages:apihelp-parse-example-texttitle','s:42:\"Parse wikitext, specifying the page title.\";'),
+('en','messages:apihelp-parse-extended-description','s:500:\"See the various prop-modules of [[Special:ApiHelp/query|action=query]] to get information from the current version of a page.\n\nThere are several ways to specify the text to parse:\n# Specify a page or revision, using $1page, $1pageid, or $1oldid.\n# Specify content explicitly, using $1text, $1title, $1revid, and $1contentmodel.\n# Specify only a summary to parse. $1prop should be given an empty value.\";'),
+('en','messages:apihelp-parse-param-contentformat','s:87:\"Content serialization format used for the input text. Only valid when used with $1text.\";'),
+('en','messages:apihelp-parse-param-contentmodel','s:159:\"Content model of the input text. If omitted, $1title must be specified, and default will be the model of the specified title. Only valid when used with $1text.\";'),
+('en','messages:apihelp-parse-param-disableeditsection','s:47:\"Omit edit section links from the parser output.\";'),
+('en','messages:apihelp-parse-param-disablelimitreport','s:68:\"Omit the limit report (\"NewPP limit report\") from the parser output.\";'),
+('en','messages:apihelp-parse-param-disablepp','s:44:\"Use $1disablelimitreport instead.\";'),
+('en','messages:apihelp-parse-param-disablestylededuplication','s:59:\"Do not deduplicate inline stylesheets in the parser output.\";'),
+('en','messages:apihelp-parse-param-disabletoc','s:33:\"Omit table of contents in output.\";'),
+('en','messages:apihelp-parse-param-effectivelanglinks','s:90:\"Includes language links supplied by extensions (for use with $1prop=langlinks).\";'),
+('en','messages:apihelp-parse-param-generatexml','s:106:\"Generate XML parse tree (requires content model $1; replaced by $2prop=parsetree).\";'),
+('en','messages:apihelp-parse-param-oldid','s:88:\"Parse the content of this revision. Overrides $1page and $1pageid.\";'),
+('en','messages:apihelp-parse-param-onlypst','s:165:\"Do a pre-save transform (PST) on the input, but don\'t parse it. Returns the same wikitext, after a PST has been applied. Only valid when used with $1text.\";'),
+('en','messages:apihelp-parse-param-page','s:102:\"Parse the content of this page. Cannot be used together with $1text and $1title.\";'),
+('en','messages:apihelp-parse-param-pageid','s:60:\"Parse the content of this page. Overrides $1page.\";'),
+('en','messages:apihelp-parse-param-preview','s:22:\"Parse in preview mode.\";'),
+('en','messages:apihelp-parse-param-prop','s:35:\"Which pieces of information to get:\";'),
+('en','messages:apihelp-parse-param-pst','s:87:\"Do a pre-save transform on the input before parsing it. Only valid when used with text.\";'),
+('en','messages:apihelp-parse-param-redirects','s:77:\"If $1page or $1pageid is set to a redirect, resolve it.\";'),
+('en','messages:apihelp-parse-param-revid','s:84:\"Revision ID, for {{REVISIONID}} and similar variables.\";'),
+('en','messages:apihelp-parse-param-section','s:240:\"Only parse the content of the section with this identifier.\n\nWhen new, parse $1text and $1sectiontitle as if adding a new section to the page.\n\nnew is allowed only when specifying text.\";'),
+('en','messages:apihelp-parse-param-sectionpreview','s:57:\"Parse in section preview mode (enables preview mode too).\";'),
+('en','messages:apihelp-parse-param-sectiontitle','s:151:\"New section title when section is new.\n\nUnlike page editing, this does not fall back to summary when omitted or empty.\";'),
+('en','messages:apihelp-parse-param-showstrategykeys','s:71:\"Whether to include internal merge strategy information in jsconfigvars.\";'),
+('en','messages:apihelp-parse-param-summary','s:17:\"Summary to parse.\";'),
+('en','messages:apihelp-parse-param-text','s:96:\"Text to parse. Use $1title or $1contentmodel to control the content model.\";'),
+('en','messages:apihelp-parse-param-title','s:130:\"Title of page the text belongs to. If omitted, $1contentmodel must be specified, and [[API]] will be used as the title.\";'),
+('en','messages:apihelp-parse-param-useskin','s:211:\"Apply the selected skin to the parser output. May affect the following properties: text, langlinks, headitems, modules, jsconfigvars, indicators.\";'),
+('en','messages:apihelp-parse-param-wrapoutputclass','s:43:\"CSS class to use to wrap the parser output.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-categories','s:44:\"Gives the categories in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-categorieshtml','s:41:\"Gives the HTML version of the categories.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-displaytitle','s:38:\"Adds the title of the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-encodedjsconfigvars','s:83:\"Gives the JavaScript configuration variables specific to the page as a JSON string.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-externallinks','s:48:\"Gives the external links in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-headhtml','s:141:\"Gives parsed doctype, opening <html>, <head> element and opening <body> of the page.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-headitems','s:64:\"Gives items to put in the <head> of the page.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-images','s:40:\"Gives the images in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-indicators','s:58:\"Gives the HTML of page status indicators used on the page.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-iwlinks','s:45:\"Gives interwiki links in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-jsconfigvars','s:110:\"Gives the JavaScript configuration variables specific to the page. To apply, use mw.config.set().\";'),
+('en','messages:apihelp-parse-paramvalue-prop-langlinks','s:48:\"Gives the language links in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-limitreportdata','s:103:\"Gives the limit report in a structured way. Gives no data, when $1disablelimitreport is set.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-limitreporthtml','s:103:\"Gives the HTML version of the limit report. Gives no data, when $1disablelimitreport is set.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-links','s:48:\"Gives the internal links in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-modules','s:211:\"Gives the ResourceLoader modules used on the page. To load, use mw.loader.using(). Either jsconfigvars or encodedjsconfigvars must be requested jointly with modules.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-parsetree','s:79:\"The XML parse tree of revision content (requires content model $1)\";'),
+('en','messages:apihelp-parse-paramvalue-prop-parsewarnings','s:69:\"Gives the warnings that occurred while parsing content (as wikitext).\";'),
+('en','messages:apihelp-parse-paramvalue-prop-parsewarningshtml','s:65:\"Gives the warnings that occurred while parsing content (as HTML).\";'),
+('en','messages:apihelp-parse-paramvalue-prop-properties','s:56:\"Gives various properties defined in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-revid','s:40:\"Adds the revision ID of the parsed page.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-sections','s:42:\"Gives the sections in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-subtitle','s:43:\"Adds the page subtitle for the parsed page.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-templates','s:43:\"Gives the templates in the parsed wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-text','s:38:\"Gives the parsed text of the wikitext.\";'),
+('en','messages:apihelp-parse-paramvalue-prop-wikitext','s:44:\"Gives the original wikitext that was parsed.\";'),
+('en','messages:apihelp-parse-summary','s:41:\"Parses content and returns parser output.\";'),
+('en','messages:apihelp-patrol-example-rcid','s:23:\"Patrol a recent change.\";'),
+('en','messages:apihelp-patrol-example-revid','s:18:\"Patrol a revision.\";'),
+('en','messages:apihelp-patrol-param-rcid','s:27:\"Recentchanges ID to patrol.\";'),
+('en','messages:apihelp-patrol-param-revid','s:22:\"Revision ID to patrol.\";'),
+('en','messages:apihelp-patrol-param-tags','s:52:\"Change tags to apply to the entry in the patrol log.\";'),
+('en','messages:apihelp-patrol-summary','s:26:\"Patrol a page or revision.\";'),
+('en','messages:apihelp-php-param-formatversion','s:17:\"Output formatting\";'),
+('en','messages:apihelp-php-paramvalue-formatversion-1','s:94:\"Backwards-compatible format (XML-style booleans, * keys for content nodes, etc.).\";'),
+('en','messages:apihelp-php-paramvalue-formatversion-2','s:14:\"Modern format.\";'),
+('en','messages:apihelp-php-paramvalue-formatversion-latest','s:75:\"Use the latest format (currently 2), may change without warning.\";'),
+('en','messages:apihelp-php-summary','s:37:\"Output data in serialized PHP format.\";'),
+('en','messages:apihelp-phpfm-summary','s:60:\"Output data in serialized PHP format (pretty-print in HTML).\";'),
+('en','messages:apihelp-protect-example-protect','s:15:\"Protect a page.\";'),
+('en','messages:apihelp-protect-example-unprotect','s:105:\"Unprotect a page by setting restrictions to all (i.e. everyone is allowed to take the action).\";'),
+('en','messages:apihelp-protect-example-unprotect2','s:44:\"Unprotect a page by setting no restrictions.\";'),
+('en','messages:apihelp-protect-param-cascade','s:160:\"Enable cascading protection (i.e. protect transcluded templates and images used in this page). Ignored if none of the given protection levels support cascading.\";'),
+('en','messages:apihelp-protect-param-expiry','s:206:\"Expiry timestamps. If only one timestamp is set, it\'ll be used for all protections. Use infinite, indefinite, infinity, or never, for a never-expiring protection.\";'),
+('en','messages:apihelp-protect-param-pageid','s:68:\"ID of the page to (un)protect. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-protect-param-protections','s:262:\"List of protection levels, formatted action=level (e.g. edit=sysop). A level of all means everyone is allowed to take the action, i.e. no restriction.\n\nNote: Any actions not listed will have restrictions removed.\";'),
+('en','messages:apihelp-protect-param-reason','s:26:\"Reason for (un)protecting.\";'),
+('en','messages:apihelp-protect-param-tags','s:56:\"Change tags to apply to the entry in the protection log.\";'),
+('en','messages:apihelp-protect-param-title','s:72:\"Title of the page to (un)protect. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-protect-param-watch','s:73:\"If set, add the page being (un)protected to the current user\'s watchlist.\";'),
+('en','messages:apihelp-protect-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-protect-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-protect-summary','s:38:\"Change the protection level of a page.\";'),
+('en','messages:apihelp-purge-example-generator','s:47:\"Purge the first 10 pages in the main namespace.\";'),
+('en','messages:apihelp-purge-example-simple','s:59:\"Purge the Main Page and the API page.\";'),
+('en','messages:apihelp-purge-param-forcelinkupdate','s:60:\"Update the links tables and do other secondary data updates.\";'),
+('en','messages:apihelp-purge-param-forcerecursivelinkupdate','s:111:\"Same as forcelinkupdate, and update the links tables for any page that uses this page as a template.\";'),
+('en','messages:apihelp-purge-summary','s:37:\"Purge the cache for the given titles.\";'),
+('en','messages:apihelp-query+allcategories-example-generator','s:86:\"Retrieve info about the category page itself for categories beginning List.\";'),
+('en','messages:apihelp-query+allcategories-example-size','s:64:\"List categories with information on the number of pages in each.\";'),
+('en','messages:apihelp-query+allcategories-param-dir','s:21:\"Direction to sort in.\";'),
+('en','messages:apihelp-query+allcategories-param-from','s:39:\"The category to start enumerating from.\";'),
+('en','messages:apihelp-query+allcategories-param-limit','s:30:\"How many categories to return.\";'),
+('en','messages:apihelp-query+allcategories-param-max','s:54:\"Only return categories with at most this many members.\";'),
+('en','messages:apihelp-query+allcategories-param-min','s:55:\"Only return categories with at least this many members.\";'),
+('en','messages:apihelp-query+allcategories-param-prefix','s:58:\"Search for all category titles that begin with this value.\";'),
+('en','messages:apihelp-query+allcategories-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+allcategories-param-to','s:36:\"The category to stop enumerating at.\";'),
+('en','messages:apihelp-query+allcategories-paramvalue-prop-hidden','s:72:\"Tags categories that are hidden with __HIDDENCAT__.\";'),
+('en','messages:apihelp-query+allcategories-paramvalue-prop-size','s:37:\"Adds number of pages in the category.\";'),
+('en','messages:apihelp-query+allcategories-summary','s:25:\"Enumerate all categories.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-example-ns-main','s:58:\"List the first 50 deleted revisions in the main namespace.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-example-user','s:66:\"List the last 50 deleted contributions by user Example.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-end','s:37:\"The timestamp to stop enumerating at.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-excludeuser','s:34:\"Don\'t list revisions by this user.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-from','s:28:\"Start listing at this title.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-generatetitles','s:73:\"When being used as a generator, generate titles rather than revision IDs.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-miser-user-namespace','s:275:\"Note: Due to [[mw:Special:MyLanguage/Manual:$wgMiserMode|miser mode]], using $1user and $1namespace together may result in fewer than $1limit results returned before continuing; in extreme cases, zero results may be returned.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-namespace','s:34:\"Only list pages in this namespace.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-prefix','s:54:\"Search for all page titles that begin with this value.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-tag','s:41:\"Only list revisions tagged with this tag.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-to','s:27:\"Stop listing at this title.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-param-user','s:33:\"Only list revisions by this user.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-paraminfo-nonuseronly','s:38:\"Cannot be used with $3user.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-paraminfo-useronly','s:40:\"May only be used with $3user.\";'),
+('en','messages:apihelp-query+alldeletedrevisions-summary','s:55:\"List all deleted revisions by a user or in a namespace.\";'),
+('en','messages:apihelp-query+allfileusages-example-b','s:96:\"List file titles, including missing ones, with page IDs they are from, starting at B.\";'),
+('en','messages:apihelp-query+allfileusages-example-generator','s:32:\"Gets pages containing the files.\";'),
+('en','messages:apihelp-query+allfileusages-example-unique','s:24:\"List unique file titles.\";'),
+('en','messages:apihelp-query+allfileusages-example-unique-generator','s:47:\"Gets all file titles, marking the missing ones.\";'),
+('en','messages:apihelp-query+allfileusages-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+allfileusages-param-from','s:48:\"The title of the file to start enumerating from.\";'),
+('en','messages:apihelp-query+allfileusages-param-limit','s:31:\"How many total items to return.\";'),
+('en','messages:apihelp-query+allfileusages-param-prefix','s:54:\"Search for all file titles that begin with this value.\";'),
+('en','messages:apihelp-query+allfileusages-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+allfileusages-param-to','s:45:\"The title of the file to stop enumerating at.\";'),
+('en','messages:apihelp-query+allfileusages-param-unique','s:134:\"Only show distinct file titles. Cannot be used with $1prop=ids.\nWhen used as a generator, yields target pages instead of source pages.\";'),
+('en','messages:apihelp-query+allfileusages-paramvalue-prop-ids','s:68:\"Adds the page IDs of the using pages (cannot be used with $1unique).\";'),
+('en','messages:apihelp-query+allfileusages-paramvalue-prop-title','s:27:\"Adds the title of the file.\";'),
+('en','messages:apihelp-query+allfileusages-summary','s:45:\"List all file usages, including non-existing.\";'),
+('en','messages:apihelp-query+allimages-example-b','s:57:\"Show a list of files starting at the letter B.\";'),
+('en','messages:apihelp-query+allimages-example-generator','s:60:\"Show info about 4 files starting at the letter T.\";'),
+('en','messages:apihelp-query+allimages-example-mimetypes','s:80:\"Show a list of files with MIME type image/png or image/gif\";'),
+('en','messages:apihelp-query+allimages-example-recent','s:72:\"Show a list of recently uploaded files, similar to [[Special:NewFiles]].\";'),
+('en','messages:apihelp-query+allimages-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+allimages-param-end','s:73:\"The timestamp to end enumerating. Can only be used with $1sort=timestamp.\";'),
+('en','messages:apihelp-query+allimages-param-filterbots','s:114:\"How to filter files uploaded by bots. Can only be used with $1sort=timestamp. Cannot be used together with $1user.\";'),
+('en','messages:apihelp-query+allimages-param-from','s:77:\"The image title to start enumerating from. Can only be used with $1sort=name.\";'),
+('en','messages:apihelp-query+allimages-param-limit','s:35:\"How many images in total to return.\";'),
+('en','messages:apihelp-query+allimages-param-maxsize','s:45:\"Limit to images with at most this many bytes.\";'),
+('en','messages:apihelp-query+allimages-param-mime','s:58:\"What MIME types to search for, e.g. image/jpeg.\";'),
+('en','messages:apihelp-query+allimages-param-minsize','s:46:\"Limit to images with at least this many bytes.\";'),
+('en','messages:apihelp-query+allimages-param-prefix','s:90:\"Search for all image titles that begin with this value. Can only be used with $1sort=name.\";'),
+('en','messages:apihelp-query+allimages-param-sha1','s:43:\"SHA1 hash of image. Overrides $1sha1base36.\";'),
+('en','messages:apihelp-query+allimages-param-sha1base36','s:50:\"SHA1 hash of image in base 36 (used in MediaWiki).\";'),
+('en','messages:apihelp-query+allimages-param-sort','s:20:\"Property to sort by.\";'),
+('en','messages:apihelp-query+allimages-param-start','s:80:\"The timestamp to start enumerating from. Can only be used with $1sort=timestamp.\";'),
+('en','messages:apihelp-query+allimages-param-to','s:74:\"The image title to stop enumerating at. Can only be used with $1sort=name.\";'),
+('en','messages:apihelp-query+allimages-param-user','s:123:\"Only return files uploaded by this user. Can only be used with $1sort=timestamp. Cannot be used together with $1filterbots.\";'),
+('en','messages:apihelp-query+allimages-summary','s:34:\"Enumerate all images sequentially.\";'),
+('en','messages:apihelp-query+alllinks-example-b','s:98:\"List linked titles, including missing ones, with page IDs they are from, starting at B.\";'),
+('en','messages:apihelp-query+alllinks-example-generator','s:32:\"Gets pages containing the links.\";'),
+('en','messages:apihelp-query+alllinks-example-unique','s:26:\"List unique linked titles.\";'),
+('en','messages:apihelp-query+alllinks-example-unique-generator','s:49:\"Gets all linked titles, marking the missing ones.\";'),
+('en','messages:apihelp-query+alllinks-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+alllinks-param-from','s:48:\"The title of the link to start enumerating from.\";'),
+('en','messages:apihelp-query+alllinks-param-limit','s:31:\"How many total items to return.\";'),
+('en','messages:apihelp-query+alllinks-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+alllinks-param-prefix','s:56:\"Search for all linked titles that begin with this value.\";'),
+('en','messages:apihelp-query+alllinks-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+alllinks-param-to','s:45:\"The title of the link to stop enumerating at.\";'),
+('en','messages:apihelp-query+alllinks-param-unique','s:147:\"Only show distinct linked titles. Cannot be used with $1prop=ids.\nWhen used as a generator, yields target pages instead of source pages.\";'),
+('en','messages:apihelp-query+alllinks-paramvalue-prop-ids','s:79:\"Adds the page ID of the linking page (cannot be used with $1unique).\";'),
+('en','messages:apihelp-query+alllinks-paramvalue-prop-title','s:27:\"Adds the title of the link.\";'),
+('en','messages:apihelp-query+alllinks-summary','s:52:\"Enumerate all links that point to a given namespace.\";'),
+('en','messages:apihelp-query+allmessages-example-de','s:66:\"Show messages august and mainpage in German.\";'),
+('en','messages:apihelp-query+allmessages-example-ipb','s:44:\"Show messages starting with ipb-.\";'),
+('en','messages:apihelp-query+allmessages-param-args','s:41:\"Arguments to be substituted into message.\";'),
+('en','messages:apihelp-query+allmessages-param-customised','s:49:\"Return only messages in this customisation state.\";'),
+('en','messages:apihelp-query+allmessages-param-enableparser','s:111:\"Set to enable parser, will preprocess the wikitext of message (substitute magic words, handle templates, etc.).\";'),
+('en','messages:apihelp-query+allmessages-param-filter','s:57:\"Return only messages with names that contain this string.\";'),
+('en','messages:apihelp-query+allmessages-param-from','s:41:\"Return messages starting at this message.\";'),
+('en','messages:apihelp-query+allmessages-param-includelocal','s:273:\"Also include local messages, i.e. messages that don\'t exist in the software but do exist as in the {{ns:MediaWiki}} namespace.\nThis lists all {{ns:MediaWiki}}-namespace pages, so it will also list those that aren\'t really messages such as [[MediaWiki:Common.js|Common.js]].\";'),
+('en','messages:apihelp-query+allmessages-param-lang','s:33:\"Return messages in this language.\";'),
+('en','messages:apihelp-query+allmessages-param-messages','s:68:\"Which messages to output. * (default) means all messages.\";'),
+('en','messages:apihelp-query+allmessages-param-nocontent','s:65:\"If set, do not include the content of the messages in the output.\";'),
+('en','messages:apihelp-query+allmessages-param-prefix','s:33:\"Return messages with this prefix.\";'),
+('en','messages:apihelp-query+allmessages-param-prop','s:24:\"Which properties to get.\";'),
+('en','messages:apihelp-query+allmessages-param-title','s:77:\"Page name to use as context when parsing message (for $1enableparser option).\";'),
+('en','messages:apihelp-query+allmessages-param-to','s:39:\"Return messages ending at this message.\";'),
+('en','messages:apihelp-query+allmessages-summary','s:31:\"Return messages from this site.\";'),
+('en','messages:apihelp-query+allpages-example-b','s:57:\"Show a list of pages starting at the letter B.\";'),
+('en','messages:apihelp-query+allpages-example-generator','s:60:\"Show info about 4 pages starting at the letter T.\";'),
+('en','messages:apihelp-query+allpages-example-generator-revisions','s:70:\"Show content of first 2 non-redirect pages beginning at Re.\";'),
+('en','messages:apihelp-query+allpages-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+allpages-param-filterlanglinks','s:108:\"Filter based on whether a page has langlinks. Note that this may not consider langlinks added by extensions.\";'),
+('en','messages:apihelp-query+allpages-param-filterredir','s:20:\"Which pages to list.\";'),
+('en','messages:apihelp-query+allpages-param-from','s:41:\"The page title to start enumerating from.\";'),
+('en','messages:apihelp-query+allpages-param-limit','s:31:\"How many total pages to return.\";'),
+('en','messages:apihelp-query+allpages-param-maxsize','s:44:\"Limit to pages with at most this many bytes.\";'),
+('en','messages:apihelp-query+allpages-param-minsize','s:45:\"Limit to pages with at least this many bytes.\";'),
+('en','messages:apihelp-query+allpages-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+allpages-param-prefix','s:54:\"Search for all page titles that begin with this value.\";'),
+('en','messages:apihelp-query+allpages-param-prexpiry','s:223:\"Which protection expiry to filter the page on:\n;indefinite:Get only pages with indefinite protection expiry.\n;definite:Get only pages with a definite (specific) protection expiry.\n;all:Get pages with any protections expiry.\";'),
+('en','messages:apihelp-query+allpages-param-prfiltercascade','s:76:\"Filter protections based on cascadingness (ignored when $1prtype isn\'t set).\";'),
+('en','messages:apihelp-query+allpages-param-prlevel','s:85:\"Filter protections based on protection level (must be used with $1prtype= parameter).\";'),
+('en','messages:apihelp-query+allpages-param-prtype','s:30:\"Limit to protected pages only.\";'),
+('en','messages:apihelp-query+allpages-param-to','s:38:\"The page title to stop enumerating at.\";'),
+('en','messages:apihelp-query+allpages-summary','s:54:\"Enumerate all pages sequentially in a given namespace.\";'),
+('en','messages:apihelp-query+allredirects-example-b','s:97:\"List target pages, including missing ones, with page IDs they are from, starting at B.\";'),
+('en','messages:apihelp-query+allredirects-example-generator','s:36:\"Gets pages containing the redirects.\";'),
+('en','messages:apihelp-query+allredirects-example-unique','s:25:\"List unique target pages.\";'),
+('en','messages:apihelp-query+allredirects-example-unique-generator','s:48:\"Gets all target pages, marking the missing ones.\";'),
+('en','messages:apihelp-query+allredirects-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+allredirects-param-from','s:52:\"The title of the redirect to start enumerating from.\";'),
+('en','messages:apihelp-query+allredirects-param-limit','s:31:\"How many total items to return.\";'),
+('en','messages:apihelp-query+allredirects-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+allredirects-param-prefix','s:55:\"Search for all target pages that begin with this value.\";'),
+('en','messages:apihelp-query+allredirects-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+allredirects-param-to','s:49:\"The title of the redirect to stop enumerating at.\";'),
+('en','messages:apihelp-query+allredirects-param-unique','s:154:\"Only show distinct target pages. Cannot be used with $1prop=ids|fragment|interwiki.\nWhen used as a generator, yields target pages instead of source pages.\";'),
+('en','messages:apihelp-query+allredirects-paramvalue-prop-fragment','s:86:\"Adds the fragment from the redirect, if any (cannot be used with $1unique).\";'),
+('en','messages:apihelp-query+allredirects-paramvalue-prop-ids','s:83:\"Adds the page ID of the redirecting page (cannot be used with $1unique).\";'),
+('en','messages:apihelp-query+allredirects-paramvalue-prop-interwiki','s:94:\"Adds the interwiki prefix from the redirect, if any (cannot be used with $1unique).\";'),
+('en','messages:apihelp-query+allredirects-paramvalue-prop-title','s:31:\"Adds the title of the redirect.\";'),
+('en','messages:apihelp-query+allredirects-summary','s:34:\"List all redirects to a namespace.\";'),
+('en','messages:apihelp-query+allrevisions-example-ns-any','s:45:\"List the first 50 revisions in any namespace.\";'),
+('en','messages:apihelp-query+allrevisions-example-user','s:58:\"List the last 50 contributions by user Example.\";'),
+('en','messages:apihelp-query+allrevisions-param-end','s:37:\"The timestamp to stop enumerating at.\";'),
+('en','messages:apihelp-query+allrevisions-param-excludeuser','s:34:\"Don\'t list revisions by this user.\";'),
+('en','messages:apihelp-query+allrevisions-param-generatetitles','s:73:\"When being used as a generator, generate titles rather than revision IDs.\";'),
+('en','messages:apihelp-query+allrevisions-param-namespace','s:34:\"Only list pages in this namespace.\";'),
+('en','messages:apihelp-query+allrevisions-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+allrevisions-param-user','s:33:\"Only list revisions by this user.\";'),
+('en','messages:apihelp-query+allrevisions-summary','s:19:\"List all revisions.\";'),
+('en','messages:apihelp-query+alltransclusions-example-b','s:103:\"List transcluded titles, including missing ones, with page IDs they are from, starting at B.\";'),
+('en','messages:apihelp-query+alltransclusions-example-generator','s:40:\"Gets pages containing the transclusions.\";'),
+('en','messages:apihelp-query+alltransclusions-example-unique','s:31:\"List unique transcluded titles.\";'),
+('en','messages:apihelp-query+alltransclusions-example-unique-generator','s:54:\"Gets all transcluded titles, marking the missing ones.\";'),
+('en','messages:apihelp-query+alltransclusions-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+alltransclusions-param-from','s:56:\"The title of the transclusion to start enumerating from.\";'),
+('en','messages:apihelp-query+alltransclusions-param-limit','s:31:\"How many total items to return.\";'),
+('en','messages:apihelp-query+alltransclusions-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+alltransclusions-param-prefix','s:61:\"Search for all transcluded titles that begin with this value.\";'),
+('en','messages:apihelp-query+alltransclusions-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+alltransclusions-param-to','s:53:\"The title of the transclusion to stop enumerating at.\";'),
+('en','messages:apihelp-query+alltransclusions-param-unique','s:141:\"Only show distinct transcluded titles. Cannot be used with $1prop=ids.\nWhen used as a generator, yields target pages instead of source pages.\";'),
+('en','messages:apihelp-query+alltransclusions-paramvalue-prop-ids','s:73:\"Adds the page ID of the transcluding page (cannot be used with $1unique).\";'),
+('en','messages:apihelp-query+alltransclusions-paramvalue-prop-title','s:35:\"Adds the title of the transclusion.\";'),
+('en','messages:apihelp-query+alltransclusions-summary','s:96:\"List all transclusions (pages embedded using {{x}}), including non-existing.\";'),
+('en','messages:apihelp-query+allusers-example-y','s:36:\"List users starting at Y.\";'),
+('en','messages:apihelp-query+allusers-param-activeusers','s:61:\"Only list users active in the last $1 {{PLURAL:$1|day|days}}.\";'),
+('en','messages:apihelp-query+allusers-param-attachedwiki','s:114:\"With $1prop=centralids, also indicate whether the user is attached with the wiki identified by this ID.\";'),
+('en','messages:apihelp-query+allusers-param-dir','s:21:\"Direction to sort in.\";'),
+('en','messages:apihelp-query+allusers-param-excludegroup','s:34:\"Exclude users in the given groups.\";'),
+('en','messages:apihelp-query+allusers-param-from','s:40:\"The user name to start enumerating from.\";'),
+('en','messages:apihelp-query+allusers-param-group','s:39:\"Only include users in the given groups.\";'),
+('en','messages:apihelp-query+allusers-param-limit','s:36:\"How many total user names to return.\";'),
+('en','messages:apihelp-query+allusers-param-prefix','s:48:\"Search for all users that begin with this value.\";'),
+('en','messages:apihelp-query+allusers-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+allusers-param-rights','s:141:\"Only include users with the given rights. Does not include rights granted by implicit or auto-promoted groups like *, user, or autoconfirmed.\";'),
+('en','messages:apihelp-query+allusers-param-to','s:37:\"The user name to stop enumerating at.\";'),
+('en','messages:apihelp-query+allusers-param-witheditsonly','s:36:\"Only list users who have made edits.\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-blockinfo','s:55:\"Adds the information about a current block on the user.\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-centralids','s:56:\"Adds the central IDs and attachment status for the user.\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-editcount','s:32:\"Adds the edit count of the user.\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-groups','s:110:\"Lists groups that the user is in. This uses more server resources and may return fewer results than the limit.\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-implicitgroups','s:50:\"Lists all the groups the user is automatically in.\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-registration','s:75:\"Adds the timestamp of when the user registered if available (may be blank).\";'),
+('en','messages:apihelp-query+allusers-paramvalue-prop-rights','s:31:\"Lists rights that the user has.\";'),
+('en','messages:apihelp-query+allusers-summary','s:31:\"Enumerate all registered users.\";'),
+('en','messages:apihelp-query+authmanagerinfo-example-login','s:59:\"Fetch the requests that may be used when beginning a login.\";'),
+('en','messages:apihelp-query+authmanagerinfo-example-login-merged','s:84:\"Fetch the requests that may be used when beginning a login, with form fields merged.\";'),
+('en','messages:apihelp-query+authmanagerinfo-example-securitysensitiveoperation','s:68:\"Test whether authentication is sufficient for action foo.\";'),
+('en','messages:apihelp-query+authmanagerinfo-param-requestsfor','s:99:\"Fetch information about the authentication requests needed for the specified authentication action.\";'),
+('en','messages:apihelp-query+authmanagerinfo-param-securitysensitiveoperation','s:115:\"Test whether the user\'s current authentication status is sufficient for the specified security-sensitive operation.\";'),
+('en','messages:apihelp-query+authmanagerinfo-summary','s:61:\"Retrieve information about the current authentication status.\";'),
+('en','messages:apihelp-query+backlinks-example-generator','s:60:\"Get information about pages linking to Main page.\";'),
+('en','messages:apihelp-query+backlinks-example-simple','s:35:\"Show links to Main page.\";'),
+('en','messages:apihelp-query+backlinks-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+backlinks-param-filterredir','s:143:\"How to filter for redirects. If set to nonredirects when $1redirect is enabled, this is only applied to the second level.\";'),
+('en','messages:apihelp-query+backlinks-param-limit','s:179:\"How many total pages to return. If $1redirect is enabled, the limit applies to each level separately (which means up to 2 * $1limit results may be returned).\";'),
+('en','messages:apihelp-query+backlinks-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+backlinks-param-pageid','s:67:\"Page ID to search. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-query+backlinks-param-redirect','s:106:\"If linking page is a redirect, find all pages that link to that redirect as well. Maximum limit is halved.\";'),
+('en','messages:apihelp-query+backlinks-param-title','s:66:\"Title to search. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-query+backlinks-summary','s:43:\"Find all pages that link to the given page.\";'),
+('en','messages:apihelp-query+blocks-example-simple','s:12:\"List blocks.\";'),
+('en','messages:apihelp-query+blocks-example-users','s:57:\"List blocks of users Alice and Bob.\";'),
+('en','messages:apihelp-query+blocks-param-end','s:37:\"The timestamp to stop enumerating at.\";'),
+('en','messages:apihelp-query+blocks-param-ids','s:37:\"List of block IDs to list (optional).\";'),
+('en','messages:apihelp-query+blocks-param-ip','s:192:\"Get all blocks applying to this IP address or CIDR range, including range blocks.\nCannot be used together with $3users. CIDR ranges broader than IPv4/$1 or IPv6/$2 are not accepted.\";'),
+('en','messages:apihelp-query+blocks-param-limit','s:37:\"The maximum number of blocks to list.\";'),
+('en','messages:apihelp-query+blocks-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+blocks-param-show','s:133:\"Show only items that meet these criteria.\nFor example, to see only indefinite blocks on IP addresses, set $1show=ip|!temp.\";'),
+('en','messages:apihelp-query+blocks-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+blocks-param-users','s:39:\"List of users to search for (optional).\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-by','s:39:\"Adds the username of the blocking user.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-byid','s:38:\"Adds the user ID of the blocking user.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-expiry','s:45:\"Adds the timestamp of when the block expires.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-flags','s:46:\"Tags the ban with (autoblock, anononly, etc.).\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-id','s:25:\"Adds the ID of the block.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-range','s:53:\"Adds the range of IP addresses affected by the block.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-reason','s:36:\"Adds the reason given for the block.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-restrictions','s:65:\"Adds the partial block restrictions if the block is not sitewide.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-timestamp','s:47:\"Adds the timestamp of when the block was given.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-user','s:38:\"Adds the username of the blocked user.\";'),
+('en','messages:apihelp-query+blocks-paramvalue-prop-userid','s:37:\"Adds the user ID of the blocked user.\";'),
+('en','messages:apihelp-query+blocks-summary','s:40:\"List all blocked users and IP addresses.\";'),
+('en','messages:apihelp-query+categories-example-generator','s:81:\"Get information about all categories used in the page Albert Einstein.\";'),
+('en','messages:apihelp-query+categories-example-simple','s:72:\"Get a list of categories the page Albert Einstein belongs to.\";'),
+('en','messages:apihelp-query+categories-param-categories','s:96:\"Only list these categories. Useful for checking whether a certain page is in a certain category.\";'),
+('en','messages:apihelp-query+categories-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+categories-param-limit','s:30:\"How many categories to return.\";'),
+('en','messages:apihelp-query+categories-param-prop','s:53:\"Which additional properties to get for each category:\";'),
+('en','messages:apihelp-query+categories-param-show','s:33:\"Which kind of categories to show.\";'),
+('en','messages:apihelp-query+categories-paramvalue-prop-hidden','s:72:\"Tags categories that are hidden with __HIDDENCAT__.\";'),
+('en','messages:apihelp-query+categories-paramvalue-prop-sortkey','s:96:\"Adds the sortkey (hexadecimal string) and sortkey prefix (human-readable part) for the category.\";'),
+('en','messages:apihelp-query+categories-paramvalue-prop-timestamp','s:46:\"Adds timestamp of when the category was added.\";'),
+('en','messages:apihelp-query+categories-summary','s:40:\"List all categories the pages belong to.\";'),
+('en','messages:apihelp-query+categoryinfo-example-simple','s:74:\"Get information about Category:Foo and Category:Bar.\";'),
+('en','messages:apihelp-query+categoryinfo-summary','s:47:\"Returns information about the given categories.\";'),
+('en','messages:apihelp-query+categorymembers-example-generator','s:66:\"Get page info about first 10 pages in Category:Physics.\";'),
+('en','messages:apihelp-query+categorymembers-example-simple','s:50:\"Get first 10 pages in Category:Physics.\";'),
+('en','messages:apihelp-query+categorymembers-param-dir','s:27:\"In which direction to sort.\";'),
+('en','messages:apihelp-query+categorymembers-param-end','s:79:\"Timestamp to end listing at. Can only be used with $1sort=timestamp.\";'),
+('en','messages:apihelp-query+categorymembers-param-endhexsortkey','s:117:\"Sortkey to end listing at, as returned by $1prop=sortkey. Can only be used with $1sort=sortkey.\";'),
+('en','messages:apihelp-query+categorymembers-param-endsortkey','s:28:\"Use $1endhexsortkey instead.\";'),
+('en','messages:apihelp-query+categorymembers-param-endsortkeyprefix','s:192:\"Sortkey prefix to end listing before (not at; if this value occurs it will not be included!). Can only be used with $1sort=sortkey. Overrides $1endhexsortkey.\";'),
+('en','messages:apihelp-query+categorymembers-param-limit','s:38:\"The maximum number of pages to return.\";'),
+('en','messages:apihelp-query+categorymembers-param-namespace','s:166:\"Only include pages in these namespaces. Note that $1type=subcat or $1type=file may be used instead of $1namespace=14 or 6.\";'),
+('en','messages:apihelp-query+categorymembers-param-pageid','s:86:\"Page ID of the category to enumerate. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-query+categorymembers-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+categorymembers-param-sort','s:20:\"Property to sort by.\";'),
+('en','messages:apihelp-query+categorymembers-param-start','s:83:\"Timestamp to start listing from. Can only be used with $1sort=timestamp.\";'),
+('en','messages:apihelp-query+categorymembers-param-starthexsortkey','s:121:\"Sortkey to start listing from, as returned by $1prop=sortkey. Can only be used with $1sort=sortkey.\";'),
+('en','messages:apihelp-query+categorymembers-param-startsortkey','s:30:\"Use $1starthexsortkey instead.\";'),
+('en','messages:apihelp-query+categorymembers-param-startsortkeyprefix','s:126:\"Sortkey prefix to start listing from. Can only be used with $1sort=sortkey. Overrides $1starthexsortkey.\";'),
+('en','messages:apihelp-query+categorymembers-param-title','s:142:\"Which category to enumerate (required). Must include the {{ns:category}}: prefix. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-query+categorymembers-param-type','s:91:\"Which type of category members to include. Ignored when $1sort=timestamp is set.\";'),
+('en','messages:apihelp-query+categorymembers-paramvalue-prop-ids','s:17:\"Adds the page ID.\";'),
+('en','messages:apihelp-query+categorymembers-paramvalue-prop-sortkey','s:71:\"Adds the sortkey used for sorting in the category (hexadecimal string).\";'),
+('en','messages:apihelp-query+categorymembers-paramvalue-prop-sortkeyprefix','s:94:\"Adds the sortkey prefix used for sorting in the category (human-readable part of the sortkey).\";'),
+('en','messages:apihelp-query+categorymembers-paramvalue-prop-timestamp','s:49:\"Adds the timestamp of when the page was included.\";'),
+('en','messages:apihelp-query+categorymembers-paramvalue-prop-title','s:44:\"Adds the title and namespace ID of the page.\";'),
+('en','messages:apihelp-query+categorymembers-paramvalue-prop-type','s:114:\"Adds the type that the page has been categorised as (page, subcat or file).\";'),
+('en','messages:apihelp-query+categorymembers-summary','s:35:\"List all pages in a given category.\";'),
+('en','messages:apihelp-query+contributors-example-simple','s:51:\"Show contributors to the page Main Page.\";'),
+('en','messages:apihelp-query+contributors-param-excludegroup','s:116:\"Exclude users in the given groups. Does not include implicit or auto-promoted groups like *, user, or autoconfirmed.\";'),
+('en','messages:apihelp-query+contributors-param-excluderights','s:138:\"Exclude users having the given rights. Does not include rights granted by implicit or auto-promoted groups like *, user, or autoconfirmed.\";'),
+('en','messages:apihelp-query+contributors-param-group','s:121:\"Only include users in the given groups. Does not include implicit or auto-promoted groups like *, user, or autoconfirmed.\";'),
+('en','messages:apihelp-query+contributors-param-limit','s:32:\"How many contributors to return.\";'),
+('en','messages:apihelp-query+contributors-param-rights','s:143:\"Only include users having the given rights. Does not include rights granted by implicit or auto-promoted groups like *, user, or autoconfirmed.\";'),
+('en','messages:apihelp-query+contributors-summary','s:89:\"Get the list of logged-in contributors and the count of anonymous contributors to a page.\";'),
+('en','messages:apihelp-query+deletedrevisions-example-revids','s:60:\"List the information for deleted revision 123456.\";'),
+('en','messages:apihelp-query+deletedrevisions-example-titles','s:105:\"List the deleted revisions of the pages Main Page and Talk:Main Page, with content.\";'),
+('en','messages:apihelp-query+deletedrevisions-extended-description','s:236:\"May be used in several ways:\n# Get deleted revisions for a set of pages, by setting titles or pageids. Ordered by title and timestamp.\n# Get data about a set of deleted revisions by setting their IDs with revids. Ordered by revision ID.\";'),
+('en','messages:apihelp-query+deletedrevisions-param-end','s:85:\"The timestamp to stop enumerating at. Ignored when processing a list of revision IDs.\";'),
+('en','messages:apihelp-query+deletedrevisions-param-excludeuser','s:34:\"Don\'t list revisions by this user.\";'),
+('en','messages:apihelp-query+deletedrevisions-param-start','s:88:\"The timestamp to start enumerating from. Ignored when processing a list of revision IDs.\";'),
+('en','messages:apihelp-query+deletedrevisions-param-tag','s:41:\"Only list revisions tagged with this tag.\";'),
+('en','messages:apihelp-query+deletedrevisions-param-user','s:33:\"Only list revisions by this user.\";'),
+('en','messages:apihelp-query+deletedrevisions-summary','s:33:\"Get deleted revision information.\";'),
+('en','messages:apihelp-query+deletedrevs-example-mode1','s:119:\"List the last deleted revisions of the pages Main Page and Talk:Main Page, with content (mode 1).\";'),
+('en','messages:apihelp-query+deletedrevs-example-mode2','s:66:\"List the last 50 deleted contributions by Bob (mode 2).\";'),
+('en','messages:apihelp-query+deletedrevs-example-mode3-main','s:67:\"List the first 50 deleted revisions in the main namespace (mode 3).\";'),
+('en','messages:apihelp-query+deletedrevs-example-mode3-talk','s:70:\"List the first 50 deleted pages in the {{ns:talk}} namespace (mode 3).\";'),
+('en','messages:apihelp-query+deletedrevs-extended-description','s:378:\"Operates in three modes:\n# List deleted revisions for the given titles, sorted by timestamp.\n# List deleted contributions for the given user, sorted by timestamp (no titles specified).\n# List all deleted revisions in the given namespace, sorted by title and timestamp (no titles specified, $1user not set).\n\nCertain parameters only apply to some modes and are ignored in others.\";'),
+('en','messages:apihelp-query+deletedrevs-param-end','s:37:\"The timestamp to stop enumerating at.\";'),
+('en','messages:apihelp-query+deletedrevs-param-excludeuser','s:34:\"Don\'t list revisions by this user.\";'),
+('en','messages:apihelp-query+deletedrevs-param-from','s:28:\"Start listing at this title.\";'),
+('en','messages:apihelp-query+deletedrevs-param-limit','s:40:\"The maximum amount of revisions to list.\";'),
+('en','messages:apihelp-query+deletedrevs-param-namespace','s:34:\"Only list pages in this namespace.\";'),
+('en','messages:apihelp-query+deletedrevs-param-prefix','s:54:\"Search for all page titles that begin with this value.\";'),
+('en','messages:apihelp-query+deletedrevs-param-prop','s:628:\"Which properties to get:\n;revid:Adds the revision ID of the deleted revision.\n;parentid:Adds the revision ID of the previous revision to the page.\n;user:Adds the user who made the revision.\n;userid:Adds the ID of the user who made the revision.\n;comment:Adds the comment of the revision.\n;parsedcomment:Adds the parsed comment of the revision.\n;minor:Tags if the revision is minor.\n;len:Adds the length (bytes) of the revision.\n;sha1:Adds the SHA-1 (base 16) of the revision.\n;content:Adds the content of the revision.\n;token:Deprecated. Gives the edit token.\n;tags:Tags for the revision.\";'),
+('en','messages:apihelp-query+deletedrevs-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+deletedrevs-param-tag','s:41:\"Only list revisions tagged with this tag.\";'),
+('en','messages:apihelp-query+deletedrevs-param-to','s:27:\"Stop listing at this title.\";'),
+('en','messages:apihelp-query+deletedrevs-param-unique','s:37:\"List only one revision for each page.\";'),
+('en','messages:apihelp-query+deletedrevs-param-user','s:33:\"Only list revisions by this user.\";'),
+('en','messages:apihelp-query+deletedrevs-paraminfo-modes','s:28:\"{{PLURAL:$1|Mode|Modes}}: $2\";'),
+('en','messages:apihelp-query+deletedrevs-summary','s:23:\"List deleted revisions.\";'),
+('en','messages:apihelp-query+disabled-summary','s:36:\"This query module has been disabled.\";'),
+('en','messages:apihelp-query+duplicatefiles-example-generated','s:33:\"Look for duplicates of all files.\";'),
+('en','messages:apihelp-query+duplicatefiles-example-simple','s:58:\"Look for duplicates of [[:File:Albert Einstein Head.jpg]].\";'),
+('en','messages:apihelp-query+duplicatefiles-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+duplicatefiles-param-limit','s:35:\"How many duplicate files to return.\";'),
+('en','messages:apihelp-query+duplicatefiles-param-localonly','s:44:\"Look only for files in the local repository.\";'),
+('en','messages:apihelp-query+duplicatefiles-summary','s:75:\"List all files that are duplicates of the given files based on hash values.\";'),
+('en','messages:apihelp-query+embeddedin-example-generator','s:66:\"Get information about pages transcluding Template:Stub.\";'),
+('en','messages:apihelp-query+embeddedin-example-simple','s:49:\"Show pages transcluding Template:Stub.\";'),
+('en','messages:apihelp-query+embeddedin-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+embeddedin-param-filterredir','s:28:\"How to filter for redirects.\";'),
+('en','messages:apihelp-query+embeddedin-param-limit','s:31:\"How many total pages to return.\";'),
+('en','messages:apihelp-query+embeddedin-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+embeddedin-param-pageid','s:56:\"Page ID to search. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-query+embeddedin-param-title','s:55:\"Title to search. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-query+embeddedin-summary','s:55:\"Find all pages that embed (transclude) the given title.\";'),
+('en','messages:apihelp-query+extlinks-example-simple','s:53:\"Get a list of external links on Main Page.\";'),
+('en','messages:apihelp-query+extlinks-param-expandurl','s:58:\"Expand protocol-relative URLs with the canonical protocol.\";'),
+('en','messages:apihelp-query+extlinks-param-limit','s:25:\"How many links to return.\";'),
+('en','messages:apihelp-query+extlinks-param-protocol','s:166:\"Protocol of the URL. If empty and $1query is set, the protocol is http. Leave both this and $1query empty to list all external links.\";'),
+('en','messages:apihelp-query+extlinks-param-query','s:107:\"Search string without protocol. Useful for checking whether a certain page contains a certain external url.\";'),
+('en','messages:apihelp-query+extlinks-summary','s:64:\"Returns all external URLs (not interwikis) from the given pages.\";'),
+('en','messages:apihelp-query+exturlusage-example-simple','s:59:\"Show pages linking to https://www.mediawiki.org.\";'),
+('en','messages:apihelp-query+exturlusage-param-expandurl','s:58:\"Expand protocol-relative URLs with the canonical protocol.\";'),
+('en','messages:apihelp-query+exturlusage-param-limit','s:25:\"How many pages to return.\";'),
+('en','messages:apihelp-query+exturlusage-param-namespace','s:33:\"The page namespaces to enumerate.\";'),
+('en','messages:apihelp-query+exturlusage-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+exturlusage-param-protocol','s:166:\"Protocol of the URL. If empty and $1query is set, the protocol is http. Leave both this and $1query empty to list all external links.\";'),
+('en','messages:apihelp-query+exturlusage-param-query','s:99:\"Search string without protocol. See [[Special:LinkSearch]]. Leave empty to list all external links.\";'),
+('en','messages:apihelp-query+exturlusage-paramvalue-prop-ids','s:20:\"Adds the ID of page.\";'),
+('en','messages:apihelp-query+exturlusage-paramvalue-prop-title','s:44:\"Adds the title and namespace ID of the page.\";'),
+('en','messages:apihelp-query+exturlusage-paramvalue-prop-url','s:30:\"Adds the URL used in the page.\";'),
+('en','messages:apihelp-query+exturlusage-summary','s:41:\"Enumerate pages that contain a given URL.\";'),
+('en','messages:apihelp-query+filearchive-example-simple','s:33:\"Show a list of all deleted files.\";'),
+('en','messages:apihelp-query+filearchive-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+filearchive-param-from','s:42:\"The image title to start enumerating from.\";'),
+('en','messages:apihelp-query+filearchive-param-limit','s:35:\"How many images to return in total.\";'),
+('en','messages:apihelp-query+filearchive-param-prefix','s:55:\"Search for all image titles that begin with this value.\";'),
+('en','messages:apihelp-query+filearchive-param-prop','s:31:\"Which image information to get:\";'),
+('en','messages:apihelp-query+filearchive-param-sha1','s:43:\"SHA1 hash of image. Overrides $1sha1base36.\";'),
+('en','messages:apihelp-query+filearchive-param-sha1base36','s:50:\"SHA1 hash of image in base 36 (used in MediaWiki).\";'),
+('en','messages:apihelp-query+filearchive-param-to','s:39:\"The image title to stop enumerating at.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-archivename','s:65:\"Adds the filename of the archive version for non-latest versions.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-bitdepth','s:34:\"Adds the bit depth of the version.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-description','s:38:\"Adds description of the image version.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-dimensions','s:15:\"Alias for size.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-mediatype','s:33:\"Adds the media type of the image.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-metadata','s:49:\"Lists Exif metadata for the version of the image.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-mime','s:23:\"Adds MIME of the image.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-parseddescription','s:37:\"Parse the description of the version.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-sha1','s:30:\"Adds SHA-1 hash for the image.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-size','s:89:\"Adds the size of the image in bytes and the height, width and page count (if applicable).\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-timestamp','s:40:\"Adds timestamp for the uploaded version.\";'),
+('en','messages:apihelp-query+filearchive-paramvalue-prop-user','s:41:\"Adds user who uploaded the image version.\";'),
+('en','messages:apihelp-query+filearchive-summary','s:41:\"Enumerate all deleted files sequentially.\";'),
+('en','messages:apihelp-query+filerepoinfo-example-simple','s:40:\"Get information about file repositories.\";'),
+('en','messages:apihelp-query+filerepoinfo-param-prop','s:82:\"Which repository properties to get (properties available may vary on other wikis).\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-apiurl','s:73:\"URL to the repository API - helpful for getting image info from the host.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-articlepath','s:106:\"Repository wiki\'s [[mw:Special:MyLanguage/Manual:$wgArticlePath|$wgArticlePath]] or equivalent.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-canUpload','s:90:\"Whether files can be uploaded to this repository, e.g. via CORS and shared authentication.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-displayname','s:47:\"The human-readable name of the repository wiki.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-favicon','s:102:\"Repository wiki\'s favicon URL, from [[mw:Special:MyLanguage/Manual:$wgFavicon|$wgFavicon]].\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-fetchDescription','s:106:\"Whether file description pages are fetched from this repository when viewing local file description pages.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-initialCapital','s:58:\"Whether file names implicitly start with a capital letter.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-local','s:48:\"Whether that repository is the local one or not.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-name','s:189:\"The key of the repository - used in e.g. [[mw:Special:MyLanguage/Manual:$wgForeignFileRepos|$wgForeignFileRepos]] and [[Special:ApiHelp/query+imageinfo|imageinfo]] return values.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-rootUrl','s:30:\"Root URL path for image paths.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-scriptDirUrl','s:63:\"Root URL path for the repository wiki\'s MediaWiki installation.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-server','s:96:\"Repository wiki\'s [[mw:Special:MyLanguage/Manual:$wgServer|$wgServer]] or equivalent.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-thumbUrl','s:34:\"Root URL path for thumbnail paths.\";'),
+('en','messages:apihelp-query+filerepoinfo-paramvalue-prop-url','s:21:\"Public zone URL path.\";'),
+('en','messages:apihelp-query+filerepoinfo-summary','s:72:\"Return meta information about image repositories configured on the wiki.\";'),
+('en','messages:apihelp-query+fileusage-example-generator','s:56:\"Get information about pages using [[:File:Example.jpg]].\";'),
+('en','messages:apihelp-query+fileusage-example-simple','s:48:\"Get a list of pages using [[:File:Example.jpg]].\";'),
+('en','messages:apihelp-query+fileusage-param-limit','s:19:\"How many to return.\";'),
+('en','messages:apihelp-query+fileusage-param-namespace','s:39:\"Only include pages in these namespaces.\";'),
+('en','messages:apihelp-query+fileusage-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+fileusage-param-show','s:108:\"Show only items that meet these criteria:\n;redirect:Only show redirects.\n;!redirect:Only show non-redirects.\";'),
+('en','messages:apihelp-query+fileusage-paramvalue-prop-pageid','s:21:\"Page ID of each page.\";'),
+('en','messages:apihelp-query+fileusage-paramvalue-prop-redirect','s:31:\"Flag if the page is a redirect.\";'),
+('en','messages:apihelp-query+fileusage-paramvalue-prop-title','s:19:\"Title of each page.\";'),
+('en','messages:apihelp-query+fileusage-summary','s:40:\"Find all pages that use the given files.\";'),
+('en','messages:apihelp-query+imageinfo-example-dated','s:75:\"Fetch information about versions of [[:File:Test.jpg]] from 2008 and later.\";'),
+('en','messages:apihelp-query+imageinfo-example-simple','s:82:\"Fetch information about the current version of [[:File:Albert Einstein Head.jpg]].\";'),
+('en','messages:apihelp-query+imageinfo-param-badfilecontexttitle','s:113:\"If $2prop=badfile is set, this is the page title used when evaluating the [[MediaWiki:Bad image list]]\";'),
+('en','messages:apihelp-query+imageinfo-param-end','s:29:\"Timestamp to stop listing at.\";'),
+('en','messages:apihelp-query+imageinfo-param-extmetadatafilter','s:84:\"If specified and non-empty, only these keys will be returned for $1prop=extmetadata.\";'),
+('en','messages:apihelp-query+imageinfo-param-extmetadatalanguage','s:180:\"What language to fetch extmetadata in. This affects both which translation to fetch, if multiple are available, as well as how things like numbers and various values are formatted.\";'),
+('en','messages:apihelp-query+imageinfo-param-extmetadatamultilang','s:74:\"If translations for extmetadata property are available, fetch all of them.\";'),
+('en','messages:apihelp-query+imageinfo-param-limit','s:43:\"How many file revisions to return per file.\";'),
+('en','messages:apihelp-query+imageinfo-param-localonly','s:44:\"Look only for files in the local repository.\";'),
+('en','messages:apihelp-query+imageinfo-param-metadataversion','s:136:\"Version of metadata to use. If latest is specified, use latest version. Defaults to 1 for backwards compatibility.\";'),
+('en','messages:apihelp-query+imageinfo-param-prop','s:30:\"Which file information to get:\";'),
+('en','messages:apihelp-query+imageinfo-param-start','s:32:\"Timestamp to start listing from.\";'),
+('en','messages:apihelp-query+imageinfo-param-urlheight','s:22:\"Similar to $1urlwidth.\";'),
+('en','messages:apihelp-query+imageinfo-param-urlparam','s:170:\"A handler specific parameter string. For example, PDFs might use page15-100px. $1urlwidth must be used and be consistent with $1urlparam.\";'),
+('en','messages:apihelp-query+imageinfo-param-urlwidth','s:174:\"If $2prop=url is set, a URL to an image scaled to this width will be returned.\nFor performance reasons if this option is used, no more than $1 scaled images will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-archivename','s:157:\"Adds the filename of the archive version for non-latest versions. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-badfile','s:60:\"Adds whether the file is on the [[MediaWiki:Bad image list]]\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-bitdepth','s:126:\"Adds the bit depth of the version. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-canonicaltitle','s:129:\"Adds the canonical title of the file. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-comment','s:121:\"Comment on the version. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-commonmetadata','s:155:\"Lists file format generic metadata for the version of the file. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-dimensions','s:15:\"Alias for size.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-extmetadata','s:176:\"Lists formatted metadata combined from multiple sources. Results are HTML formatted. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-mediatype','s:124:\"Adds the media type of the file. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-metadata','s:140:\"Lists Exif metadata for the version of the file. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-mime','s:119:\"Adds MIME type of the file. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-parsedcomment','s:131:\"Parse the comment on the version. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-sha1','s:121:\"Adds SHA-1 hash for the file. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-size','s:88:\"Adds the size of the file in bytes and the height, width and page count (if applicable).\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-thumbmime','s:166:\"Adds MIME type of the image thumbnail (requires url and param $1urlwidth). If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-timestamp','s:40:\"Adds timestamp for the uploaded version.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-uploadwarning','s:119:\"Used by the Special:Upload page to get information about an existing file. Not intended for use outside MediaWiki core.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-url','s:139:\"Gives URL to the file and the description page. If the file has been revision deleted, a filehidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-user','s:137:\"Adds the user who uploaded each file version. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-paramvalue-prop-userid','s:147:\"Add the ID of the user that uploaded each file version. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+imageinfo-summary','s:44:\"Returns file information and upload history.\";'),
+('en','messages:apihelp-query+images-example-generator','s:58:\"Get information about all files used in the [[Main Page]].\";'),
+('en','messages:apihelp-query+images-example-simple','s:46:\"Get a list of files used in the [[Main Page]].\";'),
+('en','messages:apihelp-query+images-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+images-param-images','s:85:\"Only list these files. Useful for checking whether a certain page has a certain file.\";'),
+('en','messages:apihelp-query+images-param-limit','s:25:\"How many files to return.\";'),
+('en','messages:apihelp-query+images-summary','s:47:\"Returns all files contained on the given pages.\";'),
+('en','messages:apihelp-query+imageusage-example-generator','s:69:\"Get information about pages using [[:File:Albert Einstein Head.jpg]].\";'),
+('en','messages:apihelp-query+imageusage-example-simple','s:52:\"Show pages using [[:File:Albert Einstein Head.jpg]].\";'),
+('en','messages:apihelp-query+imageusage-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+imageusage-param-filterredir','s:121:\"How to filter for redirects. If set to nonredirects when $1redirect is enabled, this is only applied to the second level.\";'),
+('en','messages:apihelp-query+imageusage-param-limit','s:179:\"How many total pages to return. If $1redirect is enabled, the limit applies to each level separately (which means up to 2 * $1limit results may be returned).\";'),
+('en','messages:apihelp-query+imageusage-param-namespace','s:27:\"The namespace to enumerate.\";'),
+('en','messages:apihelp-query+imageusage-param-pageid','s:56:\"Page ID to search. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-query+imageusage-param-redirect','s:106:\"If linking page is a redirect, find all pages that link to that redirect as well. Maximum limit is halved.\";'),
+('en','messages:apihelp-query+imageusage-param-title','s:55:\"Title to search. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-query+imageusage-summary','s:46:\"Find all pages that use the given image title.\";'),
+('en','messages:apihelp-query+info-example-protection','s:75:\"Get general and protection information about the page Main Page.\";'),
+('en','messages:apihelp-query+info-example-simple','s:52:\"Get information about the page Main Page.\";'),
+('en','messages:apihelp-query+info-param-linkcontext','s:134:\"The context title to use when determining extra CSS classes (e.g. link colors) when $1prop contains linkclasses.\";'),
+('en','messages:apihelp-query+info-param-prop','s:35:\"Which additional properties to get:\";'),
+('en','messages:apihelp-query+info-param-testactions','s:70:\"Test whether the current user can perform certain actions on the page.\";'),
+('en','messages:apihelp-query+info-param-testactionsdetail','s:196:\"Detail level for $1testactions. Use the [[Special:ApiHelp/main|main module]]\'s errorformat and errorlang parameters to control the format of the messages returned.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-associatedpage','s:107:\"The prefixed title of the [[:mw:Special:MyLanguage/Help:Associated_pages|associated subject or talk page]].\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-displaytitle','s:63:\"Gives the manner in which the page title is actually displayed.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-linkclasses','s:149:\"Gives the additional CSS classes (e.g. link colors) used for links to this page if they were to appear on the page named by $1linkcontext.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-notificationtimestamp','s:50:\"The watchlist notification timestamp of each page.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-preload','s:47:\"Gives the text returned by EditFormPreloadText.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-protection','s:39:\"List the protection level of each page.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-readable','s:79:\"Whether the user can read this page. Use intestactions=read instead.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-subjectid','s:50:\"The page ID of the parent page for each talk page.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-talkid','s:52:\"The page ID of the talk page for each non-talk page.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-url','s:67:\"Gives a full URL, an edit URL, and the canonical URL for each page.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-varianttitles','s:69:\"Gives the display title in all variants of the site content language.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-visitingwatchers','s:91:\"The number of watchers of each page who have visited recent edits to that page, if allowed.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-watched','s:37:\"List the watched status of each page.\";'),
+('en','messages:apihelp-query+info-paramvalue-prop-watchers','s:35:\"The number of watchers, if allowed.\";'),
+('en','messages:apihelp-query+info-paramvalue-testactionsdetail-boolean','s:39:\"Return a boolean value for each action.\";'),
+('en','messages:apihelp-query+info-paramvalue-testactionsdetail-full','s:92:\"Return messages describing why the action is disallowed, or an empty array if it is allowed.\";'),
+('en','messages:apihelp-query+info-paramvalue-testactionsdetail-quick','s:51:\"Like full but skipping expensive checks.\";'),
+('en','messages:apihelp-query+info-summary','s:27:\"Get basic page information.\";'),
+('en','messages:apihelp-query+iwbacklinks-example-generator','s:58:\"Get information about pages linking to [[wikibooks:Test]].\";'),
+('en','messages:apihelp-query+iwbacklinks-example-simple','s:40:\"Get pages linking to [[wikibooks:Test]].\";'),
+('en','messages:apihelp-query+iwbacklinks-extended-description','s:153:\"Can be used to find all links with a prefix, or all links to a title (with a given prefix). Using neither parameter is effectively \"all interwiki links\".\";'),
+('en','messages:apihelp-query+iwbacklinks-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+iwbacklinks-param-limit','s:31:\"How many total pages to return.\";'),
+('en','messages:apihelp-query+iwbacklinks-param-prefix','s:25:\"Prefix for the interwiki.\";'),
+('en','messages:apihelp-query+iwbacklinks-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+iwbacklinks-param-title','s:70:\"Interwiki link to search for. Must be used with $1blprefix.\";'),
+('en','messages:apihelp-query+iwbacklinks-paramvalue-prop-iwprefix','s:33:\"Adds the prefix of the interwiki.\";'),
+('en','messages:apihelp-query+iwbacklinks-paramvalue-prop-iwtitle','s:32:\"Adds the title of the interwiki.\";'),
+('en','messages:apihelp-query+iwbacklinks-summary','s:53:\"Find all pages that link to the given interwiki link.\";'),
+('en','messages:apihelp-query+iwlinks-example-simple','s:55:\"Get interwiki links from the page Main Page.\";'),
+('en','messages:apihelp-query+iwlinks-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+iwlinks-param-limit','s:35:\"How many interwiki links to return.\";'),
+('en','messages:apihelp-query+iwlinks-param-prefix','s:45:\"Only return interwiki links with this prefix.\";'),
+('en','messages:apihelp-query+iwlinks-param-prop','s:59:\"Which additional properties to get for each interwiki link:\";'),
+('en','messages:apihelp-query+iwlinks-param-title','s:68:\"Interwiki link to search for. Must be used with $1prefix.\";'),
+('en','messages:apihelp-query+iwlinks-param-url','s:57:\"Whether to get the full URL (cannot be used with $1prop).\";'),
+('en','messages:apihelp-query+iwlinks-paramvalue-prop-url','s:18:\"Adds the full URL.\";'),
+('en','messages:apihelp-query+iwlinks-summary','s:49:\"Returns all interwiki links from the given pages.\";'),
+('en','messages:apihelp-query+langbacklinks-example-generator','s:52:\"Get information about pages linking to [[:fr:Test]].\";'),
+('en','messages:apihelp-query+langbacklinks-example-simple','s:34:\"Get pages linking to [[:fr:Test]].\";'),
+('en','messages:apihelp-query+langbacklinks-extended-description','s:230:\"Can be used to find all links with a language code, or all links to a title (with a given language). Using neither parameter is effectively \"all language links\".\n\nNote that this may not consider language links added by extensions.\";'),
+('en','messages:apihelp-query+langbacklinks-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+langbacklinks-param-lang','s:31:\"Language for the language link.\";'),
+('en','messages:apihelp-query+langbacklinks-param-limit','s:31:\"How many total pages to return.\";'),
+('en','messages:apihelp-query+langbacklinks-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+langbacklinks-param-title','s:54:\"Language link to search for. Must be used with $1lang.\";'),
+('en','messages:apihelp-query+langbacklinks-paramvalue-prop-lllang','s:44:\"Adds the language code of the language link.\";'),
+('en','messages:apihelp-query+langbacklinks-paramvalue-prop-lltitle','s:36:\"Adds the title of the language link.\";'),
+('en','messages:apihelp-query+langbacklinks-summary','s:52:\"Find all pages that link to the given language link.\";'),
+('en','messages:apihelp-query+langlinks-example-simple','s:59:\"Get interlanguage links from the page Main Page.\";'),
+('en','messages:apihelp-query+langlinks-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+langlinks-param-inlanguagecode','s:43:\"Language code for localised language names.\";'),
+('en','messages:apihelp-query+langlinks-param-lang','s:51:\"Only return language links with this language code.\";'),
+('en','messages:apihelp-query+langlinks-param-limit','s:29:\"How many langlinks to return.\";'),
+('en','messages:apihelp-query+langlinks-param-prop','s:63:\"Which additional properties to get for each interlanguage link:\";'),
+('en','messages:apihelp-query+langlinks-param-title','s:56:\"Link to search for. Must be used with $1lang.\";'),
+('en','messages:apihelp-query+langlinks-param-url','s:68:\"Whether to get the full URL (cannot be used with $1prop).\";'),
+('en','messages:apihelp-query+langlinks-paramvalue-prop-autonym','s:30:\"Adds the native language name.\";'),
+('en','messages:apihelp-query+langlinks-paramvalue-prop-langname','s:104:\"Adds the localised language name (best effort). Use $1inlanguagecode to control the language.\";'),
+('en','messages:apihelp-query+langlinks-paramvalue-prop-url','s:18:\"Adds the full URL.\";'),
+('en','messages:apihelp-query+langlinks-summary','s:53:\"Returns all interlanguage links from the given pages.\";'),
+('en','messages:apihelp-query+languageinfo-example-autonym-name-de','s:61:\"Get the autonyms and German names of all supported languages.\";'),
+('en','messages:apihelp-query+languageinfo-example-bcp47-dir','s:70:\"Get the BCP-47 language code and direction of all supported languages.\";'),
+('en','messages:apihelp-query+languageinfo-example-fallbacks-variants-oc','s:51:\"Get the fallback languages and variants of Occitan.\";'),
+('en','messages:apihelp-query+languageinfo-example-simple','s:50:\"Get the language codes of all supported languages.\";'),
+('en','messages:apihelp-query+languageinfo-extended-description','s:125:\"[[mw:API:Query#Continuing queries|Continuation]] may be applied if retrieving the information takes too long for one request.\";'),
+('en','messages:apihelp-query+languageinfo-param-code','s:93:\"Language codes of the languages that should be returned, or * for all languages.\";'),
+('en','messages:apihelp-query+languageinfo-param-prop','s:43:\"Which information to get for each language.\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-autonym','s:64:\"The autonym of the language, that is, the name in that language.\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-bcp47','s:25:\"The BCP-47 language code.\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-code','s:101:\"The language code. (This code is MediaWiki-specific, though there are overlaps with other standards.)\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-dir','s:84:\"The writing direction of the language (either ltr or rtl).\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-fallbacks','s:181:\"The language codes of the fallback languages configured for this language. The implicit final fallback to \'en\' is not included (but some languages may fall back to \'en\' explicitly).\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-name','s:133:\"The name of the language in the language specified by the uselang parameter, with language fallbacks applied if necessary.\";'),
+('en','messages:apihelp-query+languageinfo-paramvalue-prop-variants','s:62:\"The language codes of the variants supported by this language.\";'),
+('en','messages:apihelp-query+languageinfo-summary','s:45:\"Return information about available languages.\";'),
+('en','messages:apihelp-query+links-example-generator','s:70:\"Get information about the link pages in the page Main Page.\";'),
+('en','messages:apihelp-query+links-example-namespaces','s:95:\"Get links from the page Main Page in the {{ns:user}} and {{ns:template}} namespaces.\";'),
+('en','messages:apihelp-query+links-example-simple','s:44:\"Get links from the page Main Page\";'),
+('en','messages:apihelp-query+links-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+links-param-limit','s:25:\"How many links to return.\";'),
+('en','messages:apihelp-query+links-param-namespace','s:36:\"Show links in these namespaces only.\";'),
+('en','messages:apihelp-query+links-param-titles','s:101:\"Only list links to these titles. Useful for checking whether a certain page links to a certain title.\";'),
+('en','messages:apihelp-query+links-summary','s:39:\"Returns all links from the given pages.\";'),
+('en','messages:apihelp-query+linkshere-example-generator','s:57:\"Get information about pages linking to the [[Main Page]].\";'),
+('en','messages:apihelp-query+linkshere-example-simple','s:49:\"Get a list of pages linking to the [[Main Page]].\";'),
+('en','messages:apihelp-query+linkshere-param-limit','s:19:\"How many to return.\";'),
+('en','messages:apihelp-query+linkshere-param-namespace','s:39:\"Only include pages in these namespaces.\";'),
+('en','messages:apihelp-query+linkshere-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+linkshere-param-show','s:108:\"Show only items that meet these criteria:\n;redirect:Only show redirects.\n;!redirect:Only show non-redirects.\";'),
+('en','messages:apihelp-query+linkshere-paramvalue-prop-pageid','s:21:\"Page ID of each page.\";'),
+('en','messages:apihelp-query+linkshere-paramvalue-prop-redirect','s:31:\"Flag if the page is a redirect.\";'),
+('en','messages:apihelp-query+linkshere-paramvalue-prop-title','s:19:\"Title of each page.\";'),
+('en','messages:apihelp-query+linkshere-summary','s:44:\"Find all pages that link to the given pages.\";'),
+('en','messages:apihelp-query+logevents-example-simple','s:23:\"List recent log events.\";'),
+('en','messages:apihelp-query+logevents-param-action','s:210:\"Filter log actions to only this action. Overrides $1type. In the list of possible values, values with the asterisk wildcard such as action/* can have different strings after the slash (/).\";'),
+('en','messages:apihelp-query+logevents-param-end','s:33:\"The timestamp to end enumerating.\";'),
+('en','messages:apihelp-query+logevents-param-limit','s:39:\"How many total event entries to return.\";'),
+('en','messages:apihelp-query+logevents-param-namespace','s:47:\"Filter entries to those in the given namespace.\";'),
+('en','messages:apihelp-query+logevents-param-prefix','s:43:\"Filter entries that start with this prefix.\";'),
+('en','messages:apihelp-query+logevents-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+logevents-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+logevents-param-tag','s:45:\"Only list event entries tagged with this tag.\";'),
+('en','messages:apihelp-query+logevents-param-title','s:42:\"Filter entries to those related to a page.\";'),
+('en','messages:apihelp-query+logevents-param-type','s:37:\"Filter log entries to only this type.\";'),
+('en','messages:apihelp-query+logevents-param-user','s:47:\"Filter entries to those made by the given user.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-comment','s:132:\"Adds the comment of the log event. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-details','s:145:\"Lists additional details about the log event. If the log event has been revision deleted, an actionhidden property will be returned.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-ids','s:29:\"Adds the ID of the log event.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-parsedcomment','s:139:\"Adds the parsed comment of the log event. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-tags','s:29:\"Lists tags for the log event.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-timestamp','s:37:\"Adds the timestamp for the log event.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-title','s:45:\"Adds the title of the page for the log event.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-type','s:27:\"Adds the type of log event.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-user','s:136:\"Adds the user responsible for the log event. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+logevents-paramvalue-prop-userid','s:147:\"Adds the user ID who was responsible for the log event. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+logevents-summary','s:21:\"Get events from logs.\";'),
+('en','messages:apihelp-query+mystashedfiles-example-simple','s:87:\"Get the filekey, file size, and pixel size of files in the current user\'s upload stash.\";'),
+('en','messages:apihelp-query+mystashedfiles-param-limit','s:22:\"How many files to get.\";'),
+('en','messages:apihelp-query+mystashedfiles-param-prop','s:40:\"Which properties to fetch for the files.\";'),
+('en','messages:apihelp-query+mystashedfiles-paramvalue-prop-size','s:41:\"Fetch the file size and image dimensions.\";'),
+('en','messages:apihelp-query+mystashedfiles-paramvalue-prop-type','s:42:\"Fetch the file\'s MIME type and media type.\";'),
+('en','messages:apihelp-query+mystashedfiles-summary','s:55:\"Get a list of files in the current user\'s upload stash.\";'),
+('en','messages:apihelp-query+pagepropnames-example-simple','s:28:\"Get first 10 property names.\";'),
+('en','messages:apihelp-query+pagepropnames-param-limit','s:38:\"The maximum number of names to return.\";'),
+('en','messages:apihelp-query+pagepropnames-summary','s:48:\"List all page property names in use on the wiki.\";'),
+('en','messages:apihelp-query+pageprops-example-simple','s:75:\"Get properties for the pages Main Page and MediaWiki.\";'),
+('en','messages:apihelp-query+pageprops-param-prop','s:215:\"Only list these page properties ([[Special:ApiHelp/query+pagepropnames|action=query&list=pagepropnames]] returns page property names in use). Useful for checking whether pages use a certain page property.\";'),
+('en','messages:apihelp-query+pageprops-summary','s:56:\"Get various page properties defined in the page content.\";'),
+('en','messages:apihelp-query+pageswithprop-example-generator','s:89:\"Get additional information about the first 10 pages using __NOTOC__.\";'),
+('en','messages:apihelp-query+pageswithprop-example-simple','s:81:\"List the first 10 pages using {{DISPLAYTITLE:}}.\";'),
+('en','messages:apihelp-query+pageswithprop-param-dir','s:27:\"In which direction to sort.\";'),
+('en','messages:apihelp-query+pageswithprop-param-limit','s:38:\"The maximum number of pages to return.\";'),
+('en','messages:apihelp-query+pageswithprop-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+pageswithprop-param-propname','s:163:\"Page property for which to enumerate pages ([[Special:ApiHelp/query+pagepropnames|action=query&list=pagepropnames]] returns page property names in use).\";'),
+('en','messages:apihelp-query+pageswithprop-paramvalue-prop-ids','s:17:\"Adds the page ID.\";'),
+('en','messages:apihelp-query+pageswithprop-paramvalue-prop-title','s:44:\"Adds the title and namespace ID of the page.\";'),
+('en','messages:apihelp-query+pageswithprop-paramvalue-prop-value','s:36:\"Adds the value of the page property.\";'),
+('en','messages:apihelp-query+pageswithprop-summary','s:43:\"List all pages using a given page property.\";'),
+('en','messages:apihelp-query+prefixsearch-example-simple','s:57:\"Search for page titles beginning with meaning.\";'),
+('en','messages:apihelp-query+prefixsearch-extended-description','s:508:\"Despite the similarity in names, this module is not intended to be equivalent to [[Special:PrefixIndex]]; for that, see [[Special:ApiHelp/query+allpages|action=query&list=allpages]] with the apprefix parameter. The purpose of this module is similar to [[Special:ApiHelp/opensearch|action=opensearch]]: to take user input and provide the best-matching titles. Depending on the search engine backend, this might include typo correction, redirect avoidance, or other heuristics.\";'),
+('en','messages:apihelp-query+prefixsearch-param-limit','s:36:\"Maximum number of results to return.\";'),
+('en','messages:apihelp-query+prefixsearch-param-namespace','s:90:\"Namespaces to search. Ignored if $1search begins with a valid namespace prefix.\";'),
+('en','messages:apihelp-query+prefixsearch-param-offset','s:26:\"Number of results to skip.\";'),
+('en','messages:apihelp-query+prefixsearch-param-profile','s:22:\"Search profile to use.\";'),
+('en','messages:apihelp-query+prefixsearch-param-search','s:14:\"Search string.\";'),
+('en','messages:apihelp-query+prefixsearch-summary','s:40:\"Perform a prefix search for page titles.\";'),
+('en','messages:apihelp-query+protectedtitles-example-generator','s:53:\"Find links to protected titles in the main namespace.\";'),
+('en','messages:apihelp-query+protectedtitles-example-simple','s:22:\"List protected titles.\";'),
+('en','messages:apihelp-query+protectedtitles-param-end','s:42:\"Stop listing at this protection timestamp.\";'),
+('en','messages:apihelp-query+protectedtitles-param-level','s:46:\"Only list titles with these protection levels.\";'),
+('en','messages:apihelp-query+protectedtitles-param-limit','s:31:\"How many total pages to return.\";'),
+('en','messages:apihelp-query+protectedtitles-param-namespace','s:37:\"Only list titles in these namespaces.\";'),
+('en','messages:apihelp-query+protectedtitles-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+protectedtitles-param-start','s:43:\"Start listing at this protection timestamp.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-comment','s:36:\"Adds the comment for the protection.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-expiry','s:57:\"Adds the timestamp of when the protection will be lifted.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-level','s:26:\"Adds the protection level.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-parsedcomment','s:43:\"Adds the parsed comment for the protection.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-timestamp','s:48:\"Adds the timestamp of when protection was added.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-user','s:40:\"Adds the user that added the protection.\";'),
+('en','messages:apihelp-query+protectedtitles-paramvalue-prop-userid','s:43:\"Adds the user ID that added the protection.\";'),
+('en','messages:apihelp-query+protectedtitles-summary','s:40:\"List all titles protected from creation.\";'),
+('en','messages:apihelp-query+querypage-example-ancientpages','s:45:\"Return results from [[Special:Ancientpages]].\";'),
+('en','messages:apihelp-query+querypage-param-limit','s:28:\"Number of results to return.\";'),
+('en','messages:apihelp-query+querypage-param-page','s:59:\"The name of the special page. Note, this is case-sensitive.\";'),
+('en','messages:apihelp-query+querypage-summary','s:54:\"Get a list provided by a QueryPage-based special page.\";'),
+('en','messages:apihelp-query+random-example-generator','s:64:\"Return page info about two random pages from the main namespace.\";'),
+('en','messages:apihelp-query+random-example-simple','s:48:\"Return two random pages from the main namespace.\";'),
+('en','messages:apihelp-query+random-extended-description','s:298:\"Pages are listed in a fixed sequence, only the starting point is random. This means that if, for example, Main Page is the first random page in the list, List of fictional monkeys will always be second, List of people on stamps of Vanuatu third, etc.\";'),
+('en','messages:apihelp-query+random-param-filterredir','s:28:\"How to filter for redirects.\";'),
+('en','messages:apihelp-query+random-param-limit','s:45:\"Limit how many random pages will be returned.\";'),
+('en','messages:apihelp-query+random-param-namespace','s:38:\"Return pages in these namespaces only.\";'),
+('en','messages:apihelp-query+random-param-redirect','s:47:\"Use $1filterredir=redirects instead.\";'),
+('en','messages:apihelp-query+random-summary','s:26:\"Get a set of random pages.\";'),
+('en','messages:apihelp-query+recentchanges-example-generator','s:47:\"Get page info about recent unpatrolled changes.\";'),
+('en','messages:apihelp-query+recentchanges-example-simple','s:20:\"List recent changes.\";'),
+('en','messages:apihelp-query+recentchanges-param-end','s:33:\"The timestamp to end enumerating.\";'),
+('en','messages:apihelp-query+recentchanges-param-excludeuser','s:32:\"Don\'t list changes by this user.\";'),
+('en','messages:apihelp-query+recentchanges-param-generaterevisions','s:174:\"When being used as a generator, generate revision IDs rather than titles. Recent change entries without associated revision IDs (e.g. most log entries) will generate nothing.\";'),
+('en','messages:apihelp-query+recentchanges-param-limit','s:33:\"How many total changes to return.\";'),
+('en','messages:apihelp-query+recentchanges-param-namespace','s:40:\"Filter changes to only these namespaces.\";'),
+('en','messages:apihelp-query+recentchanges-param-prop','s:41:\"Include additional pieces of information:\";'),
+('en','messages:apihelp-query+recentchanges-param-show','s:127:\"Show only items that meet these criteria. For example, to see only minor edits done by logged-in users, set $1show=minor|!anon.\";'),
+('en','messages:apihelp-query+recentchanges-param-slot','s:44:\"Only list changes that touch the named slot.\";'),
+('en','messages:apihelp-query+recentchanges-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+recentchanges-param-tag','s:39:\"Only list changes tagged with this tag.\";'),
+('en','messages:apihelp-query+recentchanges-param-title','s:42:\"Filter entries to those related to a page.\";'),
+('en','messages:apihelp-query+recentchanges-param-toponly','s:48:\"Only list changes which are the latest revision.\";'),
+('en','messages:apihelp-query+recentchanges-param-type','s:31:\"Which types of changes to show.\";'),
+('en','messages:apihelp-query+recentchanges-param-user','s:31:\"Only list changes by this user.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-autopatrolled','s:53:\"Tags patrollable edits as being autopatrolled or not.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-comment','s:128:\"Adds the comment for the edit. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-flags','s:24:\"Adds flags for the edit.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-ids','s:68:\"Adds the page ID, recent changes ID and the new and old revision ID.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-loginfo','s:60:\"Adds log information (log ID, log type, etc) to log entries.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-parsedcomment','s:135:\"Adds the parsed comment for the edit. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-patrolled','s:57:\"Tags patrollable edits as being patrolled or unpatrolled.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-redirect','s:32:\"Tags edit if page is a redirect.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-sha1','s:160:\"Adds the content checksum for entries associated with a revision. If the content has been revision deleted, a sha1hidden property will be returned.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-sizes','s:42:\"Adds the new and old page length in bytes.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-tags','s:25:\"Lists tags for the entry.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-timestamp','s:27:\"Adds timestamp of the edit.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-title','s:32:\"Adds the page title of the edit.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-user','s:158:\"Adds the user responsible for the edit and tags if they are an IP. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+recentchanges-paramvalue-prop-userid','s:134:\"Adds the user ID responsible for the edit. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+recentchanges-summary','s:25:\"Enumerate recent changes.\";'),
+('en','messages:apihelp-query+redirects-example-generator','s:57:\"Get information about all redirects to the [[Main Page]].\";'),
+('en','messages:apihelp-query+redirects-example-simple','s:45:\"Get a list of redirects to the [[Main Page]].\";'),
+('en','messages:apihelp-query+redirects-param-limit','s:29:\"How many redirects to return.\";'),
+('en','messages:apihelp-query+redirects-param-namespace','s:39:\"Only include pages in these namespaces.\";'),
+('en','messages:apihelp-query+redirects-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+redirects-param-show','s:139:\"Show only items that meet these criteria:\n;fragment:Only show redirects with a fragment.\n;!fragment:Only show redirects without a fragment.\";'),
+('en','messages:apihelp-query+redirects-paramvalue-prop-fragment','s:34:\"Fragment of each redirect, if any.\";'),
+('en','messages:apihelp-query+redirects-paramvalue-prop-pageid','s:25:\"Page ID of each redirect.\";'),
+('en','messages:apihelp-query+redirects-paramvalue-prop-title','s:23:\"Title of each redirect.\";'),
+('en','messages:apihelp-query+redirects-summary','s:41:\"Returns all redirects to the given pages.\";'),
+('en','messages:apihelp-query+revisions+base-param-contentformat','s:89:\"Serialization format used for $1difftotext and expected for output of content.\";'),
+('en','messages:apihelp-query+revisions+base-param-diffto','s:218:\"Use [[Special:ApiHelp/compare|action=compare]] instead. Revision ID to diff each revision to. Use prev, next and cur for the previous, next and current revision respectively.\";'),
+('en','messages:apihelp-query+revisions+base-param-difftotext','s:254:\"Use [[Special:ApiHelp/compare|action=compare]] instead. Text to diff each revision to. Only diffs a limited number of revisions. Overrides $1diffto. If $1section is set, only that section will be diffed against this text.\";'),
+('en','messages:apihelp-query+revisions+base-param-difftotextpst','s:177:\"Use [[Special:ApiHelp/compare|action=compare]] instead. Perform a pre-save transform on the text before diffing it. Only valid when used with $1difftotext.\";'),
+('en','messages:apihelp-query+revisions+base-param-expandtemplates','s:146:\"Use [[Special:ApiHelp/expandtemplates|action=expandtemplates]] instead. Expand templates in revision content (requires $1prop=content).\";'),
+('en','messages:apihelp-query+revisions+base-param-generatexml','s:207:\"Use [[Special:ApiHelp/expandtemplates|action=expandtemplates]] or [[Special:ApiHelp/parse|action=parse]] instead. Generate XML parse tree for revision content (requires $1prop=content).\";'),
+('en','messages:apihelp-query+revisions+base-param-limit','s:42:\"Limit how many revisions will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-param-parse','s:187:\"Use [[Special:ApiHelp/parse|action=parse]] instead. Parse revision content (requires $1prop=content). For performance reasons, if this option is used, $1limit is enforced to 1.\";'),
+('en','messages:apihelp-query+revisions+base-param-prop','s:42:\"Which properties to get for each revision:\";'),
+('en','messages:apihelp-query+revisions+base-param-section','s:62:\"Only retrieve the content of the section with this identifier.\";'),
+('en','messages:apihelp-query+revisions+base-param-slots','s:203:\"Which revision slots to return data for, when slot-related properties are included in $1props. If omitted, data from the main slot will be returned in a backwards-compatible format.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-comment','s:135:\"Comment by the user for the revision. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-content','s:125:\"Content of each revision slot. If the content has been revision deleted, a texthidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-contentmodel','s:39:\"Content model ID of each revision slot.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-flags','s:23:\"Revision flags (minor).\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-ids','s:23:\"The ID of the revision.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-parsedcomment','s:142:\"Parsed comment by the user for the revision. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-parsetree','s:216:\"Use [[Special:ApiHelp/expandtemplates|action=expandtemplates]] or [[Special:ApiHelp/parse|action=parse]] instead. The XML parse tree of revision content (requires content model $1).\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-roles','s:51:\"List content slot roles that exist in the revision.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-sha1','s:127:\"SHA-1 (base 16) of the revision. If the content has been revision deleted, a sha1hidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-size','s:31:\"Length (bytes) of the revision.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-slotsha1','s:133:\"SHA-1 (base 16) of each revision slot. If the content has been revision deleted, a sha1hidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-slotsize','s:37:\"Length (bytes) of each revision slot.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-tags','s:22:\"Tags for the revision.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-timestamp','s:30:\"The timestamp of the revision.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-user','s:120:\"User that made the revision. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions+base-paramvalue-prop-userid','s:124:\"User ID of the revision creator. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+revisions-example-content','s:94:\"Get data with content for the last revision of titles API and Main Page.\";'),
+('en','messages:apihelp-query+revisions-example-first5','s:50:\"Get first 5 revisions of the Main Page.\";'),
+('en','messages:apihelp-query+revisions-example-first5-after','s:72:\"Get first 5 revisions of the Main Page made after 2006-05-01.\";'),
+('en','messages:apihelp-query+revisions-example-first5-not-localhost','s:108:\"Get first 5 revisions of the Main Page that were not made by anonymous user 127.0.0.1.\";'),
+('en','messages:apihelp-query+revisions-example-first5-user','s:106:\"Get first 5 revisions of the Main Page that were made by the user MediaWiki default.\";'),
+('en','messages:apihelp-query+revisions-example-last5','s:49:\"Get last 5 revisions of the Main Page.\";'),
+('en','messages:apihelp-query+revisions-extended-description','s:267:\"May be used in several ways:\n# Get data about a set of pages (last revision), by setting titles or pageids.\n# Get revisions for one given page, by using titles or pageids with start, end, or limit.\n# Get data about a set of revisions by setting their IDs with revids.\";'),
+('en','messages:apihelp-query+revisions-param-end','s:31:\"Enumerate up to this timestamp.\";'),
+('en','messages:apihelp-query+revisions-param-endid','s:105:\"Stop enumeration at this revision\'s timestamp. The revision must exist, but need not belong to this page.\";'),
+('en','messages:apihelp-query+revisions-param-excludeuser','s:31:\"Exclude revisions made by user.\";'),
+('en','messages:apihelp-query+revisions-param-start','s:51:\"From which revision timestamp to start enumeration.\";'),
+('en','messages:apihelp-query+revisions-param-startid','s:108:\"Start enumeration from this revision\'s timestamp. The revision must exist, but need not belong to this page.\";'),
+('en','messages:apihelp-query+revisions-param-tag','s:41:\"Only list revisions tagged with this tag.\";'),
+('en','messages:apihelp-query+revisions-param-user','s:36:\"Only include revisions made by user.\";'),
+('en','messages:apihelp-query+revisions-paraminfo-singlepageonly','s:46:\"May only be used with a single page (mode #2).\";'),
+('en','messages:apihelp-query+revisions-summary','s:25:\"Get revision information.\";'),
+('en','messages:apihelp-query+search-example-generator','s:75:\"Get page info about the pages returned for a search for meaning.\";'),
+('en','messages:apihelp-query+search-example-simple','s:30:\"Search for meaning.\";'),
+('en','messages:apihelp-query+search-example-text','s:36:\"Search texts for meaning.\";'),
+('en','messages:apihelp-query+search-param-backend','s:48:\"Which search backend to use, if not the default.\";'),
+('en','messages:apihelp-query+search-param-enablerewrites','s:176:\"Enable internal query rewriting. Some search backends can rewrite the query into another which is thought to provide better results, for instance by correcting spelling errors.\";'),
+('en','messages:apihelp-query+search-param-info','s:25:\"Which metadata to return.\";'),
+('en','messages:apihelp-query+search-param-interwiki','s:54:\"Include interwiki results in the search, if available.\";'),
+('en','messages:apihelp-query+search-param-limit','s:31:\"How many total pages to return.\";'),
+('en','messages:apihelp-query+search-param-namespace','s:36:\"Search only within these namespaces.\";'),
+('en','messages:apihelp-query+search-param-prop','s:27:\"Which properties to return:\";'),
+('en','messages:apihelp-query+search-param-qiprofile','s:61:\"Query independent profile to use (affects ranking algorithm).\";'),
+('en','messages:apihelp-query+search-param-search','s:175:\"Search for page titles or content matching this value. You can use the search string to invoke special search features, depending on what the wiki\'s search backend implements.\";'),
+('en','messages:apihelp-query+search-param-sort','s:39:\"Set the sort order of returned results.\";'),
+('en','messages:apihelp-query+search-param-what','s:32:\"Which type of search to perform.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-categorysnippet','s:47:\"Adds a parsed snippet of the matching category.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-extensiondata','s:40:\"Adds extra data generated by extensions.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-hasrelated','s:8:\"Ignored.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-isfilematch','s:61:\"Adds a boolean indicating if the search matched file content.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-redirectsnippet','s:44:\"Adds a parsed snippet of the redirect title.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-redirecttitle','s:40:\"Adds the title of the matching redirect.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-score','s:8:\"Ignored.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-sectionsnippet','s:52:\"Adds a parsed snippet of the matching section title.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-sectiontitle','s:39:\"Adds the title of the matching section.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-size','s:35:\"Adds the size of the page in bytes.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-snippet','s:34:\"Adds a parsed snippet of the page.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-timestamp','s:52:\"Adds the timestamp of when the page was last edited.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-titlesnippet','s:40:\"Adds a parsed snippet of the page title.\";'),
+('en','messages:apihelp-query+search-paramvalue-prop-wordcount','s:32:\"Adds the word count of the page.\";'),
+('en','messages:apihelp-query+search-summary','s:27:\"Perform a full text search.\";'),
+('en','messages:apihelp-query+siteinfo-example-interwiki','s:41:\"Fetch a list of local interwiki prefixes.\";'),
+('en','messages:apihelp-query+siteinfo-example-replag','s:34:\"Check the current replication lag.\";'),
+('en','messages:apihelp-query+siteinfo-example-simple','s:23:\"Fetch site information.\";'),
+('en','messages:apihelp-query+siteinfo-param-filteriw','s:64:\"Return only local or only nonlocal entries of the interwiki map.\";'),
+('en','messages:apihelp-query+siteinfo-param-inlanguagecode','s:72:\"Language code for localised language names (best effort) and skin names.\";'),
+('en','messages:apihelp-query+siteinfo-param-numberingroup','s:41:\"Lists the number of users in user groups.\";'),
+('en','messages:apihelp-query+siteinfo-param-prop','s:25:\"Which information to get:\";'),
+('en','messages:apihelp-query+siteinfo-param-showalldb','s:61:\"List all database servers, not just the one lagging the most.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-dbrepllag','s:57:\"Returns database server with the highest replication lag.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-defaultoptions','s:48:\"Returns the default values for user preferences.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-extensions','s:41:\"Returns extensions installed on the wiki.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-extensiontags','s:40:\"Returns a list of parser extension tags.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-fileextensions','s:68:\"Returns list of file extensions (file types) allowed to be uploaded.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-functionhooks','s:40:\"Returns a list of parser function hooks.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-general','s:27:\"Overall system information.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-interwikimap','s:103:\"Returns interwiki map (optionally filtered, optionally localised by using $1inlanguagecode).\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-languages','s:107:\"Returns a list of languages MediaWiki supports (optionally localised by using $1inlanguagecode).\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-languagevariants','s:153:\"Returns a list of language codes for which [[mw:Special:MyLanguage/LanguageConverter|LanguageConverter]] is enabled, and the variants supported for each.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-libraries','s:40:\"Returns libraries installed on the wiki.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-magicwords','s:38:\"List of magic words and their aliases.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-namespacealiases','s:37:\"List of registered namespace aliases.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-namespaces','s:56:\"List of registered namespaces and their canonical names.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-protocols','s:63:\"Returns a list of protocols that are allowed in external links.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-restrictions','s:64:\"Returns information on available restriction (protection) types.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-rightsinfo','s:55:\"Returns wiki rights (license) information if available.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-showhooks','s:115:\"Returns a list of all subscribed hooks (contents of [[mw:Special:MyLanguage/Manual:$wgHooks|$wgHooks]]).\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-skins','s:131:\"Returns a list of all enabled skins (optionally localised by using $1inlanguagecode, otherwise in the content language).\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-specialpagealiases','s:29:\"List of special page aliases.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-statistics','s:24:\"Returns site statistics.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-uploaddialog','s:40:\"Returns the upload dialog configuration.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-usergroups','s:51:\"Returns user groups and the associated permissions.\";'),
+('en','messages:apihelp-query+siteinfo-paramvalue-prop-variables','s:31:\"Returns a list of variable IDs.\";'),
+('en','messages:apihelp-query+siteinfo-summary','s:42:\"Return general information about the site.\";'),
+('en','messages:apihelp-query+stashimageinfo-example-params','s:41:\"Returns thumbnails for two stashed files.\";'),
+('en','messages:apihelp-query+stashimageinfo-example-simple','s:39:\"Returns information for a stashed file.\";'),
+('en','messages:apihelp-query+stashimageinfo-param-filekey','s:67:\"Key that identifies a previous upload that was stashed temporarily.\";'),
+('en','messages:apihelp-query+stashimageinfo-param-sessionkey','s:48:\"Alias for $1filekey, for backward compatibility.\";'),
+('en','messages:apihelp-query+stashimageinfo-summary','s:43:\"Returns file information for stashed files.\";'),
+('en','messages:apihelp-query+tags-example-simple','s:20:\"List available tags.\";'),
+('en','messages:apihelp-query+tags-param-limit','s:35:\"The maximum number of tags to list.\";'),
+('en','messages:apihelp-query+tags-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-active','s:39:\"Whether the tag is still being applied.\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-defined','s:36:\"Indicate whether the tag is defined.\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-description','s:28:\"Adds description of the tag.\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-displayname','s:32:\"Adds system message for the tag.\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-hitcount','s:64:\"Adds the number of revisions and log entries that have this tag.\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-name','s:17:\"Adds name of tag.\";'),
+('en','messages:apihelp-query+tags-paramvalue-prop-source','s:168:\"Gets the sources of the tag, which may include extension for extension-defined tags and manual for tags that may be applied manually by users.\";'),
+('en','messages:apihelp-query+tags-summary','s:17:\"List change tags.\";'),
+('en','messages:apihelp-query+templates-example-generator','s:70:\"Get information about the template pages used on Main Page.\";'),
+('en','messages:apihelp-query+templates-example-namespaces','s:114:\"Get pages in the {{ns:user}} and {{ns:template}} namespaces that are transcluded on the page Main Page.\";'),
+('en','messages:apihelp-query+templates-example-simple','s:56:\"Get the templates used on the page Main Page.\";'),
+('en','messages:apihelp-query+templates-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+templates-param-limit','s:29:\"How many templates to return.\";'),
+('en','messages:apihelp-query+templates-param-namespace','s:40:\"Show templates in these namespaces only.\";'),
+('en','messages:apihelp-query+templates-param-templates','s:94:\"Only list these templates. Useful for checking whether a certain page uses a certain template.\";'),
+('en','messages:apihelp-query+templates-summary','s:49:\"Returns all pages transcluded on the given pages.\";'),
+('en','messages:apihelp-query+tokens-example-simple','s:36:\"Retrieve a csrf token (the default).\";'),
+('en','messages:apihelp-query+tokens-example-types','s:42:\"Retrieve a watch token and a patrol token.\";'),
+('en','messages:apihelp-query+tokens-param-type','s:26:\"Types of token to request.\";'),
+('en','messages:apihelp-query+tokens-summary','s:39:\"Gets tokens for data-modifying actions.\";'),
+('en','messages:apihelp-query+transcludedin-example-generator','s:62:\"Get information about pages transcluding Main Page.\";'),
+('en','messages:apihelp-query+transcludedin-example-simple','s:54:\"Get a list of pages transcluding Main Page.\";'),
+('en','messages:apihelp-query+transcludedin-param-limit','s:19:\"How many to return.\";'),
+('en','messages:apihelp-query+transcludedin-param-namespace','s:39:\"Only include pages in these namespaces.\";'),
+('en','messages:apihelp-query+transcludedin-param-prop','s:24:\"Which properties to get:\";'),
+('en','messages:apihelp-query+transcludedin-param-show','s:108:\"Show only items that meet these criteria:\n;redirect:Only show redirects.\n;!redirect:Only show non-redirects.\";'),
+('en','messages:apihelp-query+transcludedin-paramvalue-prop-pageid','s:21:\"Page ID of each page.\";'),
+('en','messages:apihelp-query+transcludedin-paramvalue-prop-redirect','s:31:\"Flag if the page is a redirect.\";'),
+('en','messages:apihelp-query+transcludedin-paramvalue-prop-title','s:19:\"Title of each page.\";'),
+('en','messages:apihelp-query+transcludedin-summary','s:47:\"Find all pages that transclude the given pages.\";'),
+('en','messages:apihelp-query+usercontribs-example-ipprefix','s:73:\"Show contributions from all IP addresses with prefix 192.0.2..\";'),
+('en','messages:apihelp-query+usercontribs-example-user','s:46:\"Show contributions of user Example.\";'),
+('en','messages:apihelp-query+usercontribs-param-end','s:68:\"The end timestamp to return to, i.e. revisions after this timestamp.\";'),
+('en','messages:apihelp-query+usercontribs-param-limit','s:46:\"The maximum number of contributions to return.\";'),
+('en','messages:apihelp-query+usercontribs-param-namespace','s:44:\"Only list contributions in these namespaces.\";'),
+('en','messages:apihelp-query+usercontribs-param-prop','s:41:\"Include additional pieces of information:\";'),
+('en','messages:apihelp-query+usercontribs-param-show','s:305:\"Show only items that meet these criteria, e.g. non minor edits only: $2show=!minor.\n\nIf $2show=patrolled or $2show=!patrolled is set, revisions older than [[mw:Special:MyLanguage/Manual:$wgRCMaxAge|$wgRCMaxAge]] ($1 {{PLURAL:$1|second|seconds}}) won\'t be shown.\";'),
+('en','messages:apihelp-query+usercontribs-param-start','s:73:\"The start timestamp to return from, i.e. revisions before this timestamp.\";'),
+('en','messages:apihelp-query+usercontribs-param-tag','s:41:\"Only list revisions tagged with this tag.\";'),
+('en','messages:apihelp-query+usercontribs-param-toponly','s:48:\"Only list changes which are the latest revision.\";'),
+('en','messages:apihelp-query+usercontribs-param-user','s:109:\"The users to retrieve contributions for. Cannot be used with $1userids or $1userprefix.\";'),
+('en','messages:apihelp-query+usercontribs-param-userids','s:109:\"The user IDs to retrieve contributions for. Cannot be used with $1user or $1userprefix.\";'),
+('en','messages:apihelp-query+usercontribs-param-userprefix','s:134:\"Retrieve contributions for all users whose names begin with this value. Cannot be used with $1user or $1userids.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-autopatrolled','s:25:\"Tags autopatrolled edits.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-comment','s:127:\"Adds the comment of the edit. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-flags','s:23:\"Adds flags of the edit.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-ids','s:33:\"Adds the page ID and revision ID.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-parsedcomment','s:134:\"Adds the parsed comment of the edit. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-patrolled','s:21:\"Tags patrolled edits.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-size','s:30:\"Adds the new size of the edit.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-sizediff','s:51:\"Adds the size delta of the edit against its parent.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-tags','s:24:\"Lists tags for the edit.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-timestamp','s:31:\"Adds the timestamp of the edit.\";'),
+('en','messages:apihelp-query+usercontribs-paramvalue-prop-title','s:44:\"Adds the title and namespace ID of the page.\";'),
+('en','messages:apihelp-query+usercontribs-summary','s:24:\"Get all edits by a user.\";'),
+('en','messages:apihelp-query+userinfo-example-data','s:50:\"Get additional information about the current user.\";'),
+('en','messages:apihelp-query+userinfo-example-simple','s:39:\"Get information about the current user.\";'),
+('en','messages:apihelp-query+userinfo-param-attachedwiki','s:109:\"With $1prop=centralids, indicate whether the user is attached with the wiki identified by this ID.\";'),
+('en','messages:apihelp-query+userinfo-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-acceptlang','s:89:\"Echoes the Accept-Language header sent by the client in a structured format.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-blockinfo','s:66:\"Tags if the current user is blocked, by whom, and for what reason.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-centralids','s:56:\"Adds the central IDs and attachment status for the user.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-changeablegroups','s:61:\"Lists the groups the current user can add to and remove from.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-editcount','s:35:\"Adds the current user\'s edit count.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-email','s:60:\"Adds the user\'s email address and email authentication date.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-groupmemberships','s:119:\"Lists groups that the current user has been explicitly assigned to, including the expiry date of each group membership.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-groups','s:49:\"Lists all the groups the current user belongs to.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-hasmsg','s:74:\"Adds a tag messages if the current user has pending messages.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-implicitgroups','s:67:\"Lists all the groups the current user is automatically a member of.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-latestcontrib','s:44:\"Adds the date of user\'s latest contribution.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-options','s:47:\"Lists all preferences the current user has set.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-ratelimits','s:51:\"Lists all rate limits applying to the current user.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-realname','s:26:\"Adds the user\'s real name.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-registrationdate','s:34:\"Adds the user\'s registration date.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-rights','s:42:\"Lists all the rights the current user has.\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-theoreticalratelimits','s:129:\"Lists all rate limits that would apply to the current user if they were not exempt from all ratelimits based on user rights or ip\";'),
+('en','messages:apihelp-query+userinfo-paramvalue-prop-unreadcount','s:101:\"Adds the count of unread pages on the user\'s watchlist (maximum $1; returns $2 if more).\";'),
+('en','messages:apihelp-query+userinfo-summary','s:39:\"Get information about the current user.\";'),
+('en','messages:apihelp-query+users-example-simple','s:47:\"Return information for user Example.\";'),
+('en','messages:apihelp-query+users-param-attachedwiki','s:109:\"With $1prop=centralids, indicate whether the user is attached with the wiki identified by this ID.\";'),
+('en','messages:apihelp-query+users-param-prop','s:39:\"Which pieces of information to include:\";'),
+('en','messages:apihelp-query+users-param-userids','s:45:\"A list of user IDs to obtain information for.\";'),
+('en','messages:apihelp-query+users-param-users','s:42:\"A list of users to obtain information for.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-blockinfo','s:58:\"Tags if the user is blocked, by whom, and for what reason.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-cancreate','s:81:\"Indicates whether an account for valid but unregistered usernames can be created.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-centralids','s:56:\"Adds the central IDs and attachment status for the user.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-editcount','s:27:\"Adds the user\'s edit count.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-emailable','s:78:\"Tags if the user can and wants to receive email through [[Special:Emailuser]].\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-gender','s:68:\"Tags the gender of the user. Returns \"male\", \"female\", or \"unknown\".\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-groupmemberships','s:112:\"Lists groups that each user has been explicitly assigned to, including the expiry date of each group membership.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-groups','s:42:\"Lists all the groups each user belongs to.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-implicitgroups','s:57:\"Lists all the groups a user is automatically a member of.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-registration','s:39:\"Adds the user\'s registration timestamp.\";'),
+('en','messages:apihelp-query+users-paramvalue-prop-rights','s:35:\"Lists all the rights each user has.\";'),
+('en','messages:apihelp-query+users-summary','s:38:\"Get information about a list of users.\";'),
+('en','messages:apihelp-query+watchlist-example-allrev','s:84:\"Fetch information about all recent changes to pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-example-expiry','s:165:\"Fetch additional information about the top revision for recently changed pages on the current user\'s watchlist, including when temporarily watched items will expire.\";'),
+('en','messages:apihelp-query+watchlist-example-generator','s:75:\"Fetch page info for recently changed pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-example-generator-rev','s:80:\"Fetch revision info for recent changes to pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-example-props','s:111:\"Fetch additional information about the top revision for recently changed pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-example-simple','s:81:\"List the top revision for recently changed pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-example-wlowner','s:93:\"List the top revision for recently changed pages on the watchlist of user Example.\";'),
+('en','messages:apihelp-query+watchlist-param-allrev','s:67:\"Include multiple revisions of the same page within given timeframe.\";'),
+('en','messages:apihelp-query+watchlist-param-end','s:33:\"The timestamp to end enumerating.\";'),
+('en','messages:apihelp-query+watchlist-param-excludeuser','s:32:\"Don\'t list changes by this user.\";'),
+('en','messages:apihelp-query+watchlist-param-limit','s:45:\"How many total results to return per request.\";'),
+('en','messages:apihelp-query+watchlist-param-namespace','s:44:\"Filter changes to only the given namespaces.\";'),
+('en','messages:apihelp-query+watchlist-param-owner','s:63:\"Used along with $1token to access a different user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-param-prop','s:35:\"Which additional properties to get:\";'),
+('en','messages:apihelp-query+watchlist-param-show','s:127:\"Show only items that meet these criteria. For example, to see only minor edits done by logged-in users, set $1show=minor|!anon.\";'),
+('en','messages:apihelp-query+watchlist-param-start','s:40:\"The timestamp to start enumerating from.\";'),
+('en','messages:apihelp-query+watchlist-param-token','s:148:\"A security token (available in the user\'s [[Special:Preferences#mw-prefsection-watchlist|preferences]]) to allow access to another user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlist-param-type','s:31:\"Which types of changes to show:\";'),
+('en','messages:apihelp-query+watchlist-param-user','s:31:\"Only list changes by this user.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-autopatrol','s:34:\"Tags edits that are autopatrolled.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-comment','s:123:\"Adds comment of the edit. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-flags','s:24:\"Adds flags for the edit.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-ids','s:31:\"Adds revision IDs and page IDs.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-loginfo','s:39:\"Adds log information where appropriate.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-notificationtimestamp','s:65:\"Adds timestamp of when the user was last notified about the edit.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-parsedcomment','s:130:\"Adds parsed comment of the edit. If the comment has been revision deleted, a commenthidden property will be returned.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-patrol','s:30:\"Tags edits that are patrolled.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-sizes','s:41:\"Adds the old and new lengths of the page.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-tags','s:25:\"Lists tags for the entry.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-timestamp','s:27:\"Adds timestamp of the edit.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-title','s:23:\"Adds title of the page.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-user','s:124:\"Adds the user who made the edit. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-prop-userid','s:130:\"Adds user ID of whoever made the edit. If the user has been revision deleted, a userhidden property will be returned.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-type-categorize','s:28:\"Category membership changes.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-type-edit','s:19:\"Regular page edits.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-type-external','s:17:\"External changes.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-type-log','s:12:\"Log entries.\";'),
+('en','messages:apihelp-query+watchlist-paramvalue-type-new','s:15:\"Page creations.\";'),
+('en','messages:apihelp-query+watchlist-summary','s:60:\"Get recent changes to pages in the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlistraw-example-generator','s:58:\"Fetch page info for pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlistraw-example-simple','s:43:\"List pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlistraw-param-dir','s:31:\"The direction in which to list.\";'),
+('en','messages:apihelp-query+watchlistraw-param-fromtitle','s:56:\"Title (with namespace prefix) to begin enumerating from.\";'),
+('en','messages:apihelp-query+watchlistraw-param-limit','s:45:\"How many total results to return per request.\";'),
+('en','messages:apihelp-query+watchlistraw-param-namespace','s:40:\"Only list pages in the given namespaces.\";'),
+('en','messages:apihelp-query+watchlistraw-param-owner','s:63:\"Used along with $1token to access a different user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlistraw-param-prop','s:35:\"Which additional properties to get:\";'),
+('en','messages:apihelp-query+watchlistraw-param-show','s:41:\"Only list items that meet these criteria.\";'),
+('en','messages:apihelp-query+watchlistraw-param-token','s:148:\"A security token (available in the user\'s [[Special:Preferences#mw-prefsection-watchlist|preferences]]) to allow access to another user\'s watchlist.\";'),
+('en','messages:apihelp-query+watchlistraw-param-totitle','s:53:\"Title (with namespace prefix) to stop enumerating at.\";'),
+('en','messages:apihelp-query+watchlistraw-paramvalue-prop-changed','s:65:\"Adds timestamp of when the user was last notified about the edit.\";'),
+('en','messages:apihelp-query+watchlistraw-summary','s:46:\"Get all pages on the current user\'s watchlist.\";'),
+('en','messages:apihelp-query-example-allpages','s:56:\"Fetch revisions of pages beginning with API/.\";'),
+('en','messages:apihelp-query-example-revisions','s:125:\"Fetch [[Special:ApiHelp/query+siteinfo|site info]] and [[Special:ApiHelp/query+revisions|revisions]] of Main Page.\";'),
+('en','messages:apihelp-query-extended-description','s:109:\"All data modifications will first have to use query to acquire a token to prevent abuse from malicious sites.\";'),
+('en','messages:apihelp-query-param-export','s:61:\"Export the current revisions of all given or generated pages.\";'),
+('en','messages:apihelp-query-param-exportnowrap','s:127:\"Return the export XML without wrapping it in an XML result (same format as [[Special:Export]]). Can only be used with $1export.\";'),
+('en','messages:apihelp-query-param-exportschema','s:106:\"Target the given version of the XML dump format when exporting. Can only be used with $1export.\";'),
+('en','messages:apihelp-query-param-indexpageids','s:68:\"Include an additional pageids section listing all returned page IDs.\";'),
+('en','messages:apihelp-query-param-iwurl','s:62:\"Whether to get the full URL if the title is an interwiki link.\";'),
+('en','messages:apihelp-query-param-list','s:19:\"Which lists to get.\";'),
+('en','messages:apihelp-query-param-meta','s:22:\"Which metadata to get.\";'),
+('en','messages:apihelp-query-param-prop','s:46:\"Which properties to get for the queried pages.\";'),
+('en','messages:apihelp-query-param-rawcontinue','s:61:\"Return raw query-continue data for continuation.\";'),
+('en','messages:apihelp-query-summary','s:36:\"Fetch data from and about MediaWiki.\";'),
+('en','messages:apihelp-rawfm-summary','s:81:\"Output data, including debugging elements, in JSON format (pretty-print in HTML).\";'),
+('en','messages:apihelp-removeauthenticationdata-example-simple','s:82:\"Attempt to remove the current user\'s data for FooAuthenticationRequest.\";'),
+('en','messages:apihelp-removeauthenticationdata-summary','s:48:\"Remove authentication data for the current user.\";'),
+('en','messages:apihelp-resetpassword-example-email','s:89:\"Send a password reset email for all users with email address user@example.com.\";'),
+('en','messages:apihelp-resetpassword-example-user','s:55:\"Send a password reset email to user Example.\";'),
+('en','messages:apihelp-resetpassword-extended-description-noroutes','s:167:\"No password reset routes are available.\n\nEnable routes in [[mw:Special:MyLanguage/Manual:$wgPasswordResetRoutes|$wgPasswordResetRoutes]] to use this module.\";'),
+('en','messages:apihelp-resetpassword-param-email','s:38:\"Email address of the user being reset.\";'),
+('en','messages:apihelp-resetpassword-param-user','s:17:\"User being reset.\";'),
+('en','messages:apihelp-resetpassword-summary','s:38:\"Send a password reset email to a user.\";'),
+('en','messages:apihelp-revisiondelete-example-log','s:85:\"Hide all data on log entry 67890 with the reason BLP violation.\";'),
+('en','messages:apihelp-revisiondelete-example-revision','s:76:\"Hide content for revision 12345 on the page Main Page.\";'),
+('en','messages:apihelp-revisiondelete-param-hide','s:31:\"What to hide for each revision.\";'),
+('en','messages:apihelp-revisiondelete-param-ids','s:44:\"Identifiers for the revisions to be deleted.\";'),
+('en','messages:apihelp-revisiondelete-param-reason','s:38:\"Reason for the deletion or undeletion.\";'),
+('en','messages:apihelp-revisiondelete-param-show','s:33:\"What to unhide for each revision.\";'),
+('en','messages:apihelp-revisiondelete-param-suppress','s:63:\"Whether to suppress data from administrators as well as others.\";'),
+('en','messages:apihelp-revisiondelete-param-tags','s:47:\"Tags to apply to the entry in the deletion log.\";'),
+('en','messages:apihelp-revisiondelete-param-target','s:63:\"Page title for the revision deletion, if required for the type.\";'),
+('en','messages:apihelp-revisiondelete-param-type','s:42:\"Type of revision deletion being performed.\";'),
+('en','messages:apihelp-revisiondelete-summary','s:30:\"Delete and undelete revisions.\";'),
+('en','messages:apihelp-rollback-example-simple','s:81:\"Roll back the last edits to page Main Page by user Example.\";'),
+('en','messages:apihelp-rollback-example-summary','s:180:\"Roll back the last edits to page Main Page by IP user 192.0.2.5 with summary Reverting vandalism, and mark those edits and the revert as bot edits.\";'),
+('en','messages:apihelp-rollback-extended-description','s:96:\"If the last user who edited the page made multiple edits in a row, they will all be rolled back.\";'),
+('en','messages:apihelp-rollback-param-markbot','s:52:\"Mark the reverted edits and the revert as bot edits.\";'),
+('en','messages:apihelp-rollback-param-pageid','s:82:\"Page ID of the page to roll back. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-rollback-param-summary','s:60:\"Custom edit summary. If empty, default summary will be used.\";'),
+('en','messages:apihelp-rollback-param-tags','s:30:\"Tags to apply to the rollback.\";'),
+('en','messages:apihelp-rollback-param-title','s:81:\"Title of the page to roll back. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-rollback-param-user','s:51:\"Name of the user whose edits are to be rolled back.\";'),
+('en','messages:apihelp-rollback-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-rollback-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-rollback-summary','s:31:\"Undo the last edit to the page.\";'),
+('en','messages:apihelp-rsd-example-simple','s:22:\"Export the RSD schema.\";'),
+('en','messages:apihelp-rsd-summary','s:47:\"Export an RSD (Really Simple Discovery) schema.\";'),
+('en','messages:apihelp-setnotificationtimestamp-example-all','s:55:\"Reset the notification status for the entire watchlist.\";'),
+('en','messages:apihelp-setnotificationtimestamp-example-allpages','s:80:\"Reset the notification status for pages in the {{ns:user}} namespace.\";'),
+('en','messages:apihelp-setnotificationtimestamp-example-page','s:55:\"Reset the notification status for Main page.\";'),
+('en','messages:apihelp-setnotificationtimestamp-example-pagetimestamp','s:103:\"Set the notification timestamp for Main page so all edits since 1 January 2012 are unviewed.\";'),
+('en','messages:apihelp-setnotificationtimestamp-extended-description','s:168:\"This affects the highlighting of changed pages in the watchlist and history, and the sending of email when the \"{{int:tog-enotifwatchlistpages}}\" preference is enabled.\";'),
+('en','messages:apihelp-setnotificationtimestamp-param-entirewatchlist','s:26:\"Work on all watched pages.\";'),
+('en','messages:apihelp-setnotificationtimestamp-param-newerthanrevid','s:70:\"Revision to set the notification timestamp newer than (one page only).\";'),
+('en','messages:apihelp-setnotificationtimestamp-param-timestamp','s:53:\"Timestamp to which to set the notification timestamp.\";'),
+('en','messages:apihelp-setnotificationtimestamp-param-torevid','s:62:\"Revision to set the notification timestamp to (one page only).\";'),
+('en','messages:apihelp-setnotificationtimestamp-summary','s:52:\"Update the notification timestamp for watched pages.\";'),
+('en','messages:apihelp-setpagelanguage-example-default','s:83:\"Change the language of the page with ID 123 to the wiki\'s default content language.\";'),
+('en','messages:apihelp-setpagelanguage-example-language','s:54:\"Change the language of Main Page to Basque.\";'),
+('en','messages:apihelp-setpagelanguage-extended-description-disabled','s:174:\"Changing the language of a page is not allowed on this wiki.\n\nEnable [[mw:Special:MyLanguage/Manual:$wgPageLanguageUseDB|$wgPageLanguageUseDB]] to use this action.\";'),
+('en','messages:apihelp-setpagelanguage-param-lang','s:133:\"Language code of the language to change the page to. Use default to reset the page to the wiki\'s default content language.\";'),
+('en','messages:apihelp-setpagelanguage-param-pageid','s:103:\"Page ID of the page whose language you wish to change. Cannot be used together with $1title.\";'),
+('en','messages:apihelp-setpagelanguage-param-reason','s:22:\"Reason for the change.\";'),
+('en','messages:apihelp-setpagelanguage-param-tags','s:65:\"Change tags to apply to the log entry resulting from this action.\";'),
+('en','messages:apihelp-setpagelanguage-param-title','s:102:\"Title of the page whose language you wish to change. Cannot be used together with $1pageid.\";'),
+('en','messages:apihelp-setpagelanguage-summary','s:30:\"Change the language of a page.\";'),
+('en','messages:apihelp-stashedit-extended-description','s:100:\"This is intended to be used via AJAX from the edit form to improve the performance of the page save.\";'),
+('en','messages:apihelp-stashedit-param-baserevid','s:33:\"Revision ID of the base revision.\";'),
+('en','messages:apihelp-stashedit-param-contentformat','s:53:\"Content serialization format used for the input text.\";'),
+('en','messages:apihelp-stashedit-param-contentmodel','s:33:\"Content model of the new content.\";'),
+('en','messages:apihelp-stashedit-param-section','s:87:\"Section identifier. 0 for the top section, new for a new section.\";'),
+('en','messages:apihelp-stashedit-param-sectiontitle','s:28:\"The title for a new section.\";'),
+('en','messages:apihelp-stashedit-param-stashedtexthash','s:52:\"Page content hash from a prior stash to use instead.\";'),
+('en','messages:apihelp-stashedit-param-summary','s:15:\"Change summary.\";'),
+('en','messages:apihelp-stashedit-param-text','s:13:\"Page content.\";'),
+('en','messages:apihelp-stashedit-param-title','s:31:\"Title of the page being edited.\";'),
+('en','messages:apihelp-stashedit-summary','s:32:\"Prepare an edit in shared cache.\";'),
+('en','messages:apihelp-summary','s:0:\"\";'),
+('en','messages:apihelp-tag-example-log','s:95:\"Remove the spam tag from log entry ID 123 with the reason Wrongly applied\";'),
+('en','messages:apihelp-tag-example-rev','s:79:\"Add the vandalism tag to revision ID 123 without specifying a reason\";'),
+('en','messages:apihelp-tag-param-add','s:53:\"Tags to add. Only manually defined tags can be added.\";'),
+('en','messages:apihelp-tag-param-logid','s:62:\"One or more log entry IDs from which to add or remove the tag.\";'),
+('en','messages:apihelp-tag-param-rcid','s:67:\"One or more recent changes IDs from which to add or remove the tag.\";'),
+('en','messages:apihelp-tag-param-reason','s:22:\"Reason for the change.\";'),
+('en','messages:apihelp-tag-param-remove','s:98:\"Tags to remove. Only tags that are either manually defined or completely undefined can be removed.\";'),
+('en','messages:apihelp-tag-param-revid','s:61:\"One or more revision IDs from which to add or remove the tag.\";'),
+('en','messages:apihelp-tag-param-tags','s:79:\"Tags to apply to the log entry that will be created as a result of this action.\";'),
+('en','messages:apihelp-tag-summary','s:67:\"Add or remove change tags from individual revisions or log entries.\";'),
+('en','messages:apihelp-unblock-example-id','s:33:\"Unblock block ID #105.\";'),
+('en','messages:apihelp-unblock-example-user','s:61:\"Unblock user Bob with reason Sorry Bob.\";'),
+('en','messages:apihelp-unblock-param-id','s:117:\"ID of the block to unblock (obtained through list=blocks). Cannot be used together with $1user.\";'),
+('en','messages:apihelp-unblock-param-reason','s:19:\"Reason for unblock.\";'),
+('en','messages:apihelp-unblock-param-tags','s:51:\"Change tags to apply to the entry in the block log.\";'),
+('en','messages:apihelp-unblock-param-user','s:62:\"User to unblock. Cannot be used together with $1id.\";'),
+('en','messages:apihelp-unblock-param-userid','s:49:\"Specify $1user=#ID instead.\";'),
+('en','messages:apihelp-unblock-summary','s:15:\"Unblock a user.\";'),
+('en','messages:apihelp-undelete-example-page','s:35:\"Undelete page Main Page.\";'),
+('en','messages:apihelp-undelete-example-revisions','s:52:\"Undelete two revisions of page Main Page.\";'),
+('en','messages:apihelp-undelete-extended-description','s:253:\"A list of deleted revisions (including timestamps) can be retrieved through [[Special:ApiHelp/query+deletedrevisions|prop=deletedrevisions]], and a list of deleted file IDs can be retrieved through [[Special:ApiHelp/query+filearchive|list=filearchive]].\";'),
+('en','messages:apihelp-undelete-param-fileids','s:127:\"IDs of the file revisions to restore. If both $1timestamps and $1fileids are empty, all will be restored.\";'),
+('en','messages:apihelp-undelete-param-reason','s:21:\"Reason for restoring.\";'),
+('en','messages:apihelp-undelete-param-tags','s:54:\"Change tags to apply to the entry in the deletion log.\";'),
+('en','messages:apihelp-undelete-param-timestamps','s:129:\"Timestamps of the revisions to restore. If both $1timestamps and $1fileids are empty, all will be restored.\";'),
+('en','messages:apihelp-undelete-param-title','s:29:\"Title of the page to restore.\";'),
+('en','messages:apihelp-undelete-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-undelete-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-undelete-summary','s:36:\"Restore revisions of a deleted page.\";'),
+('en','messages:apihelp-unlinkaccount-example-simple','s:111:\"Attempt to remove the current user\'s link for the provider associated with FooAuthenticationRequest.\";'),
+('en','messages:apihelp-unlinkaccount-summary','s:58:\"Remove a linked third-party account from the current user.\";'),
+('en','messages:apihelp-upload-example-filekey','s:47:\"Complete an upload that failed due to warnings.\";'),
+('en','messages:apihelp-upload-example-url','s:18:\"Upload from a URL.\";'),
+('en','messages:apihelp-upload-extended-description','s:547:\"Several methods are available:\n* Upload file contents directly, using the $1file parameter.\n* Upload the file in pieces, using the $1filesize, $1chunk, and $1offset parameters.\n* Have the MediaWiki server fetch a file from a URL, using the $1url parameter.\n* Complete an earlier upload that failed due to warnings, using the $1filekey parameter.\nNote that the HTTP POST must be done as a file upload (i.e. using multipart/form-data) when sending the $1file.\";'),
+('en','messages:apihelp-upload-param-async','s:66:\"Make potentially large file operations asynchronous when possible.\";'),
+('en','messages:apihelp-upload-param-checkstatus','s:52:\"Only fetch the upload status for the given file key.\";'),
+('en','messages:apihelp-upload-param-chunk','s:15:\"Chunk contents.\";'),
+('en','messages:apihelp-upload-param-comment','s:103:\"Upload comment. Also used as the initial page text for new files if $1text is not specified.\";'),
+('en','messages:apihelp-upload-param-file','s:14:\"File contents.\";'),
+('en','messages:apihelp-upload-param-filekey','s:67:\"Key that identifies a previous upload that was stashed temporarily.\";'),
+('en','messages:apihelp-upload-param-filename','s:16:\"Target filename.\";'),
+('en','messages:apihelp-upload-param-filesize','s:26:\"Filesize of entire upload.\";'),
+('en','messages:apihelp-upload-param-ignorewarnings','s:20:\"Ignore any warnings.\";'),
+('en','messages:apihelp-upload-param-offset','s:25:\"Offset of chunk in bytes.\";'),
+('en','messages:apihelp-upload-param-sessionkey','s:57:\"Same as $1filekey, maintained for backward compatibility.\";'),
+('en','messages:apihelp-upload-param-stash','s:90:\"If set, the server will stash the file temporarily instead of adding it to the repository.\";'),
+('en','messages:apihelp-upload-param-tags','s:68:\"Change tags to apply to the upload log entry and file page revision.\";'),
+('en','messages:apihelp-upload-param-text','s:32:\"Initial page text for new files.\";'),
+('en','messages:apihelp-upload-param-url','s:27:\"URL to fetch the file from.\";'),
+('en','messages:apihelp-upload-param-watch','s:15:\"Watch the page.\";'),
+('en','messages:apihelp-upload-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('en','messages:apihelp-upload-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('en','messages:apihelp-upload-summary','s:52:\"Upload a file, or get the status of pending uploads.\";'),
+('en','messages:apihelp-userrights-example-expiry','s:72:\"Add user SometimeSysop to group sysop for 1 month.\";'),
+('en','messages:apihelp-userrights-example-user','s:118:\"Add user FooBot to group bot, and remove from groups sysop and bureaucrat.\";'),
+('en','messages:apihelp-userrights-example-userid','s:127:\"Add the user with ID 123 to group bot, and remove from groups sysop and bureaucrat.\";'),
+('en','messages:apihelp-userrights-param-add','s:115:\"Add the user to these groups, or if they are already a member, update the expiry of their membership in that group.\";'),
+('en','messages:apihelp-userrights-param-expiry','s:360:\"Expiry timestamps. May be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). If only one timestamp is set, it will be used for all groups passed to the $1add parameter. Use infinite, indefinite, infinity, or never for a never-expiring user group.\";'),
+('en','messages:apihelp-userrights-param-reason','s:22:\"Reason for the change.\";'),
+('en','messages:apihelp-userrights-param-remove','s:34:\"Remove the user from these groups.\";'),
+('en','messages:apihelp-userrights-param-tags','s:57:\"Change tags to apply to the entry in the user rights log.\";'),
+('en','messages:apihelp-userrights-param-user','s:5:\"User.\";'),
+('en','messages:apihelp-userrights-param-userid','s:49:\"Specify $1user=#ID instead.\";'),
+('en','messages:apihelp-userrights-summary','s:33:\"Change a user\'s group membership.\";'),
+('en','messages:apihelp-validatepassword-example-1','s:61:\"Validate the password foobar for the current user.\";'),
+('en','messages:apihelp-validatepassword-example-2','s:77:\"Validate the password qwerty for creating user Example.\";'),
+('en','messages:apihelp-validatepassword-extended-description','s:206:\"Validity is reported as Good if the password is acceptable, Change if the password may be used for login but must be changed, or Invalid if the password is not usable.\";'),
+('en','messages:apihelp-validatepassword-param-email','s:53:\"Email address, for use when testing account creation.\";'),
+('en','messages:apihelp-validatepassword-param-password','s:21:\"Password to validate.\";'),
+('en','messages:apihelp-validatepassword-param-realname','s:49:\"Real name, for use when testing account creation.\";'),
+('en','messages:apihelp-validatepassword-param-user','s:80:\"User name, for use when testing account creation. The named user must not exist.\";'),
+('en','messages:apihelp-validatepassword-summary','s:57:\"Validate a password against the wiki\'s password policies.\";'),
+('en','messages:apihelp-visualeditor-description','s:50:\"Returns HTML5 for a page from the Parsoid service.\";'),
+('en','messages:apihelp-visualeditor-param-badetag','s:87:\"If RESTBase query returned a seemingly invalid ETag, pass it here for logging purposes.\";'),
+('en','messages:apihelp-visualeditor-param-basetimestamp','s:102:\"When saving, set this to the timestamp of the revision that was edited. Used to detect edit conflicts.\";'),
+('en','messages:apihelp-visualeditor-param-cachekey','s:110:\"For serialize or diff, use the result of a previous serializeforcache request with this key. Overrides $1html.\";'),
+('en','messages:apihelp-visualeditor-param-editintro','s:29:\"Edit intro to add to notices.\";'),
+('en','messages:apihelp-visualeditor-param-etag','s:13:\"ETag to send.\";'),
+('en','messages:apihelp-visualeditor-param-format','s:25:\"The format of the output.\";'),
+('en','messages:apihelp-visualeditor-param-html','s:47:\"HTML to send to Parsoid to convert to wikitext.\";'),
+('en','messages:apihelp-visualeditor-param-oldid','s:57:\"The revision number to use (defaults to latest revision).\";'),
+('en','messages:apihelp-visualeditor-param-paction','s:18:\"Action to perform.\";'),
+('en','messages:apihelp-visualeditor-param-page','s:31:\"The page to perform actions on.\";'),
+('en','messages:apihelp-visualeditor-param-preload','s:68:\"The page to use content from if the fetched page has no content yet.\";'),
+('en','messages:apihelp-visualeditor-param-preloadparams','s:59:\"Parameters to substitute into the preload page, if present.\";'),
+('en','messages:apihelp-visualeditor-param-pst','s:81:\"Pre-save transform wikitext before sending it to Parsoid (paction=parsefragment).\";'),
+('en','messages:apihelp-visualeditor-param-section','s:28:\"The section on which to act.\";'),
+('en','messages:apihelp-visualeditor-param-starttimestamp','s:98:\"When saving, set this to the timestamp of when the page was loaded. Used to detect edit conflicts.\";'),
+('en','messages:apihelp-visualeditor-param-stash','s:63:\"When saving, set this true if you want to use the stashing API.\";'),
+('en','messages:apihelp-visualeditor-param-wikitext','s:71:\"Wikitext to send to Parsoid to convert to HTML (paction=parsefragment).\";'),
+('en','messages:apihelp-visualeditor-summary','s:50:\"Returns HTML5 for a page from the Parsoid service.\";'),
+('en','messages:apihelp-visualeditoredit-description','s:80:\"Save an HTML5 page to MediaWiki (converted to wikitext via the Parsoid service).\";'),
+('en','messages:apihelp-visualeditoredit-param-basetimestamp','s:102:\"When saving, set this to the timestamp of the revision that was edited. Used to detect edit conflicts.\";'),
+('en','messages:apihelp-visualeditoredit-param-cachekey','s:87:\"Use the result of a previous serializeforcache request with this key. Overrides $1html.\";'),
+('en','messages:apihelp-visualeditoredit-param-captchaid','s:49:\"Captcha ID (when saving with a captcha response).\";'),
+('en','messages:apihelp-visualeditoredit-param-captchaword','s:60:\"Answer to the captcha (when saving with a captcha response).\";'),
+('en','messages:apihelp-visualeditoredit-param-data-{plugin}','s:53:\"Arbitrary data sent by a plugin with the API request.\";'),
+('en','messages:apihelp-visualeditoredit-param-etag','s:13:\"ETag to send.\";'),
+('en','messages:apihelp-visualeditoredit-param-html','s:49:\"HTML to send to Parsoid in exchange for wikitext.\";'),
+('en','messages:apihelp-visualeditoredit-param-minor','s:20:\"Flag for minor edit.\";'),
+('en','messages:apihelp-visualeditoredit-param-needcheck','s:121:\"When saving, set this parameter if the revision might have roundtrip problems. This will result in the edit being tagged.\";'),
+('en','messages:apihelp-visualeditoredit-param-oldid','s:78:\"The revision number to use. Defaults to latest revision. Use 0 for a new page.\";'),
+('en','messages:apihelp-visualeditoredit-param-paction','s:18:\"Action to perform.\";'),
+('en','messages:apihelp-visualeditoredit-param-page','s:31:\"The page to perform actions on.\";'),
+('en','messages:apihelp-visualeditoredit-param-plugins','s:40:\"Plugins associated with the API request.\";'),
+('en','messages:apihelp-visualeditoredit-param-section','s:28:\"The section on which to act.\";'),
+('en','messages:apihelp-visualeditoredit-param-sectiontitle','s:22:\"Title for new section.\";'),
+('en','messages:apihelp-visualeditoredit-param-starttimestamp','s:98:\"When saving, set this to the timestamp of when the page was loaded. Used to detect edit conflicts.\";'),
+('en','messages:apihelp-visualeditoredit-param-summary','s:13:\"Edit summary.\";'),
+('en','messages:apihelp-visualeditoredit-param-tags','s:33:\"Change tags to apply to the edit.\";'),
+('en','messages:apihelp-visualeditoredit-param-watchlist','s:36:\"{{int:apihelp-edit-param-watchlist}}\";'),
+('en','messages:apihelp-visualeditoredit-param-wikitext','s:25:\"The wikitext to act with.\";'),
+('en','messages:apihelp-visualeditoredit-summary','s:80:\"Save an HTML5 page to MediaWiki (converted to wikitext via the Parsoid service).\";'),
+('en','messages:apihelp-watch-example-generator','s:48:\"Watch the first few pages in the main namespace.\";'),
+('en','messages:apihelp-watch-example-unwatch','s:38:\"Unwatch the page Main Page.\";'),
+('en','messages:apihelp-watch-example-watch','s:36:\"Watch the page Main Page.\";'),
+('en','messages:apihelp-watch-example-watch-expiry','s:87:\"Watch the pages Main Page, Foo, and Bar for one month.\";'),
+('en','messages:apihelp-watch-param-expiry','s:120:\"Expiry timestamp to be applied to all given pages. Omit this parameter entirely to leave any current expiries unchanged.\";'),
+('en','messages:apihelp-watch-param-title','s:55:\"The page to (un)watch. Use $1titles instead.\";'),
+('en','messages:apihelp-watch-param-unwatch','s:54:\"If set the page will be unwatched rather than watched.\";'),
+('en','messages:apihelp-watch-summary','s:54:\"Add or remove pages from the current user\'s watchlist.\";'),
+('en','messages:apihelp-xml-param-includexmlnamespace','s:36:\"If specified, adds an XML namespace.\";'),
+('en','messages:apihelp-xml-param-xslt','s:144:\"If specified, adds the named page as an XSL stylesheet. The value must be a title in the {{ns:MediaWiki}} namespace ending in .xsl.\";'),
+('en','messages:apihelp-xml-summary','s:26:\"Output data in XML format.\";'),
+('en','messages:apihelp-xmlfm-summary','s:49:\"Output data in XML format (pretty-print in HTML).\";'),
+('en','messages:apisandbox','s:11:\"API sandbox\";'),
+('en','messages:apisandbox-add-multi','s:3:\"Add\";'),
+('en','messages:apisandbox-alert-field','s:37:\"The value of this field is not valid.\";'),
+('en','messages:apisandbox-alert-page','s:34:\"Fields on this page are not valid.\";'),
+('en','messages:apisandbox-continue','s:8:\"Continue\";'),
+('en','messages:apisandbox-continue-clear','s:5:\"Clear\";'),
+('en','messages:apisandbox-continue-help','s:218:\"{{int:apisandbox-continue}} will [https://www.mediawiki.org/wiki/Special:MyLanguage/API:Query#Continuing_queries continue] the last request; {{int:apisandbox-continue-clear}} will clear continuation-related parameters.\";'),
+('en','messages:apisandbox-deprecated-parameters','s:21:\"Deprecated parameters\";'),
+('en','messages:apisandbox-dynamic-error-exists','s:38:\"A parameter named \"$1\" already exists.\";'),
+('en','messages:apisandbox-dynamic-parameters','s:21:\"Additional parameters\";'),
+('en','messages:apisandbox-dynamic-parameters-add-label','s:14:\"Add parameter:\";'),
+('en','messages:apisandbox-dynamic-parameters-add-placeholder','s:14:\"Parameter name\";'),
+('en','messages:apisandbox-examples','s:8:\"Examples\";'),
+('en','messages:apisandbox-fetch-token','s:19:\"Auto-fill the token\";'),
+('en','messages:apisandbox-helpurls','s:10:\"Help links\";'),
+('en','messages:apisandbox-intro','s:486:\"Use this page to experiment with the MediaWiki web service API.\nRefer to [https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page the API documentation] for further details of API usage. Example: [https://www.mediawiki.org/wiki/Special:MyLanguage/API:Tutorial#A_simple_query search for page titles matching a certain keyword]. Select an action to see more examples.\n\nNote that, although this is a sandbox, actions you carry out on this page may modify the wiki.\";'),
+('en','messages:apisandbox-jsonly','s:46:\"JavaScript is required to use the API sandbox.\";'),
+('en','messages:apisandbox-load-error','s:67:\"An error occurred while loading information for API module \"$1\": $2\";'),
+('en','messages:apisandbox-loading','s:42:\"Loading information for API module \"$1\"...\";'),
+('en','messages:apisandbox-loading-results','s:24:\"Receiving API results...\";'),
+('en','messages:apisandbox-multivalue-all-namespaces','s:19:\"$1 (All namespaces)\";'),
+('en','messages:apisandbox-multivalue-all-values','s:15:\"$1 (All values)\";'),
+('en','messages:apisandbox-no-parameters','s:34:\"This API module has no parameters.\";'),
+('en','messages:apisandbox-param-limit','s:46:\"Enter max to use the maximum limit.\";'),
+('en','messages:apisandbox-request-format-json-label','s:4:\"JSON\";'),
+('en','messages:apisandbox-request-format-php-label','s:9:\"PHP array\";'),
+('en','messages:apisandbox-request-format-url-label','s:16:\"URL query string\";'),
+('en','messages:apisandbox-request-json-label','s:13:\"Request JSON:\";'),
+('en','messages:apisandbox-request-php-label','s:18:\"Request PHP array:\";'),
+('en','messages:apisandbox-request-selectformat-label','s:21:\"Show request data as:\";'),
+('en','messages:apisandbox-request-time','s:33:\"Request time: {{PLURAL:$1|$1 ms}}\";'),
+('en','messages:apisandbox-request-url-label','s:12:\"Request URL:\";'),
+('en','messages:apisandbox-reset','s:5:\"Clear\";'),
+('en','messages:apisandbox-results','s:7:\"Results\";'),
+('en','messages:apisandbox-results-error','s:59:\"An error occurred while loading the API query response: $1.\";'),
+('en','messages:apisandbox-results-fixtoken','s:26:\"Correct token and resubmit\";'),
+('en','messages:apisandbox-results-fixtoken-fail','s:27:\"Failed to fetch \"$1\" token.\";'),
+('en','messages:apisandbox-results-login-suppressed','s:238:\"This request has been processed as a logged-out user as it could be used to bypass browser Same-Origin security. Note that the API sandbox\'s automatic token handling does not work properly with such requests, please fill them in manually.\";'),
+('en','messages:apisandbox-retry','s:5:\"Retry\";'),
+('en','messages:apisandbox-sending-request','s:22:\"Sending API request...\";'),
+('en','messages:apisandbox-submit','s:12:\"Make request\";'),
+('en','messages:apisandbox-submit-invalid-fields-message','s:47:\"Please correct the marked fields and try again.\";'),
+('en','messages:apisandbox-submit-invalid-fields-title','s:23:\"Some fields are invalid\";'),
+('en','messages:apisandbox-summary','s:0:\"\";'),
+('en','messages:apisandbox-templated-parameter-reason','s:128:\"This [[Special:ApiHelp/main#main/templatedparams|templated parameter]] is offered based on the {{PLURAL:$1|value|values}} of $2.\";'),
+('en','messages:apiwarn-alldeletedrevisions-performance','s:74:\"For better performance when generating titles, set $1dir=newer.\";'),
+('en','messages:apiwarn-badurlparam','s:74:\"Could not parse $1urlparam for $2. Using only width and height.\";'),
+('en','messages:apiwarn-badutf8','s:200:\"The value passed for $1 contains invalid or non-normalized data. Textual data should be valid, NFC-normalized Unicode without C0 control characters other than HT (\\t), LF (\\n), and CR (\\r).\";'),
+('en','messages:apiwarn-checktoken-percentencoding','s:84:\"Check that symbols such as \"+\" in the token are properly percent-encoded in the URL.\";'),
+('en','messages:apiwarn-compare-no-next','s:108:\"Revision $2 is the latest revision of $1, there is no revision for torelative=next to compare to.\";'),
+('en','messages:apiwarn-compare-no-prev','s:110:\"Revision $2 is the earliest revision of $1, there is no revision for torelative=prev to compare to.\";'),
+('en','messages:apiwarn-compare-nocontentmodel','s:50:\"No content model could be determined, assuming $1.\";'),
+('en','messages:apiwarn-deprecation-deletedrevs','s:140:\"list=deletedrevs has been deprecated. Please use prop=deletedrevisions or list=alldeletedrevisions instead.\";'),
+('en','messages:apiwarn-deprecation-httpsexpected','s:34:\"HTTP used when HTTPS was expected.\";'),
+('en','messages:apiwarn-deprecation-login-botpw','s:256:\"Main-account login via action=login is deprecated and may stop working without warning. To continue login with action=login, see [[Special:BotPasswords]]. To safely continue using main-account login, see action=clientlogin.\";'),
+('en','messages:apiwarn-deprecation-login-nobotpw','s:151:\"Main-account login via action=login is deprecated and may stop working without warning. To safely log in, see action=clientlogin.\";'),
+('en','messages:apiwarn-deprecation-login-token','s:119:\"Fetching a token via action=login is deprecated. Use action=query&meta=tokens&type=login instead.\";'),
+('en','messages:apiwarn-deprecation-missingparam','s:167:\"Because $1 was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used.\";'),
+('en','messages:apiwarn-deprecation-parameter','s:48:\"The parameter $1 has been deprecated.\";'),
+('en','messages:apiwarn-deprecation-parse-headitems','s:202:\"prop=headitems is deprecated since MediaWiki 1.28. Use prop=headhtml when creating new HTML documents, or prop=modules|jsconfigvars when updating a document client-side.\";'),
+('en','messages:apiwarn-deprecation-post-without-content-type','s:96:\"A POST request was made without a Content-Type header. This does not work reliably.\";'),
+('en','messages:apiwarn-deprecation-purge-get','s:71:\"Use of action=purge via GET is deprecated. Use POST instead.\";'),
+('en','messages:apiwarn-deprecation-withreplacement','s:68:\"$1 has been deprecated. Please use $2 instead.\";'),
+('en','messages:apiwarn-difftohidden','s:40:\"Couldn\'t diff to r$1: content is hidden.\";'),
+('en','messages:apiwarn-errorprinterfailed','s:48:\"Error printer failed. Will retry without params.\";'),
+('en','messages:apiwarn-ignoring-invalid-templated-value','s:83:\"Ignoring value $2 in $1 when processing templated parameters.\";'),
+('en','messages:apiwarn-invalidcategory','s:23:\"\"$1\" is not a category.\";'),
+('en','messages:apiwarn-invalidtitle','s:26:\"\"$1\" is not a valid title.\";'),
+('en','messages:apiwarn-invalidxmlstylesheet','s:45:\"Invalid or non-existent stylesheet specified.\";'),
+('en','messages:apiwarn-invalidxmlstylesheetext','s:51:\"Stylesheet should have .xsl extension.\";'),
+('en','messages:apiwarn-invalidxmlstylesheetns','s:55:\"Stylesheet should be in the {{ns:MediaWiki}} namespace.\";'),
+('en','messages:apiwarn-moduleswithoutvars','s:165:\"Property modules was set but not jsconfigvars or encodedjsconfigvars. Configuration variables are necessary for proper module usage.\";'),
+('en','messages:apiwarn-notfile','s:19:\"\"$1\" is not a file.\";'),
+('en','messages:apiwarn-nothumb-noimagehandler','s:80:\"Could not create thumbnail because $1 does not have an associated image handler.\";'),
+('en','messages:apiwarn-parse-nocontentmodel','s:70:\"No title or contentmodel was given, assuming $1.\";'),
+('en','messages:apiwarn-parse-revidwithouttext','s:155:\"revid used without text, and parsed page properties were requested. Did you mean to use oldid instead of revid?\";'),
+('en','messages:apiwarn-parse-titlewithouttext','s:154:\"title used without text, and parsed page properties were requested. Did you mean to use page instead of title?\";'),
+('en','messages:apiwarn-redirectsandrevids','s:150:\"Redirect resolution cannot be used together with the revids parameter. Any redirects the revids point to have not been resolved.\";'),
+('en','messages:apiwarn-tokens-origin','s:70:\"Tokens may not be obtained when the same-origin policy is not applied.\";'),
+('en','messages:apiwarn-truncatedresult','s:90:\"This result was truncated because it would otherwise be larger than the limit of $1 bytes.\";'),
+('en','messages:apiwarn-unclearnowtimestamp','s:194:\"Passing \"$2\" for timestamp parameter $1 has been deprecated. If for some reason you need to explicitly specify the current time without calculating it client-side, use now.\";'),
+('en','messages:apiwarn-unrecognizedvalues','s:72:\"Unrecognized {{PLURAL:$3|value|values}} for parameter $1: $2.\";'),
+('en','messages:apiwarn-unsupportedarray','s:58:\"Parameter $1 uses unsupported PHP array syntax.\";'),
+('en','messages:apiwarn-urlparamwidth','s:142:\"Ignoring width value set in $1urlparam ($2) in favor of width value derived from $1urlwidth/$1urlheight ($3).\";'),
+('en','messages:apiwarn-validationfailed','s:38:\"Validation error for $1: $2\";'),
+('en','messages:apiwarn-validationfailed-badchars','s:134:\"invalid characters in key (only a-z, A-Z, 0-9, _, and - are allowed).\";'),
+('en','messages:apiwarn-validationfailed-badpref','s:23:\"not a valid preference.\";'),
+('en','messages:apiwarn-validationfailed-cannotset','s:29:\"cannot be set by this module.\";'),
+('en','messages:apiwarn-validationfailed-keytoolong','s:45:\"key too long (no more than $1 bytes allowed).\";'),
+('en','messages:apiwarn-wgdebugapi','s:69:\"Security Warning: $wgDebugAPI is enabled.\";'),
+('en','messages:apr','s:3:\"Apr\";'),
+('en','messages:april','s:5:\"April\";'),
+('en','messages:april-gen','s:5:\"April\";'),
+('en','messages:article','s:12:\"Content page\";'),
+('en','messages:articleexists','s:108:\"A page already exists at [[:$1]], or the page name you have chosen is not valid.\nPlease choose another name.\";'),
+('en','messages:aug','s:3:\"Aug\";'),
+('en','messages:august','s:6:\"August\";'),
+('en','messages:august-gen','s:6:\"August\";'),
+('en','messages:authenticationdatachange-ignored','s:81:\"The authentication data change was not handled. Maybe no provider was configured?\";'),
+('en','messages:authform-newtoken','s:17:\"Missing token. $1\";'),
+('en','messages:authform-nosession-login','s:90:\"The authentication was successful, but your browser cannot \"remember\" being logged in.\n\n$1\";'),
+('en','messages:authform-nosession-signup','s:80:\"The account was created, but your browser cannot \"remember\" being logged in.\n\n$1\";'),
+('en','messages:authform-notoken','s:13:\"Missing token\";'),
+('en','messages:authform-wrongtoken','s:11:\"Wrong token\";'),
+('en','messages:authmanager-account-password-domain','s:5:\"$1@$2\";'),
+('en','messages:authmanager-authn-autocreate-failed','s:43:\"Auto-creation of a local account failed: $1\";'),
+('en','messages:authmanager-authn-no-local-user','s:71:\"The supplied credentials are not associated with any user on this wiki.\";'),
+('en','messages:authmanager-authn-no-local-user-link','s:212:\"The supplied credentials are valid but are not associated with any user on this wiki. Login in a different way, or create a new user, and you will have an option to link your previous credentials to that account.\";'),
+('en','messages:authmanager-authn-no-primary','s:52:\"The supplied credentials could not be authenticated.\";'),
+('en','messages:authmanager-authn-not-in-progress','s:103:\"Authentication is not in progress or session data has been lost. Please start again from the beginning.\";'),
+('en','messages:authmanager-autocreate-exception','s:68:\"Automatic account creation temporarily disabled due to prior errors.\";'),
+('en','messages:authmanager-autocreate-noperm','s:42:\"Automatic account creation is not allowed.\";'),
+('en','messages:authmanager-change-not-supported','s:70:\"The supplied credentials cannot be changed, as nothing would use them.\";'),
+('en','messages:authmanager-create-disabled','s:29:\"Account creation is disabled.\";'),
+('en','messages:authmanager-create-from-login','s:50:\"To create your account, please fill in the fields.\";'),
+('en','messages:authmanager-create-no-primary','s:64:\"The supplied credentials could not be used for account creation.\";'),
+('en','messages:authmanager-create-not-in-progress','s:105:\"Account creation is not in progress or session data has been lost. Please start again from the beginning.\";'),
+('en','messages:authmanager-domain-help','s:35:\"Domain for external authentication.\";'),
+('en','messages:authmanager-email-help','s:13:\"Email address\";'),
+('en','messages:authmanager-email-label','s:5:\"Email\";'),
+('en','messages:authmanager-link-no-primary','s:63:\"The supplied credentials could not be used for account linking.\";'),
+('en','messages:authmanager-link-not-in-progress','s:104:\"Account linking is not in progress or session data has been lost. Please start again from the beginning.\";'),
+('en','messages:authmanager-password-help','s:28:\"Password for authentication.\";'),
+('en','messages:authmanager-provider-password','s:29:\"Password-based authentication\";'),
+('en','messages:authmanager-provider-password-domain','s:41:\"Password- and domain-based authentication\";'),
+('en','messages:authmanager-provider-temporarypassword','s:18:\"Temporary password\";'),
+('en','messages:authmanager-realname-help','s:21:\"Real name of the user\";'),
+('en','messages:authmanager-realname-label','s:9:\"Real name\";'),
+('en','messages:authmanager-retype-help','s:26:\"Password again to confirm.\";'),
+('en','messages:authmanager-userdoesnotexist','s:36:\"User account \"$1\" is not registered.\";'),
+('en','messages:authmanager-userlogin-remembermypassword-help','s:84:\"Whether the password should be remembered for longer than the length of the session.\";'),
+('en','messages:authmanager-username-help','s:28:\"Username for authentication.\";'),
+('en','messages:authpage-cannot-create','s:33:\"Unable to start account creation.\";'),
+('en','messages:authpage-cannot-create-continue','s:72:\"Unable to continue account creation. Your session most likely timed out.\";'),
+('en','messages:authpage-cannot-link','s:32:\"Unable to start account linking.\";'),
+('en','messages:authpage-cannot-link-continue','s:71:\"Unable to continue account linking. Your session most likely timed out.\";'),
+('en','messages:authpage-cannot-login','s:22:\"Unable to start login.\";'),
+('en','messages:authpage-cannot-login-continue','s:61:\"Unable to continue login. Your session most likely timed out.\";'),
+('en','messages:authprovider-confirmlink-failed','s:41:\"Account linking did not fully succeed: $1\";'),
+('en','messages:authprovider-confirmlink-failed-line','s:6:\"$1: $2\";'),
+('en','messages:authprovider-confirmlink-message','s:190:\"Based on your recent login attempts, the following accounts can be linked to your wiki account. Linking them enables logging in via those accounts. Please select which ones should be linked.\";'),
+('en','messages:authprovider-confirmlink-ok-help','s:51:\"Continue after displaying linking failure messages.\";'),
+('en','messages:authprovider-confirmlink-option','s:7:\"$1 ($2)\";'),
+('en','messages:authprovider-confirmlink-request-help','s:0:\"\";'),
+('en','messages:authprovider-confirmlink-request-label','s:31:\"Accounts which should be linked\";'),
+('en','messages:authprovider-confirmlink-success-line','s:24:\"$1: Linked successfully.\";'),
+('en','messages:authprovider-resetpass-skip-help','s:28:\"Skip resetting the password.\";'),
+('en','messages:authprovider-resetpass-skip-label','s:4:\"Skip\";'),
+('en','messages:autoblockedtext','s:610:\"Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.\nThe reason given is:\n\n:$2\n\n* Start of block: $8\n* Expiration of block: $6\n* Intended blockee: $7\n\nYou may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.\n\nYou can use the \"{{int:emailuser}}\" feature if a valid email address is specified in your [[Special:Preferences|preferences]] and you have not been blocked from using it.\n\nYour current IP address is $3, and the block ID is #$5.\nPlease include all above details in any queries you make.\";'),
+('en','messages:autoblocker','s:119:\"Autoblocked because your IP address has been recently used by \"[[User:$1|$1]]\".\nThe reason given for $1\'s block is \"$2\"\";'),
+('en','messages:autoblockid','s:13:\"Autoblock #$1\";'),
+('en','messages:autoblocklist','s:10:\"Autoblocks\";'),
+('en','messages:autoblocklist-empty','s:28:\"The autoblock list is empty.\";'),
+('en','messages:autoblocklist-legend','s:15:\"List autoblocks\";'),
+('en','messages:autoblocklist-localblocks','s:40:\"Local {{PLURAL:$1|autoblock|autoblocks}}\";'),
+('en','messages:autoblocklist-otherblocks','s:40:\"Other {{PLURAL:$1|autoblock|autoblocks}}\";'),
+('en','messages:autoblocklist-submit','s:6:\"Search\";'),
+('en','messages:autoblocklist-total-autoblocks','s:30:\"Total number of autoblocks: $1\";'),
+('en','messages:autochange-username','s:26:\"MediaWiki automatic change\";'),
+('en','messages:autocomment-prefix','s:0:\"\";'),
+('en','messages:autoredircomment','s:25:\"Redirected page to [[$1]]\";'),
+('en','messages:autosumm-blank','s:16:\"Blanked the page\";'),
+('en','messages:autosumm-changed-redirect-target','s:45:\"Changed redirect target from [[$1]] to [[$2]]\";'),
+('en','messages:autosumm-new','s:22:\"Created page with \"$1\"\";'),
+('en','messages:autosumm-newblank','s:18:\"Created blank page\";'),
+('en','messages:autosumm-removed-redirect','s:26:\"Removed redirect to [[$1]]\";'),
+('en','messages:autosumm-replace','s:26:\"Replaced content with \"$1\"\";'),
+('en','messages:backend-fail-alreadyexists','s:29:\"The file \"$1\" already exists.\";'),
+('en','messages:backend-fail-backup','s:27:\"Could not backup file \"$1\".\";'),
+('en','messages:backend-fail-batchsize','s:136:\"The storage backend was given a batch of $1 file {{PLURAL:$1|operation|operations}}; the limit is $2 {{PLURAL:$2|operation|operations}}.\";'),
+('en','messages:backend-fail-closetemp','s:31:\"Could not close temporary file.\";'),
+('en','messages:backend-fail-connect','s:42:\"Could not connect to storage backend \"$1\".\";'),
+('en','messages:backend-fail-contenttype','s:66:\"Could not determine the content type of the file to store at \"$1\".\";'),
+('en','messages:backend-fail-copy','s:33:\"Could not copy file \"$1\" to \"$2\".\";'),
+('en','messages:backend-fail-create','s:26:\"Could not write file \"$1\".\";'),
+('en','messages:backend-fail-delete','s:27:\"Could not delete file \"$1\".\";'),
+('en','messages:backend-fail-describe','s:40:\"Could not change metadata for file \"$1\".\";'),
+('en','messages:backend-fail-hash','s:56:\"Could not determine the cryptographic hash of file \"$1\".\";'),
+('en','messages:backend-fail-hashes','s:41:\"Could not get file hashes for comparison.\";'),
+('en','messages:backend-fail-internal','s:50:\"An unknown error occurred in storage backend \"$1\".\";'),
+('en','messages:backend-fail-invalidpath','s:33:\"\"$1\" is not a valid storage path.\";'),
+('en','messages:backend-fail-maxsize','s:84:\"Could not write file \"$1\" because it is larger than {{PLURAL:$2|one byte|$2 bytes}}.\";'),
+('en','messages:backend-fail-move','s:33:\"Could not move file \"$1\" to \"$2\".\";'),
+('en','messages:backend-fail-notexists','s:27:\"The file $1 does not exist.\";'),
+('en','messages:backend-fail-notsame','s:44:\"A non-identical file already exists at \"$1\".\";'),
+('en','messages:backend-fail-opentemp','s:30:\"Could not open temporary file.\";'),
+('en','messages:backend-fail-read','s:25:\"Could not read file \"$1\".\";'),
+('en','messages:backend-fail-readonly','s:81:\"The storage backend \"$1\" is currently read-only. The reason given is: $2\";'),
+('en','messages:backend-fail-sizes','s:40:\"Could not get file sizes for comparison.\";'),
+('en','messages:backend-fail-stat','s:39:\"Could not read the status of file \"$1\".\";'),
+('en','messages:backend-fail-store','s:34:\"Could not store file \"$1\" at \"$2\".\";'),
+('en','messages:backend-fail-stream','s:27:\"Could not stream file \"$1\".\";'),
+('en','messages:backend-fail-synced','s:78:\"The file \"$1\" is in an inconsistent state within the internal storage backends\";'),
+('en','messages:backend-fail-usable','s:100:\"Could not read or write file \"$1\" due to insufficient permissions or missing directories/containers.\";'),
+('en','messages:backend-fail-writetemp','s:34:\"Could not write to temporary file.\";'),
+('en','messages:backlinksubtitle','s:6:\"← $1\";'),
+('en','messages:bad-target-model','s:85:\"The desired destination uses a different content model. Cannot convert from $1 to $2.\";'),
+('en','messages:bad_image_list','s:252:\"The format is as follows:\n\nOnly list items (lines starting with *) are considered.\nThe first link on a line must be a link to a bad file.\nAny subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.\";'),
+('en','messages:badaccess','s:16:\"Permission error\";'),
+('en','messages:badaccess-group0','s:61:\"You are not allowed to execute the action you have requested.\";'),
+('en','messages:badaccess-groups','s:99:\"The action you have requested is limited to users in {{PLURAL:$2|the group|one of the groups}}: $1.\";'),
+('en','messages:badarticleerror','s:45:\"This action cannot be performed on this page.\";'),
+('en','messages:badfilename','s:34:\"Filename has been changed to \"$1\".\";'),
+('en','messages:badipaddress','s:18:\"Invalid IP address\";'),
+('en','messages:badretype','s:39:\"The passwords you entered do not match.\";'),
+('en','messages:badsig','s:39:\"Invalid raw signature.\nCheck HTML tags.\";'),
+('en','messages:badsightml','s:58:\"Your signature contains invalid or deprecated HTML syntax:\";'),
+('en','messages:badsiglength','s:96:\"Your signature is too long.\nIt must not be more than $1 {{PLURAL:$1|character|characters}} long.\";'),
+('en','messages:badsiglinebreak','s:57:\"Your signature must consist of a single line of wikitext.\";'),
+('en','messages:badsiglinks','s:139:\"Your signature must include a link to your user page, talk page or contributions on this wiki. Please add it, for example: $1.\";'),
+('en','messages:badsigsubst','s:109:\"Your signature contains nested substitution (e.g. subst: or ~~~~ ).\";'),
+('en','messages:badtitle','s:9:\"Bad title\";'),
+('en','messages:badtitletext','s:174:\"The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title.\nIt may contain one or more characters that cannot be used in titles.\";'),
+('en','messages:bitrate-bits','s:6:\"$1 bps\";'),
+('en','messages:bitrate-exabits','s:7:\"$1 Ebps\";'),
+('en','messages:bitrate-gigabits','s:7:\"$1 Gbps\";'),
+('en','messages:bitrate-kilobits','s:7:\"$1 kbps\";'),
+('en','messages:bitrate-megabits','s:7:\"$1 Mbps\";'),
+('en','messages:bitrate-petabits','s:7:\"$1 Pbps\";'),
+('en','messages:bitrate-terabits','s:7:\"$1 Tbps\";'),
+('en','messages:bitrate-yottabits','s:7:\"$1 Ybps\";'),
+('en','messages:bitrate-zettabits','s:7:\"$1 Zbps\";'),
+('en','messages:blankarticle','s:132:\"Warning: The page you are creating is blank.\nIf you click \"$1\" again, the page will be created without any content.\";'),
+('en','messages:blanknamespace','s:6:\"(Main)\";'),
+('en','messages:blankpage','s:10:\"Blank page\";'),
+('en','messages:block','s:10:\"Block user\";'),
+('en','messages:block-actions','s:10:\"Block type\";'),
+('en','messages:block-autoblock-exemptionlist','s:0:\"\";'),
+('en','messages:block-details','s:13:\"Block details\";'),
+('en','messages:block-expiry','s:11:\"Expiration:\";'),
+('en','messages:block-log-flags-angry-autoblock','s:26:\"enhanced autoblock enabled\";'),
+('en','messages:block-log-flags-anononly','s:20:\"anonymous users only\";'),
+('en','messages:block-log-flags-hiddenname','s:15:\"username hidden\";'),
+('en','messages:block-log-flags-noautoblock','s:18:\"autoblock disabled\";'),
+('en','messages:block-log-flags-nocreate','s:25:\"account creation disabled\";'),
+('en','messages:block-log-flags-noemail','s:14:\"email disabled\";'),
+('en','messages:block-log-flags-nousertalk','s:25:\"cannot edit own talk page\";'),
+('en','messages:block-options','s:19:\"Additional options:\";'),
+('en','messages:block-reason','s:7:\"Reason:\";'),
+('en','messages:block-target','s:34:\"Username, IP address, or IP range:\";'),
+('en','messages:block-target-placeholder','s:34:\"UserName, 1.1.1.42, or 1.1.1.42/16\";'),
+('en','messages:blocked-mailpassword','s:123:\"Your IP address is blocked from editing. To prevent abuse, it is not allowed to use password recovery from this IP address.\";'),
+('en','messages:blocked-notice-logextract','s:105:\"This {{GENDER:$1|user}} is currently blocked.\nThe latest block log entry is provided below for reference:\";'),
+('en','messages:blockednoreason','s:15:\"no reason given\";'),
+('en','messages:blockedtext','s:579:\"Your username or IP address has been blocked.\n\nThe block was made by $1.\nThe reason given is $2.\n\n* Start of block: $8\n* Expiration of block: $6\n* Intended blockee: $7\n\nYou can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.\nYou can use the \"{{int:emailuser}}\" feature if a valid email address is specified in your [[Special:Preferences|preferences]] and you have not been blocked from using it.\nYour current IP address is $3, and the block ID is #$5.\nPlease include all above details in any queries you make.\";'),
+('en','messages:blockedtext-composite','s:251:\"Your username or IP address has been blocked.\n\nThe reason given is:\n\n:$2.\n\n* Start of block: $8\n* Expiration of longest block: $6\n\n* $5\n\nYour current IP address is $3.\nPlease include all above details in any queries you make.\";'),
+('en','messages:blockedtext-composite-ids','s:71:\"Relevant block IDs: $1 (your IP address may also appear in a blocklist)\";'),
+('en','messages:blockedtext-composite-no-ids','s:46:\"Your IP address appears in multiple blocklists\";'),
+('en','messages:blockedtext-composite-reason','s:64:\"There are multiple blocks against your account and/or IP address\";'),
+('en','messages:blockedtext-partial','s:395:\"Your username or IP address is blocked from doing this. You may still be able to do other things on this site, such as editing certain pages. You can view the full block details at [[Special:MyContributions|account contributions]].\n\nThe block was made by $1.\n\nThe reason given is $2.\n\n* Start of block: $8\n* Expiration of block: $6\n* Intended blockee: $7\n* Block ID #$5\";'),
+('en','messages:blockedtitle','s:15:\"User is blocked\";'),
+('en','messages:blockip','s:24:\"Block {{GENDER:$1|user}}\";'),
+('en','messages:blockipsuccesssub','s:15:\"Block succeeded\";'),
+('en','messages:blockipsuccesstext','s:114:\"[[Special:Contributions/$1|$1]] has been blocked.$1, which differs from the current content model of the page $2.\";'),
+('en','messages:continue-editing','s:18:\"Go to editing area\";'),
+('en','messages:contribslink','s:8:\"contribs\";'),
+('en','messages:contribsub2','s:25:\"For {{GENDER:$3|$1}} ($2)\";'),
+('en','messages:contributions','s:18:\"User contributions\";'),
+('en','messages:contributions-subtitle','s:20:\"For {{GENDER:$3|$1}}\";'),
+('en','messages:contributions-summary','s:0:\"\";'),
+('en','messages:contributions-title','s:25:\"User contributions for $1\";'),
+('en','messages:contributions-userdoesnotexist','s:36:\"User account \"$1\" is not registered.\";'),
+('en','messages:converter-manual-rule-error','s:49:\"Error detected in manual language conversion rule\";'),
+('en','messages:copyright','s:53:\"Content is available under $1 unless otherwise noted.\";'),
+('en','messages:copyrightpage','s:25:\"{{ns:project}}:Copyrights\";'),
+('en','messages:copyrightwarning','s:417:\"Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).\nIf you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.$wgDefaultSkin as $1, is not available.\n\nYour installation seems to include the following {{PLURAL:$4|skin|skins}}. See [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration Manual: Skin configuration] for information how to enable {{PLURAL:$4|it|them and choose the default}}.\n\n$2\n\n; If you have just installed MediaWiki:\n: You probably installed from git, or directly from the source code using some other method. This is expected. Try installing some skins from [https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins mediawiki.org\'s skin directory], by:\n:* Downloading the [https://www.mediawiki.org/wiki/Special:MyLanguage/Download tarball installer], which comes with several skins and extensions. You can copy and paste the skins/ directory from it.\n:* Downloading individual skin tarballs from [https://www.mediawiki.org/wiki/Special:SkinDistributor mediawiki.org].\n:* [https://www.mediawiki.org/wiki/Special:MyLanguage/Download_from_Git#Using_Git_to_download_MediaWiki_skins Using Git to download skins].\n: Doing this should not interfere with your git repository if you\'re a MediaWiki developer.\n\n; If you have just upgraded MediaWiki:\n: MediaWiki 1.24 and newer no longer automatically enables installed skins (see [https://www.mediawiki.org/wiki/Manual:Skin_autodiscovery Manual: Skin autodiscovery]). You can paste the following {{PLURAL:$5|line|lines}} into LocalSettings.php to enable {{PLURAL:$5|the|all}} installed {{PLURAL:$5|skin|skins}}:\n\n$3\n\n; If you have just modified
LocalSettings.php:\n: Double-check the skin names for typos.\";'),
+('en','messages:default-skin-not-found-no-skins','s:1253:\"Whoops! The default skin for your wiki, defined in $wgDefaultSkin as $1, is not available.\n\nYou have no installed skins.\n\n; If you have just installed or upgraded MediaWiki:\n: You probably installed from git, or directly from the source code using some other method. This is expected. MediaWiki 1.24 and newer doesn\'t include any skins in the main repository. Try installing some skins from [https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins mediawiki.org\'s skin directory], by:\n:* Downloading the [https://www.mediawiki.org/wiki/Special:MyLanguage/Download tarball installer], which comes with several skins and extensions. You can copy and paste the skins/ directory from it.\n:* Downloading individual skin tarballs from [https://www.mediawiki.org/wiki/Special:SkinDistributor mediawiki.org].\n:* [https://www.mediawiki.org/wiki/Special:MyLanguage/Download_from_Git#Using_Git_to_download_MediaWiki_skins Using Git to download skins].\n: Doing this should not interfere with your git repository if you\'re a MediaWiki developer. See [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration Manual: Skin configuration] for information how to enable skins and choose the default.\";'),
+('en','messages:default-skin-not-found-row-disabled','s:50:\"* $1 / $2 (disabled)\";'),
+('en','messages:default-skin-not-found-row-enabled','s:32:\"* $1 / $2 (enabled)\";'),
+('en','messages:defaultmessagetext','s:20:\"Default message text\";'),
+('en','messages:defemailsubject','s:33:\"{{SITENAME}} email from user \"$1\"\";'),
+('en','messages:deflate-invaliddeflate','s:41:\"Content provided is not properly deflated\";'),
+('en','messages:delete','s:6:\"Delete\";'),
+('en','messages:delete-confirm','s:11:\"Delete \"$1\"\";'),
+('en','messages:delete-edit-reasonlist','s:21:\"Edit deletion reasons\";'),
+('en','messages:delete-edit-reasonlist-suppress','s:21:\"Edit suppress reasons\";'),
+('en','messages:delete-error-associated-alreadytalk','s:50:\"Cannot delete associated talk page of a talk page.\";'),
+('en','messages:delete-error-associated-doesnotexist','s:50:\"Cannot delete a non-existing associated talk page.\";'),
+('en','messages:delete-hook-aborted','s:49:\"Deletion aborted by hook.\nIt gave no explanation.\";'),
+('en','messages:delete-legend','s:6:\"Delete\";'),
+('en','messages:delete-scheduled','s:59:\"The page \"$1\" is scheduled for deletion.\nPlease be patient.\";'),
+('en','messages:delete-talk-summary-prefix','s:57:\"Deleted together with the associated page with reason: $1\";'),
+('en','messages:delete-toobig','s:170:\"This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.\nDeletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.\";'),
+('en','messages:delete-toomanyrevisions','s:169:\"You are trying to delete more than $1 {{PLURAL:$1|revision|revisions}} at a time.\nSuch an operation has been restricted to prevent accidental disruption of {{SITENAME}}.\";'),
+('en','messages:delete-warning-toobig','s:160:\"This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.\nDeleting it may disrupt database operations of {{SITENAME}};\nproceed with caution.\";'),
+('en','messages:delete_and_move_confirm','s:20:\"Yes, delete the page\";'),
+('en','messages:delete_and_move_reason','s:42:\"Deleted to make way for move from \"[[$1]]\"\";'),
+('en','messages:delete_and_move_text','s:97:\"The destination page \"[[:$1]]\" already exists.\nDo you want to delete it to make way for the move?\";'),
+('en','messages:delete_redirect_and_move_text','s:111:\"The destination page \"[[:$1]]\" already exists as a redirect.\nDo you want to delete it to make way for the move?\";'),
+('en','messages:deletecomment','s:7:\"Reason:\";'),
+('en','messages:deletedarticle','s:16:\"deleted \"[[$1]]\"\";'),
+('en','messages:deletedcontributions','s:26:\"Deleted user contributions\";'),
+('en','messages:deletedcontributions-summary','s:0:\"\";'),
+('en','messages:deletedcontributions-title','s:33:\"Deleted user contributions for $1\";'),
+('en','messages:deletedhist','s:15:\"Deleted history\";'),
+('en','messages:deletedrevision','s:23:\"Deleted old revision $1\";'),
+('en','messages:deletedtext','s:63:\"\"$1\" has been deleted.\nSee $2 for a record of recent deletions.\";'),
+('en','messages:deletedwhileediting','s:74:\"Warning: This page was deleted after you started editing!\";'),
+('en','messages:deleteotherreason','s:24:\"Other/additional reason:\";'),
+('en','messages:deletepage','s:13:\"Delete a page\";'),
+('en','messages:deletepage-submit','s:11:\"Delete page\";'),
+('en','messages:deletepage-summary','s:0:\"\";'),
+('en','messages:deleteprotected','s:58:\"You cannot delete this page because it has been protected.\";'),
+('en','messages:deletereason-dropdown','s:104:\"* Common delete reasons\n** Spam\n** Vandalism\n** Copyright violation\n** Author request\n** Broken redirect\";'),
+('en','messages:deletereason-dropdown-suppress','s:0:\"\";'),
+('en','messages:deletereasonotherlist','s:12:\"Other reason\";'),
+('en','messages:deleting-backlinks-warning','s:136:\"Warning: [[Special:WhatLinksHere/{{FULLPAGENAME}}|Other pages]] link to or transclude the page you are about to delete.\";'),
+('en','messages:deleting-subpages-warning','s:161:\"Warning: The page you are about to delete has [[Special:PrefixIndex/{{FULLPAGENAME}}/|{{PLURAL:$1|a subpage|$1 subpages|51=over 50 subpages}}]].\";'),
+('en','messages:deletionlog','s:12:\"deletion log\";'),
+('en','messages:dellogpage','s:12:\"Deletion log\";'),
+('en','messages:dellogpagetext','s:45:\"Below is a list of the most recent deletions.\";'),
+('en','messages:destfilename','s:21:\"Destination filename:\";'),
+('en','messages:diff','s:4:\"diff\";'),
+('en','messages:diff-empty','s:15:\"(No difference)\";'),
+('en','messages:diff-form','s:11:\"Differences\";'),
+('en','messages:diff-form-error-revid','s:25:\"Input numeric revision ID\";'),
+('en','messages:diff-form-oldid','s:26:\"Old revision ID (optional)\";'),
+('en','messages:diff-form-other-revid','s:11:\"Revision ID\";'),
+('en','messages:diff-form-revid','s:25:\"Revision ID of difference\";'),
+('en','messages:diff-form-submit','s:16:\"Show differences\";'),
+('en','messages:diff-form-summary','s:0:\"\";'),
+('en','messages:diff-multi-manyusers','s:118:\"({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by more than $2 {{PLURAL:$2|user|users}} not shown)\";'),
+('en','messages:diff-multi-otherusers','s:118:\"({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by {{PLURAL:$2|one other user|$2 users}} not shown)\";'),
+('en','messages:diff-multi-sameuser','s:94:\"({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by the same user not shown)\";'),
+('en','messages:diff-paragraph-moved-tonew','s:51:\"Paragraph was moved. Click to jump to new location.\";'),
+('en','messages:diff-paragraph-moved-toold','s:51:\"Paragraph was moved. Click to jump to old location.\";'),
+('en','messages:difference-missing-revision','s:292:\"{{PLURAL:$2|One revision|$2 revisions}} of this difference ($1) {{PLURAL:$2|was|were}} not found.\n\nThis is usually caused by following an outdated diff link to a page that has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),
+('en','messages:difference-multipage','s:26:\"(Difference between pages)\";'),
+('en','messages:difference-title','s:32:\"$1: Difference between revisions\";'),
+('en','messages:difference-title-multipage','s:35:\"$1 and $2: Difference between pages\";'),
+('en','messages:directorycreateerror','s:32:\"Could not create directory \"$1\".\";'),
+('en','messages:directorynotreadableerror','s:31:\"Directory \"$1\" is not readable.\";'),
+('en','messages:directoryreadonlyerror','s:28:\"Directory \"$1\" is read-only.\";'),
+('en','messages:disabledspecialpage-disabled','s:54:\"This page has been disabled by a system administrator.\";'),
+('en','messages:disclaimerpage','s:26:\"Project:General disclaimer\";'),
+('en','messages:disclaimers','s:11:\"Disclaimers\";'),
+('en','messages:djvu_no_xml','s:33:\"Unable to fetch XML for DjVu file\";'),
+('en','messages:djvu_page_error','s:22:\"DjVu page out of range\";'),
+('en','messages:double-redirect-fixed-maintenance','s:79:\"Automatically fixing double redirect from [[$1]] to [[$2]] in a maintenance job\";'),
+('en','messages:double-redirect-fixed-move','s:83:\"[[$1]] has been moved.\nIt was automatically updated and now it redirects to [[$2]].\";'),
+('en','messages:double-redirect-fixer','s:14:\"Redirect fixer\";'),
+('en','messages:doubleredirects','s:16:\"Double redirects\";'),
+('en','messages:doubleredirects-summary','s:0:\"\";'),
+('en','messages:doubleredirectstext','s:295:\"This page lists pages that redirect to other redirect pages.\nEach row contains links to the first and second redirect, as well as the target of the second redirect, which is usually the \"real\" target page to which the first redirect should point.\n{{foo|bar=1|bar=2}} or {{foo|bar|1=baz}} .\";'),
+('en','messages:duplicate-args-warning','s:144:\"Warning: [[:$1]] is calling [[:$2]] with more than one value for the \"$3\" parameter. Only the last value provided will be used.\";'),
+('en','messages:duplicate-defaultsort','s:88:\"Warning: Default sort key \"$2\" overrides earlier default sort key \"$1\".\";'),
+('en','messages:duplicate-displaytitle','s:82:\"Warning: Display title \"$2\" overrides earlier display title \"$1\".\";'),
+('en','messages:duplicatesoffile','s:135:\"The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):\";'),
+('en','messages:duration-centuries','s:34:\"$1 {{PLURAL:$1|century|centuries}}\";'),
+('en','messages:duration-days','s:25:\"$1 {{PLURAL:$1|day|days}}\";'),
+('en','messages:duration-decades','s:31:\"$1 {{PLURAL:$1|decade|decades}}\";'),
+('en','messages:duration-hours','s:27:\"$1 {{PLURAL:$1|hour|hours}}\";'),
+('en','messages:duration-millennia','s:37:\"$1 {{PLURAL:$1|millennium|millennia}}\";'),
+('en','messages:duration-minutes','s:31:\"$1 {{PLURAL:$1|minute|minutes}}\";'),
+('en','messages:duration-seconds','s:31:\"$1 {{PLURAL:$1|second|seconds}}\";'),
+('en','messages:duration-weeks','s:27:\"$1 {{PLURAL:$1|week|weeks}}\";'),
+('en','messages:duration-years','s:27:\"$1 {{PLURAL:$1|year|years}}\";'),
+('en','messages:eauthentsent','s:215:\"A confirmation email has been sent to the specified email address.\nBefore any other email is sent to the account, you will have to follow the instructions in the email, to confirm that the account is actually yours.\";'),
+('en','messages:edit','s:4:\"Edit\";'),
+('en','messages:edit-already-exists','s:47:\"Could not create a new page.\nIt already exists.\";'),
+('en','messages:edit-conflict','s:14:\"Edit conflict.\";'),
+('en','messages:edit-error-long','s:11:\"Errors:\n\n$1\";'),
+('en','messages:edit-error-short','s:9:\"Error: $1\";'),
+('en','messages:edit-gone-missing','s:59:\"Could not update the page.\nIt appears to have been deleted.\";'),
+('en','messages:edit-hook-aborted','s:45:\"Edit aborted by hook.\nIt gave no explanation.\";'),
+('en','messages:edit-local','s:22:\"Edit local description\";'),
+('en','messages:edit-no-change','s:61:\"Your edit was ignored because no change was made to the text.\";'),
+('en','messages:edit-slots-cannot-add','s:69:\"The following {{PLURAL:$1|slot is|slots are}} not supported here: $2.\";'),
+('en','messages:edit-slots-cannot-remove','s:81:\"The following {{PLURAL:$1|slot is|slots are}} required and cannot be removed: $2.\";'),
+('en','messages:edit-slots-missing','s:58:\"The following {{PLURAL:$1|slot is|slots are}} missing: $2.\";'),
+('en','messages:edit-textarea-aria-label','s:22:\"Wikitext source editor\";'),
+('en','messages:edit_form_incomplete','s:125:\"Some parts of the edit form did not reach the server; double-check that your edits are intact and try again.\";'),
+('en','messages:editcomment','s:34:\"The edit summary was: $1.\";'),
+('en','messages:editconflict','s:17:\"Edit conflict: $1\";'),
+('en','messages:editfont-monospace','s:15:\"Monospaced font\";'),
+('en','messages:editfont-sansserif','s:15:\"Sans-serif font\";'),
+('en','messages:editfont-serif','s:10:\"Serif font\";'),
+('en','messages:editfont-style','s:21:\"Edit area font style:\";'),
+('en','messages:edithelp','s:12:\"Editing help\";'),
+('en','messages:edithelppage','s:68:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Editing_pages\";'),
+('en','messages:editing','s:10:\"Editing $1\";'),
+('en','messages:editingcomment','s:24:\"Editing $1 (new section)\";'),
+('en','messages:editinginterface','s:205:\"Warning: You are editing a page that is used to provide interface text for the software.\nChanges to this page will affect the appearance of the user interface for other users on this wiki.\";'),
+('en','messages:editingold','s:149:\"Warning: You are editing an out-of-date revision of this page.\nIf you publish it, any changes made since this revision will be lost.\";'),
+('en','messages:editingsection','s:20:\"Editing $1 (section)\";'),
+('en','messages:editinguser','s:77:\"Changing user groups of {{GENDER:$1|user}} [[User:$1|$1]] $2\";'),
+('en','messages:editlink','s:4:\"edit\";'),
+('en','messages:editnotice-notext','s:1:\"-\";'),
+('en','messages:editold','s:4:\"edit\";'),
+('en','messages:editpage','s:11:\"Edit a page\";'),
+('en','messages:editpage-cannot-use-custom-model','s:49:\"The content model of this page cannot be changed.\";'),
+('en','messages:editpage-head-copy-warn','s:1:\"-\";'),
+('en','messages:editpage-invalidcontentmodel-text','s:40:\"The content model \"$1\" is not supported.\";'),
+('en','messages:editpage-invalidcontentmodel-title','s:27:\"Content model not supported\";'),
+('en','messages:editpage-notsupportedcontentformat-text','s:63:\"The content format $1 is not supported by the content model $2.\";'),
+('en','messages:editpage-notsupportedcontentformat-title','s:28:\"Content format not supported\";'),
+('en','messages:editpage-summary','s:0:\"\";'),
+('en','messages:editpage-tos-summary','s:1:\"-\";'),
+('en','messages:editsection','s:4:\"edit\";'),
+('en','messages:editsectionhint','s:16:\"Edit section: $1\";'),
+('en','messages:edittools','s:61:\"\";'),
+('en','messages:edittools-upload','s:1:\"-\";'),
+('en','messages:editundo','s:4:\"undo\";'),
+('en','messages:editusergroup','s:16:\"Load user groups\";'),
+('en','messages:editwatchlist-summary','s:0:\"\";'),
+('en','messages:ellipsis','s:3:\"...\";'),
+('en','messages:email','s:5:\"Email\";'),
+('en','messages:email-allow-new-users-label','s:33:\"Allow emails from brand-new users\";'),
+('en','messages:email-legend','s:42:\"Send an email to another {{SITENAME}} user\";'),
+('en','messages:email-mutelist-label','s:38:\"Prohibit these users from emailing me:\";'),
+('en','messages:emailauthenticated','s:45:\"Your email address was confirmed on $2 at $3.\";'),
+('en','messages:emailblock','s:14:\"email disabled\";'),
+('en','messages:emailccme','s:30:\"Email me a copy of my message.\";'),
+('en','messages:emailccsubject','s:30:\"Copy of your message to $1: $2\";'),
+('en','messages:emailconfirmlink','s:26:\"Confirm your email address\";'),
+('en','messages:emaildisabled','s:29:\"This site cannot send emails.\";'),
+('en','messages:emailfrom','s:5:\"From:\";'),
+('en','messages:emaillink','s:10:\"send email\";'),
+('en','messages:emailmessage','s:8:\"Message:\";'),
+('en','messages:emailnotarget','s:47:\"Non-existent or invalid username for recipient.\";'),
+('en','messages:emailnotauthenticated','s:97:\"Your email address is not yet confirmed.\nNo email will be sent for any of the following features.\";'),
+('en','messages:emailpagetext','s:262:\"You can use the form below to send an email message to this {{GENDER:$1|user}}.\nThe email address you entered in [[Special:Preferences|your user preferences]] will appear as the \"From\" address of the email, so the recipient will be able to reply directly to you.\";'),
+('en','messages:emailsend','s:4:\"Send\";'),
+('en','messages:emailsender','s:12:\"{{SITENAME}}\";'),
+('en','messages:emailsent','s:10:\"Email sent\";'),
+('en','messages:emailsenttext','s:33:\"Your email message has been sent.\";'),
+('en','messages:emailsubject','s:8:\"Subject:\";'),
+('en','messages:emailtarget','s:27:\"Enter username of recipient\";'),
+('en','messages:emailto','s:3:\"To:\";'),
+('en','messages:emailuser','s:15:\"Email this user\";'),
+('en','messages:emailuser-summary','s:0:\"\";'),
+('en','messages:emailuser-title-notarget','s:10:\"Email user\";'),
+('en','messages:emailuser-title-target','s:29:\"Email this {{GENDER:$1|user}}\";'),
+('en','messages:emailuserfooter','s:305:\"This email was {{GENDER:$1|sent}} by $1 to {{GENDER:$2|$2}} by the \"{{int:emailuser}}\" function at {{SITENAME}}. If {{GENDER:$2|you}} reply to this email, {{GENDER:$2|your}} email will be sent directly to the {{GENDER:$1|original sender}}, revealing {{GENDER:$2|your}} email address to {{GENDER:$1|them}}.\";'),
+('en','messages:emailusername','s:9:\"Username:\";'),
+('en','messages:emailusernamesubmit','s:6:\"Submit\";'),
+('en','messages:empty-file','s:33:\"The file you submitted was empty.\";'),
+('en','messages:empty-username','s:23:\"(no username available)\";'),
+('en','messages:emptyfile','s:143:\"The file you uploaded seems to be empty.\nThis might be due to a typo in the filename.\nPlease check whether you really want to upload this file.\";'),
+('en','messages:enhancedrc-history','s:7:\"history\";'),
+('en','messages:enhancedrc-since-last-visit','s:33:\"$1 {{PLURAL:$1|since last visit}}\";'),
+('en','messages:enotif_anon_editor','s:17:\"anonymous user $1\";'),
+('en','messages:enotif_body','s:692:\"Dear $WATCHINGUSERNAME,\n\n$PAGEINTRO $NEWPAGE\n\nEditor\'s summary: $PAGESUMMARY $PAGEMINOREDIT\n\nContact the editor:\nmail: $PAGEEDITOR_EMAIL\nwiki: $PAGEEDITOR_WIKI\n\nThere will be no other notifications in case of further activity unless you visit this page while logged in. You could also reset the notification flags for all your watched pages on your watchlist.\n\nYour friendly {{SITENAME}} notification system\n\n--\nTo change your email notification settings, visit\n{{canonicalurl:{{#special:Preferences}}}}\n\nTo change your watchlist settings, visit\n{{canonicalurl:{{#special:EditWatchlist}}}}\n\nTo delete the page from your watchlist, visit\n$UNWATCHURL\n\nFeedback and further assistance:\n$HELPPAGE\";'),
+('en','messages:enotif_body_intro_changed','s:112:\"The {{SITENAME}} page $1 has been {{GENDER:$2|changed}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),
+('en','messages:enotif_body_intro_created','s:112:\"The {{SITENAME}} page $1 has been {{GENDER:$2|created}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),
+('en','messages:enotif_body_intro_deleted','s:87:\"The {{SITENAME}} page $1 has been {{GENDER:$2|deleted}} on $PAGEEDITDATE by $2, see $3.\";'),
+('en','messages:enotif_body_intro_moved','s:110:\"The {{SITENAME}} page $1 has been {{GENDER:$2|moved}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),
+('en','messages:enotif_body_intro_restored','s:113:\"The {{SITENAME}} page $1 has been {{GENDER:$2|restored}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),
+('en','messages:enotif_impersonal_salutation','s:17:\"{{SITENAME}} user\";'),
+('en','messages:enotif_lastdiff','s:27:\"To view this change, see $1\";'),
+('en','messages:enotif_lastvisited','s:45:\"For all changes since your last visit, see $1\";'),
+('en','messages:enotif_minoredit','s:20:\"This is a minor edit\";'),
+('en','messages:enotif_reset','s:22:\"Mark all pages visited\";'),
+('en','messages:enotif_subject_changed','s:57:\"{{SITENAME}} page $1 has been {{GENDER:$2|changed}} by $2\";'),
+('en','messages:enotif_subject_created','s:57:\"{{SITENAME}} page $1 has been {{GENDER:$2|created}} by $2\";'),
+('en','messages:enotif_subject_deleted','s:57:\"{{SITENAME}} page $1 has been {{GENDER:$2|deleted}} by $2\";'),
+('en','messages:enotif_subject_moved','s:55:\"{{SITENAME}} page $1 has been {{GENDER:$2|moved}} by $2\";'),
+('en','messages:enotif_subject_restored','s:58:\"{{SITENAME}} page $1 has been {{GENDER:$2|restored}} by $2\";'),
+('en','messages:enterlockreason','s:84:\"Enter a reason for the lock, including an estimate of when the lock will be released\";'),
+('en','messages:error','s:5:\"Error\";'),
+('en','messages:errorpagetitle','s:5:\"Error\";'),
+('en','messages:exbeforeblank','s:33:\"content before blanking was: \"$1\"\";'),
+('en','messages:exception-nologin','s:13:\"Not logged in\";'),
+('en','messages:exception-nologin-text','s:55:\"Please log in to be able to access this page or action.\";'),
+('en','messages:exception-nologin-text-manual','s:51:\"Please $1 to be able to access this page or action.\";'),
+('en','messages:excontent','s:17:\"content was: \"$1\"\";'),
+('en','messages:excontentauthor','s:105:\"content was: \"$1\", and the only contributor was \"[[Special:Contributions/$2|$2]]\" ([[User talk:$2|talk]])\";'),
+('en','messages:exif-aperturevalue','s:13:\"APEX aperture\";'),
+('en','messages:exif-artist','s:6:\"Author\";'),
+('en','messages:exif-attributionurl','s:39:\"When re-using this work, please link to\";'),
+('en','messages:exif-bitspersample','s:18:\"Bits per component\";'),
+('en','messages:exif-brightnessvalue','s:15:\"APEX brightness\";'),
+('en','messages:exif-cameraownername','s:15:\"Owner of camera\";'),
+('en','messages:exif-citycreated','s:34:\"City that the picture was taken in\";'),
+('en','messages:exif-citydest','s:10:\"City shown\";'),
+('en','messages:exif-colorspace','s:11:\"Color space\";'),
+('en','messages:exif-colorspace-1','s:4:\"sRGB\";'),
+('en','messages:exif-colorspace-65535','s:12:\"Uncalibrated\";'),
+('en','messages:exif-componentsconfiguration','s:25:\"Meaning of each component\";'),
+('en','messages:exif-componentsconfiguration-0','s:14:\"does not exist\";'),
+('en','messages:exif-componentsconfiguration-1','s:1:\"Y\";'),
+('en','messages:exif-componentsconfiguration-2','s:2:\"Cb\";'),
+('en','messages:exif-componentsconfiguration-3','s:2:\"Cr\";'),
+('en','messages:exif-componentsconfiguration-4','s:1:\"R\";'),
+('en','messages:exif-componentsconfiguration-5','s:1:\"G\";'),
+('en','messages:exif-componentsconfiguration-6','s:1:\"B\";'),
+('en','messages:exif-compressedbitsperpixel','s:22:\"Image compression mode\";'),
+('en','messages:exif-compression','s:18:\"Compression scheme\";'),
+('en','messages:exif-compression-1','s:12:\"Uncompressed\";'),
+('en','messages:exif-compression-2','s:64:\"CCITT Group 3 1-Dimensional Modified Huffman run length encoding\";'),
+('en','messages:exif-compression-3','s:26:\"CCITT Group 3 fax encoding\";'),
+('en','messages:exif-compression-32773','s:24:\"PackBits (Macintosh RLE)\";'),
+('en','messages:exif-compression-32946','s:15:\"Deflate (PKZIP)\";'),
+('en','messages:exif-compression-34712','s:8:\"JPEG2000\";'),
+('en','messages:exif-compression-4','s:26:\"CCITT Group 4 fax encoding\";'),
+('en','messages:exif-compression-5','s:3:\"LZW\";'),
+('en','messages:exif-compression-6','s:10:\"JPEG (old)\";'),
+('en','messages:exif-compression-7','s:4:\"JPEG\";'),
+('en','messages:exif-compression-8','s:15:\"Deflate (Adobe)\";'),
+('en','messages:exif-contact','s:19:\"Contact information\";'),
+('en','messages:exif-contact-value','s:52:\"$1\n\n$2\n{{ #language:…}} and variables like\n{{ CURRENTDAY}}.\nIn fact, it expands pretty much everything in double-braces.\";'),
+('en','messages:expand_templates_ok','s:2:\"OK\";'),
+('en','messages:expand_templates_output','s:6:\"Result\";'),
+('en','messages:expand_templates_preview','s:7:\"Preview\";'),
+('en','messages:expand_templates_preview_fail_html','s:377:\"Because {{SITENAME}} has raw HTML enabled and there was a loss of session data, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate preview attempt, please try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in, and check that your browser allows cookies from this site.\";'),
+('en','messages:expand_templates_preview_fail_html_anon','s:253:\"Because {{SITENAME}} has raw HTML enabled and you are not logged in, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate preview attempt, please [[Special:UserLogin|log in]] and try again.\";'),
+('en','messages:expand_templates_remove_comments','s:15:\"Remove comments\";'),
+('en','messages:expand_templates_remove_nowiki','s:32:\"Suppress #ifexist). See [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgExpensiveParserFunctionLimit Manual:$wgExpensiveParserFunctionLimit].\";'),
+('en','messages:expensive-parserfunction-warning','s:194:\"Warning: This page contains too many expensive parser function calls.\n\nIt should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.\";'),
+('en','messages:explainconflict','s:331:\"Someone else has changed this page since you started editing it.\nThe upper text area contains the page text as it currently exists.\nYour changes are shown in the lower text area.\nYou will have to merge your changes into the existing text.\nOnly the text in the upper text area will be published when you press \"$1\".\";'),
+('en','messages:export','s:12:\"Export pages\";'),
+('en','messages:export-addcat','s:3:\"Add\";'),
+('en','messages:export-addcattext','s:24:\"Add pages from category:\";'),
+('en','messages:export-addns','s:3:\"Add\";'),
+('en','messages:export-addnstext','s:25:\"Add pages from namespace:\";'),
+('en','messages:export-download','s:12:\"Save as file\";'),
+('en','messages:export-manual','s:19:\"Add pages manually:\";'),
+('en','messages:export-pagelinks','s:35:\"Include linked pages to a depth of:\";'),
+('en','messages:export-submit','s:6:\"Export\";'),
+('en','messages:export-summary','s:0:\"\";'),
+('en','messages:export-templates','s:17:\"Include templates\";'),
+('en','messages:exportall','s:16:\"Export all pages\";'),
+('en','messages:exportcuronly','s:55:\"Include only the current revision, not the full history\";'),
+('en','messages:exportlistauthors','s:49:\"Include a full list of contributors for each page\";'),
+('en','messages:exportnohistory','s:127:\"----\nNote: Exporting the full history of pages through this form has been disabled due to performance reasons.\";'),
+('en','messages:exporttext','s:588:\"You can export the text and editing history of a particular page or set of pages wrapped in some XML.\nThis can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].\n\nTo export pages, enter the titles in the text box below, one title per line, and select whether you want the current revision as well as all old revisions, with the page history lines, or the current revision with the info about the last edit.\n\nIn the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page \"[[{{MediaWiki:Mainpage}}]]\".\";'),
+('en','messages:external_image_whitelist','s:440:\" #Leave this line exactly as it is\n#Put regular expression fragments (just the part that goes between the //) below\n#These will be matched with the URLs of external (hotlinked) images\n#Those that match will be displayed as images, otherwise only a link to the image will be shown\n#Lines beginning with # are treated as comments\n#This is case-insensitive\n\n#Put all regex fragments above this line. Leave this line exactly as it is\";'), +('en','messages:externaldberror','s:105:\"There was either an authentication database error or you are not allowed to update your external account.\";'), +('en','messages:faq','s:3:\"FAQ\";'), +('en','messages:feb','s:3:\"Feb\";'), +('en','messages:february','s:8:\"February\";'), +('en','messages:february-gen','s:8:\"February\";'), +('en','messages:feed-atom','s:4:\"Atom\";'), +('en','messages:feed-invalid','s:31:\"Invalid subscription feed type.\";'), +('en','messages:feed-rss','s:3:\"RSS\";'), +('en','messages:feed-unavailable','s:35:\"Syndication feeds are not available\";'), +('en','messages:feedback-adding','s:26:\"Adding feedback to page...\";'), +('en','messages:feedback-back','s:4:\"Back\";'), +('en','messages:feedback-bugcheck','s:68:\"Great! Just check that it is not already one of the [$1 known bugs].\";'), +('en','messages:feedback-bugnew','s:27:\"I checked. Report a new bug\";'), +('en','messages:feedback-bugornote','s:204:\"If you are ready to describe a technical problem in detail please [$1 report a bug].\nOtherwise, you can use the easy form below. Your comment will be added to the page \"[$3 $2]\", along with your username.\";'), +('en','messages:feedback-cancel','s:6:\"Cancel\";'), +('en','messages:feedback-close','s:4:\"Done\";'), +('en','messages:feedback-dialog-intro','s:127:\"You can use the easy form below to submit your feedback. Your comment will be added to the page \"$1\", along with your username.\";'), +('en','messages:feedback-dialog-title','s:15:\"Submit feedback\";'), +('en','messages:feedback-error1','s:35:\"Error: Unrecognized result from API\";'), +('en','messages:feedback-error4','s:45:\"Error: Unable to post to given feedback title\";'), +('en','messages:feedback-external-bug-report-button','s:21:\"File a technical task\";'), +('en','messages:feedback-message','s:8:\"Message:\";'), +('en','messages:feedback-subject','s:8:\"Subject:\";'), +('en','messages:feedback-submit','s:6:\"Submit\";'), +('en','messages:feedback-terms','s:167:\"I understand that my user agent information includes information about my exact browser and operating system version and will be shared publicly alongside my feedback.\";'), +('en','messages:feedback-termsofuse','s:64:\"I agree to provide feedback in accordance with the Terms of Use.\";'), +('en','messages:feedback-thanks','s:60:\"Thanks! Your feedback has been posted to the page \"[$2 $1]\".\";'), +('en','messages:feedback-thanks-title','s:10:\"Thank you!\";'), +('en','messages:feedback-useragent','s:11:\"User agent:\";'), +('en','messages:fewestrevisions','s:31:\"Pages with the fewest revisions\";'), +('en','messages:fewestrevisions-summary','s:0:\"\";'), +('en','messages:file-anchor-link','s:4:\"File\";'), +('en','messages:file-deleted-duplicate','s:149:\"A file identical to this file ([[:$1]]) has previously been deleted.\nYou should check that file\'s deletion history before proceeding to re-upload it.\";'), +('en','messages:file-deleted-duplicate-notitle','s:221:\"A file identical to this file has previously been deleted, and the title has been suppressed.\nYou should ask someone with the ability to view suppressed file data to review the situation before proceeding to re-upload it.\";'), +('en','messages:file-exists-duplicate','s:67:\"This file is a duplicate of the following {{PLURAL:$1|file|files}}:\";'), +('en','messages:file-exists-sharedrepo','s:89:\"The filename chosen is already in use on a shared repository.\nPlease choose another name.\";'), +('en','messages:file-info','s:28:\"file size: $1, MIME type: $2\";'), +('en','messages:file-info-gif-frames','s:29:\"$1 {{PLURAL:$1|frame|frames}}\";'), +('en','messages:file-info-gif-looped','s:6:\"looped\";'), +('en','messages:file-info-png-frames','s:29:\"$1 {{PLURAL:$1|frame|frames}}\";'), +('en','messages:file-info-png-looped','s:6:\"looped\";'), +('en','messages:file-info-png-repeat','s:34:\"played $1 {{PLURAL:$1|time|times}}\";'), +('en','messages:file-info-size','s:45:\"$1 × $2 pixels, file size: $3, MIME type: $4\";'), +('en','messages:file-info-size-pages','s:74:\"$1 × $2 pixels, file size: $3, MIME type: $4, $5 {{PLURAL:$5|page|pages}}\";'), +('en','messages:file-no-thumb-animation','s:98:\"Note: Due to technical limitations, thumbnails of this file will not be animated.\";'), +('en','messages:file-no-thumb-animation-gif','s:132:\"Note: Due to technical limitations, thumbnails of high resolution GIF images such as this one will not be animated.\";'), +('en','messages:file-nohires','s:31:\"No higher resolution available.\";'), +('en','messages:file-thumbnail-no','s:204:\"The filename begins with $1.\nIt seems to be an image of reduced size (thumbnail).\nIf you have this image in full resolution upload this one, otherwise change the filename please.\";'), +('en','messages:file-too-large','s:37:\"The file you submitted was too large.\";'), +('en','messages:filecopyerror','s:33:\"Could not copy file \"$1\" to \"$2\".\";'), +('en','messages:filedelete','s:9:\"Delete $1\";'), +('en','messages:filedelete-archive-read-only','s:60:\"The archive directory \"$1\" is not writable by the webserver.\";'), +('en','messages:filedelete-comment','s:7:\"Reason:\";'), +('en','messages:filedelete-current-unregistered','s:47:\"The specified file \"$1\" is not in the database.\";'), +('en','messages:filedelete-edit-reasonlist','s:19:\"Edit delete reasons\";'), +('en','messages:filedelete-edit-reasonlist-suppress','s:21:\"Edit suppress reasons\";'), +('en','messages:filedelete-intro','s:96:\"You are about to delete the file [[Media:$1|$1]] along with all of its history.\";'), +('en','messages:filedelete-intro-old','s:83:\"You are deleting the version of [[Media:$1|$1]] as of [$4 $3, $2].\";'), +('en','messages:filedelete-legend','s:11:\"Delete file\";'), +('en','messages:filedelete-maintenance','s:74:\"Deletion and restoration of files temporarily disabled during maintenance.\";'), +('en','messages:filedelete-maintenance-title','s:18:\"Cannot delete file\";'), +('en','messages:filedelete-missing','s:58:\"The file \"$1\" cannot be deleted because it does not exist.\";'), +('en','messages:filedelete-nofile','s:35:\"$1 does not exist.\";'), +('en','messages:filedelete-nofile-old','s:82:\"There is no archived version of $1 with the specified attributes.\";'), +('en','messages:filedelete-old-unregistered','s:56:\"The specified file revision \"$1\" is not in the database.\";'), +('en','messages:filedelete-otherreason','s:24:\"Other/additional reason:\";'), +('en','messages:filedelete-reason-dropdown','s:64:\"*Common delete reasons\n** Copyright violation\n** Duplicated file\";'), +('en','messages:filedelete-reason-dropdown-suppress','s:0:\"\";'), +('en','messages:filedelete-reason-otherlist','s:12:\"Other reason\";'), +('en','messages:filedelete-submit','s:6:\"Delete\";'), +('en','messages:filedelete-success','s:37:\"$1 has been deleted.\";'), +('en','messages:filedelete-success-old','s:78:\"The version of [[Media:$1|$1]] as of $3, $2 has been deleted.\";'), +('en','messages:filedeleteerror','s:27:\"Could not delete file \"$1\".\";'), +('en','messages:filedeleteerror-long','s:52:\"Errors were encountered while deleting the file:\n\n$1\";'), +('en','messages:filedeleteerror-short','s:23:\"Error deleting file: $1\";'), +('en','messages:filedesc','s:7:\"Summary\";'), +('en','messages:fileduplicatesearch','s:26:\"Search for duplicate files\";'), +('en','messages:fileduplicatesearch-filename','s:9:\"Filename:\";'), +('en','messages:fileduplicatesearch-info','s:52:\"$1 × $2 pixel
\n# Syntax is as follows:\n# * Everything from a \"#\" character to the end of the line is a comment\n# * Every non-blank line is a prefix for typical filenames assigned automatically by digital cameras\nCIMG # Casio\nDSC_ # Nikon\nDSCF # Fuji\nDSCN # Nikon\nDUW # some mobile phones\nIMG # generic\nJD # Jenoptik\nMGP # Pentax\nPICT # misc.\n #\";'), +('en','messages:filename-thumb-name','s:190:\"This looks like a thumbnail title. Please do not upload thumbnails back to the same wiki. Otherwise, please fix the filename so it is more meaningful, and does not have the thumbnail prefix.\";'), +('en','messages:filename-toolong','s:43:\"Filenames may not be longer than 240 bytes.\";'), +('en','messages:filename-tooshort','s:26:\"The filename is too short.\";'), +('en','messages:filenotfound','s:25:\"Could not find file \"$1\".\";'), +('en','messages:filepage-nofile','s:28:\"No file by this name exists.\";'), +('en','messages:filepage-nofile-link','s:56:\"No file by this name exists, but you can [$1 upload it].\";'), +('en','messages:filepage.css','s:101:\"/* CSS placed here is included on the file description page, also included on foreign client wikis */\";'), +('en','messages:filepageexists','s:279:\"The description page for this file has already been created at [[:$1]], but no file with this name currently exists.\nThe summary you enter will not appear on the description page.\nTo make your summary appear there, you will need to manually edit it.\n[[$1|thumb]]\";'), +('en','messages:filereadonlyerror','s:157:\"Unable to modify the file \"$1\" because the file repository \"$2\" is in read-only mode.\n\nThe system administrator who locked it offered this explanation: \"$3\".\";'), +('en','messages:filerenameerror','s:35:\"Could not rename file \"$1\" to \"$2\".\";'), +('en','messages:filereuploadsummary','s:13:\"File changes:\";'), +('en','messages:filerevert','s:9:\"Revert $1\";'), +('en','messages:filerevert-badversion','s:76:\"There is no previous local version of this file with the provided timestamp.\";'), +('en','messages:filerevert-comment','s:7:\"Reason:\";'), +('en','messages:filerevert-defaultcomment','s:37:\"Reverted to version as of $2, $1 ($3)\";'), +('en','messages:filerevert-identical','s:73:\"The current version of the file is already identical to the selected one.\";'), +('en','messages:filerevert-intro','s:99:\"You are about to revert the file [[Media:$1|$1]] to the [$4 version as of $3, $2].\";'), +('en','messages:filerevert-legend','s:11:\"Revert file\";'), +('en','messages:filerevert-submit','s:6:\"Revert\";'), +('en','messages:filerevert-success','s:84:\"[[Media:$1|$1]] has been reverted to the [$4 version as of $3, $2].\";'), +('en','messages:filesource','s:7:\"Source:\";'), +('en','messages:filestatus','s:17:\"Copyright status:\";'), +('en','messages:filetype-bad-ie-mime','s:133:\"Cannot upload this file because Internet Explorer would detect it as \"$1\", which is a disallowed and potentially dangerous file type.\";'), +('en','messages:filetype-badmime','s:59:\"Files of the MIME type \"$1\" are not allowed to be uploaded.\";'), +('en','messages:filetype-banned','s:28:\"This type of file is banned.\";'), +('en','messages:filetype-banned-type','s:151:\"\".$1\" {{PLURAL:$4|is not a permitted file type|are not permitted file types}}.\nPermitted {{PLURAL:$3|file type is|file types are}} $2.\";'), +('en','messages:filetype-mime-mismatch','s:76:\"File extension \".$1\" does not match the detected MIME type of the file ($2).\";'), +('en','messages:filetype-missing','s:40:\"The file has no extension (like \".jpg\").\";'), +('en','messages:filetype-unwanted-type','s:104:\"\".$1\" is an unwanted file type.\nPreferred {{PLURAL:$3|file type is|file types are}} $2.\";'), +('en','messages:fileuploadsummary','s:8:\"Summary:\";'), +('en','messages:filewasdeleted','s:136:\"A file of this name has been previously uploaded and subsequently deleted.\nYou should check the $1 before proceeding to upload it again.\";'), +('en','messages:fix-double-redirects','s:53:\"Update any redirects that point to the original title\";'), +('en','messages:formatnum-nan','s:12:\"Not a Number\";'), +('en','messages:formerror','s:29:\"Error: Could not submit form.\";'), +('en','messages:fri','s:3:\"Fri\";'), +('en','messages:friday','s:6:\"Friday\";'), +('en','messages:friday-at','s:12:\"Friday at $1\";'), +('en','messages:gallery-slideshow-toggle','s:17:\"Toggle thumbnails\";'), +('en','messages:gender-female','s:20:\"She edits wiki pages\";'), +('en','messages:gender-male','s:19:\"He edits wiki pages\";'), +('en','messages:gender-notknown','s:20:\"They edit wiki pages\";'), +('en','messages:gender-unknown','s:81:\"When mentioning you, the software will use gender neutral words whenever possible\";'), +('en','messages:generic-pool-error','s:163:\"Sorry, the servers are overloaded at the moment.\nToo many users are trying to view this resource.\nPlease wait a while before you try to access this resource again.\";'), +('en','messages:go','s:2:\"Go\";'), +('en','messages:googlesearch','s:630:\"\";'), +('en','messages:gotointerwiki','s:20:\"Leaving {{SITENAME}}\";'), +('en','messages:gotointerwiki-external','s:108:\"You are about to leave {{SITENAME}} to visit [[$2]], which is a separate website.\n\n\'\'\'[$1 Continue to $1]\'\'\'\";'), +('en','messages:gotointerwiki-invalid','s:31:\"The specified title is invalid.\";'), +('en','messages:grant-basic','s:12:\"Basic rights\";'), +('en','messages:grant-blockusers','s:23:\"Block and unblock users\";'), +('en','messages:grant-createaccount','s:15:\"Create accounts\";'), +('en','messages:grant-createeditmovepage','s:28:\"Create, edit, and move pages\";'), +('en','messages:grant-delete','s:40:\"Delete pages, revisions, and log entries\";'), +('en','messages:grant-editinterface','s:51:\"Edit the MediaWiki namespace and sitewide/user JSON\";'), +('en','messages:grant-editmycssjs','s:34:\"Edit your user CSS/JSON/JavaScript\";'), +('en','messages:grant-editmyoptions','s:49:\"Edit your user preferences and JSON configuration\";'), +('en','messages:grant-editmywatchlist','s:19:\"Edit your watchlist\";'), +('en','messages:grant-editpage','s:19:\"Edit existing pages\";'), +('en','messages:grant-editprotected','s:20:\"Edit protected pages\";'), +('en','messages:grant-editsiteconfig','s:29:\"Edit sitewide and user CSS/JS\";'), +('en','messages:grant-generic','s:18:\"\"$1\" rights bundle\";'), +('en','messages:grant-group-administration','s:30:\"Perform administrative actions\";'), +('en','messages:grant-group-customization','s:29:\"Customization and preferences\";'), +('en','messages:grant-group-email','s:10:\"Send email\";'), +('en','messages:grant-group-file-interaction','s:19:\"Interact with media\";'), +('en','messages:grant-group-high-volume','s:28:\"Perform high volume activity\";'), +('en','messages:grant-group-other','s:22:\"Miscellaneous activity\";'), +('en','messages:grant-group-page-interaction','s:19:\"Interact with pages\";'), +('en','messages:grant-group-private-information','s:29:\"Access private data about you\";'), +('en','messages:grant-group-watchlist-interaction','s:28:\"Interact with your watchlist\";'), +('en','messages:grant-highvolume','s:19:\"High-volume editing\";'), +('en','messages:grant-import','s:16:\"Import revisions\";'), +('en','messages:grant-mergehistory','s:20:\"Merge page histories\";'), +('en','messages:grant-oversight','s:33:\"Hide users and suppress revisions\";'), +('en','messages:grant-patrol','s:23:\"Patrol changes to pages\";'), +('en','messages:grant-privateinfo','s:26:\"Access private information\";'), +('en','messages:grant-protect','s:27:\"Protect and unprotect pages\";'), +('en','messages:grant-rollback','s:25:\"Rollback changes to pages\";'), +('en','messages:grant-sendemail','s:25:\"Send email to other users\";'), +('en','messages:grant-uploadeditmovefile','s:31:\"Upload, replace, and move files\";'), +('en','messages:grant-uploadfile','s:16:\"Upload new files\";'), +('en','messages:grant-viewdeleted','s:28:\"View deleted files and pages\";'), +('en','messages:grant-viewmywatchlist','s:19:\"View your watchlist\";'), +('en','messages:grant-viewrestrictedlogs','s:27:\"View restricted log entries\";'), +('en','messages:group','s:6:\"Group:\";'), +('en','messages:group-all','s:5:\"(all)\";'), +('en','messages:group-autoconfirmed','s:19:\"Autoconfirmed users\";'), +('en','messages:group-autoconfirmed-member','s:32:\"{{GENDER:$1|autoconfirmed user}}\";'), +('en','messages:group-autoconfirmed.css','s:58:\"/* CSS placed here will affect autoconfirmed users only */\";'), +('en','messages:group-autoconfirmed.js','s:69:\"/* Any JavaScript here will be loaded for autoconfirmed users only */\";'), +('en','messages:group-bot','s:4:\"Bots\";'), +('en','messages:group-bot-member','s:17:\"{{GENDER:$1|bot}}\";'), +('en','messages:group-bot.css','s:43:\"/* CSS placed here will affect bots only */\";'), +('en','messages:group-bot.js','s:54:\"/* Any JavaScript here will be loaded for bots only */\";'), +('en','messages:group-bureaucrat','s:11:\"Bureaucrats\";'), +('en','messages:group-bureaucrat-member','s:24:\"{{GENDER:$1|bureaucrat}}\";'), +('en','messages:group-bureaucrat.css','s:50:\"/* CSS placed here will affect bureaucrats only */\";'), +('en','messages:group-bureaucrat.js','s:61:\"/* Any JavaScript here will be loaded for bureaucrats only */\";'), +('en','messages:group-interface-admin','s:24:\"Interface administrators\";'), +('en','messages:group-interface-admin-member','s:37:\"{{GENDER:$1|interface administrator}}\";'), +('en','messages:group-membership-link-with-expiry','s:13:\"$1 (until $2)\";'), +('en','messages:group-suppress','s:11:\"Suppressors\";'), +('en','messages:group-suppress-member','s:24:\"{{GENDER:$1|suppressor}}\";'), +('en','messages:group-sysop','s:14:\"Administrators\";'), +('en','messages:group-sysop-member','s:27:\"{{GENDER:$1|administrator}}\";'), +('en','messages:group-sysop.css','s:45:\"/* CSS placed here will affect sysops only */\";'), +('en','messages:group-sysop.js','s:56:\"/* Any JavaScript here will be loaded for sysops only */\";'), +('en','messages:group-user','s:5:\"Users\";'), +('en','messages:group-user-member','s:18:\"{{GENDER:$1|user}}\";'), +('en','messages:group-user.css','s:55:\"/* CSS placed here will affect registered users only */\";'), +('en','messages:group-user.js','s:66:\"/* Any JavaScript here will be loaded for registered users only */\";'), +('en','messages:grouppage-autoconfirmed','s:34:\"{{ns:project}}:Autoconfirmed users\";'), +('en','messages:grouppage-bot','s:19:\"{{ns:project}}:Bots\";'), +('en','messages:grouppage-bureaucrat','s:26:\"{{ns:project}}:Bureaucrats\";'), +('en','messages:grouppage-interface-admin','s:39:\"{{ns:project}}:Interface administrators\";'), +('en','messages:grouppage-suppress','s:23:\"{{ns:project}}:Suppress\";'), +('en','messages:grouppage-sysop','s:29:\"{{ns:project}}:Administrators\";'), +('en','messages:grouppage-user','s:20:\"{{ns:project}}:Users\";'), +('en','messages:guesstimezone','s:20:\"Fill in from browser\";'), +('en','messages:headline-anchor-title','s:20:\"Link to this section\";'), +('en','messages:hebrew-calendar-m1','s:7:\"Tishrei\";'), +('en','messages:hebrew-calendar-m1-gen','s:7:\"Tishrei\";'), +('en','messages:hebrew-calendar-m10','s:5:\"Tamuz\";'), +('en','messages:hebrew-calendar-m10-gen','s:5:\"Tamuz\";'), +('en','messages:hebrew-calendar-m11','s:2:\"Av\";'), +('en','messages:hebrew-calendar-m11-gen','s:2:\"Av\";'), +('en','messages:hebrew-calendar-m12','s:4:\"Elul\";'), +('en','messages:hebrew-calendar-m12-gen','s:4:\"Elul\";'), +('en','messages:hebrew-calendar-m2','s:8:\"Cheshvan\";'), +('en','messages:hebrew-calendar-m2-gen','s:8:\"Cheshvan\";'), +('en','messages:hebrew-calendar-m3','s:6:\"Kislev\";'), +('en','messages:hebrew-calendar-m3-gen','s:6:\"Kislev\";'), +('en','messages:hebrew-calendar-m4','s:5:\"Tevet\";'), +('en','messages:hebrew-calendar-m4-gen','s:5:\"Tevet\";'), +('en','messages:hebrew-calendar-m5','s:6:\"Shevat\";'), +('en','messages:hebrew-calendar-m5-gen','s:6:\"Shevat\";'), +('en','messages:hebrew-calendar-m6','s:4:\"Adar\";'), +('en','messages:hebrew-calendar-m6-gen','s:4:\"Adar\";'), +('en','messages:hebrew-calendar-m6a','s:6:\"Adar I\";'), +('en','messages:hebrew-calendar-m6a-gen','s:6:\"Adar I\";'), +('en','messages:hebrew-calendar-m6b','s:7:\"Adar II\";'), +('en','messages:hebrew-calendar-m6b-gen','s:7:\"Adar II\";'), +('en','messages:hebrew-calendar-m7','s:5:\"Nisan\";'), +('en','messages:hebrew-calendar-m7-gen','s:5:\"Nisan\";'), +('en','messages:hebrew-calendar-m8','s:4:\"Iyar\";'), +('en','messages:hebrew-calendar-m8-gen','s:4:\"Iyar\";'), +('en','messages:hebrew-calendar-m9','s:5:\"Sivan\";'), +('en','messages:hebrew-calendar-m9-gen','s:5:\"Sivan\";'), +('en','messages:help','s:4:\"Help\";'), +('en','messages:help-mediawiki','s:20:\"Help about MediaWiki\";'), +('en','messages:helplogin-url','s:65:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Logging_in\";'), +('en','messages:helppage','s:63:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents\";'), +('en','messages:helppage-top-gethelp','s:4:\"Help\";'), +('en','messages:hidden-categories','s:47:\"{{PLURAL:$1|Hidden category|Hidden categories}}\";'), +('en','messages:hidden-category-category','s:17:\"Hidden categories\";'), +('en','messages:hidden-category-category-desc','s:167:\"The category contains
__HIDDENCAT__ in its page content, which prevents it from showing up in the category links box on pages by default.\";'),
+('en','messages:hiddencategories','s:78:\"This page is a member of {{PLURAL:$1|a hidden category|$1 hidden categories}}:\";'),
+('en','messages:hide','s:4:\"Hide\";'),
+('en','messages:hidetoc','s:4:\"hide\";'),
+('en','messages:hijri-calendar-m1','s:8:\"Muharram\";'),
+('en','messages:hijri-calendar-m10','s:7:\"Shawwal\";'),
+('en','messages:hijri-calendar-m11','s:13:\"Dhu al-Qi\'dah\";'),
+('en','messages:hijri-calendar-m12','s:13:\"Dhu al-Hijjah\";'),
+('en','messages:hijri-calendar-m2','s:5:\"Safar\";'),
+('en','messages:hijri-calendar-m3','s:14:\"Rabi\' al-awwal\";'),
+('en','messages:hijri-calendar-m4','s:14:\"Rabi\' al-thani\";'),
+('en','messages:hijri-calendar-m5','s:15:\"Jumada al-awwal\";'),
+('en','messages:hijri-calendar-m6','s:15:\"Jumada al-thani\";'),
+('en','messages:hijri-calendar-m7','s:5:\"Rajab\";'),
+('en','messages:hijri-calendar-m8','s:8:\"Sha\'aban\";'),
+('en','messages:hijri-calendar-m9','s:7:\"Ramadan\";'),
+('en','messages:hist','s:4:\"hist\";'),
+('en','messages:histfirst','s:6:\"oldest\";'),
+('en','messages:histlast','s:6:\"newest\";'),
+('en','messages:histlegend','s:314:\"Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.__INDEX__ on it (and is in a namespace where that flag is allowed), and hence is indexed by robots where it normally wouldn\'t be.\";'),
+('en','messages:infiniteblock','s:8:\"infinite\";'),
+('en','messages:intentionallyblankpage','s:38:\"This page is intentionally left blank.\";'),
+('en','messages:interlanguage-link-title','s:9:\"$1 – $2\";'),
+('en','messages:interlanguage-link-title-langonly','s:2:\"$1\";'),
+('en','messages:interlanguage-link-title-nonlang','s:9:\"$1 – $2\";'),
+('en','messages:interlanguage-link-title-nonlangonly','s:2:\"$1\";'),
+('en','messages:internalerror','s:14:\"Internal error\";'),
+('en','messages:internalerror-fatal-exception','s:28:\"Fatal exception of type \"$1\"\";'),
+('en','messages:internalerror_info','s:18:\"Internal error: $1\";'),
+('en','messages:invalid-chunk-offset','s:20:\"Invalid chunk offset\";'),
+('en','messages:invalid-content-data','s:20:\"Invalid content data\";'),
+('en','messages:invalid-indicator-name','s:94:\"Error: Page status indicators\' name attribute must not be empty.\";'),
+('en','messages:invalid-langconvert-attrs','s:185:\"Error: Langconvert tag\'s from and to attributes must not be empty and must contain BCP 47 codes for convertible variants of the same language.\";'),
+('en','messages:invalidateemail','s:25:\"Cancel email confirmation\";'),
+('en','messages:invalidemailaddress','s:136:\"The email address cannot be accepted as it appears to have an invalid format.\nPlease enter a well-formatted address or empty that field.\";'),
+('en','messages:invalidtitle','s:13:\"Invalid title\";'),
+('en','messages:invalidtitle-knownnamespace','s:47:\"Invalid title with namespace \"$2\" and text \"$3\"\";'),
+('en','messages:invalidtitle-unknownnamespace','s:60:\"Invalid title with unknown namespace number $1 and text \"$2\"\";'),
+('en','messages:invert','s:16:\"Invert selection\";'),
+('en','messages:ip_range_exceeded','s:59:\"The IP range exceeds its maximum range. Allowed range: /$1.\";'),
+('en','messages:ip_range_invalid','s:25:\"Invalid IP address range.\";'),
+('en','messages:ip_range_toolarge','s:45:\"Range blocks larger than /$1 are not allowed.\";'),
+('en','messages:ip_range_toolow','s:38:\"IP ranges are effectively not allowed.\";'),
+('en','messages:ipaddressorusername','s:33:\"IP address, username or block ID:\";'),
+('en','messages:ipb-action-create','s:18:\"Creating new pages\";'),
+('en','messages:ipb-action-move','s:14:\"Renaming pages\";'),
+('en','messages:ipb-action-upload','s:15:\"Uploading files\";'),
+('en','messages:ipb-block-not-found','s:191:\"The block could not be made, but no existing block was found for \"$1\". If this problem persists, please [https://www.mediawiki.org/wiki/Special:MyLanguage/Help_talk:Blocking_users report it].\";'),
+('en','messages:ipb-blockingself','s:66:\"You are about to block yourself! Are you sure you want to do that?\";'),
+('en','messages:ipb-blocklist','s:20:\"View existing blocks\";'),
+('en','messages:ipb-blocklist-contribs','s:34:\"Contributions for {{GENDER:$1|$1}}\";'),
+('en','messages:ipb-blocklist-duration-left','s:7:\"$1 left\";'),
+('en','messages:ipb-change-block','s:37:\"Re-block the user with these settings\";'),
+('en','messages:ipb-confirm','s:13:\"Confirm block\";'),
+('en','messages:ipb-confirmaction','s:101:\"If you are sure you really want to do it, please check the \"{{int:ipb-confirm}}\" field at the bottom.\";'),
+('en','messages:ipb-confirmhideuser','s:154:\"You are about to block a user with \"hide user\" enabled. This will suppress the user\'s name in all lists and log entries. Are you sure you want to do that?\";'),
+('en','messages:ipb-default-expiry','s:0:\"\";'),
+('en','messages:ipb-default-expiry-ip','s:0:\"\";'),
+('en','messages:ipb-disableusertalk','s:27:\"Editing their own talk page\";'),
+('en','messages:ipb-edit-dropdown','s:18:\"Edit block reasons\";'),
+('en','messages:ipb-empty-block','s:48:\"The block submitted has no restrictions enabled.\";'),
+('en','messages:ipb-hardblock','s:51:\"Apply block to logged-in users from this IP address\";'),
+('en','messages:ipb-namespaces-label','s:10:\"Namespaces\";'),
+('en','messages:ipb-needreblock','s:58:\"$1 is already blocked. Do you want to change the settings?\";'),
+('en','messages:ipb-otherblocks-header','s:32:\"Other {{PLURAL:$1|block|blocks}}\";'),
+('en','messages:ipb-pages-label','s:5:\"Pages\";'),
+('en','messages:ipb-partial','s:7:\"Partial\";'),
+('en','messages:ipb-partial-help','s:128:\"Allows you to select pages and namespaces to block. Doesn’t block default actions but lets you block certain specific actions.\";'),
+('en','messages:ipb-prevent-user-talk-edit','s:125:\"Editing their own talk page must be allowed for a partial block, unless it includes a restriction on the User Talk namespace.\";'),
+('en','messages:ipb-sitewide','s:8:\"Sitewide\";'),
+('en','messages:ipb-sitewide-help','s:154:\"Blocks editing on all pages and namespaces. Also blocks default actions ([https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Blocking_users See help])\";'),
+('en','messages:ipb-unblock','s:32:\"Unblock a username or IP address\";'),
+('en','messages:ipb-unblock-addr','s:10:\"Unblock $1\";'),
+('en','messages:ipb_already_blocked','s:24:\"\"$1\" is already blocked.\";'),
+('en','messages:ipb_blocked_as_range','s:146:\"Error: The IP address $1 is not blocked directly and cannot be unblocked.\nIt is, however, blocked as part of the range $2, which can be unblocked.\";'),
+('en','messages:ipb_cant_unblock','s:64:\"Error: Block for $1 not found. It may have been removed already.\";'),
+('en','messages:ipb_expiry_invalid','s:20:\"Expiry time invalid.\";'),
+('en','messages:ipb_expiry_old','s:27:\"Expiry time is in the past.\";'),
+('en','messages:ipb_expiry_temp','s:42:\"Hidden username blocks must be indefinite.\";'),
+('en','messages:ipb_hide_invalid','s:82:\"Unable to suppress this account; it has more than {{PLURAL:$1|one edit|$1 edits}}.\";'),
+('en','messages:ipb_hide_partial','s:47:\"Hidden username blocks must be sitewide blocks.\";'),
+('en','messages:ipbblocked','s:73:\"You cannot block or unblock other users because you are yourself blocked.\";'),
+('en','messages:ipbcreateaccount','s:16:\"Account creation\";'),
+('en','messages:ipbemailban','s:13:\"Sending email\";'),
+('en','messages:ipbenableautoblock','s:132:\"Automatically block the last IP address used by this user, and any subsequent IP addresses they try to edit from, for a period of $1\";'),
+('en','messages:ipbhidename','s:34:\"Hide username from edits and lists\";'),
+('en','messages:ipblocklist','s:13:\"Blocked users\";'),
+('en','messages:ipblocklist-empty','s:24:\"The block list is empty.\";'),
+('en','messages:ipblocklist-legend','s:19:\"Find a blocked user\";'),
+('en','messages:ipblocklist-localblock','s:11:\"Local block\";'),
+('en','messages:ipblocklist-no-results','s:66:\"No matching blocks found for the requested IP address or username.\";'),
+('en','messages:ipblocklist-otherblocks','s:32:\"Other {{PLURAL:$1|block|blocks}}\";'),
+('en','messages:ipblocklist-submit','s:6:\"Search\";'),
+('en','messages:ipbnounblockself','s:40:\"You are not allowed to unblock yourself.\";'),
+('en','messages:ipboptions','s:157:\"2 hours:2 hours,1 day:1 day,3 days:3 days,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,indefinite:infinite\";'),
+('en','messages:ipbother','s:11:\"Other time:\";'),
+('en','messages:ipbreason','s:7:\"Reason:\";'),
+('en','messages:ipbreason-dropdown','s:252:\"*Common block reasons\n** Inserting false information\n** Removing content from pages\n** Spamming links to external sites\n** Inserting nonsense/gibberish into pages\n** Intimidating behavior/harassment\n** Abusing multiple accounts\n** Unacceptable username\";'),
+('en','messages:ipbsubmit','s:15:\"Block this user\";'),
+('en','messages:ipbwatchuser','s:37:\"Watch this user\'s user and talk pages\";'),
+('en','messages:ipusubmit','s:17:\"Remove this block\";'),
+('en','messages:iranian-calendar-m1','s:9:\"Farvardin\";'),
+('en','messages:iranian-calendar-m10','s:3:\"Dey\";'),
+('en','messages:iranian-calendar-m11','s:6:\"Bahman\";'),
+('en','messages:iranian-calendar-m12','s:6:\"Esfand\";'),
+('en','messages:iranian-calendar-m2','s:11:\"Ordibehesht\";'),
+('en','messages:iranian-calendar-m3','s:7:\"Khordad\";'),
+('en','messages:iranian-calendar-m4','s:3:\"Tir\";'),
+('en','messages:iranian-calendar-m5','s:6:\"Mordad\";'),
+('en','messages:iranian-calendar-m6','s:9:\"Shahrivar\";'),
+('en','messages:iranian-calendar-m7','s:4:\"Mehr\";'),
+('en','messages:iranian-calendar-m8','s:4:\"Aban\";'),
+('en','messages:iranian-calendar-m9','s:4:\"Azar\";'),
+('en','messages:isimage','s:9:\"file link\";'),
+('en','messages:isredirect','s:13:\"redirect page\";'),
+('en','messages:istemplate','s:12:\"transclusion\";'),
+('en','messages:jan','s:3:\"Jan\";'),
+('en','messages:january','s:7:\"January\";'),
+('en','messages:january-gen','s:7:\"January\";'),
+('en','messages:javascripttest','s:18:\"JavaScript testing\";'),
+('en','messages:javascripttest-qunit-intro','s:48:\"See [$1 testing documentation] on mediawiki.org.\";'),
+('en','messages:json-error-ctrl-char','s:53:\"Control character error, possibly incorrectly encoded\";'),
+('en','messages:json-error-depth','s:41:\"The maximum stack depth has been exceeded\";'),
+('en','messages:json-error-invalid-property-name','s:36:\"The decoded property name is invalid\";'),
+('en','messages:json-error-state-mismatch','s:25:\"Invalid or malformed JSON\";'),
+('en','messages:json-error-syntax','s:12:\"Syntax error\";'),
+('en','messages:json-error-unknown','s:44:\"There was a problem with the JSON. Error: $1\";'),
+('en','messages:json-error-utf16','s:57:\"Malformed UTF-16 characters, possibly incorrectly encoded\";'),
+('en','messages:json-error-utf8','s:56:\"Malformed UTF-8 characters, possibly incorrectly encoded\";'),
+('en','messages:json-warn-trailing-comma','s:65:\"$1 trailing {{PLURAL:$1|comma was|commas were}} removed from JSON\";'),
+('en','messages:jul','s:3:\"Jul\";'),
+('en','messages:july','s:4:\"July\";'),
+('en','messages:july-gen','s:4:\"July\";'),
+('en','messages:jumpto','s:8:\"Jump to:\";'),
+('en','messages:jumptonavigation','s:10:\"navigation\";'),
+('en','messages:jumptosearch','s:6:\"search\";'),
+('en','messages:jun','s:3:\"Jun\";'),
+('en','messages:june','s:4:\"June\";'),
+('en','messages:june-gen','s:4:\"June\";'),
+('en','messages:just-now','s:8:\"just now\";'),
+('en','messages:lag-warn-high','s:114:\"Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.\";'),
+('en','messages:lag-warn-normal','s:81:\"Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.\";'),
+('en','messages:laggedreplicamode','s:62:\"Warning: Page may not contain recent updates.\";'),
+('en','messages:language-converter-depth-warning','s:44:\"Language converter depth limit exceeded ($1)\";'),
+('en','messages:large-file','s:68:\"It is recommended that files are no larger than $1;\nthis file is $2.\";'),
+('en','messages:largefileserver','s:59:\"This file is bigger than the server is configured to allow.\";'),
+('en','messages:last','s:4:\"prev\";'),
+('en','messages:lastmodifiedat','s:39:\"This page was last edited on $1, at $2.\";'),
+('en','messages:lastmodifiedatby','s:39:\"This page was last edited $2, $1 by $3.\";'),
+('en','messages:license','s:10:\"Licensing:\";'),
+('en','messages:license-header','s:9:\"Licensing\";'),
+('en','messages:license-nopreview','s:23:\"(Preview not available)\";'),
+('en','messages:licenses','s:1:\"-\";'),
+('en','messages:licenses-edit','s:20:\"Edit license options\";'),
+('en','messages:limitreport-cputime','s:14:\"CPU time usage\";'),
+('en','messages:limitreport-cputime-value','s:31:\"$1 {{PLURAL:$1|second|seconds}}\";'),
+('en','messages:limitreport-expansiondepth','s:23:\"Highest expansion depth\";'),
+('en','messages:limitreport-expansiondepth-value','s:5:\"$1/$2\";'),
+('en','messages:limitreport-expensivefunctioncount','s:31:\"Expensive parser function count\";'),
+('en','messages:limitreport-expensivefunctioncount-value','s:5:\"$1/$2\";'),
+('en','messages:limitreport-postexpandincludesize','s:24:\"Post-expand include size\";'),
+('en','messages:limitreport-postexpandincludesize-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),
+('en','messages:limitreport-ppgeneratednodes','s:33:\"Preprocessor generated node count\";'),
+('en','messages:limitreport-ppgeneratednodes-value','s:5:\"$1/$2\";'),
+('en','messages:limitreport-ppvisitednodes','s:31:\"Preprocessor visited node count\";'),
+('en','messages:limitreport-ppvisitednodes-value','s:5:\"$1/$2\";'),
+('en','messages:limitreport-templateargumentsize','s:22:\"Template argument size\";'),
+('en','messages:limitreport-templateargumentsize-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),
+('en','messages:limitreport-title','s:22:\"Parser profiling data:\";'),
+('en','messages:limitreport-unstrip-depth','s:23:\"Unstrip recursion depth\";'),
+('en','messages:limitreport-unstrip-depth-value','s:5:\"$1/$2\";'),
+('en','messages:limitreport-unstrip-size','s:24:\"Unstrip post-expand size\";'),
+('en','messages:limitreport-unstrip-size-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),
+('en','messages:limitreport-walltime','s:15:\"Real time usage\";'),
+('en','messages:limitreport-walltime-value','s:31:\"$1 {{PLURAL:$1|second|seconds}}\";'),
+('en','messages:lineno','s:8:\"Line $1:\";'),
+('en','messages:linkaccounts','s:13:\"Link accounts\";'),
+('en','messages:linkaccounts-submit','s:13:\"Link accounts\";'),
+('en','messages:linkaccounts-success-text','s:23:\"The account was linked.\";'),
+('en','messages:linksearch','s:21:\"External links search\";'),
+('en','messages:linksearch-error','s:55:\"Wildcards may appear only at the start of the hostname.\";'),
+('en','messages:linksearch-line','s:20:\"$1 is linked from $2\";'),
+('en','messages:linksearch-ns','s:10:\"Namespace:\";'),
+('en','messages:linksearch-ok','s:6:\"Search\";'),
+('en','messages:linksearch-pat','s:15:\"Search pattern:\";'),
+('en','messages:linksearch-summary','s:0:\"\";'),
+('en','messages:linksearch-text','s:152:\"Wildcards such as \"*.wikipedia.org\" may be used.($2)\";'),
+('en','messages:listgrants-rights','s:6:\"Rights\";'),
+('en','messages:listgrants-summary','s:426:\"The following is a list of grants with their associated access to user rights. Users can authorize applications to use their account, but with limited permissions based on the grants the user gave to the application. An application acting on behalf of a user cannot actually use rights that the user does not have however.\nThere may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.\";'),
+('en','messages:listgrouprights','s:17:\"User group rights\";'),
+('en','messages:listgrouprights-addgroup','s:34:\"Add {{PLURAL:$2|group|groups}}: $1\";'),
+('en','messages:listgrouprights-addgroup-all','s:14:\"Add all groups\";'),
+('en','messages:listgrouprights-addgroup-self','s:49:\"Add {{PLURAL:$2|group|groups}} to own account: $1\";'),
+('en','messages:listgrouprights-addgroup-self-all','s:29:\"Add all groups to own account\";'),
+('en','messages:listgrouprights-group','s:5:\"Group\";'),
+('en','messages:listgrouprights-helppage','s:17:\"Help:Group rights\";'),
+('en','messages:listgrouprights-key','s:129:\"Legend:\n* Granted right\n* Revoked right\";'),
+('en','messages:listgrouprights-members','s:17:\"(list of members)\";'),
+('en','messages:listgrouprights-namespaceprotection-header','s:22:\"Namespace restrictions\";'),
+('en','messages:listgrouprights-namespaceprotection-namespace','s:9:\"Namespace\";'),
+('en','messages:listgrouprights-namespaceprotection-restrictedto','s:30:\"Right(s) allowing user to edit\";'),
+('en','messages:listgrouprights-removegroup','s:37:\"Remove {{PLURAL:$2|group|groups}}: $1\";'),
+('en','messages:listgrouprights-removegroup-all','s:17:\"Remove all groups\";'),
+('en','messages:listgrouprights-removegroup-self','s:54:\"Remove {{PLURAL:$2|group|groups}} from own account: $1\";'),
+('en','messages:listgrouprights-removegroup-self-all','s:34:\"Remove all groups from own account\";'),
+('en','messages:listgrouprights-right-display','s:65:\"$1 ($2)\";'),
+('en','messages:listgrouprights-right-revoked','s:65:\"$1 ($2)\";'),
+('en','messages:listgrouprights-rights','s:6:\"Rights\";'),
+('en','messages:listgrouprights-summary','s:201:\"The following is a list of user groups defined on this wiki, with their associated access rights.\nThere may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.\";'),
+('en','messages:listredirects','s:17:\"List of redirects\";'),
+('en','messages:listredirects-summary','s:0:\"\";'),
+('en','messages:listusers','s:9:\"User list\";'),
+('en','messages:listusers-blocked','s:9:\"(blocked)\";'),
+('en','messages:listusers-creationsort','s:21:\"Sort by creation date\";'),
+('en','messages:listusers-desc','s:24:\"Sort in descending order\";'),
+('en','messages:listusers-editsonly','s:26:\"Show only users with edits\";'),
+('en','messages:listusers-noresult','s:14:\"No user found.\";'),
+('en','messages:listusers-submit','s:4:\"Show\";'),
+('en','messages:listusers-summary','s:0:\"\";'),
+('en','messages:listusers-temporarygroupsonly','s:40:\"Show only users in temporary user groups\";'),
+('en','messages:listusersfrom','s:26:\"Display users starting at:\";'),
+('en','messages:localtime','s:11:\"Local time:\";'),
+('en','messages:lockbtn','s:13:\"Lock database\";'),
+('en','messages:lockconfirm','s:40:\"Yes, I really want to lock the database.\";'),
+('en','messages:lockdb','s:13:\"Lock database\";'),
+('en','messages:lockdbsuccesssub','s:23:\"Database lock succeeded\";'),
+('en','messages:lockdbsuccesstext','s:120:\"The database has been locked.image/jpeg.\";'),
+('en','messages:mimetype','s:10:\"MIME type:\";'),
+('en','messages:minerva-download','s:12:\"Download PDF\";'),
+('en','messages:minerva-last-modified-date','s:24:\"Last edited on $1, at $2\";'),
+('en','messages:minerva-meta-data-issues-section-header','s:14:\"Section issues\";'),
+('en','messages:minerva-page-actions-backlinks','s:15:\"What links here\";'),
+('en','messages:minerva-page-actions-cite','s:9:\"Cite page\";'),
+('en','messages:minerva-page-actions-delete','s:6:\"Delete\";'),
+('en','messages:minerva-page-actions-history','s:7:\"History\";'),
+('en','messages:minerva-page-actions-info','s:16:\"Page information\";'),
+('en','messages:minerva-page-actions-language-switcher','s:9:\"Languages\";'),
+('en','messages:minerva-page-actions-logs','s:4:\"Logs\";'),
+('en','messages:minerva-page-actions-move','s:4:\"Move\";'),
+('en','messages:minerva-page-actions-overflow','s:4:\"More\";'),
+('en','messages:minerva-page-actions-permalink','s:14:\"Permanent link\";'),
+('en','messages:minerva-page-actions-protect','s:7:\"Protect\";'),
+('en','messages:minerva-page-actions-unprotect','s:9:\"Unprotect\";'),
+('en','messages:minerva-page-actions-user-groups','s:11:\"User groups\";'),
+('en','messages:minerva-page-actions-wikibase','s:19:\"{{WBREPONAME}} item\";'),
+('en','messages:minerva-skin-desc','s:30:\"A responsive mobile first skin\";'),
+('en','messages:minerva-talk-add-topic','s:9:\"Add topic\";'),
+('en','messages:minerva-talk-explained','s:18:\"Active discussions\";'),
+('en','messages:minerva-talk-explained-empty','s:38:\"There are no discussions on this page.\";'),
+('en','messages:minerva-talk-full-page','s:17:\"Read as wiki page\";'),
+('en','messages:minerva-talk-reply-success','s:38:\"Your reply was saved to the talk page.\";'),
+('en','messages:minerva-talk-topic-feedback','s:29:\"New topic added to talk page!\";'),
+('en','messages:minerva-user-menu-button','s:9:\"User menu\";'),
+('en','messages:minerva-user-navigation','s:15:\"User navigation\";'),
+('en','messages:minerva-watchlist-cta','s:46:\"Keep track of this page and all changes to it.\";'),
+('en','messages:minerva.css','s:67:\"/* All CSS here will be loaded for users of the MinervaNeue skin */\";'),
+('en','messages:minerva.js','s:74:\"/* All JavaScript here will be loaded for users of the MinervaNeue skin */\";'),
+('en','messages:minimum-size','s:8:\"Min size\";'),
+('en','messages:minlength1','s:38:\"Filenames must be at least one letter.\";'),
+('en','messages:minoredit','s:20:\"This is a minor edit\";'),
+('en','messages:minoreditletter','s:1:\"m\";'),
+('en','messages:minutes','s:34:\"{{PLURAL:$1|$1 minute|$1 minutes}}\";'),
+('en','messages:minutes-abbrev','s:6:\"$1 min\";'),
+('en','messages:minutes-ago','s:35:\"$1 {{PLURAL:$1|minute|minutes}} ago\";'),
+('en','messages:missing-article','s:349:\"The database did not find the text of a page that it should have found, named \"$1\" $2.\n\nThis is usually caused by following an outdated diff or history link to a page that has been deleted.\n\nIf this is not the case, you may have found a bug in the software.\nPlease report this to an [[Special:ListUsers/sysop|administrator]], making note of the URL.\";'),
+('en','messages:missing-revision','s:267:\"The revision #$1 of the page named \"{{FULLPAGENAME}}\" does not exist.\n\nThis is usually caused by following an outdated history link to a page that has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),
+('en','messages:missing-revision-content','s:71:\"The content of revision #$1 of the page named \"$2\" could not be loaded.\";'),
+('en','messages:missing-revision-permission','s:217:\"The revision #$1 belongs to a deleted page. You can [{{fullurl:{{#Special:Undelete}}|target=$3×tamp=$2&diff=prev}} view it]; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page=$3}} deletion log].\";'),
+('en','messages:missingarticle-diff','s:14:\"(Diff: $1, $2)\";'),
+('en','messages:missingarticle-rev','s:15:\"(revision#: $1)\";'),
+('en','messages:missingcommentheader','s:142:\"Reminder: You have not provided a subject for this comment.\nIf you click \"$1\" again, your edit will be published without one.\";'),
+('en','messages:missingcommenttext','s:23:\"Please enter a comment.\";'),
+('en','messages:missingsummary','s:131:\"Reminder: You have not provided an edit summary.\nIf you click \"$1\" again, your edit will be published without one.\";'),
+('en','messages:mobile-frontend-cookies-required','s:76:\"Cookies are required to switch view modes. Please enable them and try again.\";'),
+('en','messages:mobile-frontend-editor-edit','s:4:\"Edit\";'),
+('en','messages:mobile-frontend-editor-redlink-create','s:11:\"Create page\";'),
+('en','messages:mobile-frontend-editor-redlink-explain','s:35:\"This page has not yet been created.\";'),
+('en','messages:mobile-frontend-editor-redlink-leave','s:11:\"No, thanks.\";'),
+('en','messages:mobile-frontend-history','s:31:\"View edit history of this page.\";'),
+('en','messages:mobile-frontend-home-button','s:4:\"Home\";'),
+('en','messages:mobile-frontend-language-article-heading','s:8:\"Language\";'),
+('en','messages:mobile-frontend-languages-not-available','s:46:\"This page is not available in other languages.\";'),
+('en','messages:mobile-frontend-main-menu-button-tooltip','s:14:\"Open main menu\";'),
+('en','messages:mobile-frontend-main-menu-contributions','s:13:\"Contributions\";'),
+('en','messages:mobile-frontend-main-menu-login','s:6:\"Log in\";'),
+('en','messages:mobile-frontend-main-menu-logout','s:7:\"Log out\";'),
+('en','messages:mobile-frontend-main-menu-nearby','s:6:\"Nearby\";'),
+('en','messages:mobile-frontend-main-menu-settings','s:8:\"Settings\";'),
+('en','messages:mobile-frontend-main-menu-watchlist','s:9:\"Watchlist\";'),
+('en','messages:mobile-frontend-meta-data-issues','s:11:\"Page issues\";'),
+('en','messages:mobile-frontend-meta-data-issues-categories','s:19:\"About this category\";'),
+('en','messages:mobile-frontend-meta-data-issues-header','s:11:\"Page issues\";'),
+('en','messages:mobile-frontend-meta-data-issues-header-talk','s:15:\"About this page\";'),
+('en','messages:mobile-frontend-meta-data-issues-talk','s:20:\"About this talk page\";'),
+('en','messages:mobile-frontend-notifications-filter','s:6:\"Filter\";'),
+('en','messages:mobile-frontend-pageaction-edit-tooltip','s:34:\"Edit the lead section of this page\";'),
+('en','messages:mobile-frontend-placeholder','s:19:\"Search {{SITENAME}}\";'),
+('en','messages:mobile-frontend-random-button','s:6:\"Random\";'),
+('en','messages:mobile-frontend-redirected-from','s:24:\"Redirected from \"[[$1]]\"\";'),
+('en','messages:mobile-frontend-talk-back-to-filepage','s:24:\"Return to the file \"$1\".\";'),
+('en','messages:mobile-frontend-talk-back-to-page','s:20:\"Return to \"$1\" page.\";'),
+('en','messages:mobile-frontend-talk-back-to-projectpage','s:32:\"Return to the project page \"$1\".\";'),
+('en','messages:mobile-frontend-talk-back-to-userpage','s:46:\"Return to the user page of \"{{GENDER:$1|$1}}\".\";'),
+('en','messages:mobile-frontend-user-button-tooltip','s:21:\"Show my notifications\";'),
+('en','messages:mobile-frontend-user-newmessages','s:39:\"You have new messages on your talk page\";'),
+('en','messages:mobile-frontend-user-page-contributions','s:13:\"Contributions\";'),
+('en','messages:mobile-frontend-user-page-member-since','s:23:\"{{GENDER:$2|Joined}} $1\";'),
+('en','messages:mobile-frontend-user-page-talk','s:4:\"Talk\";'),
+('en','messages:modeleditnotsupported-text','s:46:\"Editing is not supported for content model $1.\";'),
+('en','messages:modeleditnotsupported-title','s:21:\"Editing not supported\";'),
+('en','messages:modifiedarticleprotection','s:40:\"changed protection settings for \"[[$1]]\"\";'),
+('en','messages:modifiedarticleprotection-comment','s:54:\"{{GENDER:$2|Changed}} protection settings for \"[[$1]]\"\";'),
+('en','messages:mon','s:3:\"Mon\";'),
+('en','messages:monday','s:6:\"Monday\";'),
+('en','messages:monday-at','s:12:\"Monday at $1\";'),
+('en','messages:monobook-action-addsection','s:1:\"+\";'),
+('en','messages:monobook-action-undelete','s:40:\"Undelete {{PLURAL:$1|one edit|$1 edits}}\";'),
+('en','messages:monobook-cactions-label','s:12:\"Page actions\";'),
+('en','messages:monobook-desc','s:109:\"The classic MediaWiki skin since 2004, named after the black-and-white photo of a book in the page background\";'),
+('en','messages:monobook-jumptonavigation','s:18:\"Jump to navigation\";'),
+('en','messages:monobook-jumptopersonal','s:10:\"user tools\";'),
+('en','messages:monobook-jumptosearch','s:14:\"Jump to search\";'),
+('en','messages:monobook-jumptotop','s:11:\"back to top\";'),
+('en','messages:monobook-more-actions','s:4:\"More\";'),
+('en','messages:monobook-notifications-link','s:18:\"Notifications ($1)\";'),
+('en','messages:monobook-notifications-link-none','s:13:\"Notifications\";'),
+('en','messages:monobook-view-history','s:7:\"History\";'),
+('en','messages:monobook.css','s:64:\"/* All CSS here will be loaded for users of the MonoBook skin */\";'),
+('en','messages:monobook.js','s:71:\"/* All JavaScript here will be loaded for users of the MonoBook skin */\";'),
+('en','messages:month','s:25:\"From month (and earlier):\";'),
+('en','messages:months','s:32:\"{{PLURAL:$1|$1 month|$1 months}}\";'),
+('en','messages:monthsall','s:3:\"all\";'),
+('en','messages:moredotdotdot','s:7:\"More...\";'),
+('en','messages:morelinkstoimage','s:58:\"View [[Special:WhatLinksHere/$1|more links]] to this file.\";'),
+('en','messages:morenotlisted','s:28:\"This list may be incomplete.\";'),
+('en','messages:mostcategories','s:30:\"Pages with the most categories\";'),
+('en','messages:mostcategories-summary','s:0:\"\";'),
+('en','messages:mostimages','s:20:\"Most linked-to files\";'),
+('en','messages:mostimages-summary','s:0:\"\";'),
+('en','messages:mostinterwikis','s:30:\"Pages with the most interwikis\";'),
+('en','messages:mostinterwikis-summary','s:0:\"\";'),
+('en','messages:mostlinked','s:20:\"Most linked-to pages\";'),
+('en','messages:mostlinked-summary','s:0:\"\";'),
+('en','messages:mostlinkedcategories','s:25:\"Most linked-to categories\";'),
+('en','messages:mostlinkedcategories-summary','s:0:\"\";'),
+('en','messages:mostlinkedtemplates','s:22:\"Most transcluded pages\";'),
+('en','messages:mostlinkedtemplates-summary','s:0:\"\";'),
+('en','messages:mostrevisions','s:29:\"Pages with the most revisions\";'),
+('en','messages:mostrevisions-summary','s:0:\"\";'),
+('en','messages:move','s:4:\"Move\";'),
+('en','messages:move-leave-redirect','s:23:\"Leave a redirect behind\";'),
+('en','messages:move-over-sharedrepo','s:97:\"[[:$1]] exists on a shared repository. Moving a file to this title will override the shared file.\";'),
+('en','messages:move-page','s:7:\"Move $1\";'),
+('en','messages:move-page-legend','s:9:\"Move page\";'),
+('en','messages:move-redirect-suppressed','s:19:\"redirect suppressed\";'),
+('en','messages:move-redirect-text','s:0:\"\";'),
+('en','messages:move-subpages','s:24:\"Move subpages (up to $1)\";'),
+('en','messages:move-talk-subpages','s:37:\"Move subpages of talk page (up to $1)\";'),
+('en','messages:move-watch','s:33:\"Watch source page and target page\";'),
+('en','messages:movecategorypage-warning','s:196:\"Warning: You are about to move a category page. Please note that only the page will be moved and any pages in the old category will not be recategorized into the new one.\";'),
+('en','messages:movedarticleprotection','s:51:\"moved protection settings from \"[[$2]]\" to \"[[$1]]\"\";'),
+('en','messages:moveddeleted-notice','s:111:\"This page does not exist.\nThe deletion, protection, and move log for the page are provided below for reference.\";'),
+('en','messages:moveddeleted-notice-recent','s:151:\"Sorry, this page was recently deleted (within the last 24 hours).\nThe deletion, protection, and move log for the page are provided below for reference.\";'),
+('en','messages:movelogpage','s:8:\"Move log\";'),
+('en','messages:movelogpagetext','s:34:\"Below is a list of all page moves.\";'),
+('en','messages:movenologintext','s:81:\"You must be a registered user and [[Special:UserLogin|logged in]] to move a page.\";'),
+('en','messages:movenosubpage','s:26:\"This page has no subpages.\";'),
+('en','messages:movenotallowed','s:41:\"You do not have permission to move pages.\";'),
+('en','messages:movenotallowedfile','s:41:\"You do not have permission to move files.\";'),
+('en','messages:movepage-delete-first','s:127:\"The target page has too many revisions to delete as part of a page move. Please first delete the page manually, then try again.\";'),
+('en','messages:movepage-invalid-target-title','s:30:\"The requested name is invalid.\";'),
+('en','messages:movepage-max-pages','s:98:\"The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.\";'),
+('en','messages:movepage-moved','s:44:\"\"$1\" has been moved to \"$2\"\";'),
+('en','messages:movepage-moved-noredirect','s:47:\"The creation of a redirect has been suppressed.\";'),
+('en','messages:movepage-moved-redirect','s:28:\"A redirect has been created.\";'),
+('en','messages:movepage-page-exists','s:67:\"The page $1 already exists and cannot be automatically overwritten.\";'),
+('en','messages:movepage-page-moved','s:33:\"The page $1 has been moved to $2.\";'),
+('en','messages:movepage-page-unmoved','s:37:\"The page $1 could not be moved to $2.\";'),
+('en','messages:movepage-source-doesnt-exist','s:46:\"The page $1 doesn\'t exist and cannot be moved.\";'),
+('en','messages:movepage-summary','s:0:\"\";'),
+('en','messages:movepagebtn','s:9:\"Move page\";'),
+('en','messages:movepagetalktext','s:216:\"If you check this box, the associated talk page will be automatically moved to new title, unless a non-empty talk page already exists there.\n\nIn this case, you will have to move or merge the page manually if desired.\";'),
+('en','messages:movepagetext','s:901:\"Using the form below will rename a page, moving all of its history to the new name.\nThe old title will become a redirect page to the new title.\nYou can update redirects that point to the original title automatically.\nIf you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].\nYou are responsible for making sure that links continue to point where they are supposed to go.\n\nNote that the page will not be moved if there is already a page at the new title, unless the latter is a redirect and has no past edit history.\nThis means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.\n\nNote:\nThis can be a drastic and unexpected change for a popular page;\nplease be sure you understand the consequences of this before proceeding.\";'),
+('en','messages:movepagetext-noredirectfixer','s:798:\"Using the form below will rename a page, moving all of its history to the new name.\nThe old title will become a redirect page to the new title.\nBe sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].\nYou are responsible for making sure that links continue to point where they are supposed to go.\n\nNote that the page will not be moved if there is already a page at the new title, unless it is a redirect and has no past edit history.\nThis means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.\n\nNote:\nThis can be a drastic and unexpected change for a popular page;\nplease be sure you understand the consequences of this before proceeding.\";'),
+('en','messages:movepagetext-noredirectsupport','s:579:\"Using the form below will rename a page, moving all of its history to the new name.\nYou are responsible for making sure that links continue to point where they are supposed to go.\n\nNote that the page will not be moved if there is already a page at the new title.\nThis means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.\n\nNote:\nThis can be a drastic and unexpected change for a popular page;\nplease be sure you understand the consequences of this before proceeding.\";'),
+('en','messages:movereason','s:7:\"Reason:\";'),
+('en','messages:movesubpage','s:30:\"{{PLURAL:$1|Subpage|Subpages}}\";'),
+('en','messages:movesubpagetalktext','s:78:\"The corresponding talk page has $1 {{PLURAL:$1|subpage|subpages}} shown below.\";'),
+('en','messages:movesubpagetext','s:60:\"This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.\";'),
+('en','messages:movetalk','s:25:\"Move associated talk page\";'),
+('en','messages:movethispage','s:14:\"Move this page\";'),
+('en','messages:moveuserpage-warning','s:148:\"Warning: You are about to move a user page. Please note that only the page will be moved and the user will not be renamed.\";'),
+('en','messages:mute-preferences','s:16:\"Mute preferences\";'),
+('en','messages:mw-widgets-abandonedit','s:69:\"Are you sure you want to leave editing mode without publishing first?\";'),
+('en','messages:mw-widgets-abandonedit-discard','s:13:\"Discard edits\";'),
+('en','messages:mw-widgets-abandonedit-keep','s:16:\"Continue editing\";'),
+('en','messages:mw-widgets-abandonedit-title','s:13:\"Are you sure?\";'),
+('en','messages:mw-widgets-categoryselector-add-category-placeholder','s:17:\"Add a category...\";'),
+('en','messages:mw-widgets-copytextlayout-copy','s:4:\"Copy\";'),
+('en','messages:mw-widgets-copytextlayout-copy-fail','s:28:\"Failed to copy to clipboard.\";'),
+('en','messages:mw-widgets-copytextlayout-copy-success','s:20:\"Copied to clipboard.\";'),
+('en','messages:mw-widgets-dateinput-no-date','s:16:\"No date selected\";'),
+('en','messages:mw-widgets-dateinput-placeholder-day','s:10:\"YYYY-MM-DD\";'),
+('en','messages:mw-widgets-dateinput-placeholder-month','s:7:\"YYYY-MM\";'),
+('en','messages:mw-widgets-mediasearch-input-placeholder','s:16:\"Search for media\";'),
+('en','messages:mw-widgets-mediasearch-noresults','s:17:\"No results found.\";'),
+('en','messages:mw-widgets-mediasearch-recent-uploads','s:33:\"{{GENDER:$1|Your}} recent uploads\";'),
+('en','messages:mw-widgets-mediasearch-results-aria-label','s:20:\"Media search results\";'),
+('en','messages:mw-widgets-table-row-delete','s:10:\"Delete row\";'),
+('en','messages:mw-widgets-tagmultiselect-placeholder','s:11:\"Add more...\";'),
+('en','messages:mw-widgets-titleinput-description-new-page','s:23:\"page does not exist yet\";'),
+('en','messages:mw-widgets-titleinput-description-redirect','s:14:\"redirect to $1\";'),
+('en','messages:mw-widgets-titlesmultiselect-placeholder','s:11:\"Add more...\";'),
+('en','messages:mw-widgets-usersmultiselect-placeholder','s:11:\"Add more...\";'),
+('en','messages:mycontris','s:13:\"Contributions\";'),
+('en','messages:mycustomcssprotected','s:49:\"You do not have permission to edit this CSS page.\";'),
+('en','messages:mycustomjsonprotected','s:50:\"You do not have permission to edit this JSON page.\";'),
+('en','messages:mycustomjsprotected','s:56:\"You do not have permission to edit this JavaScript page.\";'),
+('en','messages:mycustomjsredirectprotected','s:125:\"You do not have permission to edit this JavaScript page because it is a redirect and it does not point inside your userspace.\";'),
+('en','messages:mypage','s:4:\"Page\";'),
+('en','messages:mypreferences','s:11:\"Preferences\";'),
+('en','messages:mypreferencesprotected','s:52:\"You do not have permission to edit your preferences.\";'),
+('en','messages:myprivateinfoprotected','s:60:\"You do not have permission to edit your private information.\";'),
+('en','messages:mytalk','s:4:\"Talk\";'),
+('en','messages:mywatchlist','s:9:\"Watchlist\";'),
+('en','messages:namespace','s:10:\"Namespace:\";'),
+('en','messages:namespace-nosubpages','s:39:\"Namespace \"$1\" does not allow subpages.\";'),
+('en','messages:namespace_association','s:20:\"Associated namespace\";'),
+('en','messages:namespaceprotected','s:78:\"You do not have permission to edit pages in the $1 namespace.\";'),
+('en','messages:namespaces','s:10:\"Namespaces\";'),
+('en','messages:namespacesall','s:3:\"all\";'),
+('en','messages:nav-login-createaccount','s:23:\"Log in / create account\";'),
+('en','messages:navigation','s:10:\"Navigation\";'),
+('en','messages:navigation-heading','s:15:\"Navigation menu\";'),
+('en','messages:nbytes','s:27:\"$1 {{PLURAL:$1|byte|bytes}}\";'),
+('en','messages:ncategories','s:36:\"$1 {{PLURAL:$1|category|categories}}\";'),
+('en','messages:nchanges','s:31:\"$1 {{PLURAL:$1|change|changes}}\";'),
+('en','messages:negative-namespace-not-supported','s:50:\"Namespaces with negative values are not supported.\";'),
+('en','messages:newarticle','s:5:\"(New)\";'),
+('en','messages:newarticletext','s:228:\"You have followed a link to a page that does not exist yet.\nTo create the page, start typing in the box below (see the [$1 help page] for more info).\nIf you are here by mistake, click your browser\'s back button.\";'),
+('en','messages:newarticletextanon','s:25:\"{{int:newarticletext|$1}}\";'),
+('en','messages:newimages','s:20:\"Gallery of new files\";'),
+('en','messages:newimages-hidepatrolled','s:22:\"Hide patrolled uploads\";'),
+('en','messages:newimages-legend','s:6:\"Filter\";'),
+('en','messages:newimages-mediatype','s:11:\"Media type:\";'),
+('en','messages:newimages-showbots','s:20:\"Show uploads by bots\";'),
+('en','messages:newimages-summary','s:48:\"This special page shows the last uploaded files.\";'),
+('en','messages:newimages-user','s:22:\"IP address or username\";'),
+('en','messages:newimagestext','s:1:\"-\";'),
+('en','messages:newmessagesdifflinkplural','s:37:\"last {{PLURAL:$1|change|999=changes}}\";'),
+('en','messages:newmessageslinkplural','s:44:\"{{PLURAL:$1|a new message|999=new messages}}\";'),
+('en','messages:newpage','s:8:\"New page\";'),
+('en','messages:newpageletter','s:1:\"N\";'),
+('en','messages:newpages','s:9:\"New pages\";'),
+('en','messages:newpages-submit','s:4:\"Show\";'),
+('en','messages:newpages-summary','s:0:\"\";'),
+('en','messages:newpages-username','s:9:\"Username:\";'),
+('en','messages:newpassword','s:13:\"New password:\";'),
+('en','messages:newsection','s:11:\"New section\";'),
+('en','messages:newsection-page','s:11:\"Target page\";'),
+('en','messages:newsection-submit','s:10:\"Go to page\";'),
+('en','messages:newsection-summary','s:0:\"\";'),
+('en','messages:newsectionheaderdefaultlevel','s:8:\"== $1 ==\";'),
+('en','messages:newsectionsummary','s:20:\"/* $1 */ new section\";'),
+('en','messages:newtalkseparator','s:6:\", \";'),
+('en','messages:newtitle','s:10:\"New title:\";'),
+('en','messages:newuserlog-autocreate-entry','s:29:\"Account created automatically\";'),
+('en','messages:newuserlog-create-entry','s:16:\"New user account\";'),
+('en','messages:newuserlog-create2-entry','s:22:\"created new account $1\";'),
+('en','messages:newuserlogpage','s:17:\"User creation log\";'),
+('en','messages:newuserlogpagetext','s:32:\"This is a log of user creations.\";'),
+('en','messages:newwindow','s:21:\"(opens in new window)\";'),
+('en','messages:next','s:4:\"next\";'),
+('en','messages:next-page','s:9:\"next page\";'),
+('en','messages:nextdiff','s:14:\"Newer edit →\";'),
+('en','messages:nextn','s:21:\"next {{PLURAL:$1|$1}}\";'),
+('en','messages:nextn-title','s:36:\"Next $1 {{PLURAL:$1|result|results}}\";'),
+('en','messages:nextpage','s:14:\"Next page ($1)\";'),
+('en','messages:nextrevision','s:18:\"Newer revision →\";'),
+('en','messages:nimagelinks','s:35:\"Used on $1 {{PLURAL:$1|page|pages}}\";'),
+('en','messages:ninterwikis','s:37:\"$1 {{PLURAL:$1|interwiki|interwikis}}\";'),
+('en','messages:nlinks','s:27:\"$1 {{PLURAL:$1|link|links}}\";'),
+('en','messages:nmembers','s:31:\"$1 {{PLURAL:$1|member|members}}\";'),
+('en','messages:nmemberschanged','s:38:\"$1 → $2 {{PLURAL:$2|member|members}}\";'),
+('en','messages:no-null-revision','s:48:\"Could not create new null revision for page \"$1\"\";'),
+('en','messages:noarticletext','s:298:\"There is currently no text in this page.\nYou can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,\n[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs],\nor [{{fullurl:{{FULLPAGENAME}}|action=edit}} create this page].\";'),
+('en','messages:noarticletext-nopermission','s:289:\"There is currently no text in this page.\nYou can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages, or [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs], but you do not have permission to create this page.\";'),
+('en','messages:noarticletextanon','s:21:\"{{int:noarticletext}}\";'),
+('en','messages:noautoblockblock','s:18:\"autoblock disabled\";'),
+('en','messages:nocontribs','s:46:\"No changes were found matching these criteria.\";'),
+('en','messages:nocookiesforlogin','s:22:\"{{int:nocookieslogin}}\";'),
+('en','messages:nocookiesfornew','s:134:\"The user account was not created, as we could not confirm its source.\nEnsure you have cookies enabled, reload this page and try again.\";'),
+('en','messages:nocookieslogin','s:103:\"{{SITENAME}} uses cookies to log in users.\nYou have cookies disabled.\nPlease enable them and try again.\";'),
+('en','messages:nocookiesnew','s:195:\"The user account was created, but you are not logged in.\n{{SITENAME}} uses cookies to log in users.\nYou have cookies disabled.\nPlease enable them, then log in with your new username and password.\";'),
+('en','messages:nocreate-loggedin','s:47:\"You do not have permission to create new pages.\";'),
+('en','messages:nocreatetext','s:157:\"{{SITENAME}} has restricted the ability to create new pages.\nYou can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].\";'),
+('en','messages:nocredits','s:49:\"There is no credits info available for this page.\";'),
+('en','messages:node-count-exceeded-category','s:34:\"Pages where node count is exceeded\";'),
+('en','messages:node-count-exceeded-category-desc','s:40:\"The page exceeds the maximum node count.\";'),
+('en','messages:node-count-exceeded-warning','s:28:\"Page exceeded the node count\";'),
+('en','messages:noemail','s:49:\"There is no email address recorded for user \"$1\".\";'),
+('en','messages:noemailcreate','s:42:\"You need to provide a valid email address.\";'),
+('en','messages:noemailprefs','s:72:\"Specify an email address in your preferences for these features to work.\";'),
+('en','messages:noemailtext','s:50:\"This user has not specified a valid email address.\";'),
+('en','messages:noemailtitle','s:16:\"No email address\";'),
+('en','messages:nohistory','s:39:\"There is no edit history for this page.\";'),
+('en','messages:noimages','s:15:\"Nothing to see.\";'),
+('en','messages:noindex-category','s:15:\"Noindexed pages\";'),
+('en','messages:noindex-category-desc','s:161:\"The page is not indexed by robots because it has the magic word __NOINDEX__ on it and is in a namespace where that flag is allowed.\";'),
+('en','messages:nolicense','s:13:\"None selected\";'),
+('en','messages:nolinkshere','s:37:\"No pages link to $2.\";'),
+('en','messages:nolinkshere-ns','s:61:\"No pages link to $2 in the chosen namespace.\";'),
+('en','messages:nolinkstoimage','s:38:\"There are no pages that use this file.\";'),
+('en','messages:noname','s:40:\"You have not specified a valid username.\";'),
+('en','messages:nonfile-cannot-move-to-file','s:39:\"Cannot move non-file to file namespace.\";'),
+('en','messages:nonmain-slot-differences-therefore-readonly','s:200:\"You cannot edit the wikitext on this revision of the page, as there have been changes to the data on the page since this revision that are not wikitext-based. [$1 To restore this revision click here.]\";'),
+('en','messages:nonnumeric-formatnum','s:42:\"Pages with non-numeric formatnum arguments\";'),
+('en','messages:nonnumeric-formatnum-desc','s:74:\"The page contains a non-numeric argument to the formatnum parser function.\";'),
+('en','messages:nonwrite-api-promise-error','s:95:\"The \'Promise-Non-Write-API-Action\' HTTP header was sent but the request was not an API request.\";'),
+('en','messages:nopagetext','s:50:\"The target page you have specified does not exist.\";'),
+('en','messages:nopagetitle','s:19:\"No such target page\";'),
+('en','messages:noscript.css','s:64:\"/* CSS placed here will affect users with JavaScript disabled */\";'),
+('en','messages:nospecialpagetext','s:154:\"You have requested an invalid special page.\n\nA list of valid special pages can be found at [[Special:SpecialPages|{{int:specialpages}}]].\";'),
+('en','messages:nosuchaction','s:14:\"No such action\";'),
+('en','messages:nosuchactiontext','s:176:\"The action specified by the URL is invalid.\nYou might have mistyped the URL, or followed an incorrect link.\nThis might also indicate a bug in the software used by {{SITENAME}}.\";'),
+('en','messages:nosuchsectiontext','s:115:\"You tried to edit a section that does not exist.\nIt may have been moved or deleted while you were viewing the page.\";'),
+('en','messages:nosuchsectiontitle','s:19:\"Cannot find section\";'),
+('en','messages:nosuchspecialpage','s:20:\"No such special page\";'),
+('en','messages:nosuchuser','s:136:\"There is no user by the name \"$1\".\nUsernames are case-sensitive.\nCheck your spelling, or [[Special:CreateAccount|create a new account]].\";'),
+('en','messages:nosuchusershort','s:55:\"There is no user by the name \"$1\".\nCheck your spelling.\";'),
+('en','messages:notanarticle','s:18:\"Not a content page\";'),
+('en','messages:notargettext','s:73:\"You have not specified a target page or user to perform this function on.\";'),
+('en','messages:notargettitle','s:9:\"No target\";'),
+('en','messages:note','s:22:\"Note:\";'),
+('en','messages:notextmatches','s:20:\"No page text matches\";'),
+('en','messages:notificationemail_body_changed','s:181:\"Someone, probably you, from IP address $1,\nhas changed the email address of the account \"$2\" to \"$3\" on {{SITENAME}}.\n\nIf this was not you, contact a site administrator immediately.\";'),
+('en','messages:notificationemail_body_removed','s:173:\"Someone, probably you, from IP address $1,\nhas removed the email address of the account \"$2\" on {{SITENAME}}.\n\nIf this was not you, contact a site administrator immediately.\";'),
+('en','messages:notificationemail_subject_changed','s:54:\"{{SITENAME}} registered email address has been changed\";'),
+('en','messages:notificationemail_subject_removed','s:54:\"{{SITENAME}} registered email address has been removed\";'),
+('en','messages:notloggedin','s:13:\"Not logged in\";'),
+('en','messages:notvisiblerev','s:54:\"The last revision by a different user has been deleted\";'),
+('en','messages:nouserspecified','s:31:\"You have to specify a username.\";'),
+('en','messages:nov','s:3:\"Nov\";'),
+('en','messages:november','s:8:\"November\";'),
+('en','messages:november-gen','s:8:\"November\";'),
+('en','messages:nowatchlist','s:36:\"You have no items on your watchlist.\";'),
+('en','messages:nowikiemailtext','s:59:\"This user has chosen not to receive email from other users.\";'),
+('en','messages:nrevisions','s:35:\"$1 {{PLURAL:$1|revision|revisions}}\";'),
+('en','messages:ns-specialprotected','s:31:\"Special pages cannot be edited.\";'),
+('en','messages:nstab-category','s:8:\"Category\";'),
+('en','messages:nstab-help','s:9:\"Help page\";'),
+('en','messages:nstab-image','s:4:\"File\";'),
+('en','messages:nstab-main','s:4:\"Page\";'),
+('en','messages:nstab-mainpage','s:9:\"Main Page\";'),
+('en','messages:nstab-media','s:10:\"Media page\";'),
+('en','messages:nstab-mediawiki','s:7:\"Message\";'),
+('en','messages:nstab-project','s:12:\"Project page\";'),
+('en','messages:nstab-special','s:12:\"Special page\";'),
+('en','messages:nstab-talk','s:0:\"\";'),
+('en','messages:nstab-template','s:8:\"Template\";'),
+('en','messages:nstab-user','s:23:\"{{GENDER:$1|User page}}\";'),
+('en','messages:ntimes','s:4:\"$1×\";'),
+('en','messages:ntransclusions','s:35:\"used on $1 {{PLURAL:$1|page|pages}}\";'),
+('en','messages:number-of-watching-users-for-recent-changes','s:4:\"[$1]\";'),
+('en','messages:oct','s:3:\"Oct\";'),
+('en','messages:october','s:7:\"October\";'),
+('en','messages:october-gen','s:7:\"October\";'),
+('en','messages:ok','s:2:\"OK\";'),
+('en','messages:oldpassword','s:13:\"Old password:\";'),
+('en','messages:ooui-combobox-button-label','s:14:\"Toggle options\";'),
+('en','messages:ooui-dialog-message-accept','s:2:\"OK\";'),
+('en','messages:ooui-dialog-message-reject','s:6:\"Cancel\";'),
+('en','messages:ooui-dialog-process-continue','s:8:\"Continue\";'),
+('en','messages:ooui-dialog-process-dismiss','s:7:\"Dismiss\";'),
+('en','messages:ooui-dialog-process-error','s:20:\"Something went wrong\";'),
+('en','messages:ooui-dialog-process-retry','s:9:\"Try again\";'),
+('en','messages:ooui-field-help','s:4:\"Help\";'),
+('en','messages:ooui-item-remove','s:6:\"Remove\";'),
+('en','messages:ooui-outline-control-move-down','s:14:\"Move item down\";'),
+('en','messages:ooui-outline-control-move-up','s:12:\"Move item up\";'),
+('en','messages:ooui-outline-control-remove','s:11:\"Remove item\";'),
+('en','messages:ooui-popup-widget-close-button-aria-label','s:5:\"Close\";'),
+('en','messages:ooui-selectfile-button-select','s:13:\"Select a file\";'),
+('en','messages:ooui-selectfile-button-select-multiple','s:12:\"Select files\";'),
+('en','messages:ooui-selectfile-dragdrop-placeholder','s:14:\"Drop file here\";'),
+('en','messages:ooui-selectfile-dragdrop-placeholder-multiple','s:15:\"Drop files here\";'),
+('en','messages:ooui-selectfile-not-supported','s:31:\"File selection is not supported\";'),
+('en','messages:ooui-selectfile-placeholder','s:19:\"No file is selected\";'),
+('en','messages:ooui-toolbar-more','s:4:\"More\";'),
+('en','messages:ooui-toolgroup-collapse','s:5:\"Fewer\";'),
+('en','messages:ooui-toolgroup-expand','s:4:\"More\";'),
+('en','messages:opensearch-desc','s:34:\"{{SITENAME}} ({{CONTENTLANGUAGE}})\";'),
+('en','messages:othercontribs','s:20:\"Based on work by $1.\";'),
+('en','messages:otherlanguages','s:18:\"In other languages\";'),
+('en','messages:others','s:6:\"others\";'),
+('en','messages:overwrite','s:44:\"Overwriting an existing file is not allowed.\";'),
+('en','messages:overwroteimage','s:34:\"uploaded a new version of \"[[$1]]\"\";'),
+('en','messages:page-atom-feed','s:14:\"\"$1\" Atom feed\";'),
+('en','messages:page-rss-feed','s:13:\"\"$1\" RSS feed\";'),
+('en','messages:page_first','s:5:\"first\";'),
+('en','messages:page_last','s:4:\"last\";'),
+('en','messages:pagecategories','s:33:\"{{PLURAL:$1|Category|Categories}}\";'),
+('en','messages:pagecategorieslink','s:18:\"Special:Categories\";'),
+('en','messages:pagedata-bad-title','s:18:\"Invalid title: $1.\";'),
+('en','messages:pagedata-not-acceptable','s:50:\"No matching format found. Supported MIME types: $1\";'),
+('en','messages:pagedata-text','s:264:\"This page provides a data interface to pages. Please provide the page title in the URL, using subpage syntax.\n* Content negotiation applies based on your client\'s Accept header. This means that the page data will be provided in the format preferred by your client.\";'),
+('en','messages:pagedata-title','s:9:\"Page data\";'),
+('en','messages:pagehist','s:12:\"Page history\";'),
+('en','messages:pagehistory','s:12:\"Page history\";'),
+('en','messages:pagehistory-summary','s:0:\"\";'),
+('en','messages:pageid','s:10:\"page ID $1\";'),
+('en','messages:pageinfo','s:9:\"Page info\";'),
+('en','messages:pageinfo-article-id','s:7:\"Page ID\";'),
+('en','messages:pageinfo-authors','s:32:\"Total number of distinct authors\";'),
+('en','messages:pageinfo-category-files','s:15:\"Number of files\";'),
+('en','messages:pageinfo-category-info','s:20:\"Category information\";'),
+('en','messages:pageinfo-category-pages','s:15:\"Number of pages\";'),
+('en','messages:pageinfo-category-subcats','s:23:\"Number of subcategories\";'),
+('en','messages:pageinfo-category-total','s:23:\"Total number of members\";'),
+('en','messages:pageinfo-content-model','s:18:\"Page content model\";'),
+('en','messages:pageinfo-content-model-change','s:6:\"change\";'),
+('en','messages:pageinfo-contentpage','s:25:\"Counted as a content page\";'),
+('en','messages:pageinfo-contentpage-yes','s:3:\"Yes\";'),
+('en','messages:pageinfo-default-sort','s:16:\"Default sort key\";'),
+('en','messages:pageinfo-display-title','s:13:\"Display title\";'),
+('en','messages:pageinfo-edits','s:21:\"Total number of edits\";'),
+('en','messages:pageinfo-few-visiting-watchers','s:61:\"There may or may not be a watching user visiting recent edits\";'),
+('en','messages:pageinfo-few-watchers','s:44:\"Fewer than $1 {{PLURAL:$1|watcher|watchers}}\";'),
+('en','messages:pageinfo-file-hash','s:10:\"Hash value\";'),
+('en','messages:pageinfo-firsttime','s:21:\"Date of page creation\";'),
+('en','messages:pageinfo-firstuser','s:12:\"Page creator\";'),
+('en','messages:pageinfo-footer','s:1:\"-\";'),
+('en','messages:pageinfo-header','s:1:\"-\";'),
+('en','messages:pageinfo-header-basic','s:17:\"Basic information\";'),
+('en','messages:pageinfo-header-edits','s:12:\"Edit history\";'),
+('en','messages:pageinfo-header-properties','s:15:\"Page properties\";'),
+('en','messages:pageinfo-header-restrictions','s:15:\"Page protection\";'),
+('en','messages:pageinfo-hidden-categories','s:45:\"Hidden {{PLURAL:$1|category|categories}} ($1)\";'),
+('en','messages:pageinfo-language','s:21:\"Page content language\";'),
+('en','messages:pageinfo-language-change','s:6:\"change\";'),
+('en','messages:pageinfo-lasttime','s:19:\"Date of latest edit\";'),
+('en','messages:pageinfo-lastuser','s:13:\"Latest editor\";'),
+('en','messages:pageinfo-length','s:22:\"Page length (in bytes)\";'),
+('en','messages:pageinfo-magic-words','s:35:\"Magic {{PLURAL:$1|word|words}} ($1)\";'),
+('en','messages:pageinfo-namespace','s:9:\"Namespace\";'),
+('en','messages:pageinfo-not-current','s:69:\"Sorry, it\'s impossible to provide this information for old revisions.\";'),
+('en','messages:pageinfo-protect-cascading','s:35:\"Protections are cascading from here\";'),
+('en','messages:pageinfo-protect-cascading-from','s:30:\"Protections are cascading from\";'),
+('en','messages:pageinfo-protect-cascading-yes','s:3:\"Yes\";'),
+('en','messages:pageinfo-recent-authors','s:33:\"Recent number of distinct authors\";'),
+('en','messages:pageinfo-recent-edits','s:39:\"Recent number of edits (within past $1)\";'),
+('en','messages:pageinfo-redirects-name','s:32:\"Number of redirects to this page\";'),
+('en','messages:pageinfo-redirects-value','s:2:\"$1\";'),
+('en','messages:pageinfo-redirectsto','s:12:\"Redirects to\";'),
+('en','messages:pageinfo-redirectsto-info','s:4:\"info\";'),
+('en','messages:pageinfo-robot-index','s:7:\"Allowed\";'),
+('en','messages:pageinfo-robot-noindex','s:10:\"Disallowed\";'),
+('en','messages:pageinfo-robot-policy','s:18:\"Indexing by robots\";'),
+('en','messages:pageinfo-subpages-name','s:31:\"Number of subpages of this page\";'),
+('en','messages:pageinfo-subpages-value','s:85:\"$1 ($2 {{PLURAL:$2|redirect|redirects}}; $3 {{PLURAL:$3|non-redirect|non-redirects}})\";'),
+('en','messages:pageinfo-summary','s:0:\"\";'),
+('en','messages:pageinfo-templates','s:49:\"Transcluded {{PLURAL:$1|template|templates}} ($1)\";'),
+('en','messages:pageinfo-title','s:20:\"Information for \"$1\"\";'),
+('en','messages:pageinfo-toolboxlink','s:16:\"Page information\";'),
+('en','messages:pageinfo-transclusions','s:44:\"{{PLURAL:$1|Page|Pages}} transcluded on ($1)\";'),
+('en','messages:pageinfo-user-id','s:7:\"User ID\";'),
+('en','messages:pageinfo-view-protect-log','s:38:\"View the protection log for this page.\";'),
+('en','messages:pageinfo-visiting-watchers','s:48:\"Number of page watchers who visited recent edits\";'),
+('en','messages:pageinfo-watchers','s:23:\"Number of page watchers\";'),
+('en','messages:pagelang-db-failed','s:48:\"The database failed to change the page language.\";'),
+('en','messages:pagelang-language','s:8:\"Language\";'),
+('en','messages:pagelang-name','s:4:\"Page\";'),
+('en','messages:pagelang-nonexistent-page','s:27:\"The page $1 does not exist.\";'),
+('en','messages:pagelang-reason','s:6:\"Reason\";'),
+('en','messages:pagelang-select-lang','s:15:\"Select language\";'),
+('en','messages:pagelang-submit','s:6:\"Submit\";'),
+('en','messages:pagelang-unchanged-language','s:42:\"The page $1 is already set to language $2.\";'),
+('en','messages:pagelang-unchanged-language-default','s:66:\"The page $1 is already set to the wiki\'s default content language.\";'),
+('en','messages:pagelang-use-default','s:20:\"Use default language\";'),
+('en','messages:pagelanguage','s:20:\"Change page language\";'),
+('en','messages:pagemerge-logentry','s:46:\"merged [[$1]] into [[$2]] (revisions up to $3)\";'),
+('en','messages:pagemovedsub','s:14:\"Move succeeded\";'),
+('en','messages:pager-newer-n','s:30:\"{{PLURAL:$1|newer 1|newer $1}}\";'),
+('en','messages:pager-older-n','s:30:\"{{PLURAL:$1|older 1|older $1}}\";'),
+('en','messages:pagesize','s:7:\"(bytes)\";'),
+('en','messages:pageswithprop','s:26:\"Pages with a page property\";'),
+('en','messages:pageswithprop-legend','s:26:\"Pages with a page property\";'),
+('en','messages:pageswithprop-prop','s:14:\"Property name:\";'),
+('en','messages:pageswithprop-prophidden-binary','s:33:\"binary property value hidden ($1)\";'),
+('en','messages:pageswithprop-prophidden-long','s:36:\"long text property value hidden ($1)\";'),
+('en','messages:pageswithprop-reverse','s:21:\"Sort in reverse order\";'),
+('en','messages:pageswithprop-sortbyvalue','s:22:\"Sort by property value\";'),
+('en','messages:pageswithprop-submit','s:2:\"Go\";'),
+('en','messages:pageswithprop-summary','s:0:\"\";'),
+('en','messages:pageswithprop-text','s:58:\"This page lists pages that use a particular page property.\";'),
+('en','messages:pagetitle','s:17:\"$1 - {{SITENAME}}\";'),
+('en','messages:pagetitle-view-mainpage','s:12:\"{{SITENAME}}\";'),
+('en','messages:paramvalidator-badbool','s:81:\"Invalid value \"$2\" for boolean parameter \"$1\". Pass $3 for true, or $5 for false.\";'),
+('en','messages:paramvalidator-badexpiry','s:45:\"Invalid value \"$2\" for expiry parameter \"$1\".\";'),
+('en','messages:paramvalidator-badexpiry-duration','s:73:\"Given value \"$2\" for parameter $1 exceeds the maximum of \"$3\".\";'),
+('en','messages:paramvalidator-badexpiry-duration-max','s:96:\"Given value \"$2\" for parameter $1 exceeds the maximum of \"$3\". Using maximum instead.\";'),
+('en','messages:paramvalidator-badexpiry-past','s:52:\"Value \"$2\" for expiry parameter \"$1\" is in the past.\";'),
+('en','messages:paramvalidator-badfloat','s:44:\"Invalid value \"$2\" for float parameter \"$1\".\";'),
+('en','messages:paramvalidator-badfloat-notfinite','s:68:\"Value \"$2\" for float parameter \"$1\" is too large or is not a number.\";'),
+('en','messages:paramvalidator-badinteger','s:46:\"Invalid value \"$2\" for integer parameter \"$1\".\";'),
+('en','messages:paramvalidator-badtimestamp','s:48:\"Invalid value \"$2\" for timestamp parameter \"$1\".\";'),
+('en','messages:paramvalidator-badtitle','s:79:\"Invalid value \"$2\" for title parameter $1: not a valid title string.\";'),
+('en','messages:paramvalidator-badupload-cantwrite','s:101:\"The file for \"$1\" could not be stored for processing due to a server misconfiguration (write failed).\";'),
+('en','messages:paramvalidator-badupload-formsize','s:64:\"The uploaded file for \"$1\" exceeds the client-specified maximum.\";'),
+('en','messages:paramvalidator-badupload-inisize','s:62:\"The uploaded file for \"$1\" exceeds the server\'s maximum of $3.\";'),
+('en','messages:paramvalidator-badupload-nofile','s:47:\"No file was provided for upload parameter \"$1\".\";'),
+('en','messages:paramvalidator-badupload-notmpdir','s:111:\"The file for \"$1\" could not be stored for processing due to a server misconfiguration (no temporary directory).\";'),
+('en','messages:paramvalidator-badupload-notupload','s:155:\"File upload parameter \"$1\" is not a file upload; be sure to use multipart/form-data for your POST and include a filename in the Content-Disposition header.\";'),
+('en','messages:paramvalidator-badupload-partial','s:46:\"The file for \"$1\" was only partially uploaded.\";'),
+('en','messages:paramvalidator-badupload-phpext','s:58:\"A PHP extension prevented the upload of the file for \"$1\".\";'),
+('en','messages:paramvalidator-baduser','s:52:\"Invalid value \"$2\" for user parameter $1.\";'),
+('en','messages:paramvalidator-badvalue-enummulti','s:97:\"Invalid value \"$2\" for parameter \"$1\". {{PLURAL:$4|Only \"$3\" is allowed.|Allowed values are $3.}}\";'),
+('en','messages:paramvalidator-badvalue-enumnotmulti','s:42:\"Unrecognized value for parameter \"$1\": $2.\";'),
+('en','messages:paramvalidator-deprecated-value','s:53:\"The value \"$2\" to parameter \"$1\" has been deprecated.\";'),
+('en','messages:paramvalidator-emptystring','s:16:\"the empty string\";'),
+('en','messages:paramvalidator-help-default','s:11:\"Default: $1\";'),
+('en','messages:paramvalidator-help-default-empty','s:16:\"Default: (empty)\";'),
+('en','messages:paramvalidator-help-deprecated','s:29:\"This parameter is deprecated.\";'),
+('en','messages:paramvalidator-help-multi-all','s:41:\"To specify all values, use $1.\";'),
+('en','messages:paramvalidator-help-multi-max','s:98:\"Maximum number of values is {{PLURAL:$1|$1}} ({{PLURAL:$2|$2}} for clients allowed higher limits).\";'),
+('en','messages:paramvalidator-help-multi-max-simple','s:45:\"Maximum number of values is {{PLURAL:$1|$1}}.\";'),
+('en','messages:paramvalidator-help-multi-separate','s:82:\"Separate values with \"|\", or prefix the list with U+001F and separate with U+001F.\";'),
+('en','messages:paramvalidator-help-required','s:27:\"This parameter is required.\";'),
+('en','messages:paramvalidator-help-type-boolean','s:48:\"Type: {{PLURAL:$1|1=boolean|2=list of booleans}}\";'),
+('en','messages:paramvalidator-help-type-enum','s:143:\"{{PLURAL:$1|1=One of the following values|2=Values (separate with U+007C (pipe), or prefix the list with U+001F and separate with U+001F)}}: $2\";'),
+('en','messages:paramvalidator-help-type-enum-can-be-empty','s:49:\"{{PLURAL:$2|0=Must be empty|Can be empty, or $1}}\";'),
+('en','messages:paramvalidator-help-type-expiry','s:189:\"Type: {{PLURAL:$1|1=expiry|2=list of expiries}}.\n\nMay be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). For no expiry, use $2.\";'),
+('en','messages:paramvalidator-help-type-float','s:44:\"Type: {{PLURAL:$1|1=float|2=list of floats}}\";'),
+('en','messages:paramvalidator-help-type-integer','s:48:\"Type: {{PLURAL:$1|1=integer|2=list of integers}}\";'),
+('en','messages:paramvalidator-help-type-limit','s:22:\"Type: integer or \"max\"\";'),
+('en','messages:paramvalidator-help-type-number-max','s:62:\"The {{PLURAL:$1|1=value|2=values}} must be no greater than $3.\";'),
+('en','messages:paramvalidator-help-type-number-min','s:59:\"The {{PLURAL:$1|1=value|2=values}} must be no less than $2.\";'),
+('en','messages:paramvalidator-help-type-number-minmax','s:61:\"The {{PLURAL:$1|1=value|2=values}} must be between $2 and $3.\";'),
+('en','messages:paramvalidator-help-type-presenceboolean','s:13:\"Type: boolean\";'),
+('en','messages:paramvalidator-help-type-string-maxbytes','s:50:\"Cannot be longer than $1 {{PLURAL:$1|byte|bytes}}.\";'),
+('en','messages:paramvalidator-help-type-string-maxchars','s:60:\"Cannot be longer than $1 {{PLURAL:$1|character|characters}}.\";'),
+('en','messages:paramvalidator-help-type-timestamp','s:52:\"Type: {{PLURAL:$1|1=timestamp|2=list of timestamps}}\";'),
+('en','messages:paramvalidator-help-type-title','s:16:\"Type: page title\";'),
+('en','messages:paramvalidator-help-type-title-must-exist','s:30:\"Only accepts pages that exist.\";'),
+('en','messages:paramvalidator-help-type-title-no-must-exist','s:27:\"Accepts non-existent pages.\";'),
+('en','messages:paramvalidator-help-type-upload','s:58:\"Must be posted as a file upload using multipart/form-data.\";'),
+('en','messages:paramvalidator-help-type-user','s:73:\"Type: {{PLURAL:$1|1=user|2=list of users}}, {{PLURAL:$3|by|by any of}} $2\";'),
+('en','messages:paramvalidator-help-type-user-subtype-cidr','s:8:\"IP range\";'),
+('en','messages:paramvalidator-help-type-user-subtype-id','s:23:\"user ID (e.g. \"#12345\")\";'),
+('en','messages:paramvalidator-help-type-user-subtype-interwiki','s:42:\"interwiki name (e.g. \"prefix>ExampleName\")\";'),
+('en','messages:paramvalidator-help-type-user-subtype-ip','s:2:\"IP\";'),
+('en','messages:paramvalidator-help-type-user-subtype-name','s:9:\"user name\";'),
+('en','messages:paramvalidator-maxbytes','s:88:\"The value for parameter \"$1\" cannot be longer than $3 {{PLURAL:$3|byte|bytes}} (was $4).\";'),
+('en','messages:paramvalidator-maxchars','s:98:\"The value for parameter \"$1\" cannot be longer than $3 {{PLURAL:$3|character|characters}} (was $4).\";'),
+('en','messages:paramvalidator-missingparam','s:31:\"The \"$1\" parameter must be set.\";'),
+('en','messages:paramvalidator-missingtitle','s:78:\"Invalid value \"$2\" for title parameter $1: the page does not exist.\";'),
+('en','messages:paramvalidator-notmulti','s:119:\"Parameter \"$1\" accepts only a single value. U+001F multi-value separation may only be used for multi-valued parameters.\";'),
+('en','messages:paramvalidator-outofrange-max','s:61:\"The value \"$2\" for parameter \"$1\" must be no greater than $4.\";'),
+('en','messages:paramvalidator-outofrange-min','s:58:\"The value \"$2\" for parameter \"$1\" must be no less than $3.\";'),
+('en','messages:paramvalidator-outofrange-minmax','s:60:\"The value \"$2\" for parameter \"$1\" must be between $3 and $4.\";'),
+('en','messages:paramvalidator-param-deprecated','s:39:\"The parameter \"$1\" has been deprecated.\";'),
+('en','messages:paramvalidator-param-sensitive','s:0:\"\";'),
+('en','messages:paramvalidator-toomanyvalues','s:61:\"Too many values supplied for parameter \"$1\". The limit is $2.\";'),
+('en','messages:paramvalidator-unclearnowtimestamp','s:176:\"Passing \"$2\" for timestamp parameter \"$1\" has been deprecated. If for some reason you need to explicitly specify the current time without calculating it client-side, use \"now\".\";'),
+('en','messages:paramvalidator-unrecognizedvalues','s:62:\"Unrecognized {{PLURAL:$4|value|values}} for parameter \"$1\": $3\";'),
+('en','messages:parentheses','s:4:\"($1)\";'),
+('en','messages:parentheses-end','s:1:\")\";'),
+('en','messages:parentheses-start','s:1:\"(\";'),
+('en','messages:parser-template-loop-warning','s:30:\"Template loop detected: [[$1]]\";'),
+('en','messages:parser-template-recursion-depth-warning','s:44:\"Template recursion depth limit exceeded ($1)\";'),
+('en','messages:parser-unstrip-loop-warning','s:21:\"Unstrip loop detected\";'),
+('en','messages:password-change-forbidden','s:41:\"You cannot change passwords on this wiki.\";'),
+('en','messages:password-login-forbidden','s:57:\"The use of this username and password has been forbidden.\";'),
+('en','messages:password-name-match','s:51:\"Your password must be different from your username.\";'),
+('en','messages:password-substring-username-match','s:51:\"Your password must not appear within your username.\";'),
+('en','messages:passwordincommonlist','s:104:\"The password entered is in a list of very commonly used passwords. Please choose a more unique password.\";'),
+('en','messages:passwordpolicies','s:17:\"Password policies\";'),
+('en','messages:passwordpolicies-group','s:5:\"Group\";'),
+('en','messages:passwordpolicies-policies','s:8:\"Policies\";'),
+('en','messages:passwordpolicies-policy-display','s:65:\"$1 ($2)\";'),
+('en','messages:passwordpolicies-policy-displaywithflags','s:121:\"$1 ($2) ($3)\";'),
+('en','messages:passwordpolicies-policy-maximalpasswordlength','s:69:\"Password must be less than $1 {{PLURAL:$1|character|characters}} long\";'),
+('en','messages:passwordpolicies-policy-minimalpasswordlength','s:68:\"Password must be at least $1 {{PLURAL:$1|character|characters}} long\";'),
+('en','messages:passwordpolicies-policy-minimumpasswordlengthtologin','s:88:\"Password must be at least $1 {{PLURAL:$1|character|characters}} long to be able to login\";'),
+('en','messages:passwordpolicies-policy-passwordcannotbesubstringinusername','s:50:\"Password cannot be a substring within the username\";'),
+('en','messages:passwordpolicies-policy-passwordcannotmatchdefaults','s:58:\"Password cannot match a specific list of default passwords\";'),
+('en','messages:passwordpolicies-policy-passwordnotincommonlist','s:71:\"Password cannot be in the list of 100,000 most commonly used passwords.\";'),
+('en','messages:passwordpolicies-policyflag-forcechange','s:20:\"must change on login\";'),
+('en','messages:passwordpolicies-policyflag-suggestchangeonlogin','s:23:\"suggest change on login\";'),
+('en','messages:passwordpolicies-summary','s:91:\"This is a list of the effective password policies for the user groups defined in this wiki.\";'),
+('en','messages:passwordremindertext','s:479:\"Someone (from IP address $1) requested a new\npassword for {{SITENAME}} ($4). A temporary password for user\n\"$2\" has been created and was set to \"$3\". If this was your\nintent, you will need to log in and choose a new password now.\nYour temporary password will expire in {{PLURAL:$5|one day|$5 days}}.\n\nIf someone else made this request, or if you have remembered your password,\nand you no longer wish to change it, you may ignore this message and\ncontinue using your old password.\";'),
+('en','messages:passwordremindertitle','s:39:\"New temporary password for {{SITENAME}}\";'),
+('en','messages:passwordreset','s:14:\"Reset password\";'),
+('en','messages:passwordreset-disabled','s:48:\"Password resets have been disabled on this wiki.\";'),
+('en','messages:passwordreset-domain','s:7:\"Domain:\";'),
+('en','messages:passwordreset-email','s:14:\"Email address:\";'),
+('en','messages:passwordreset-emaildisabled','s:47:\"Email features have been disabled on this wiki.\";'),
+('en','messages:passwordreset-emailelement','s:36:\"Username:\n$1\n\nTemporary password:\n$2\";'),
+('en','messages:passwordreset-emailtext-ip','s:545:\"Someone (probably you, from IP address $1) requested a reset of your\npassword for {{SITENAME}} ($4). The following user {{PLURAL:$3|account is|accounts are}}\nassociated with this email address:\n\n$2\n\n{{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.\nYou should log in and choose a new password now. If someone else made this\nrequest, or if you have remembered your original password, and you no longer\nwish to change it, you may ignore this message and continue using your old\npassword.\";'),
+('en','messages:passwordreset-emailtext-require-email','s:263:\"However, if you did not generate this request and want to prevent unsolicited\nemails, you may want to update your email options at\n$1.\nYou can require both username and email address to generate password reset\nemails. This may reduce the number of such incidents.\";'),
+('en','messages:passwordreset-emailtext-user','s:526:\"User $1 on {{SITENAME}} requested a reset of your password for {{SITENAME}}\n($4). The following user {{PLURAL:$3|account is|accounts are}} associated with this email address:\n\n$2\n\n{{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.\nYou should log in and choose a new password now. If someone else made this\nrequest, or if you have remembered your original password, and you no longer\nwish to change it, you may ignore this message and continue using your old\npassword.\";'),
+('en','messages:passwordreset-emailtitle','s:31:\"Account details on {{SITENAME}}\";'),
+('en','messages:passwordreset-ignored','s:69:\"The password reset was not handled. Maybe no provider was configured?\";'),
+('en','messages:passwordreset-nocaller','s:25:\"A caller must be provided\";'),
+('en','messages:passwordreset-nodata','s:52:\"Neither a username nor an email address was supplied\";'),
+('en','messages:passwordreset-nosuchcaller','s:25:\"Caller does not exist: $1\";'),
+('en','messages:passwordreset-success','s:36:\"You have requested a password reset.\";'),
+('en','messages:passwordreset-success-details-generic','s:459:\"If the information submitted is valid, a password reset email will be sent. If you haven\'t received an email, we recommend that you visit the [[mw:Special:MyLanguage/Help:Reset_password|reset password help page]] or try again later. You can only request a limited number of password resets within a short period of time. Only one password reset email will be sent per valid account every {{PLURAL:$1|hour|$1 hours}} in order to prevent abuse.\";'),
+('en','messages:passwordreset-success-info','s:33:\"The details you submitted are: $1\";'),
+('en','messages:passwordreset-text-many','s:82:\"{{PLURAL:$1|Fill in one of the fields to receive a temporary password via email.}}\";'),
+('en','messages:passwordreset-text-one','s:61:\"Complete this form to receive a temporary password via email.\";'),
+('en','messages:passwordreset-username','s:9:\"Username:\";'),
+('en','messages:passwordsent','s:112:\"A new password has been sent to the email address registered for \"$1\".\nPlease log in again after you receive it.\";'),
+('en','messages:passwordtoolong','s:72:\"Passwords cannot be longer than {{PLURAL:$1|1 character|$1 characters}}.\";'),
+('en','messages:passwordtooshort','s:67:\"Passwords must be at least {{PLURAL:$1|1 character|$1 characters}}.\";'),
+('en','messages:patrol-log-auto','s:11:\"(automatic)\";'),
+('en','messages:patrol-log-diff','s:11:\"revision $1\";'),
+('en','messages:patrol-log-header','s:37:\"This is a log of patrolled revisions.\";'),
+('en','messages:patrol-log-line','s:28:\"marked $1 of $2 patrolled $3\";'),
+('en','messages:patrol-log-page','s:10:\"Patrol log\";'),
+('en','messages:pear-mail-error','s:2:\"$1\";'),
+('en','messages:percent','s:3:\"$1%\";'),
+('en','messages:perfcached','s:135:\"The following data is cached and may not be up to date. A maximum of {{PLURAL:$1|one result is|$1 results are}} available in the cache.\";'),
+('en','messages:perfcachedts','s:134:\"The following data is cached, and was last updated $1. A maximum of {{PLURAL:$4|one result is|$4 results are}} available in the cache.\";'),
+('en','messages:period-am','s:2:\"AM\";'),
+('en','messages:period-pm','s:2:\"PM\";'),
+('en','messages:permalink','s:14:\"Permanent link\";'),
+('en','messages:permanentlink','s:14:\"Permanent link\";'),
+('en','messages:permanentlink-revid','s:11:\"Revision ID\";'),
+('en','messages:permanentlink-submit','s:14:\"Go to revision\";'),
+('en','messages:permanentlink-summary','s:0:\"\";'),
+('en','messages:permissionserrors','s:16:\"Permission error\";'),
+('en','messages:permissionserrorstext','s:86:\"You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:\";'),
+('en','messages:permissionserrorstext-withaction','s:81:\"You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:\";'),
+('en','messages:personaltools','s:14:\"Personal tools\";'),
+('en','messages:php-mail-error','s:2:\"$1\";'),
+('en','messages:php-mail-error-unknown','s:39:\"Unknown error in PHP\'s mail() function.\";'),
+('en','messages:php-uploaddisabledtext','s:72:\"File uploads are disabled in PHP.\nPlease check the file_uploads setting.\";'),
+('en','messages:pipe-separator','s:11:\" | \";'),
+('en','messages:policy-url','s:14:\"Project:Policy\";'),
+('en','messages:pool-errorunknown','s:13:\"Unknown error\";'),
+('en','messages:pool-queuefull','s:18:\"Pool queue is full\";'),
+('en','messages:pool-servererror','s:47:\"The pool counter service is not available ($1).\";'),
+('en','messages:pool-timeout','s:28:\"Timeout waiting for the lock\";'),
+('en','messages:poolcounter-usage-error','s:15:\"Usage error: $1\";'),
+('en','messages:portal','s:16:\"Community portal\";'),
+('en','messages:portal-url','s:24:\"Project:Community portal\";'),
+('en','messages:post-expand-template-argument-category','s:43:\"Pages containing omitted template arguments\";'),
+('en','messages:post-expand-template-argument-category-desc','s:149:\"The page is bigger than $wgMaxArticleSize after expanding a template argument (something in triple braces, like {{{Foo}}}).\";'),
+('en','messages:post-expand-template-argument-warning','s:147:\"Warning: This page contains at least one template argument that has a too large expansion size.\nThese arguments have been omitted.\";'),
+('en','messages:post-expand-template-inclusion-category','s:45:\"Pages where template include size is exceeded\";'),
+('en','messages:post-expand-template-inclusion-category-desc','s:131:\"The page size is bigger than $wgMaxArticleSize after expanding all the templates, so some templates were not expanded.\";'),
+('en','messages:post-expand-template-inclusion-warning','s:98:\"Warning: Template include size is too large.\nSome templates will not be included.\";'),
+('en','messages:postedit-confirmation-created','s:26:\"The page has been created.\";'),
+('en','messages:postedit-confirmation-published','s:24:\"Your edit was published.\";'),
+('en','messages:postedit-confirmation-restored','s:27:\"The page has been restored.\";'),
+('en','messages:postedit-confirmation-saved','s:20:\"Your edit was saved.\";'),
+('en','messages:powersearch-legend','s:15:\"Advanced search\";'),
+('en','messages:powersearch-ns','s:21:\"Search in namespaces:\";'),
+('en','messages:powersearch-remember','s:38:\"Remember selection for future searches\";'),
+('en','messages:powersearch-toggleall','s:3:\"All\";'),
+('en','messages:powersearch-togglelabel','s:6:\"Check:\";'),
+('en','messages:powersearch-togglenone','s:4:\"None\";'),
+('en','messages:preferences','s:11:\"Preferences\";'),
+('en','messages:preferences-summary','s:0:\"\";'),
+('en','messages:prefixindex','s:21:\"All pages with prefix\";'),
+('en','messages:prefixindex-namespace','s:36:\"All pages with prefix ($1 namespace)\";'),
+('en','messages:prefixindex-strip','s:26:\"Hide the prefix in results\";'),
+('en','messages:prefixindex-submit','s:4:\"Show\";'),
+('en','messages:prefixindex-summary','s:0:\"\";'),
+('en','messages:prefs-advancedediting','s:15:\"General options\";'),
+('en','messages:prefs-advancedrc','s:16:\"Advanced options\";'),
+('en','messages:prefs-advancedrendering','s:16:\"Advanced options\";'),
+('en','messages:prefs-advancedsearchoptions','s:16:\"Advanced options\";'),
+('en','messages:prefs-advancedwatchlist','s:16:\"Advanced options\";'),
+('en','messages:prefs-changeemail','s:30:\"Change or remove email address\";'),
+('en','messages:prefs-changesrc','s:13:\"Changes shown\";'),
+('en','messages:prefs-changeswatchlist','s:13:\"Changes shown\";'),
+('en','messages:prefs-common-config','s:41:\"Shared CSS/JSON/JavaScript for all skins:\";'),
+('en','messages:prefs-custom-css','s:10:\"Custom CSS\";'),
+('en','messages:prefs-custom-js','s:17:\"Custom JavaScript\";'),
+('en','messages:prefs-custom-json','s:11:\"Custom JSON\";'),
+('en','messages:prefs-dateformat','s:11:\"Date format\";'),
+('en','messages:prefs-developertools','s:15:\"Developer tools\";'),
+('en','messages:prefs-diffs','s:5:\"Diffs\";'),
+('en','messages:prefs-discussion','s:16:\"Discussion pages\";'),
+('en','messages:prefs-displayrc','s:15:\"Display options\";'),
+('en','messages:prefs-displaywatchlist','s:15:\"Display options\";'),
+('en','messages:prefs-editing','s:7:\"Editing\";'),
+('en','messages:prefs-editor','s:6:\"Editor\";'),
+('en','messages:prefs-edits','s:16:\"Number of edits:\";'),
+('en','messages:prefs-editwatchlist','s:14:\"Edit watchlist\";'),
+('en','messages:prefs-editwatchlist-clear','s:20:\"Clear your watchlist\";'),
+('en','messages:prefs-editwatchlist-edit','s:40:\"View and remove titles on your watchlist\";'),
+('en','messages:prefs-editwatchlist-label','s:31:\"Edit entries on your watchlist:\";'),
+('en','messages:prefs-editwatchlist-raw','s:18:\"Edit raw watchlist\";'),
+('en','messages:prefs-email','s:13:\"Email options\";'),
+('en','messages:prefs-emailconfirm-label','s:19:\"Email confirmation:\";'),
+('en','messages:prefs-files','s:5:\"Files\";'),
+('en','messages:prefs-help-email','s:94:\"Email address is optional, but is needed for password resets, should you forget your password.\";'),
+('en','messages:prefs-help-email-others','s:161:\"You can also choose to let others contact you by email through a link on your user or talk page.\nYour email address is not revealed when other users contact you.\";'),
+('en','messages:prefs-help-email-required','s:26:\"Email address is required.\";'),
+('en','messages:prefs-help-gender','s:183:\"Setting this preference is optional.\nThe software uses its value to address you and to mention you to others using the appropriate grammatical gender.\nThis information will be public.\";'),
+('en','messages:prefs-help-prefershttps','s:52:\"This preference will take effect on your next login.\";'),
+('en','messages:prefs-help-realname','s:89:\"Real name is optional.\nIf provided, it may be used to give you attribution for your work.\";'),
+('en','messages:prefs-help-recentchangescount','s:20:\"Maximum number: 1000\";'),
+('en','messages:prefs-help-requireemail','s:59:\"This improves privacy and helps prevent unsolicited emails.\";'),
+('en','messages:prefs-help-signature','s:130:\"Comments on talk pages should be signed with \"{{DISPLAYTITLE}} because it is not equivalent to the page\'s actual title.\";'),
+('en','messages:restriction-blank','s:0:\"\";'),
+('en','messages:restriction-create','s:6:\"Create\";'),
+('en','messages:restriction-edit','s:4:\"Edit\";'),
+('en','messages:restriction-level','s:18:\"Restriction level:\";'),
+('en','messages:restriction-level-all','s:9:\"any level\";'),
+('en','messages:restriction-level-autoconfirmed','s:14:\"semi protected\";'),
+('en','messages:restriction-level-sysop','s:15:\"fully protected\";'),
+('en','messages:restriction-move','s:4:\"Move\";'),
+('en','messages:restriction-type','s:11:\"Permission:\";'),
+('en','messages:restriction-upload','s:6:\"Upload\";'),
+('en','messages:restrictionsfield-badip','s:31:\"Invalid IP address or range: $1\";'),
+('en','messages:restrictionsfield-help','s:90:\"One IP address or CIDR range per line. To enable everything, use:0.0.0.0/0\n::/0\";'), +('en','messages:restrictionsfield-label','s:18:\"Allowed IP ranges:\";'), +('en','messages:retrievedfrom','s:19:\"Retrieved from \"$1\"\";'), +('en','messages:returnto','s:13:\"Return to $1.\";'), +('en','messages:retypenew','s:20:\"Retype new password:\";'), +('en','messages:reuploaddesc','s:43:\"Cancel upload and return to the upload form\";'), +('en','messages:rev-deleted-comment','s:22:\"(edit summary removed)\";'), +('en','messages:rev-deleted-diff-view','s:195:\"One of the revisions of this diff has been deleted.\nYou can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'), +('en','messages:rev-deleted-event','s:21:\"(log details removed)\";'), +('en','messages:rev-deleted-no-diff','s:192:\"You cannot view this diff because one of the revisions has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'), +('en','messages:rev-deleted-text-permission','s:141:\"This page revision has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page=$1}} deletion log].\";'), +('en','messages:rev-deleted-text-unhide','s:218:\"This page revision has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\nYou can still [$1 view this revision] if you wish to proceed.\";'), +('en','messages:rev-deleted-text-view','s:158:\"This page revision has been deleted.\nYou can view it; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page=$1}} deletion log].\";'), +('en','messages:rev-deleted-unhide-diff','s:229:\"One of the revisions of this diff has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\nYou can still [$1 view this diff] if you wish to proceed.\";'), +('en','messages:rev-deleted-user','s:18:\"(username removed)\";'), +('en','messages:rev-deleted-user-contribs','s:65:\"[username or IP address removed - edit hidden from contributions]\";'), +('en','messages:rev-delundel','s:17:\"change visibility\";'), +('en','messages:rev-showdeleted','s:4:\"show\";'), +('en','messages:rev-suppressed-diff-view','s:203:\"One of the revisions of this diff has been suppressed.\nYou can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\";'), +('en','messages:rev-suppressed-no-diff','s:92:\"You cannot view this diff because one of the revisions has been suppressed.\";'), +('en','messages:rev-suppressed-text','s:56:\"This page revision has been suppressed.\";'), +('en','messages:rev-suppressed-text-permission','s:149:\"This page revision has been suppressed.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/suppress|page=$1}} suppression log].\";'), +('en','messages:rev-suppressed-text-unhide','s:226:\"This page revision has been suppressed.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\nYou can still [$1 view this revision] if you wish to proceed.\";'), +('en','messages:rev-suppressed-text-view','s:166:\"This page revision has been suppressed.\nYou can view it; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page=$1}} suppression log].\";'), +('en','messages:rev-suppressed-unhide-diff','s:237:\"One of the revisions of this diff has been suppressed.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\nYou can still [$1 view this diff] if you wish to proceed.\";'), +('en','messages:revdel-restore','s:17:\"change visibility\";'), +('en','messages:revdelete-concurrent-change','s:151:\"Error modifying the item dated $2, $1: Its status appears to have been changed by someone else while you attempted to modify it.\nPlease check the logs.\";'), +('en','messages:revdelete-confirm','s:168:\"Please confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[{{MediaWiki:Policy-url}}|the policy]].\";'), +('en','messages:revdelete-content-hid','s:14:\"content hidden\";'), +('en','messages:revdelete-content-unhid','s:16:\"content unhidden\";'), +('en','messages:revdelete-edit-reasonlist','s:19:\"Edit delete reasons\";'), +('en','messages:revdelete-edit-reasonlist-suppress','s:21:\"Edit suppress reasons\";'), +('en','messages:revdelete-failure','s:44:\"Revision visibility could not be updated:\n$1\";'), +('en','messages:revdelete-hide-comment','s:12:\"Edit summary\";'), +('en','messages:revdelete-hide-current','s:86:\"Error hiding the item dated $2, $1: This is the current revision.\nIt cannot be hidden.\";'), +('en','messages:revdelete-hide-image','s:17:\"Hide file content\";'), +('en','messages:revdelete-hide-name','s:26:\"Hide target and parameters\";'), +('en','messages:revdelete-hide-restricted','s:51:\"Suppress data from administrators as well as others\";'), +('en','messages:revdelete-hide-text','s:13:\"Revision text\";'), +('en','messages:revdelete-hide-user','s:28:\"Editor\'s username/IP address\";'), +('en','messages:revdelete-legend','s:27:\"Set visibility restrictions\";'), +('en','messages:revdelete-log','s:7:\"Reason:\";'), +('en','messages:revdelete-modify-missing','s:60:\"Error modifying item ID $1: It is missing from the database!\";'), +('en','messages:revdelete-modify-no-access','s:108:\"Error modifying the item dated $2, $1: This item has been marked \"restricted\".\nYou do not have access to it.\";'), +('en','messages:revdelete-no-change','s:94:\"Warning: The item dated $2, $1 already had the requested visibility settings.\";'), +('en','messages:revdelete-no-file','s:34:\"The file specified does not exist.\";'), +('en','messages:revdelete-nooldid-text','s:178:\"You have either not specified any target revision on which to perform this function, or the specified revision does not exist, or you are attempting to hide the current revision.\";'), +('en','messages:revdelete-nooldid-title','s:23:\"Invalid target revision\";'), +('en','messages:revdelete-offender','s:16:\"Revision author:\";'), +('en','messages:revdelete-only-restricted','s:149:\"Error hiding the item dated $2, $1: You cannot suppress items from view by administrators without also selecting one of the other visibility options.\";'), +('en','messages:revdelete-otherreason','s:24:\"Other/additional reason:\";'), +('en','messages:revdelete-radio-same','s:15:\"(do not change)\";'), +('en','messages:revdelete-radio-set','s:6:\"Hidden\";'), +('en','messages:revdelete-radio-unset','s:7:\"Visible\";'), +('en','messages:revdelete-reason-dropdown','s:132:\"*Common delete reasons\n** Copyright violation\n** Inappropriate comment\n** Inappropriate username\n** Potentially libelous information\";'), +('en','messages:revdelete-reason-dropdown-suppress','s:62:\"*Common suppress reasons\n** Inappropriate personal information\";'), +('en','messages:revdelete-reasonotherlist','s:12:\"Other reason\";'), +('en','messages:revdelete-restricted','s:38:\"applied restrictions to administrators\";'), +('en','messages:revdelete-selected-file','s:70:\"{{PLURAL:$1|Selected file version|Selected file versions}} of [[:$2]]:\";'), +('en','messages:revdelete-selected-text','s:62:\"{{PLURAL:$1|Selected revision|Selected revisions}} of [[:$2]]:\";'), +('en','messages:revdelete-show-file-confirm','s:97:\"Are you sure you want to view a deleted revision of the file \"
\n# Headings that will be ignored by search.\n# Changes to this take effect as soon as the page with the heading is indexed.\n# You can force page reindexing by doing a null edit.\n# The syntax is as follows:\n# * Everything from a \"#\" character to the end of the line is a comment.\n# * Every non-blank line is the exact title to ignore, case and everything.\nReferences\nExternal links\nSee also\n #\";'), +('en','messages:search-interwiki-caption','s:28:\"Results from sister projects\";'), +('en','messages:search-interwiki-custom','s:0:\"\";'), +('en','messages:search-interwiki-default','s:16:\"Results from $1:\";'), +('en','messages:search-interwiki-more','s:6:\"(more)\";'), +('en','messages:search-interwiki-more-results','s:12:\"more results\";'), +('en','messages:search-invalid-sort-order','s:92:\"Sort order of $1 is unrecognized, default sorting will be applied. Valid sort orders are: $2\";'), +('en','messages:search-match-redirect-help','s:90:\"Select to get redirected to a page when that page title matches what you have searched for\";'), +('en','messages:search-match-redirect-label','s:40:\"Redirect to exact matches when searching\";'), +('en','messages:search-nonefound','s:41:\"There were no results matching the query.\";'), +('en','messages:search-nonefound-thiswiki','s:54:\"There were no results matching the query in this site.\";'), +('en','messages:search-redirect','s:18:\"(redirect from $1)\";'), +('en','messages:search-relatedarticle','s:7:\"Related\";'), +('en','messages:search-result-category-size','s:111:\"{{PLURAL:$1|1 member|$1 members}} ({{PLURAL:$2|1 subcategory|$2 subcategories}}, {{PLURAL:$3|1 file|$3 files}})\";'), +('en','messages:search-result-size','s:34:\"$1 ({{PLURAL:$2|1 word|$2 words}})\";'), +('en','messages:search-rewritten','s:48:\"Showing results for $1. No results found for $2.\";'), +('en','messages:search-section','s:12:\"(section $1)\";'), +('en','messages:search-showingresults','s:121:\"{{PLURAL:$4|Result $1 of $3|Results $1 – $2 of $3}}\";'), +('en','messages:search-suggest','s:16:\"Did you mean: $1\";'), +('en','messages:search-summary','s:0:\"\";'), +('en','messages:search-unknown-profile','s:77:\"Search profile of $1 is unrecognized, default search profile will be applied.\";'), +('en','messages:search-warning','s:42:\"A warning has occurred while searching: $1\";'), +('en','messages:searchall','s:3:\"all\";'), +('en','messages:searcharticle','s:2:\"Go\";'), +('en','messages:searchbutton','s:6:\"Search\";'), +('en','messages:searchdisabled','s:143:\"{{SITENAME}} search is disabled.\nYou can search via Google in the meantime.\nNote that their indexes of {{SITENAME}} content may be out of date.\";'), +('en','messages:searchlimit-help','s:19:\"Maximum number: 500\";'), +('en','messages:searchlimit-label','s:46:\"Number of search results to show on each page:\";'), +('en','messages:searchmenu-exists','s:120:\"There is a page named \"[[:$1]]\" on this wiki. {{PLURAL:$2|0=|See also the other search results found.}}\";'), +('en','messages:searchmenu-new','s:150:\"Create the page \"[[:$1]]\" on this wiki! {{PLURAL:$2|0=|See also the page found with your search.|See also the search results found.}}\";'), +('en','messages:searchmenu-new-nocreate','s:0:\"\";'), +('en','messages:searchprofile-advanced','s:8:\"Advanced\";'), +('en','messages:searchprofile-advanced-tooltip','s:27:\"Search in custom namespaces\";'), +('en','messages:searchprofile-articles','s:13:\"Content pages\";'), +('en','messages:searchprofile-articles-tooltip','s:12:\"Search in $1\";'), +('en','messages:searchprofile-everything','s:10:\"Everything\";'), +('en','messages:searchprofile-everything-tooltip','s:44:\"Search all of content (including talk pages)\";'), +('en','messages:searchprofile-images','s:10:\"Multimedia\";'), +('en','messages:searchprofile-images-tooltip','s:16:\"Search for files\";'), +('en','messages:searchrelated','s:7:\"related\";'), +('en','messages:searchresults','s:14:\"Search results\";'), +('en','messages:searchresults-title','s:23:\"Search results for \"$1\"\";'), +('en','messages:searchresultshead','s:6:\"Search\";'), +('en','messages:searchsuggest-containing','s:27:\"Search for pages containing\";'), +('en','messages:searchsuggest-search','s:19:\"Search {{SITENAME}}\";'), +('en','messages:seconds','s:34:\"{{PLURAL:$1|$1 second|$1 seconds}}\";'), +('en','messages:seconds-abbrev','s:4:\"$1 s\";'), +('en','messages:seconds-ago','s:35:\"$1 {{PLURAL:$1|second|seconds}} ago\";'), +('en','messages:sectioneditnotsupported-text','s:75:\"Section editing is not supported in this page or is disabled for this view.\";'), +('en','messages:sectioneditnotsupported-title','s:29:\"Section editing not supported\";'), +('en','messages:selfmove','s:54:\"The title is the same;\ncannot move a page over itself.\";'), +('en','messages:selfredirect','s:224:\"Warning: You are redirecting this page to itself.\nYou may have specified the wrong target for the redirect, or you may be editing the wrong page.\nIf you click \"$1\" again, the redirect will be created anyway.\";'), +('en','messages:semicolon-separator','s:6:\"; \";'), +('en','messages:semiprotectedpagemovewarning','s:151:\"Note: This page has been protected so that only autoconfirmed users can move it.\nThe latest log entry is provided below for reference:\";'), +('en','messages:semiprotectedpagewarning','s:151:\"Note: This page has been protected so that only autoconfirmed users can edit it.\nThe latest log entry is provided below for reference:\";'), +('en','messages:sep','s:3:\"Sep\";'), +('en','messages:september','s:9:\"September\";'), +('en','messages:september-gen','s:9:\"September\";'), +('en','messages:servertime','s:12:\"Server time:\";'), +('en','messages:session_fail_preview','s:321:\"Sorry! We could not process your edit due to a loss of session data.\n\nYou might have been logged out. Please verify that you\'re still logged in and try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in, and check that your browser allows cookies from this site.\";'), +('en','messages:session_fail_preview_html','s:407:\"Sorry! We could not process your edit due to a loss of session data.\n\nBecause {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate edit attempt, please try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in, and check that your browser allows cookies from this site.\";'), +('en','messages:sessionfailure','s:151:\"There seems to be a problem with your login session;\nthis action has been canceled as a precaution against session hijacking.\nPlease resubmit the form.\";'), +('en','messages:sessionfailure-title','s:15:\"Session failure\";'), +('en','messages:sessionmanager-tie','s:57:\"Cannot combine multiple request authentication types: $1.\";'), +('en','messages:sessionprovider-generic','s:11:\"$1 sessions\";'), +('en','messages:sessionprovider-mediawiki-session-cookiesessionprovider','s:21:\"cookie-based sessions\";'), +('en','messages:sessionprovider-nocookies','s:73:\"Cookies may be disabled. Ensure you have cookies enabled and start again.\";'), +('en','messages:shared-repo','s:19:\"a shared repository\";'), +('en','messages:shared-repo-from','s:7:\"from $1\";'), +('en','messages:shared-repo-name-wikimediacommons','s:17:\"Wikimedia Commons\";'), +('en','messages:shareddescriptionfollows','s:1:\"-\";'), +('en','messages:sharedupload','s:55:\"This file is from $1 and may be used by other projects.\";'), +('en','messages:sharedupload-desc-create','s:135:\"This file is from $1 and may be used by other projects.\nMaybe you want to edit the description on its [$2 file description page] there.\";'), +('en','messages:sharedupload-desc-edit','s:135:\"This file is from $1 and may be used by other projects.\nMaybe you want to edit the description on its [$2 file description page] there.\";'), +('en','messages:sharedupload-desc-here','s:127:\"This file is from $1 and may be used by other projects.\nThe description on its [$2 file description page] there is shown below.\";'), +('en','messages:sharedupload-desc-there','s:122:\"This file is from $1 and may be used by other projects.\nPlease see the [$2 file description page] for further information.\";'), +('en','messages:shortpages','s:11:\"Short pages\";'), +('en','messages:shortpages-summary','s:0:\"\";'), +('en','messages:show','s:4:\"Show\";'), +('en','messages:show-big-image','s:13:\"Original file\";'), +('en','messages:show-big-image-other','s:47:\"Other {{PLURAL:$2|resolution|resolutions}}: $1.\";'), +('en','messages:show-big-image-preview','s:25:\"Size of this preview: $1.\";'), +('en','messages:show-big-image-preview-differ','s:44:\"Size of this $3 preview of this $2 file: $1.\";'), +('en','messages:show-big-image-size','s:15:\"$1 × $2 pixels\";'), +('en','messages:showdiff','s:12:\"Show changes\";'), +('en','messages:showhideselectedlogentries','s:41:\"Change visibility of selected log entries\";'), +('en','messages:showhideselectedversions','s:39:\"Change visibility of selected revisions\";'), +('en','messages:showingresults','s:123:\"Showing below up to {{PLURAL:$1|1 result|$1 results}} starting with #$2.\";'), +('en','messages:showingresultsinrange','s:142:\"Showing below up to {{PLURAL:$1|1 result|$1 results}} in range #$2 to #$3.\";'), +('en','messages:shown-title','s:45:\"Show $1 {{PLURAL:$1|result|results}} per page\";'), +('en','messages:showpreview','s:12:\"Show preview\";'), +('en','messages:showtoc','s:4:\"show\";'), +('en','messages:sidebar','s:168:\"\n* navigation\n** mainpage|mainpage-description\n** recentchanges-url|recentchanges\n** randompage-url|randompage\n** helppage|help-mediawiki\n* SEARCH\n* TOOLBOX\n* LANGUAGES\";'), +('en','messages:sig-text','s:4:\"--$1\";'), +('en','messages:signature','s:52:\"[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|talk]])\";'), +('en','messages:signature-anon','s:36:\"[[{{#special:Contributions}}/$1|$2]]\";'), +('en','messages:signupend','s:0:\"\";'), +('en','messages:signupend-https','s:0:\"\";'), +('en','messages:signupstart','s:0:\"\";'), +('en','messages:simpleantispam-label','s:54:\"Anti-spam check.\nDo not fill this in!\";'), +('en','messages:site-atom-feed','s:12:\"$1 Atom feed\";'), +('en','messages:site-rss-feed','s:11:\"$1 RSS feed\";'), +('en','messages:sitecsspreview','s:95:\"Remember that you are only previewing this CSS.\nIt has not yet been published!\";'), +('en','messages:sitecssprotected','s:84:\"You do not have permission to edit this CSS page because it may affect all visitors.\";'), +('en','messages:sitejsonpreview','s:103:\"Remember that you are only previewing this JSON config.\nIt has not yet been published!\";'), +('en','messages:sitejsonprotected','s:85:\"You do not have permission to edit this JSON page because it may affect all visitors.\";'), +('en','messages:sitejspreview','s:107:\"Remember that you are only previewing this JavaScript code.\nIt has not yet been published!\";'), +('en','messages:sitejsprotected','s:91:\"You do not have permission to edit this JavaScript page because it may affect all visitors.\";'), +('en','messages:sitenotice','s:1:\"-\";'), +('en','messages:siterawhtmlprotected','s:119:\"You do not have permission to edit this page because it contains raw HTML which can be modified to affect all visitors.\";'), +('en','messages:sitesubtitle','s:0:\"\";'), +('en','messages:sitetitle','s:12:\"{{SITENAME}}\";'), +('en','messages:siteuser','s:20:\"{{SITENAME}} user $1\";'), +('en','messages:siteusers','s:54:\"{{SITENAME}} {{PLURAL:$2|{{GENDER:$1|user}}|users}} $1\";'), +('en','messages:size-bytes','s:27:\"$1 {{PLURAL:$1|byte|bytes}}\";'), +('en','messages:size-exabytes','s:5:\"$1 EB\";'), +('en','messages:size-exapixel','s:5:\"$1 EP\";'), +('en','messages:size-gigabytes','s:5:\"$1 GB\";'), +('en','messages:size-gigapixel','s:5:\"$1 GP\";'), +('en','messages:size-kilobytes','s:5:\"$1 KB\";'), +('en','messages:size-kilopixel','s:5:\"$1 KP\";'), +('en','messages:size-megabytes','s:5:\"$1 MB\";'), +('en','messages:size-megapixel','s:5:\"$1 MP\";'), +('en','messages:size-petabytes','s:5:\"$1 PB\";'), +('en','messages:size-petapixel','s:5:\"$1 PP\";'), +('en','messages:size-pixel','s:29:\"$1 {{PLURAL:$1|pixel|pixels}}\";'), +('en','messages:size-terabytes','s:5:\"$1 TB\";'), +('en','messages:size-terapixel','s:5:\"$1 TP\";'), +('en','messages:size-yottabytes','s:5:\"$1 YB\";'), +('en','messages:size-yottapixel','s:5:\"$1 YP\";'), +('en','messages:size-zettabytes','s:5:\"$1 ZB\";'), +('en','messages:size-zettapixel','s:5:\"$1 ZP\";'), +('en','messages:skin-action-delete','s:6:\"Delete\";'), +('en','messages:skin-action-move','s:4:\"Move\";'), +('en','messages:skin-action-protect','s:7:\"Protect\";'), +('en','messages:skin-action-undelete','s:8:\"Undelete\";'), +('en','messages:skin-minerva-issue-learn-more','s:10:\"Learn more\";'), +('en','messages:skin-minerva-mobile-option-MinervaPageIssuesNewTreatment','s:30:\"Improved page issues treatment\";'), +('en','messages:skin-minerva-mobile-option-MinervaPageIssuesNewTreatment-description','s:60:\"Page issues (Template:ambox) will be inlined in the article.\";'), +('en','messages:skin-minerva-mobile-option-MinervaShowCategories','s:10:\"Categories\";'), +('en','messages:skin-minerva-mobile-option-MinervaShowCategories-description','s:24:\"View categories of pages\";'), +('en','messages:skin-minerva-recentchanges-warning-enhanced-not-supported','s:149:\"Unfortunately, grouping results by page is not available on mobile. If you would like to use the group by page feature please visit the desktop site.\";'), +('en','messages:skin-preview','s:7:\"Preview\";'), +('en','messages:skinname-minerva','s:11:\"MinervaNeue\";'), +('en','messages:skinname-monobook','s:8:\"MonoBook\";'), +('en','messages:skinname-timeless','s:8:\"Timeless\";'), +('en','messages:skinname-vector','s:20:\"Vector legacy (2010)\";'), +('en','messages:skinname-vector-2022','s:13:\"Vector (2022)\";'), +('en','messages:slot-name-main','s:4:\"Main\";'), +('en','messages:softblockrangesreason','s:81:\"Anonymous contributions are not allowed from your IP address ($1). Please log in.\";'), +('en','messages:sorbs','s:5:\"DNSBL\";'), +('en','messages:sorbs_create_account_reason','s:107:\"Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.\nYou cannot create an account.\";'), +('en','messages:sorbsreason','s:77:\"Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.\";'), +('en','messages:sort-ascending','s:14:\"Sort ascending\";'), +('en','messages:sort-descending','s:15:\"Sort descending\";'), +('en','messages:sort-initial','s:12:\"Sort initial\";'), +('en','messages:sort-rowspan-error','s:139:\"This page contains a table with a rowspan attribute that spans more rows than the table actually has. You can fix this by editing the page.\";'), +('en','messages:sourcefilename','s:16:\"Source filename:\";'), +('en','messages:sourceurl','s:11:\"Source URL:\";'), +('en','messages:sp-contributions-blocked-notice','s:105:\"This {{GENDER:$1|user}} is currently blocked.\nThe latest block log entry is provided below for reference:\";'), +('en','messages:sp-contributions-blocked-notice-anon','s:97:\"This IP address is currently blocked.\nThe latest block log entry is provided below for reference:\";'), +('en','messages:sp-contributions-blocked-notice-anon-partial','s:107:\"This IP address is currently partially blocked.\nThe latest block log entry is provided below for reference:\";'), +('en','messages:sp-contributions-blocked-notice-partial','s:101:\"This user is currently partially blocked.\nThe latest block log entry is provided below for reference:\";'), +('en','messages:sp-contributions-blocklog','s:9:\"block log\";'), +('en','messages:sp-contributions-concurrency-ip','s:85:\"Sorry, too many requests are being made from your IP address. Please try again later.\";'), +('en','messages:sp-contributions-concurrency-user','s:87:\"Sorry, too many requests are being made from your user account. Please try again later.\";'), +('en','messages:sp-contributions-deleted','s:40:\"deleted {{GENDER:$1|user}} contributions\";'), +('en','messages:sp-contributions-explain','s:0:\"\";'), +('en','messages:sp-contributions-footer','s:1:\"-\";'), +('en','messages:sp-contributions-footer-anon','s:1:\"-\";'), +('en','messages:sp-contributions-footer-anon-range','s:1:\"-\";'), +('en','messages:sp-contributions-hideminor','s:16:\"Hide minor edits\";'), +('en','messages:sp-contributions-logs','s:4:\"logs\";'), +('en','messages:sp-contributions-newonly','s:39:\"Only show edits that are page creations\";'), +('en','messages:sp-contributions-outofrange','s:88:\"Unable to show any results. The requested IP range is larger than the CIDR limit of /$1.\";'), +('en','messages:sp-contributions-search','s:24:\"Search for contributions\";'), +('en','messages:sp-contributions-submit','s:6:\"Search\";'), +('en','messages:sp-contributions-suppresslog','s:43:\"suppressed {{GENDER:$1|user}} contributions\";'), +('en','messages:sp-contributions-talk','s:4:\"talk\";'), +('en','messages:sp-contributions-toponly','s:41:\"Only show edits that are latest revisions\";'), +('en','messages:sp-contributions-uploads','s:7:\"uploads\";'), +('en','messages:sp-contributions-username','s:23:\"IP address or username:\";'), +('en','messages:sp-contributions-userrights','s:36:\"{{GENDER:$1|user}} rights management\";'), +('en','messages:sp-deletedcontributions-contribs','s:13:\"contributions\";'), +('en','messages:sp-newimages-showfrom','s:35:\"Show new files starting from $2, $1\";'), +('en','messages:spam_blanking','s:45:\"All revisions contained links to $1, blanking\";'), +('en','messages:spam_deleting','s:45:\"All revisions contained links to $1, deleting\";'), +('en','messages:spam_reverting','s:53:\"Reverting to last revision not containing links to $1\";'), +('en','messages:spambot_username','s:22:\"MediaWiki spam cleanup\";'), +('en','messages:spamprotectionmatch','s:56:\"The following text is what triggered our spam filter: $1\";'), +('en','messages:spamprotectiontext','s:126:\"The text you wanted to publish was blocked by the spam filter.\nThis is probably caused by a link to a forbidden external site.\";'), +('en','messages:spamprotectiontitle','s:22:\"Spam protection filter\";'), +('en','messages:special-characters-group-arabic','s:6:\"Arabic\";'), +('en','messages:special-characters-group-arabicextended','s:15:\"Arabic extended\";'), +('en','messages:special-characters-group-bangla','s:6:\"Bangla\";'), +('en','messages:special-characters-group-canadianaboriginal','s:19:\"Canadian Aboriginal\";'), +('en','messages:special-characters-group-cyrillic','s:8:\"Cyrillic\";'), +('en','messages:special-characters-group-devanagari','s:10:\"Devanagari\";'), +('en','messages:special-characters-group-greek','s:5:\"Greek\";'), +('en','messages:special-characters-group-greekextended','s:14:\"Greek extended\";'), +('en','messages:special-characters-group-gujarati','s:8:\"Gujarati\";'), +('en','messages:special-characters-group-hebrew','s:6:\"Hebrew\";'), +('en','messages:special-characters-group-ipa','s:3:\"IPA\";'), +('en','messages:special-characters-group-khmer','s:5:\"Khmer\";'), +('en','messages:special-characters-group-lao','s:3:\"Lao\";'), +('en','messages:special-characters-group-latin','s:5:\"Latin\";'), +('en','messages:special-characters-group-latinextended','s:14:\"Latin extended\";'), +('en','messages:special-characters-group-persian','s:7:\"Persian\";'), +('en','messages:special-characters-group-runes','s:5:\"Runes\";'), +('en','messages:special-characters-group-sinhala','s:7:\"Sinhala\";'), +('en','messages:special-characters-group-symbols','s:7:\"Symbols\";'), +('en','messages:special-characters-group-tamil','s:5:\"Tamil\";'), +('en','messages:special-characters-group-telugu','s:6:\"Telugu\";'), +('en','messages:special-characters-group-thai','s:4:\"Thai\";'), +('en','messages:special-characters-title-emdash','s:7:\"em dash\";'), +('en','messages:special-characters-title-endash','s:7:\"en dash\";'), +('en','messages:special-characters-title-minus','s:10:\"minus sign\";'), +('en','messages:specialdeletepage-page','s:11:\"Target page\";'), +('en','messages:specialdeletepage-submit','s:10:\"Go to page\";'), +('en','messages:specialeditpage-page','s:11:\"Target page\";'), +('en','messages:specialeditpage-submit','s:10:\"Go to page\";'), +('en','messages:speciallogtitlelabel','s:48:\"Target (title or {{ns:user}}:username for user):\";'), +('en','messages:specialloguserlabel','s:10:\"Performer:\";'), +('en','messages:specialmute','s:4:\"Mute\";'), +('en','messages:specialmute-email-footer','s:67:\"To manage email preferences for user {{BIDI:$2}} please visit <$1>.\";'), +('en','messages:specialmute-error-invalid-user','s:42:\"The username requested could not be found.\";'), +('en','messages:specialmute-error-no-options','s:189:\"Mute features are unavailable. This might be because you haven\'t confirmed your email address, or because the wiki administrator has disabled email features or email mutelist for this wiki.\";'), +('en','messages:specialmute-header','s:76:\"Please select your mute preferences for user {{BIDI:[[User:$1|$1]]}}.\";'), +('en','messages:specialmute-label-mute-email','s:40:\"Mute emails from this {{GENDER:$1|user}}\";'), +('en','messages:specialmute-login-required','s:46:\"Please log in to change your mute preferences.\";'), +('en','messages:specialmute-submit','s:7:\"Confirm\";'), +('en','messages:specialmute-success','s:105:\"Your mute preferences have been updated. See all muted users in [[Special:Preferences|your preferences]].\";'), +('en','messages:specialpage','s:12:\"Special page\";'), +('en','messages:specialpage-empty','s:37:\"There are no results for this report.\";'), +('en','messages:specialpage-securitylevel-not-allowed','s:88:\"Sorry, you are not allowed to use this page because your identity could not be verified.\";'), +('en','messages:specialpage-securitylevel-not-allowed-title','s:11:\"Not allowed\";'), +('en','messages:specialpagehistory-page','s:11:\"Target page\";'), +('en','messages:specialpagehistory-submit','s:10:\"Go to page\";'), +('en','messages:specialpageinfo-page','s:11:\"Target page\";'), +('en','messages:specialpageinfo-submit','s:10:\"Go to page\";'), +('en','messages:specialpages','s:13:\"Special pages\";'), +('en','messages:specialpages-group-changes','s:23:\"Recent changes and logs\";'), +('en','messages:specialpages-group-developer','s:15:\"Developer tools\";'), +('en','messages:specialpages-group-highuse','s:14:\"High use pages\";'), +('en','messages:specialpages-group-login','s:22:\"Login / create account\";'), +('en','messages:specialpages-group-maintenance','s:19:\"Maintenance reports\";'), +('en','messages:specialpages-group-media','s:25:\"Media reports and uploads\";'), +('en','messages:specialpages-group-other','s:19:\"Other special pages\";'), +('en','messages:specialpages-group-pages','s:14:\"Lists of pages\";'), +('en','messages:specialpages-group-pagetools','s:10:\"Page tools\";'), +('en','messages:specialpages-group-redirects','s:25:\"Redirecting special pages\";'), +('en','messages:specialpages-group-spam','s:10:\"Spam tools\";'), +('en','messages:specialpages-group-users','s:16:\"Users and rights\";'), +('en','messages:specialpages-group-wiki','s:14:\"Data and tools\";'), +('en','messages:specialpages-note-cached','s:1:\"-\";'), +('en','messages:specialpages-note-restricted','s:97:\"* Normal special pages.\n* Restricted special pages.\";'), +('en','messages:specialpages-note-top','s:6:\"Legend\";'), +('en','messages:specialpages-summary','s:0:\"\";'), +('en','messages:specialprotectpage-page','s:11:\"Target page\";'), +('en','messages:specialprotectpage-submit','s:10:\"Go to page\";'), +('en','messages:specialpurge-page','s:11:\"Target page\";'), +('en','messages:specialpurge-submit','s:10:\"Go to page\";'), +('en','messages:statistics','s:10:\"Statistics\";'), +('en','messages:statistics-articles','s:13:\"Content pages\";'), +('en','messages:statistics-articles-desc','s:0:\"\";'), +('en','messages:statistics-edits','s:40:\"Page edits since {{SITENAME}} was set up\";'), +('en','messages:statistics-edits-average','s:22:\"Average edits per page\";'), +('en','messages:statistics-files','s:14:\"Uploaded files\";'), +('en','messages:statistics-files-desc','s:0:\"\";'), +('en','messages:statistics-footer','s:0:\"\";'), +('en','messages:statistics-header-edits','s:15:\"Edit statistics\";'), +('en','messages:statistics-header-hooks','s:16:\"Other statistics\";'), +('en','messages:statistics-header-pages','s:15:\"Page statistics\";'), +('en','messages:statistics-header-users','s:15:\"User statistics\";'), +('en','messages:statistics-pages','s:5:\"Pages\";'), +('en','messages:statistics-pages-desc','s:60:\"All pages in the wiki, including talk pages, redirects, etc.\";'), +('en','messages:statistics-summary','s:0:\"\";'), +('en','messages:statistics-users','s:16:\"Registered users\";'), +('en','messages:statistics-users-active','s:12:\"Active users\";'), +('en','messages:statistics-users-active-desc','s:72:\"Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}\";'), +('en','messages:storedversion','s:15:\"Stored revision\";'), +('en','messages:subcategories','s:13:\"Subcategories\";'), +('en','messages:subject','s:8:\"Subject:\";'), +('en','messages:subject-preview','s:19:\"Preview of subject:\";'), +('en','messages:summary','s:8:\"Summary:\";'), +('en','messages:summary-preview','s:24:\"Preview of edit summary:\";'), +('en','messages:sun','s:3:\"Sun\";'), +('en','messages:sunday','s:6:\"Sunday\";'), +('en','messages:sunday-at','s:12:\"Sunday at $1\";'), +('en','messages:suppress','s:8:\"Suppress\";'), +('en','messages:suppressedarticle','s:19:\"suppressed \"[[$1]]\"\";'), +('en','messages:suppressionlog','s:15:\"Suppression log\";'), +('en','messages:suppressionlogtext','s:181:\"Below is a list of deletions and blocks involving content hidden from administrators.\nSee the [[Special:BlockList|block list]] for the list of currently operational bans and blocks.\";'), +('en','messages:suspicious-userlogout','s:106:\"Your request to log out was denied because it looks like it was sent by a broken browser or caching proxy.\";'), +('en','messages:svg-long-desc','s:50:\"SVG file, nominally $1 × $2 pixels, file size: $3\";'), +('en','messages:svg-long-desc-animated','s:59:\"Animated SVG file, nominally $1 × $2 pixels, file size: $3\";'), +('en','messages:svg-long-error','s:20:\"Invalid SVG file: $1\";'), +('en','messages:systemblockedtext','s:268:\"Your username or IP address has been automatically blocked by MediaWiki.\nThe reason given is:\n\n:$2\n\n* Start of block: $8\n* Expiration of block: $6\n* Intended blockee: $7\n\nYour current IP address is $3.\nPlease include all above details in any queries you make.\";'), +('en','messages:table_pager_empty','s:10:\"No results\";'), +('en','messages:table_pager_first','s:10:\"First page\";'), +('en','messages:table_pager_last','s:9:\"Last page\";'), +('en','messages:table_pager_limit','s:22:\"Show $1 items per page\";'), +('en','messages:table_pager_limit_label','s:15:\"Items per page:\";'), +('en','messages:table_pager_limit_submit','s:2:\"Go\";'), +('en','messages:table_pager_next','s:9:\"Next page\";'), +('en','messages:table_pager_prev','s:13:\"Previous page\";'), +('en','messages:tag-filter','s:28:\"[[Special:Tags|Tag]] filter:\";'), +('en','messages:tag-filter-submit','s:6:\"Filter\";'), +('en','messages:tag-hidden','s:15:\"$1 (hidden tag)\";'), +('en','messages:tag-list-wrapper','s:43:\"[[Special:Tags|{{PLURAL:$1|Tag|Tags}}]]: $2\";'), +('en','messages:tag-mw-blank','s:8:\"Blanking\";'), +('en','messages:tag-mw-blank-description','s:23:\"Edits that blank a page\";'), +('en','messages:tag-mw-changed-redirect-target','s:23:\"Redirect target changed\";'), +('en','messages:tag-mw-changed-redirect-target-description','s:42:\"Edits that change the target of a redirect\";'), +('en','messages:tag-mw-contentmodelchange','s:20:\"content model change\";'), +('en','messages:tag-mw-contentmodelchange-description','s:121:\"Edits that [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:ChangeContentModel change the content model] of a page\";'), +('en','messages:tag-mw-manual-revert','s:13:\"Manual revert\";'), +('en','messages:tag-mw-manual-revert-description','s:63:\"Edits that manually restore the page to an exact previous state\";'), +('en','messages:tag-mw-new-redirect','s:12:\"New redirect\";'), +('en','messages:tag-mw-new-redirect-description','s:63:\"Edits that create a new redirect or change a page to a redirect\";'), +('en','messages:tag-mw-removed-redirect','s:16:\"Removed redirect\";'), +('en','messages:tag-mw-removed-redirect-description','s:56:\"Edits that change an existing redirect to a non-redirect\";'), +('en','messages:tag-mw-replace','s:8:\"Replaced\";'), +('en','messages:tag-mw-replace-description','s:56:\"Edits that remove more than 90% of the content of a page\";'), +('en','messages:tag-mw-reverted','s:8:\"Reverted\";'), +('en','messages:tag-mw-reverted-description','s:50:\"Edits that were later reverted by a different edit\";'), +('en','messages:tag-mw-rollback','s:8:\"Rollback\";'), +('en','messages:tag-mw-rollback-description','s:59:\"Edits that roll back previous edits using the rollback link\";'), +('en','messages:tag-mw-server-side-upload','s:18:\"Server-side upload\";'), +('en','messages:tag-mw-server-side-upload-description','s:55:\"Media files that were uploaded via a maintenance script\";'), +('en','messages:tag-mw-undo','s:4:\"Undo\";'), +('en','messages:tag-mw-undo-description','s:50:\"Edits that undo previous edits using the undo link\";'), +('en','messages:tag-visualeditor','s:62:\"[[{{MediaWiki:visualeditor-descriptionpagelink}}|Visual edit]]\";'), +('en','messages:tag-visualeditor-description','s:84:\"Edit made using the [[{{MediaWiki:visualeditor-descriptionpagelink}}|visual editor]]\";'), +('en','messages:tag-visualeditor-needcheck','s:69:\"[[{{MediaWiki:visualeditor-descriptionpagelink}}|Visual edit: Check]]\";'), +('en','messages:tag-visualeditor-needcheck-description','s:159:\"Edit made using the [[{{MediaWiki:visualeditor-descriptionpagelink}}|visual editor]] where the system detected the wikitext possibly having unintended changes.\";'), +('en','messages:tag-visualeditor-switched','s:72:\"[[{{MediaWiki:visualeditor-descriptionpagelink}}|Visual edit: Switched]]\";'), +('en','messages:tag-visualeditor-switched-description','s:82:\"User started to edit using the visual editor, then changed to the wikitext editor.\";'), +('en','messages:tag-visualeditor-wikitext','s:16:\"2017 source edit\";'), +('en','messages:tag-visualeditor-wikitext-description','s:40:\"Edit made using the 2017 wikitext editor\";'), +('en','messages:tagline','s:17:\"From {{SITENAME}}\";'), +('en','messages:tags','s:17:\"Valid change tags\";'), +('en','messages:tags-actions-header','s:7:\"Actions\";'), +('en','messages:tags-activate','s:8:\"activate\";'), +('en','messages:tags-activate-not-allowed','s:44:\"It is not possible to activate the tag \"$1\".\";'), +('en','messages:tags-activate-not-found','s:28:\"The tag \"$1\" does not exist.\";'), +('en','messages:tags-activate-question','s:39:\"You are about to activate the tag \"$1\".\";'), +('en','messages:tags-activate-reason','s:7:\"Reason:\";'), +('en','messages:tags-activate-submit','s:8:\"Activate\";'), +('en','messages:tags-activate-title','s:12:\"Activate tag\";'), +('en','messages:tags-active-header','s:7:\"Active?\";'), +('en','messages:tags-active-no','s:2:\"No\";'), +('en','messages:tags-active-yes','s:3:\"Yes\";'), +('en','messages:tags-apply-blocked','s:89:\"You cannot apply change tags along with your changes while {{GENDER:$1|you}} are blocked.\";'), +('en','messages:tags-apply-no-permission','s:72:\"You do not have permission to apply change tags along with your changes.\";'), +('en','messages:tags-apply-not-allowed-multi','s:82:\"The following {{PLURAL:$2|tag is|tags are}} not allowed to be manually applied: $1\";'), +('en','messages:tags-apply-not-allowed-one','s:51:\"The tag \"$1\" is not allowed to be manually applied.\";'), +('en','messages:tags-create-already-exists','s:28:\"The tag \"$1\" already exists.\";'), +('en','messages:tags-create-explanation','s:80:\"By default, newly created tags will be made available for use by users and bots.\";'), +('en','messages:tags-create-heading','s:16:\"Create a new tag\";'), +('en','messages:tags-create-invalid-chars','s:112:\"Tag names must not contain commas (
,), pipes (|), or forward slashes (/).\";'),
+('en','messages:tags-create-invalid-title-chars','s:73:\"Tag names must not contain characters that cannot be used in page titles.\";'),
+('en','messages:tags-create-no-name','s:28:\"You must specify a tag name.\";'),
+('en','messages:tags-create-reason','s:7:\"Reason:\";'),
+('en','messages:tags-create-submit','s:6:\"Create\";'),
+('en','messages:tags-create-tag-name','s:9:\"Tag name:\";'),
+('en','messages:tags-create-warnings-above','s:105:\"The following {{PLURAL:$2|warning was|warnings were}} encountered when attempting to create the tag \"$1\":\";'),
+('en','messages:tags-create-warnings-below','s:41:\"Do you wish to continue creating the tag?\";'),
+('en','messages:tags-deactivate','s:10:\"deactivate\";'),
+('en','messages:tags-deactivate-not-allowed','s:46:\"It is not possible to deactivate the tag \"$1\".\";'),
+('en','messages:tags-deactivate-question','s:41:\"You are about to deactivate the tag \"$1\".\";'),
+('en','messages:tags-deactivate-reason','s:7:\"Reason:\";'),
+('en','messages:tags-deactivate-submit','s:10:\"Deactivate\";'),
+('en','messages:tags-deactivate-title','s:14:\"Deactivate tag\";'),
+('en','messages:tags-delete','s:6:\"delete\";'),
+('en','messages:tags-delete-explanation-active','s:199:\"The tag \"$1\" is still active, and will continue to be applied in the future. To stop this from happening, go to the place(s) where the tag is set to be applied, and disable it there.\";'),
+('en','messages:tags-delete-explanation-in-use','s:132:\"It will be removed from {{PLURAL:$2|$2 revision or log entry|all $2 revisions and/or log entries}} to which it is currently applied.\";'),
+('en','messages:tags-delete-explanation-initial','s:55:\"You are about to delete the tag \"$1\" from the database.\";'),
+('en','messages:tags-delete-explanation-warning','s:167:\"This action is irreversible and cannot be undone, not even by database administrators. Be certain this is the tag you mean to delete.\";'),
+('en','messages:tags-delete-no-permission','s:49:\"You do not have permission to delete change tags.\";'),
+('en','messages:tags-delete-not-allowed','s:91:\"Tags defined by an extension cannot be deleted unless the extension specifically allows it.\";'),
+('en','messages:tags-delete-not-found','s:28:\"The tag \"$1\" does not exist.\";'),
+('en','messages:tags-delete-reason','s:7:\"Reason:\";'),
+('en','messages:tags-delete-submit','s:28:\"Irreversibly delete this tag\";'),
+('en','messages:tags-delete-title','s:10:\"Delete tag\";'),
+('en','messages:tags-delete-too-many-uses','s:107:\"The tag \"$1\" is applied to more than $2 {{PLURAL:$2|revision|revisions}}, which means it cannot be deleted.\";'),
+('en','messages:tags-delete-warnings-after-delete','s:96:\"The tag \"$1\" was deleted, but the following {{PLURAL:$2|warning was|warnings were}} encountered:\";'),
+('en','messages:tags-description-header','s:27:\"Full description of meaning\";'),
+('en','messages:tags-display-header','s:26:\"Appearance on change lists\";'),
+('en','messages:tags-edit','s:4:\"edit\";'),
+('en','messages:tags-edit-add','s:15:\"Add these tags:\";'),
+('en','messages:tags-edit-chosen-no-results','s:24:\"No tags found that match\";'),
+('en','messages:tags-edit-chosen-placeholder','s:16:\"Select some tags\";'),
+('en','messages:tags-edit-existing-tags','s:14:\"Existing tags:\";'),
+('en','messages:tags-edit-existing-tags-none','s:13:\"None\";'),
+('en','messages:tags-edit-failure','s:36:\"The changes could not be applied:\n$1\";'),
+('en','messages:tags-edit-logentry-explanation','s:0:\"\";'),
+('en','messages:tags-edit-logentry-legend','s:71:\"Add or remove tags from {{PLURAL:$1|this log entry|all $1 log entries}}\";'),
+('en','messages:tags-edit-logentry-selected','s:53:\"{{PLURAL:$1|Selected log event|Selected log events}}:\";'),
+('en','messages:tags-edit-logentry-submit','s:60:\"Apply changes to {{PLURAL:$1|this log entry|$1 log entries}}\";'),
+('en','messages:tags-edit-manage-link','s:11:\"Manage tags\";'),
+('en','messages:tags-edit-new-tags','s:9:\"New tags:\";'),
+('en','messages:tags-edit-none-selected','s:48:\"Please select at least one tag to add or remove.\";'),
+('en','messages:tags-edit-nooldid-text','s:126:\"You have either not specified any target revision on which to perform this function, or the specified revision does not exist.\";'),
+('en','messages:tags-edit-nooldid-title','s:23:\"Invalid target revision\";'),
+('en','messages:tags-edit-reason','s:7:\"Reason:\";'),
+('en','messages:tags-edit-remove','s:18:\"Remove these tags:\";'),
+('en','messages:tags-edit-remove-all-tags','s:17:\"(remove all tags)\";'),
+('en','messages:tags-edit-revision-explanation','s:0:\"\";'),
+('en','messages:tags-edit-revision-legend','s:68:\"Add or remove tags from {{PLURAL:$1|this revision|all $1 revisions}}\";'),
+('en','messages:tags-edit-revision-selected','s:62:\"{{PLURAL:$1|Selected revision|Selected revisions}} of [[:$2]]:\";'),
+('en','messages:tags-edit-revision-submit','s:57:\"Apply changes to {{PLURAL:$1|this revision|$1 revisions}}\";'),
+('en','messages:tags-edit-success','s:25:\"The changes were applied.\";'),
+('en','messages:tags-edit-title','s:9:\"Edit tags\";'),
+('en','messages:tags-hidden','s:8:\"(hidden)\";'),
+('en','messages:tags-hitcount','s:31:\"$1 {{PLURAL:$1|change|changes}}\";'),
+('en','messages:tags-hitcount-header','s:14:\"Tagged changes\";'),
+('en','messages:tags-intro','s:84:\"This page lists the tags that the software may mark an edit with, and their meaning.\";'),
+('en','messages:tags-manage-blocked','s:66:\"You cannot manage change tags while {{GENDER:$1|you}} are blocked.\";'),
+('en','messages:tags-manage-no-permission','s:49:\"You do not have permission to manage change tags.\";'),
+('en','messages:tags-source-extension','s:23:\"Defined by the software\";'),
+('en','messages:tags-source-header','s:6:\"Source\";'),
+('en','messages:tags-source-manual','s:34:\"Applied manually by users and bots\";'),
+('en','messages:tags-source-none','s:16:\"No longer in use\";'),
+('en','messages:tags-summary','s:0:\"\";'),
+('en','messages:tags-tag','s:8:\"Tag name\";'),
+('en','messages:tags-title','s:4:\"Tags\";'),
+('en','messages:tags-update-add-not-allowed-multi','s:80:\"The following {{PLURAL:$2|tag is|tags are}} not allowed to be manually added: $1\";'),
+('en','messages:tags-update-add-not-allowed-one','s:49:\"The tag \"$1\" is not allowed to be manually added.\";'),
+('en','messages:tags-update-blocked','s:73:\"You cannot add or remove change tags while {{GENDER:$1|you}} are blocked.\";'),
+('en','messages:tags-update-no-permission','s:97:\"You do not have permission to add or remove change tags from individual revisions or log entries.\";'),
+('en','messages:tags-update-remove-not-allowed-multi','s:82:\"The following {{PLURAL:$2|tag is|tags are}} not allowed to be manually removed: $1\";'),
+('en','messages:tags-update-remove-not-allowed-one','s:42:\"The tag \"$1\" is not allowed to be removed.\";'),
+('en','messages:talk','s:10:\"Discussion\";'),
+('en','messages:talkpageheader','s:1:\"-\";'),
+('en','messages:talkpagelinktext','s:4:\"talk\";'),
+('en','messages:talkpagetext','s:31:\"\";'),
+('en','messages:template-equals-category','s:31:\"Pages which use = as a template\";'),
+('en','messages:template-equals-category-desc','s:236:\"The page contains {{=}} but on this wiki that does not expand to =. This usage is deprecated; a future MediaWiki version will implement {{=}} as a parser function.\";'),
+('en','messages:template-equals-warning','s:259:\"Warning: This page uses {{=}} but on this wiki that does not expand to =. This usage is deprecated; a future MediaWiki version will implement {{=}} as a parser function.\";'),
+('en','messages:template-loop-category','s:25:\"Pages with template loops\";'),
+('en','messages:template-loop-category-desc','s:81:\"The page contains a template loop, ie. a template which calls itself recursively.\";'),
+('en','messages:template-loop-warning','s:108:\"Warning: This page calls [[:$1]] which causes a template loop (an infinite recursive call).\";'),
+('en','messages:template-protected','s:11:\"(protected)\";'),
+('en','messages:template-semiprotected','s:16:\"(semi-protected)\";'),
+('en','messages:templatepage','s:18:\"View template page\";'),
+('en','messages:templatesused','s:51:\"{{PLURAL:$1|Template|Templates}} used on this page:\";'),
+('en','messages:templatesusedpreview','s:54:\"{{PLURAL:$1|Template|Templates}} used in this preview:\";'),
+('en','messages:templatesusedsection','s:54:\"{{PLURAL:$1|Template|Templates}} used in this section:\";'),
+('en','messages:textmatches','s:17:\"Page text matches\";'),
+('en','messages:thisisdeleted','s:19:\"View or restore $1?\";'),
+('en','messages:throttled-mailpassword','s:184:\"A password reset email has already been sent, within the last {{PLURAL:$1|hour|$1 hours}}.\nTo prevent abuse, only one password reset email will be sent per {{PLURAL:$1|hour|$1 hours}}.\";'),
+('en','messages:thu','s:3:\"Thu\";'),
+('en','messages:thumbnail-dest-create','s:39:\"Unable to save thumbnail to destination\";'),
+('en','messages:thumbnail-more','s:7:\"Enlarge\";'),
+('en','messages:thumbnail-temp-create','s:41:\"Unable to create temporary thumbnail file\";'),
+('en','messages:thumbnail_dest_directory','s:38:\"Unable to create destination directory\";'),
+('en','messages:thumbnail_error','s:28:\"Error creating thumbnail: $1\";'),
+('en','messages:thumbnail_error_remote','s:25:\"Error message from $1:\n$2\";'),
+('en','messages:thumbnail_gd-library','s:56:\"Incomplete GD library configuration: Missing function $1\";'),
+('en','messages:thumbnail_image-failure-limit','s:110:\"There have been too many recent failed attempts ($1 or more) to render this thumbnail. Please try again later.\";'),
+('en','messages:thumbnail_image-missing','s:28:\"File seems to be missing: $1\";'),
+('en','messages:thumbnail_image-size-zero','s:33:\"Image file size seems to be zero.\";'),
+('en','messages:thumbnail_image-type','s:24:\"Image type not supported\";'),
+('en','messages:thumbnail_invalid_params','s:28:\"Invalid thumbnail parameters\";'),
+('en','messages:thumbnail_toobigimagearea','s:36:\"File with dimensions greater than $1\";'),
+('en','messages:thumbsize','s:15:\"Thumbnail size:\";'),
+('en','messages:thursday','s:8:\"Thursday\";'),
+('en','messages:thursday-at','s:14:\"Thursday at $1\";'),
+('en','messages:timeless-action-addsection','s:9:\"New topic\";'),
+('en','messages:timeless-action-undelete','s:40:\"Undelete {{PLURAL:$1|one edit|$1 edits}}\";'),
+('en','messages:timeless-anonymous','s:9:\"Anonymous\";'),
+('en','messages:timeless-desc','s:117:\"A timeless skin designed after the Winter prototype by Brandon Harris, and various styles by the Wikimedia Foundation\";'),
+('en','messages:timeless-languages','s:9:\"Languages\";'),
+('en','messages:timeless-loggedinas','s:21:\"Logged in as \'\'\'$1\'\'\'\";'),
+('en','messages:timeless-more','s:4:\"More\";'),
+('en','messages:timeless-namespaces','s:10:\"Namespaces\";'),
+('en','messages:timeless-notloggedin','s:13:\"Not logged in\";'),
+('en','messages:timeless-pageactions','s:10:\"Page tools\";'),
+('en','messages:timeless-pagelog','s:9:\"Page logs\";'),
+('en','messages:timeless-pagemisc','s:4:\"More\";'),
+('en','messages:timeless-pagetools','s:12:\"Page actions\";'),
+('en','messages:timeless-projects','s:14:\"Other projects\";'),
+('en','messages:timeless-sitetitle','s:17:\"{{int:Sitetitle}}\";'),
+('en','messages:timeless-sitetools','s:10:\"Wiki tools\";'),
+('en','messages:timeless-talkpage','s:23:\"{{GENDER:$1|User}} talk\";'),
+('en','messages:timeless-userpage','s:23:\"{{GENDER:$1|User}} page\";'),
+('en','messages:timeless-userpagetools','s:15:\"User page tools\";'),
+('en','messages:timeless-view-history','s:7:\"History\";'),
+('en','messages:timeless-view-view','s:4:\"Read\";'),
+('en','messages:timeless.css','s:64:\"/* All CSS here will be loaded for users of the Timeless skin */\";'),
+('en','messages:timeless.js','s:71:\"/* All JavaScript here will be loaded for users of the Timeless skin */\";'),
+('en','messages:timeouterror','s:16:\"Server timed out\";'),
+('en','messages:timeouterror-text','s:73:\"The maximum request time of $1 {{PLURAL:$1|second|seconds}} was exceeded.\";'),
+('en','messages:timezone-local','s:5:\"Local\";'),
+('en','messages:timezone-useoffset-placeholder','s:35:\"Example values: \"-07:00\" or \"01:00\"\";'),
+('en','messages:timezone-utc','s:3:\"UTC\";'),
+('en','messages:timezonelegend','s:10:\"Time zone:\";'),
+('en','messages:timezoneregion-africa','s:6:\"Africa\";'),
+('en','messages:timezoneregion-america','s:7:\"America\";'),
+('en','messages:timezoneregion-antarctica','s:10:\"Antarctica\";'),
+('en','messages:timezoneregion-arctic','s:6:\"Arctic\";'),
+('en','messages:timezoneregion-asia','s:4:\"Asia\";'),
+('en','messages:timezoneregion-atlantic','s:14:\"Atlantic Ocean\";'),
+('en','messages:timezoneregion-australia','s:9:\"Australia\";'),
+('en','messages:timezoneregion-europe','s:6:\"Europe\";'),
+('en','messages:timezoneregion-indian','s:12:\"Indian Ocean\";'),
+('en','messages:timezoneregion-pacific','s:13:\"Pacific Ocean\";'),
+('en','messages:timezoneuseoffset','s:28:\"Other (time offset from UTC)\";'),
+('en','messages:timezoneuseserverdefault','s:21:\"Use wiki default ($1)\";'),
+('en','messages:title-invalid','s:35:\"The requested page title is invalid\";'),
+('en','messages:title-invalid-characters','s:59:\"The requested page title contains invalid characters: \"$1\".\";'),
+('en','messages:title-invalid-empty','s:75:\"The requested page title is empty or contains only the name of a namespace.\";'),
+('en','messages:title-invalid-interwiki','s:83:\"The requested page title contains an interwiki link which cannot be used in titles.\";'),
+('en','messages:title-invalid-leading-colon','s:68:\"The requested page title contains an invalid colon at the beginning.\";'),
+('en','messages:title-invalid-magic-tilde','s:86:\"The requested page title contains invalid magic tilde sequence (rev_id was already in use.\";'),
+('en','messages:undeleterevision-missing','s:121:\"Invalid or missing revision.\nYou may have a bad link, or the revision may have been restored or removed from the archive.\";'),
+('en','messages:undeleterevisions','s:43:\"$1 {{PLURAL:$1|revision|revisions}} deleted\";'),
+('en','messages:undeleteviewlink','s:4:\"view\";'),
+('en','messages:underline-always','s:6:\"Always\";');
+INSERT INTO `twl10n_cache` VALUES
+('en','messages:underline-default','s:23:\"Skin or browser default\";'),
+('en','messages:underline-never','s:5:\"Never\";'),
+('en','messages:undo-failure','s:67:\"The edit could not be undone due to conflicting intermediate edits.\";'),
+('en','messages:undo-main-slot-only','s:79:\"The edit could not be undone because it involves content outside the main slot.\";'),
+('en','messages:undo-nochange','s:45:\"The edit appears to have already been undone.\";'),
+('en','messages:undo-norev','s:70:\"The edit could not be undone because it does not exist or was deleted.\";'),
+('en','messages:undo-success','s:164:\"The edit can be undone.\nPlease check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.\";'),
+('en','messages:undo-summary','s:75:\"Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]])\";'),
+('en','messages:undo-summary-anon','s:51:\"Undo revision $1 by [[Special:Contributions/$2|$2]]\";'),
+('en','messages:undo-summary-import','s:44:\"Undo imported revision $1 by user [[:$2|$3]]\";'),
+('en','messages:undo-summary-import2','s:36:\"Undo imported revision $1 by user $2\";'),
+('en','messages:undo-summary-username-hidden','s:33:\"Undo revision $1 by a hidden user\";'),
+('en','messages:unexpected','s:28:\"Unexpected value: \"$1\"=\"$2\".\";'),
+('en','messages:unicode-support-fail','s:116:\"It appears that your browser does not support Unicode. It is required to edit pages, so your edit was not published.\";'),
+('en','messages:unit-pixel','s:2:\"px\";'),
+('en','messages:unknown-error','s:26:\"An unknown error occurred.\";'),
+('en','messages:unlinkaccounts','s:15:\"Unlink accounts\";'),
+('en','messages:unlinkaccounts-success','s:25:\"The account was unlinked.\";'),
+('en','messages:unlockbtn','s:15:\"Unlock database\";'),
+('en','messages:unlockconfirm','s:42:\"Yes, I really want to unlock the database.\";'),
+('en','messages:unlockdb','s:15:\"Unlock database\";'),
+('en','messages:unlockdbsuccesssub','s:21:\"Database lock removed\";'),
+('en','messages:unlockdbsuccesstext','s:31:\"The database has been unlocked.\";'),
+('en','messages:unlockdbtext','s:227:\"Unlocking the database will restore the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.\nPlease confirm that this is what you intend to do.\";'),
+('en','messages:unpatrolledletter','s:1:\"!\";'),
+('en','messages:unprotect','s:17:\"Change protection\";'),
+('en','messages:unprotected-js','s:151:\"For security reasons JavaScript cannot be loaded from unprotected pages. Please only create javascript in the MediaWiki: namespace or as a User subpage\";'),
+('en','messages:unprotectedarticle','s:32:\"removed protection from \"[[$1]]\"\";'),
+('en','messages:unprotectedarticle-comment','s:46:\"{{GENDER:$2|Removed protection}} from \"[[$1]]\"\";'),
+('en','messages:unregistered-user-config','s:100:\"For security reasons JavaScript, CSS and JSON user subpages cannot be loaded for unregistered users.\";'),
+('en','messages:unstrip-depth-category','s:47:\"Pages where the unstrip depth limit is exceeded\";'),
+('en','messages:unstrip-depth-category-desc','s:41:\"The page exceeds the unstrip depth limit.\";'),
+('en','messages:unstrip-depth-warning','s:33:\"Unstrip depth limit exceeded ($1)\";'),
+('en','messages:unstrip-size-category','s:46:\"Pages where the unstrip size limit is exceeded\";'),
+('en','messages:unstrip-size-category-desc','s:40:\"The page exceeds the unstrip size limit.\";'),
+('en','messages:unstrip-size-warning','s:32:\"Unstrip size limit exceeded ($1)\";'),
+('en','messages:unsupported-content-diff','s:45:\"Diffs are not supported for content model $1.\";'),
+('en','messages:unsupported-content-diff2','s:74:\"Diffs between the content models $1 and $2 are not supported on this wiki.\";'),
+('en','messages:unsupported-content-model','s:73:\"Warning: Content model $1 is not supported on this wiki.\";'),
+('en','messages:unusedcategories','s:17:\"Unused categories\";'),
+('en','messages:unusedcategories-summary','s:0:\"\";'),
+('en','messages:unusedcategoriestext','s:89:\"The following category pages exist, although no other page or category makes use of them.\";'),
+('en','messages:unusedimages','s:12:\"Unused files\";'),
+('en','messages:unusedimages-summary','s:0:\"\";'),
+('en','messages:unusedimagestext','s:191:\"The following files exist but are not embedded in any page.\nPlease note that other web sites may link to a file with a direct URL, and so may still be listed here despite being in active use.\";'),
+('en','messages:unusedimagestext-categorizedimgisused','s:281:\"The following files exist but are not embedded in any page. Categorized images are considered as used despite that they are not embedded in any page.\nPlease note that other web sites may link to a file with a direct URL, and so may still be listed here despite being in active use.\";'),
+('en','messages:unusedtemplates','s:16:\"Unused templates\";'),
+('en','messages:unusedtemplates-summary','s:0:\"\";'),
+('en','messages:unusedtemplatestext','s:170:\"This page lists all pages in the {{ns:template}} namespace that are not included in another page.\nRemember to check for other links to the templates before deleting them.\";'),
+('en','messages:unusedtemplateswlh','s:11:\"other links\";'),
+('en','messages:unwatch','s:7:\"Unwatch\";'),
+('en','messages:unwatchedpages','s:15:\"Unwatched pages\";'),
+('en','messages:unwatchedpages-summary','s:0:\"\";'),
+('en','messages:unwatching','s:13:\"Unwatching...\";'),
+('en','messages:unwatchthispage','s:13:\"Stop watching\";'),
+('en','messages:updated','s:9:\"(Updated)\";'),
+('en','messages:updatedmarker','s:29:\"updated since your last visit\";'),
+('en','messages:updatewatchlist','s:16:\"Update watchlist\";'),
+('en','messages:upload','s:11:\"Upload file\";'),
+('en','messages:upload-copy-upload-invalid-domain','s:48:\"Copy uploads are not available from this domain.\";'),
+('en','messages:upload-curl-error28','s:14:\"Upload timeout\";'),
+('en','messages:upload-curl-error28-text','s:138:\"The site took too long to respond.\nPlease check the site is up, wait a short while and try again.\nYou may want to try at a less busy time.\";'),
+('en','messages:upload-curl-error6','s:19:\"Could not reach URL\";'),
+('en','messages:upload-curl-error6-text','s:102:\"The URL provided could not be reached.\nPlease double-check that the URL is correct and the site is up.\";'),
+('en','messages:upload-default-description','s:1:\"-\";'),
+('en','messages:upload-description','s:16:\"File description\";'),
+('en','messages:upload-dialog-button-back','s:4:\"Back\";'),
+('en','messages:upload-dialog-button-cancel','s:6:\"Cancel\";'),
+('en','messages:upload-dialog-button-done','s:4:\"Done\";'),
+('en','messages:upload-dialog-button-save','s:4:\"Save\";'),
+('en','messages:upload-dialog-button-upload','s:6:\"Upload\";'),
+('en','messages:upload-dialog-disabled','s:57:\"File uploads using this dialog are disabled on this wiki.\";'),
+('en','messages:upload-dialog-title','s:11:\"Upload file\";'),
+('en','messages:upload-disallowed-here','s:31:\"You cannot overwrite this file.\";'),
+('en','messages:upload-file-error','s:14:\"Internal error\";'),
+('en','messages:upload-file-error-text','s:145:\"An internal error occurred when attempting to create a temporary file on the server.\nPlease contact an [[Special:ListUsers/sysop|administrator]].\";'),
+('en','messages:upload-foreign-cant-load-config','s:81:\"Failed to load the configuration for file uploads to the foreign file repository.\";'),
+('en','messages:upload-foreign-cant-upload','s:85:\"This wiki is not configured to upload files to the requested foreign file repository.\";'),
+('en','messages:upload-form-label-infoform-categories','s:10:\"Categories\";'),
+('en','messages:upload-form-label-infoform-date','s:4:\"Date\";'),
+('en','messages:upload-form-label-infoform-description','s:11:\"Description\";'),
+('en','messages:upload-form-label-infoform-description-tooltip','s:135:\"Briefly describe everything notable about the work.\nFor a photo, mention the main things that are depicted, the occasion, or the place.\";'),
+('en','messages:upload-form-label-infoform-name','s:4:\"Name\";'),
+('en','messages:upload-form-label-infoform-name-tooltip','s:147:\"A unique descriptive title for the file, which will serve as a filename. You may use plain language with spaces. Do not include the file extension.\";'),
+('en','messages:upload-form-label-infoform-title','s:7:\"Details\";'),
+('en','messages:upload-form-label-not-own-work-local-generic-foreign','s:139:\"You may also want to try using [[Special:Upload|the upload page on {{SITENAME}}]], if this file can be uploaded there under their policies.\";'),
+('en','messages:upload-form-label-not-own-work-local-generic-local','s:68:\"You may also want to try [[Special:Upload|the default upload page]].\";'),
+('en','messages:upload-form-label-not-own-work-message-generic-foreign','s:133:\"If you are not able to upload this file under the policies of the shared repository, please close this dialog and try another method.\";'),
+('en','messages:upload-form-label-not-own-work-message-generic-local','s:124:\"If you are not able to upload this file under the policies of {{SITENAME}}, please close this dialog and try another method.\";'),
+('en','messages:upload-form-label-own-work','s:19:\"This is my own work\";'),
+('en','messages:upload-form-label-own-work-message-generic-foreign','s:156:\"I understand that I am uploading this file to a shared repository. I confirm that I am doing so following the terms of service and licensing policies there.\";'),
+('en','messages:upload-form-label-own-work-message-generic-local','s:110:\"I confirm that I am uploading this file following the terms of service and licensing policies on {{SITENAME}}.\";'),
+('en','messages:upload-form-label-usage-filename','s:9:\"File name\";'),
+('en','messages:upload-form-label-usage-title','s:5:\"Usage\";'),
+('en','messages:upload-http-error','s:26:\"An HTTP error occurred: $1\";'),
+('en','messages:upload-maxfilesize','s:21:\"Maximum file size: $1\";'),
+('en','messages:upload-misc-error','s:20:\"Unknown upload error\";'),
+('en','messages:upload-misc-error-text','s:189:\"An unknown error occurred during the upload.\nPlease verify that the URL is valid and accessible and try again.\nIf the problem persists, contact an [[Special:ListUsers/sysop|administrator]].\";'),
+('en','messages:upload-options','s:14:\"Upload options\";'),
+('en','messages:upload-permitted','s:44:\"Permitted file {{PLURAL:$2|type|types}}: $1.\";'),
+('en','messages:upload-preferred','s:44:\"Preferred file {{PLURAL:$2|type|types}}: $1.\";'),
+('en','messages:upload-prohibited','s:45:\"Prohibited file {{PLURAL:$2|type|types}}: $1.\";'),
+('en','messages:upload-proto-error','s:18:\"Incorrect protocol\";'),
+('en','messages:upload-proto-error-text','s:87:\"Remote upload requires URLs beginning with http:// or ftp://.\";'),
+('en','messages:upload-recreate-warning','s:148:\"Warning: A file by that name has been deleted or moved.\n\nThe deletion and move log for this page are provided here for convenience:\";'),
+('en','messages:upload-scripted-dtd','s:68:\"Cannot upload SVG files that contain a non-standard DTD declaration.\";'),
+('en','messages:upload-scripted-pi-callback','s:73:\"Cannot upload a file that contains XML-stylesheet processing instruction.\";'),
+('en','messages:upload-source','s:11:\"Source file\";'),
+('en','messages:upload-summary','s:0:\"\";'),
+('en','messages:upload-too-many-redirects','s:36:\"The URL contained too many redirects\";'),
+('en','messages:upload-tryagain','s:32:\"Submit modified file description\";'),
+('en','messages:upload-tryagain-nostash','s:48:\"Submit re-uploaded file and modified description\";'),
+('en','messages:upload_directory_missing','s:79:\"The upload directory ($1) is missing and could not be created by the webserver.\";'),
+('en','messages:upload_directory_read_only','s:59:\"The upload directory ($1) is not writable by the webserver.\";'),
+('en','messages:upload_source_file','s:37:\"(your chosen file from your computer)\";'),
+('en','messages:upload_source_url','s:56:\"(your chosen file from a valid, publicly accessible URL)\";'),
+('en','messages:uploadbtn','s:11:\"Upload file\";'),
+('en','messages:uploaddisabled','s:17:\"Uploads disabled.\";'),
+('en','messages:uploaddisabledtext','s:26:\"File uploads are disabled.\";'),
+('en','messages:uploaded-animate-svg','s:133:\"Found \"animate\" tag that might be changing href, using the \"from\" attribute <$1 $2=\"$3\"> in the uploaded SVG file.\";'),
+('en','messages:uploaded-event-handler-on-svg','s:82:\"Setting event-handler attributes $1=\"$2\" is not allowed in SVG files.\";'),
+('en','messages:uploaded-hostile-svg','s:59:\"Found unsafe CSS in the style element of uploaded SVG file.\";'),
+('en','messages:uploaded-href-attribute-svg','s:279:\" elements can only link (href) to data: (embedded file), http:// or https://, or fragment (#, same-document) targets. For other elements, such as <$1 $2=\"$3\">.\";'),
+('en','messages:uploaded-href-unsafe-target-svg','s:95:\"Found href to unsafe data: URI target <$1 $2=\"$3\"> in the uploaded SVG file.\";'),
+('en','messages:uploaded-image-filter-svg','s:86:\"Found image filter with URL: <$1 $2=\"$3\"> in the uploaded SVG file.\";'),
+('en','messages:uploaded-remote-url-svg','s:114:\"SVG that sets any style attribute with remote URL is blocked. Found $1=\"$2\" in the uploaded SVG file.\";'),
+('en','messages:uploaded-script-svg','s:55:\"Found scriptable element \"$1\" in the uploaded SVG file.\";'),
+('en','messages:uploaded-setting-event-handler-svg','s:108:\"Setting event-handler attributes is blocked, found <$1 $2=\"$3\"> in the uploaded SVG file.\";'),
+('en','messages:uploaded-setting-handler-svg','s:126:\"SVG that sets the \"handler\" attribute with remote/data/script is blocked. Found $1=\"$2\" in the uploaded SVG file.\";'),
+('en','messages:uploaded-setting-href-svg','s:73:\"Using the \"set\" tag to add \"href\" attribute to parent element is blocked.\";'),
+('en','messages:uploaded-wrong-setting-svg','s:148:\"Using the \"set\" tag to add a remote/data/script target to any attribute is blocked. Found <set to=\"$1\"> in the uploaded SVG file.\";'),
+('en','messages:uploadedimage','s:17:\"uploaded \"[[$1]]\"\";'),
+('en','messages:uploaderror','s:12:\"Upload error\";'),
+('en','messages:uploadfooter','s:1:\"-\";'),
+('en','messages:uploadinvalidxml','s:49:\"The XML in the uploaded file could not be parsed.\";'),
+('en','messages:uploadjava','s:153:\"The file is a ZIP file that contains a Java .class file.\nUploading Java files is not allowed because they can cause security restrictions to be bypassed.\";'),
+('en','messages:uploadlogpage','s:10:\"Upload log\";'),
+('en','messages:uploadlogpagetext','s:126:\"Below is a list of the most recent file uploads.\nSee the [[Special:NewFiles|gallery of new files]] for a more visual overview.\";'),
+('en','messages:uploadnewversion-linktext','s:33:\"Upload a new version of this file\";'),
+('en','messages:uploadnologin','s:13:\"Not logged in\";'),
+('en','messages:uploadnologintext','s:26:\"Please $1 to upload files.\";'),
+('en','messages:uploadscripted','s:92:\"This file contains HTML or script code that may be erroneously interpreted by a web browser.\";'),
+('en','messages:uploadscriptednamespace','s:66:\"This SVG file contains an illegal namespace \"[[ {{ns:file}}:File.jpg]] to use the full version of the file\n* [[ {{ns:file}}:File.png|200px|thumb|left|Caption]] to use a 200-pixel-wide rendition in a box in the left margin with the text \"Caption\" below\n* [[ {{ns:media}}:File.ogg]] for directly linking to the file without displaying the file\";'),
+('en','messages:uploadvirus','s:38:\"The file contains a virus!\nDetails: $1\";'),
+('en','messages:uploadwarning','s:14:\"Upload warning\";'),
+('en','messages:uploadwarning-text','s:55:\"Please modify the file description below and try again.\";'),
+('en','messages:uploadwarning-text-nostash','s:70:\"Please re-upload the file, modify the description below and try again.\";'),
+('en','messages:user-mail-no-addy','s:45:\"Tried to send email without an email address.\";'),
+('en','messages:user-mail-no-body','s:61:\"Tried to send email with an empty or unreasonably short body.\";'),
+('en','messages:usercreated','s:33:\"{{GENDER:$3|Created}} on $1 at $2\";'),
+('en','messages:usercssispublic','s:99:\"Please note: CSS subpages should not contain confidential data as they are viewable by other users.\";'),
+('en','messages:usercsspreview','s:100:\"Remember that you are only previewing your user CSS.\nIt has not yet been published!\";'),
+('en','messages:usercssyoucanpreview','s:98:\"Tip: Use the \"{{int:showpreview}}\" button to test your new CSS before publishing.\";'),
+('en','messages:usereditcount','s:27:\"$1 {{PLURAL:$1|edit|edits}}\";'),
+('en','messages:userexists','s:64:\"Username entered already in use.\nPlease choose a different name.\";'),
+('en','messages:userinvalidconfigtitle','s:179:\"Warning: There is no skin \"$1\".\nCustom .css, .json, and .js pages use a lowercase title, e.g. {{ns:user}}:Foo/vector.css as opposed to {{ns:user}}:Foo/Vector.css.\";'),
+('en','messages:userjsdangerous','s:212:\"Please note: Scripts included on this page will be run any time you load a page. Malicious code added here could result in account compromise. The code will be executed when you preview your changes to this page.\";'),
+('en','messages:userjsispublic','s:106:\"Please note: JavaScript subpages should not contain confidential data as they are viewable by other users.\";'),
+('en','messages:userjsonispublic','s:100:\"Please note: JSON subpages should not contain confidential data as they are viewable by other users.\";'),
+('en','messages:userjsonpreview','s:116:\"Remember that you are only testing/previewing your user JSON config.\nIt has not yet been published!\";'),
+('en','messages:userjsonyoucanpreview','s:99:\"Tip: Use the \"{{int:showpreview}}\" button to test your new JSON before publishing.\";'),
+('en','messages:userjspreview','s:115:\"Remember that you are only testing/previewing your user JavaScript.\nIt has not yet been published!\";'),
+('en','messages:userjsyoucanpreview','s:105:\"Tip: Use the \"{{int:showpreview}}\" button to test your new JavaScript before publishing.\";'),
+('en','messages:userlogin-createanother','s:22:\"Create another account\";'),
+('en','messages:userlogin-helplink2','s:20:\"Help with logging in\";'),
+('en','messages:userlogin-joinproject','s:17:\"Join {{SITENAME}}\";'),
+('en','messages:userlogin-loggedin','s:92:\"You are already logged in as {{GENDER:$1|$1}}.\nUse the form below to log in as another user.\";'),
+('en','messages:userlogin-noaccount','s:22:\"Don\'t have an account?\";'),
+('en','messages:userlogin-reauth','s:62:\"You must log in again to verify that you are {{GENDER:$1|$1}}.\";'),
+('en','messages:userlogin-remembermypassword','s:17:\"Keep me logged in\";'),
+('en','messages:userlogin-resetpassword-link','s:21:\"Forgot your password?\";'),
+('en','messages:userlogin-signwithsecure','s:21:\"Use secure connection\";'),
+('en','messages:userlogin-yourname','s:8:\"Username\";'),
+('en','messages:userlogin-yourname-ph','s:19:\"Enter your username\";'),
+('en','messages:userlogin-yourpassword','s:8:\"Password\";'),
+('en','messages:userlogin-yourpassword-ph','s:19:\"Enter your password\";'),
+('en','messages:userlogout','s:7:\"Log out\";'),
+('en','messages:userlogout-continue','s:23:\"Do you want to log out?\";'),
+('en','messages:userlogout-summary','s:0:\"\";'),
+('en','messages:usermaildisabled','s:19:\"User email disabled\";'),
+('en','messages:usermaildisabledtext','s:49:\"You cannot send email to other users on this wiki\";'),
+('en','messages:usermessage-editor','s:16:\"System messenger\";'),
+('en','messages:usermessage-summary','s:23:\"Leaving system message.\";'),
+('en','messages:usermessage-template','s:21:\"MediaWiki:UserMessage\";'),
+('en','messages:username','s:23:\"{{GENDER:$1|Username}}:\";'),
+('en','messages:usernameinprogress','s:75:\"An account creation for this user name is already in progress.\nPlease wait.\";'),
+('en','messages:userpage-userdoesnotexist','s:87:\"User account \"$1\" is not registered.\nPlease check if you want to create/edit this page.\";'),
+('en','messages:userpage-userdoesnotexist-view','s:36:\"User account \"$1\" is not registered.\";'),
+('en','messages:userrights','s:11:\"User rights\";'),
+('en','messages:userrights-cannot-shorten-expiry','s:152:\"You cannot bring forward the expiry of membership in group \"$1\". Only users with permission to add and remove this group can bring forward expiry times.\";'),
+('en','messages:userrights-changeable-col','s:21:\"Groups you can change\";'),
+('en','messages:userrights-conflict','s:72:\"Conflict of user rights changes! Please review and confirm your changes.\";'),
+('en','messages:userrights-editusergroup','s:30:\"Edit {{GENDER:$1|user}} groups\";'),
+('en','messages:userrights-expiry','s:8:\"Expires:\";'),
+('en','messages:userrights-expiry-current','s:10:\"Expires $1\";'),
+('en','messages:userrights-expiry-existing','s:32:\"Existing expiration time: $3, $2\";'),
+('en','messages:userrights-expiry-in-past','s:46:\"The expiry time for group \"$1\" is in the past.\";'),
+('en','messages:userrights-expiry-none','s:15:\"Does not expire\";'),
+('en','messages:userrights-expiry-options','s:91:\"1 day:1 day,1 week:1 week,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year\";'),
+('en','messages:userrights-expiry-othertime','s:11:\"Other time:\";'),
+('en','messages:userrights-groups-help','s:366:\"You may alter the groups {{GENDER:$1|this user}} is in:\n* A checked box means the user is in that group.\n* An unchecked box means the user is not in that group.\n* A * indicates that you cannot remove the group once you have added it, or vice versa.\n* A # indicates that you can only put back the expiration time of this group membership; you cannot bring it forward.\";'),
+('en','messages:userrights-groupsmember','s:10:\"Member of:\";'),
+('en','messages:userrights-groupsmember-auto','s:19:\"Implicit member of:\";'),
+('en','messages:userrights-groupsmember-type','s:2:\"$1\";'),
+('en','messages:userrights-invalid-expiry','s:42:\"The expiry time for group \"$1\" is invalid.\";'),
+('en','messages:userrights-irreversible-marker','s:3:\"$1*\";'),
+('en','messages:userrights-lookup-user','s:13:\"Select a user\";'),
+('en','messages:userrights-no-interwiki','s:62:\"You do not have permission to edit user rights on other wikis.\";'),
+('en','messages:userrights-no-shorten-expiry-marker','s:3:\"$1#\";'),
+('en','messages:userrights-nodatabase','s:43:\"Database $1 does not exist or is not local.\";'),
+('en','messages:userrights-reason','s:7:\"Reason:\";'),
+('en','messages:userrights-summary','s:0:\"\";'),
+('en','messages:userrights-systemuser','s:40:\"{{GENDER:$1|This user}} is a system user\";'),
+('en','messages:userrights-unchangeable-col','s:24:\"Groups you cannot change\";'),
+('en','messages:userrights-user-editname','s:17:\"Enter a username:\";'),
+('en','messages:userrights-viewusergroup','s:30:\"View {{GENDER:$1|user}} groups\";'),
+('en','messages:variantname-crh','s:3:\"crh\";'),
+('en','messages:variantname-crh-cyrl','s:8:\"crh-Cyrl\";'),
+('en','messages:variantname-crh-latn','s:8:\"crh-Latn\";'),
+('en','messages:variantname-gan','s:3:\"gan\";'),
+('en','messages:variantname-gan-hans','s:4:\"Hans\";'),
+('en','messages:variantname-gan-hant','s:4:\"Hant\";'),
+('en','messages:variantname-ike-cans','s:8:\"ike-Cans\";'),
+('en','messages:variantname-ike-latn','s:8:\"ike-Latn\";'),
+('en','messages:variantname-iu','s:2:\"iu\";'),
+('en','messages:variantname-kk','s:2:\"kk\";'),
+('en','messages:variantname-kk-arab','s:7:\"kk-Arab\";'),
+('en','messages:variantname-kk-cn','s:5:\"kk-CN\";'),
+('en','messages:variantname-kk-cyrl','s:7:\"kk-Cyrl\";'),
+('en','messages:variantname-kk-kz','s:5:\"kk-KZ\";'),
+('en','messages:variantname-kk-latn','s:7:\"kk-Latn\";'),
+('en','messages:variantname-kk-tr','s:5:\"kk-TR\";'),
+('en','messages:variantname-ku','s:2:\"ku\";'),
+('en','messages:variantname-ku-arab','s:7:\"ku-Arab\";'),
+('en','messages:variantname-ku-latn','s:7:\"ku-Latn\";'),
+('en','messages:variantname-shi','s:3:\"shi\";'),
+('en','messages:variantname-shi-latn','s:8:\"shi-Latn\";'),
+('en','messages:variantname-shi-tfng','s:8:\"shi-Tfng\";'),
+('en','messages:variantname-sr','s:2:\"sr\";'),
+('en','messages:variantname-sr-ec','s:7:\"sr-Cyrl\";'),
+('en','messages:variantname-sr-el','s:7:\"sr-Latn\";'),
+('en','messages:variantname-tg','s:2:\"tg\";'),
+('en','messages:variantname-tg-cyrl','s:7:\"tg-Cyrl\";'),
+('en','messages:variantname-tg-latn','s:7:\"tg-Latn\";'),
+('en','messages:variantname-tly','s:3:\"tly\";'),
+('en','messages:variantname-tly-cyrl','s:8:\"tly-Cyrl\";'),
+('en','messages:variantname-uz','s:2:\"uz\";'),
+('en','messages:variantname-uz-cyrl','s:7:\"uz-Cyrl\";'),
+('en','messages:variantname-uz-latn','s:7:\"uz-Latn\";'),
+('en','messages:variantname-zh','s:2:\"zh\";'),
+('en','messages:variantname-zh-cn','s:2:\"CN\";'),
+('en','messages:variantname-zh-hans','s:4:\"Hans\";'),
+('en','messages:variantname-zh-hant','s:4:\"Hant\";'),
+('en','messages:variantname-zh-hk','s:2:\"HK\";'),
+('en','messages:variantname-zh-mo','s:2:\"MO\";'),
+('en','messages:variantname-zh-my','s:2:\"MY\";'),
+('en','messages:variantname-zh-sg','s:2:\"SG\";'),
+('en','messages:variantname-zh-tw','s:2:\"TW\";'),
+('en','messages:variants','s:8:\"Variants\";'),
+('en','messages:vector-action-addsection','s:9:\"Add topic\";'),
+('en','messages:vector-action-delete','s:6:\"Delete\";'),
+('en','messages:vector-action-move','s:4:\"Move\";'),
+('en','messages:vector-action-protect','s:7:\"Protect\";'),
+('en','messages:vector-action-toggle-sidebar','s:14:\"Toggle sidebar\";'),
+('en','messages:vector-action-undelete','s:8:\"Undelete\";'),
+('en','messages:vector-action-unprotect','s:17:\"Change protection\";'),
+('en','messages:vector-anon-user-menu-pages','s:28:\"Pages for logged out editors\";'),
+('en','messages:vector-anon-user-menu-pages-label','s:24:\"Learn more about editing\";'),
+('en','messages:vector-anon-user-menu-pages-learn','s:10:\"learn more\";'),
+('en','messages:vector-intro-page','s:17:\"Help:Introduction\";'),
+('en','messages:vector-jumptocontent','s:15:\"Jump to content\";'),
+('en','messages:vector-jumptonavigation','s:18:\"Jump to navigation\";'),
+('en','messages:vector-jumptosearch','s:14:\"Jump to search\";'),
+('en','messages:vector-language-button-aria-label','s:89:\"Go to an article in another language. Available in {{PLURAL:$1|$1 language|$1 languages}}\";'),
+('en','messages:vector-language-button-label','s:38:\"{{PLURAL:$1|$1 language|$1 languages}}\";'),
+('en','messages:vector-language-redirect-to-top','s:124:\"On this {{SITENAME}} the language links are at the top of the page across from the article title. [[#p-lang-btn|Go to top]].\";'),
+('en','messages:vector-language-variant-switcher-label','s:23:\"Change language variant\";'),
+('en','messages:vector-languages','s:9:\"Languages\";'),
+('en','messages:vector-main-menu-tooltip','s:9:\"Main menu\";'),
+('en','messages:vector-menu-checkbox-collapsed','s:9:\"collapsed\";'),
+('en','messages:vector-menu-checkbox-expanded','s:8:\"expanded\";'),
+('en','messages:vector-more-actions','s:4:\"More\";'),
+('en','messages:vector-opt-out','s:18:\"Switch to old look\";'),
+('en','messages:vector-opt-out-tooltip','s:75:\"Change your settings to go back to the old look of the skin (legacy Vector)\";'),
+('en','messages:vector-personal-more-label','s:10:\"User links\";'),
+('en','messages:vector-search-loader','s:26:\"Loading search suggestions\";'),
+('en','messages:vector-searchsuggest-containing','s:111:\"Search for pages containing $1\";'),
+('en','messages:vector-skin-desc','s:195:\"Provides 2 Vector skins:\n* 2011 - The Modern version of MonoBook with fresh look and many usability improvements.\n* 2022 - The Vector built as part of the WMF [[mw:Desktop Improvements]] project.\";'),
+('en','messages:vector-specialversion-name','s:6:\"Vector\";'),
+('en','messages:vector-view-create','s:6:\"Create\";'),
+('en','messages:vector-view-edit','s:4:\"Edit\";'),
+('en','messages:vector-view-history','s:12:\"View history\";'),
+('en','messages:vector-view-view','s:4:\"Read\";'),
+('en','messages:vector-view-viewsource','s:11:\"View source\";'),
+('en','messages:vector.css','s:62:\"/* All CSS here will be loaded for users of the Vector skin */\";'),
+('en','messages:vector.js','s:69:\"/* All JavaScript here will be loaded for users of the Vector skin */\";'),
+('en','messages:verification-error','s:41:\"This file did not pass file verification.\";'),
+('en','messages:version','s:7:\"Version\";'),
+('en','messages:version-antispam','s:15:\"Spam prevention\";'),
+('en','messages:version-api','s:3:\"API\";'),
+('en','messages:version-credits-not-found','s:61:\"No detailed credits information was found for this extension.\";'),
+('en','messages:version-credits-summary','s:105:\"We would like to recognize the following persons for their contribution to [[Special:Version|MediaWiki]].\";'),
+('en','messages:version-credits-title','s:14:\"Credits for $1\";'),
+('en','messages:version-db-mariadb-url','s:20:\"https://mariadb.org/\";'),
+('en','messages:version-db-mysql-url','s:22:\"https://www.mysql.com/\";'),
+('en','messages:version-db-percona-url','s:46:\"http://www.percona.com/software/percona-server\";'),
+('en','messages:version-db-postgres-url','s:26:\"http://www.postgresql.org/\";'),
+('en','messages:version-db-sqlite-url','s:23:\"https://www.sqlite.org/\";'),
+('en','messages:version-editors','s:7:\"Editors\";'),
+('en','messages:version-entrypoints','s:16:\"Entry point URLs\";'),
+('en','messages:version-entrypoints-api-php','s:74:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:api.php api.php]\";'),
+('en','messages:version-entrypoints-articlepath','s:86:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgArticlePath Article path]\";'),
+('en','messages:version-entrypoints-header-entrypoint','s:11:\"Entry point\";'),
+('en','messages:version-entrypoints-header-url','s:3:\"URL\";'),
+('en','messages:version-entrypoints-index-php','s:78:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:index.php index.php]\";'),
+('en','messages:version-entrypoints-rest-php','s:76:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:rest.php rest.php]\";'),
+('en','messages:version-entrypoints-scriptpath','s:84:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgScriptPath Script path]\";'),
+('en','messages:version-ext-colheader-credits','s:7:\"Authors\";'),
+('en','messages:version-ext-colheader-description','s:11:\"Description\";'),
+('en','messages:version-ext-colheader-license','s:7:\"License\";'),
+('en','messages:version-ext-colheader-name','s:9:\"Extension\";'),
+('en','messages:version-ext-colheader-version','s:7:\"Version\";'),
+('en','messages:version-ext-license','s:7:\"License\";'),
+('en','messages:version-extensions','s:20:\"Installed extensions\";'),
+('en','messages:version-hook-name','s:9:\"Hook name\";'),
+('en','messages:version-hook-subscribedby','s:13:\"Subscribed by\";'),
+('en','messages:version-hooks','s:5:\"Hooks\";'),
+('en','messages:version-libraries','s:19:\"Installed libraries\";'),
+('en','messages:version-libraries-authors','s:7:\"Authors\";'),
+('en','messages:version-libraries-description','s:11:\"Description\";'),
+('en','messages:version-libraries-library','s:7:\"Library\";'),
+('en','messages:version-libraries-license','s:7:\"License\";'),
+('en','messages:version-libraries-version','s:7:\"Version\";'),
+('en','messages:version-license','s:17:\"MediaWiki License\";'),
+('en','messages:version-license-info','s:820:\"MediaWiki is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nMediaWiki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received [{{SERVER}}{{SCRIPTPATH}}/COPYING a copy of the GNU General Public License] along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA or [//www.gnu.org/licenses/old-licenses/gpl-2.0.html read it online].\";'),
+('en','messages:version-license-not-found','s:61:\"No detailed license information was found for this extension.\";'),
+('en','messages:version-license-title','s:14:\"License for $1\";'),
+('en','messages:version-mediahandlers','s:14:\"Media handlers\";'),
+('en','messages:version-no-ext-name','s:9:\"[no name]\";'),
+('en','messages:version-other','s:5:\"Other\";'),
+('en','messages:version-parser-extensiontags','s:21:\"Parser extension tags\";'),
+('en','messages:version-parser-function-hooks','s:21:\"Parser function hooks\";'),
+('en','messages:version-parserhooks','s:12:\"Parser hooks\";'),
+('en','messages:version-poweredby-credits','s:105:\"This wiki is powered by [https://www.mediawiki.org/ MediaWiki], copyright © 2001-$1 $2.\";'),
+('en','messages:version-poweredby-others','s:6:\"others\";'),
+('en','messages:version-poweredby-translators','s:29:\"translatewiki.net translators\";'),
+('en','messages:version-poweredby-various','s:15:\"Various authors\";'),
+('en','messages:version-skin-colheader-name','s:4:\"Skin\";'),
+('en','messages:version-skins','s:15:\"Installed skins\";'),
+('en','messages:version-software','s:18:\"Installed software\";'),
+('en','messages:version-software-product','s:7:\"Product\";'),
+('en','messages:version-software-version','s:7:\"Version\";'),
+('en','messages:version-specialpages','s:13:\"Special pages\";'),
+('en','messages:version-summary','s:0:\"\";'),
+('en','messages:version-variables','s:9:\"Variables\";'),
+('en','messages:version-version','s:4:\"($1)\";'),
+('en','messages:versionrequired','s:32:\"Version $1 of MediaWiki required\";'),
+('en','messages:versionrequiredtext','s:91:\"Version $1 of MediaWiki is required to use this page.\nSee [[Special:Version|version page]].\";'),
+('en','messages:video-dims','s:12:\"$1, $2 × $3\";'),
+('en','messages:view','s:4:\"View\";'),
+('en','messages:view-create','s:6:\"Create\";'),
+('en','messages:view-create-local','s:21:\"Add local description\";'),
+('en','messages:view-edit','s:4:\"Edit\";'),
+('en','messages:view-edit-local','s:22:\"Edit local description\";'),
+('en','messages:view-foreign','s:10:\"View on $1\";'),
+('en','messages:view-history','s:12:\"View history\";'),
+('en','messages:view-pool-contention','s:15:\"pool contention\";'),
+('en','messages:view-pool-dirty-output','s:23:\"parser cache is expired\";'),
+('en','messages:view-pool-error','s:159:\"Sorry, the servers are overloaded at the moment.\nToo many users are trying to view this page.\nPlease wait a while before you try to access this page again.\n\n$1\";'),
+('en','messages:view-pool-timeout','s:13:\"pool overload\";'),
+('en','messages:view-view','s:4:\"Read\";'),
+('en','messages:viewcount','s:56:\"This page has been accessed {{PLURAL:$1|once|$1 times}}.\";'),
+('en','messages:viewdeleted','s:8:\"View $1?\";'),
+('en','messages:viewdeleted_short','s:52:\"View {{PLURAL:$1|one deleted edit|$1 deleted edits}}\";'),
+('en','messages:viewdeletedpage','s:18:\"View deleted pages\";'),
+('en','messages:viewhelppage','s:14:\"View help page\";'),
+('en','messages:viewinguserrights','s:76:\"Viewing user groups of {{GENDER:$1|user}} [[User:$1|$1]] $2\";'),
+('en','messages:viewpagelogs','s:23:\"View logs for this page\";'),
+('en','messages:viewpagelogs-lowercase','s:23:\"view logs for this page\";'),
+('en','messages:viewprevnext','s:40:\"View ($1 {{int:pipe-separator}} $2) ($3)\";'),
+('en','messages:views','s:5:\"Views\";'),
+('en','messages:viewsource','s:11:\"View source\";'),
+('en','messages:viewsource-title','s:18:\"View source for $1\";'),
+('en','messages:viewsourcelink','s:11:\"view source\";'),
+('en','messages:viewsourceold','s:11:\"view source\";'),
+('en','messages:viewsourcetext','s:46:\"You can view and copy the source of this page.\";'),
+('en','messages:viewtalkpage','s:15:\"View discussion\";'),
+('en','messages:viewyourtext','s:77:\"You can view and copy the source of your edits to this page.\";'),
+('en','messages:virus-badscanner','s:53:\"Bad configuration: Unknown virus scanner: $1\";'),
+('en','messages:virus-scanfailed','s:21:\"scan failed (code $1)\";'),
+('en','messages:virus-unknownscanner','s:18:\"unknown antivirus:\";'),
+('en','messages:visualeditor','s:12:\"VisualEditor\";'),
+('en','messages:visualeditor-advancedsettings-tool','s:17:\"Advanced settings\";'),
+('en','messages:visualeditor-aliencontextitem-title','s:4:\"Item\";'),
+('en','messages:visualeditor-aliennode-tooltip','s:62:\"Sorry, this element can only be edited in source mode for now.\";'),
+('en','messages:visualeditor-align-desc-center','s:6:\"center\";'),
+('en','messages:visualeditor-align-desc-default','s:7:\"default\";'),
+('en','messages:visualeditor-align-desc-left','s:4:\"left\";'),
+('en','messages:visualeditor-align-desc-none','s:4:\"none\";'),
+('en','messages:visualeditor-align-desc-right','s:5:\"right\";'),
+('en','messages:visualeditor-align-widget-center','s:6:\"Center\";'),
+('en','messages:visualeditor-align-widget-default','s:7:\"Default\";'),
+('en','messages:visualeditor-align-widget-left','s:4:\"Left\";'),
+('en','messages:visualeditor-align-widget-right','s:5:\"Right\";'),
+('en','messages:visualeditor-alignablecontextitem-title','s:9:\"Alignment\";'),
+('en','messages:visualeditor-annotationbutton-big-tooltip','s:3:\"Big\";'),
+('en','messages:visualeditor-annotationbutton-bold-tooltip','s:4:\"Bold\";'),
+('en','messages:visualeditor-annotationbutton-code-tooltip','s:13:\"Computer code\";'),
+('en','messages:visualeditor-annotationbutton-italic-tooltip','s:6:\"Italic\";'),
+('en','messages:visualeditor-annotationbutton-language-tooltip','s:8:\"Language\";'),
+('en','messages:visualeditor-annotationbutton-link-tooltip','s:4:\"Link\";'),
+('en','messages:visualeditor-annotationbutton-small-tooltip','s:5:\"Small\";'),
+('en','messages:visualeditor-annotationbutton-strikethrough-tooltip','s:13:\"Strikethrough\";'),
+('en','messages:visualeditor-annotationbutton-subscript-tooltip','s:9:\"Subscript\";'),
+('en','messages:visualeditor-annotationbutton-superscript-tooltip','s:11:\"Superscript\";'),
+('en','messages:visualeditor-annotationbutton-underline-tooltip','s:9:\"Underline\";'),
+('en','messages:visualeditor-annotations-default-description','s:53:\"This part of the page is part of an annotation range.\";'),
+('en','messages:visualeditor-annotations-default-end','s:26:\"End of the annotated range\";'),
+('en','messages:visualeditor-annotations-default-start','s:28:\"Start of the annotated range\";'),
+('en','messages:visualeditor-annotations-extended-documentation','s:242:\"This annotation range has been extended because the content it enclosed was not well-nested. It is recommended to ensure that the annotated content is well-nested before editing it; otherwise, a larger range than expected might get annotated.\";'),
+('en','messages:visualeditor-autosave-modified-prompt-accept','s:11:\"Resume edit\";'),
+('en','messages:visualeditor-autosave-modified-prompt-message','s:168:\"This page was edited since you last loaded it. Would {{GENDER:|you}} like to resume {{GENDER:|your}} edit of the old version, or start a new edit of the latest version?\";'),
+('en','messages:visualeditor-autosave-modified-prompt-reject','s:16:\"Start a new edit\";'),
+('en','messages:visualeditor-autosave-modified-prompt-title','s:29:\"Resume {{GENDER:|your}} edit?\";'),
+('en','messages:visualeditor-autosave-not-recovered-text','s:44:\"Your unsaved changes could not be recovered.\";'),
+('en','messages:visualeditor-autosave-not-recovered-title','s:22:\"Change recovery failed\";'),
+('en','messages:visualeditor-autosave-recovered-text','s:55:\"Your unsaved changes have been automatically recovered.\";'),
+('en','messages:visualeditor-autosave-recovered-title','s:17:\"Changes recovered\";'),
+('en','messages:visualeditor-backbutton-tooltip','s:7:\"Go back\";'),
+('en','messages:visualeditor-beta-warning','s:70:\"If you encounter any technical issues as you edit, please report them.\";'),
+('en','messages:visualeditor-browserwarning','s:73:\"You are using a browser which is not officially supported by this editor.\";'),
+('en','messages:visualeditor-ca-createlocaldescriptionsource','s:28:\"Add local description source\";'),
+('en','messages:visualeditor-ca-createsource','s:13:\"Create source\";'),
+('en','messages:visualeditor-ca-editlocaldescriptionsource','s:29:\"Edit local description source\";'),
+('en','messages:visualeditor-ca-editsource','s:11:\"Edit source\";'),
+('en','messages:visualeditor-ca-editsource-section','s:11:\"edit source\";'),
+('en','messages:visualeditor-ca-ve-create','s:12:\"VisualEditor\";'),
+('en','messages:visualeditor-ca-ve-edit','s:12:\"VisualEditor\";'),
+('en','messages:visualeditor-ca-ve-edit-section','s:12:\"VisualEditor\";'),
+('en','messages:visualeditor-categories-tool','s:10:\"Categories\";'),
+('en','messages:visualeditor-changedesc-align','s:31:\"Alignment changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-changed','s:24:\"$1 changed from $2 to $3\";'),
+('en','messages:visualeditor-changedesc-changed-diff','s:14:\"$1 changed: $2\";'),
+('en','messages:visualeditor-changedesc-comment','s:29:\"Comment changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-comment-diff','s:19:\"Comment changed: $1\";'),
+('en','messages:visualeditor-changedesc-direction','s:40:\"Direction override changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-image-size','s:26:\"Size changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-language','s:30:\"Language changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-link-added','s:14:\"Link added: $1\";'),
+('en','messages:visualeditor-changedesc-link-href','s:33:\"Link target changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-link-href-diff','s:23:\"Link target changed: $1\";'),
+('en','messages:visualeditor-changedesc-link-removed','s:16:\"Link removed: $1\";'),
+('en','messages:visualeditor-changedesc-list-indent','s:31:\"List item indentation increased\";'),
+('en','messages:visualeditor-changedesc-list-outdent','s:31:\"List item indentation decreased\";'),
+('en','messages:visualeditor-changedesc-mwlanguagevariant','s:31:\"Language variant markup changed\";'),
+('en','messages:visualeditor-changedesc-mwredirect','s:37:\"Redirect target changed from $1 to $2\";'),
+('en','messages:visualeditor-changedesc-mwtransclusion','s:27:\"Template parameters changed\";'),
+('en','messages:visualeditor-changedesc-no-key','s:16:\"$1 changed to $2\";'),
+('en','messages:visualeditor-changedesc-set','s:12:\"$1 set to $2\";'),
+('en','messages:visualeditor-changedesc-textstyle-added','s:22:\"Text styling added: $1\";'),
+('en','messages:visualeditor-changedesc-textstyle-removed','s:24:\"Text styling removed: $1\";'),
+('en','messages:visualeditor-changedesc-unknown','s:10:\"$1 changed\";'),
+('en','messages:visualeditor-changedesc-unset','s:16:\"$1 unset from $2\";'),
+('en','messages:visualeditor-changedir','s:21:\"Change directionality\";'),
+('en','messages:visualeditor-changedir-tool-ltr','s:21:\"View as left-to-right\";'),
+('en','messages:visualeditor-changedir-tool-rtl','s:21:\"View as right-to-left\";'),
+('en','messages:visualeditor-clearbutton-tooltip','s:6:\"Remove\";'),
+('en','messages:visualeditor-clipboard-copy','s:4:\"Copy\";'),
+('en','messages:visualeditor-clipboard-copy-fail','s:28:\"Failed to copy to clipboard.\";'),
+('en','messages:visualeditor-clipboard-copy-success','s:20:\"Copied to clipboard.\";'),
+('en','messages:visualeditor-clipboard-cut','s:3:\"Cut\";'),
+('en','messages:visualeditor-clipboard-paste','s:5:\"Paste\";'),
+('en','messages:visualeditor-clipboard-paste-special','s:19:\"Paste as plain text\";'),
+('en','messages:visualeditor-command-dialog-cancel','s:21:\"Close / cancel change\";'),
+('en','messages:visualeditor-command-dialog-confirm','s:14:\"Confirm change\";'),
+('en','messages:visualeditor-command-dialog-focus-context','s:30:\"Move focus to contextual popup\";'),
+('en','messages:visualeditor-commentannotationcontextitem-comment','s:7:\"Comment\";'),
+('en','messages:visualeditor-commentinspector-edit','s:12:\"Edit comment\";'),
+('en','messages:visualeditor-commentinspector-title','s:7:\"Comment\";'),
+('en','messages:visualeditor-commentinspector-tooltip','s:7:\"Comment\";'),
+('en','messages:visualeditor-content-select-all','s:10:\"Select all\";'),
+('en','messages:visualeditor-contextitemwidget-label-close','s:5:\"Close\";'),
+('en','messages:visualeditor-contextitemwidget-label-remove','s:6:\"Delete\";'),
+('en','messages:visualeditor-contextitemwidget-label-secondary','s:4:\"Edit\";'),
+('en','messages:visualeditor-contextitemwidget-label-view','s:4:\"View\";'),
+('en','messages:visualeditor-debugbar-close','s:5:\"Close\";'),
+('en','messages:visualeditor-debugbar-inputdebug','s:15:\"Input debugging\";'),
+('en','messages:visualeditor-debugbar-logrange','s:12:\"Log selected\";'),
+('en','messages:visualeditor-debugbar-showmodel','s:10:\"Show model\";'),
+('en','messages:visualeditor-debugbar-showtransactions','s:17:\"Show transactions\";'),
+('en','messages:visualeditor-debugbar-startfilibuster','s:10:\"Filibuster\";'),
+('en','messages:visualeditor-debugbar-stopfilibuster','s:15:\"Stop Filibuster\";'),
+('en','messages:visualeditor-debugbar-testsquasher','s:13:\"Test squasher\";'),
+('en','messages:visualeditor-debugbar-updatemodel','s:17:\"Update on changes\";'),
+('en','messages:visualeditor-desc','s:27:\"Visual editor for MediaWiki\";'),
+('en','messages:visualeditor-descriptionpagelink','s:20:\"Project:VisualEditor\";'),
+('en','messages:visualeditor-dialog-action-apply','s:13:\"Apply changes\";'),
+('en','messages:visualeditor-dialog-action-cancel','s:6:\"Cancel\";'),
+('en','messages:visualeditor-dialog-action-done','s:4:\"Done\";'),
+('en','messages:visualeditor-dialog-action-goback','s:7:\"Go back\";'),
+('en','messages:visualeditor-dialog-action-insert','s:6:\"Insert\";'),
+('en','messages:visualeditor-dialog-command-help-title','s:18:\"Keyboard shortcuts\";'),
+('en','messages:visualeditor-dialog-error','s:23:\"Something went wrong…\";'),
+('en','messages:visualeditor-dialog-error-dismiss','s:7:\"Go back\";'),
+('en','messages:visualeditor-dialog-language-auto-direction','s:4:\"Auto\";'),
+('en','messages:visualeditor-dialog-language-search-title','s:15:\"Select language\";'),
+('en','messages:visualeditor-dialog-media-alttext-section','s:16:\"Alternative text\";'),
+('en','messages:visualeditor-dialog-media-alttext-section-help','s:287:\"You can use this to write a text description for people who can\'t see the item. The description should be enough for them to understand the purpose and information given by the media item. This is vital for blind users and other people using screen-reader software or text-only browsers.\";'),
+('en','messages:visualeditor-dialog-media-change-image','s:12:\"Change image\";'),
+('en','messages:visualeditor-dialog-media-choose-image','s:14:\"Use this image\";'),
+('en','messages:visualeditor-dialog-media-content-description-link','s:18:\"(description page)\";'),
+('en','messages:visualeditor-dialog-media-content-filename','s:9:\"File name\";'),
+('en','messages:visualeditor-dialog-media-content-section','s:7:\"Caption\";'),
+('en','messages:visualeditor-dialog-media-content-section-help','s:208:\"You can use this to show a label that shows next to the item for all readers. This is often used to explain why the item is relevant to the context in which it is shown. It should be succinct and informative.\";'),
+('en','messages:visualeditor-dialog-media-goback','s:4:\"Back\";'),
+('en','messages:visualeditor-dialog-media-info-artist','s:14:\"Uploaded by $1\";'),
+('en','messages:visualeditor-dialog-media-info-audiofile','s:10:\"Audio file\";'),
+('en','messages:visualeditor-dialog-media-info-created','s:11:\"Created: $1\";'),
+('en','messages:visualeditor-dialog-media-info-credit','s:6:\"Credit\";'),
+('en','messages:visualeditor-dialog-media-info-dateformat','s:9:\"$1 $2, $3\";'),
+('en','messages:visualeditor-dialog-media-info-ellipsis','s:3:\"…\";'),
+('en','messages:visualeditor-dialog-media-info-imagedescription','s:16:\"Full description\";'),
+('en','messages:visualeditor-dialog-media-info-licenseshortname','s:7:\"License\";'),
+('en','messages:visualeditor-dialog-media-info-meta-artist','s:10:\"Artist: $1\";'),
+('en','messages:visualeditor-dialog-media-info-moreinfo','s:16:\"More information\";'),
+('en','messages:visualeditor-dialog-media-info-readmore','s:9:\"Read more\";'),
+('en','messages:visualeditor-dialog-media-info-separator','s:2:\"·\";'),
+('en','messages:visualeditor-dialog-media-info-uploaded','s:12:\"Uploaded: $1\";'),
+('en','messages:visualeditor-dialog-media-page-advanced','s:8:\"Advanced\";'),
+('en','messages:visualeditor-dialog-media-page-general','s:7:\"General\";'),
+('en','messages:visualeditor-dialog-media-position-center','s:6:\"Center\";'),
+('en','messages:visualeditor-dialog-media-position-checkbox','s:26:\"Wrap text around this item\";'),
+('en','messages:visualeditor-dialog-media-position-checkbox-help','s:187:\"You can make this media item appear inline with the text of the page instead of floating. You should only do this rarely, as it will break up the flow of the text if you uncheck this box.\";'),
+('en','messages:visualeditor-dialog-media-position-left','s:4:\"Left\";'),
+('en','messages:visualeditor-dialog-media-position-none','s:4:\"None\";'),
+('en','messages:visualeditor-dialog-media-position-right','s:5:\"Right\";'),
+('en','messages:visualeditor-dialog-media-position-section','s:8:\"Position\";'),
+('en','messages:visualeditor-dialog-media-position-section-help','s:136:\"You can set where this media item appears on the page. This is sometimes used to break up a long line of images on one side of the page.\";'),
+('en','messages:visualeditor-dialog-media-save','s:4:\"Save\";'),
+('en','messages:visualeditor-dialog-media-search-tab-search','s:6:\"Search\";'),
+('en','messages:visualeditor-dialog-media-search-tab-upload','s:6:\"Upload\";'),
+('en','messages:visualeditor-dialog-media-searchselect','s:6:\"Select\";'),
+('en','messages:visualeditor-dialog-media-size-choosecustom','s:15:\"Set custom size\";'),
+('en','messages:visualeditor-dialog-media-size-choosedefault','s:19:\"Set to default size\";'),
+('en','messages:visualeditor-dialog-media-size-choosefull','s:16:\"Set to full size\";'),
+('en','messages:visualeditor-dialog-media-size-section','s:10:\"Image size\";'),
+('en','messages:visualeditor-dialog-media-size-section-help','s:201:\"You can set how large the media item appears on the page. This should almost always be the normal size, as a custom size will interfere with the layout of the page for readers and make it inconsistent.\";'),
+('en','messages:visualeditor-dialog-media-thumbdimensions','s:20:\"Thumbnail dimensions\";'),
+('en','messages:visualeditor-dialog-media-title','s:14:\"Media settings\";'),
+('en','messages:visualeditor-dialog-media-type-border','s:6:\"Border\";'),
+('en','messages:visualeditor-dialog-media-type-frame','s:5:\"Frame\";'),
+('en','messages:visualeditor-dialog-media-type-frameless','s:9:\"Frameless\";'),
+('en','messages:visualeditor-dialog-media-type-none','s:5:\"Basic\";'),
+('en','messages:visualeditor-dialog-media-type-section','s:10:\"Image type\";'),
+('en','messages:visualeditor-dialog-media-type-section-help','s:142:\"You can set how the media item appears on the page. This should be the thumbnail format to be consistent with other pages in almost all cases.\";'),
+('en','messages:visualeditor-dialog-media-type-thumb','s:9:\"Thumbnail\";'),
+('en','messages:visualeditor-dialog-media-upload','s:6:\"Upload\";'),
+('en','messages:visualeditor-dialog-meta-advancedsettings-label','s:17:\"Advanced settings\";'),
+('en','messages:visualeditor-dialog-meta-advancedsettings-section','s:17:\"Advanced settings\";'),
+('en','messages:visualeditor-dialog-meta-categories-addcategory-label','s:27:\"Add a category to this page\";'),
+('en','messages:visualeditor-dialog-meta-categories-category','s:8:\"Category\";'),
+('en','messages:visualeditor-dialog-meta-categories-data-label','s:10:\"Categories\";'),
+('en','messages:visualeditor-dialog-meta-categories-defaultsort-help','s:237:\"You can override how this page is sorted when displayed within a category by setting a different index to sort with instead. This is often used to make pages about people show by last name, but be named with their first name shown first.\";'),
+('en','messages:visualeditor-dialog-meta-categories-defaultsort-label','s:28:\"Sort this page by default as\";'),
+('en','messages:visualeditor-dialog-meta-categories-hidden','s:63:\"This category is set not to show on pages to which it is added.\";'),
+('en','messages:visualeditor-dialog-meta-categories-input-hiddencategorieslabel','s:17:\"Hidden categories\";'),
+('en','messages:visualeditor-dialog-meta-categories-input-matchingcategorieslabel','s:19:\"Matching categories\";'),
+('en','messages:visualeditor-dialog-meta-categories-input-movecategorylabel','s:23:\"Move this category here\";'),
+('en','messages:visualeditor-dialog-meta-categories-input-newcategorylabel','s:12:\"New category\";'),
+('en','messages:visualeditor-dialog-meta-categories-input-placeholder','s:14:\"Add a category\";'),
+('en','messages:visualeditor-dialog-meta-categories-missing','s:39:\"This category lacks a description page.\";'),
+('en','messages:visualeditor-dialog-meta-categories-options','s:7:\"Options\";'),
+('en','messages:visualeditor-dialog-meta-categories-section','s:10:\"Categories\";'),
+('en','messages:visualeditor-dialog-meta-categories-sortkey-label','s:33:\"Sort this page as if it is called\";'),
+('en','messages:visualeditor-dialog-meta-languages-code-label','s:13:\"Language code\";'),
+('en','messages:visualeditor-dialog-meta-languages-label','s:9:\"Languages\";'),
+('en','messages:visualeditor-dialog-meta-languages-link-label','s:11:\"Linked page\";'),
+('en','messages:visualeditor-dialog-meta-languages-name-label','s:8:\"Language\";'),
+('en','messages:visualeditor-dialog-meta-languages-readonlynote','s:133:\"This is a list of pages in other languages that are linked to this one. For now, it can only be edited in source mode or on Wikidata.\";'),
+('en','messages:visualeditor-dialog-meta-languages-section','s:9:\"Languages\";'),
+('en','messages:visualeditor-dialog-meta-settings-displaytitle','s:13:\"Display title\";'),
+('en','messages:visualeditor-dialog-meta-settings-displaytitle-enable','s:20:\"Enable display title\";'),
+('en','messages:visualeditor-dialog-meta-settings-displaytitle-help','s:97:\"You can override how this page\'s title is displayed by setting a different label to show instead.\";'),
+('en','messages:visualeditor-dialog-meta-settings-hiddencat-help','s:211:\"You can prevent this category from showing up in the list of categories on member pages. This is useful for categories that are of interest to editors but not most readers, like pages which need an illustration.\";'),
+('en','messages:visualeditor-dialog-meta-settings-hiddencat-label','s:15:\"Hidden category\";'),
+('en','messages:visualeditor-dialog-meta-settings-index-default','s:7:\"Default\";'),
+('en','messages:visualeditor-dialog-meta-settings-index-disable','s:2:\"No\";'),
+('en','messages:visualeditor-dialog-meta-settings-index-force','s:3:\"Yes\";'),
+('en','messages:visualeditor-dialog-meta-settings-index-help','s:145:\"You can force search engines to list this page in their relevant results, or force them to not do so. This option does not affect in-site search.\";'),
+('en','messages:visualeditor-dialog-meta-settings-index-label','s:42:\"Let this page be indexed by search engines\";'),
+('en','messages:visualeditor-dialog-meta-settings-label','s:13:\"Page settings\";'),
+('en','messages:visualeditor-dialog-meta-settings-newsectioneditlink-default','s:7:\"Default\";'),
+('en','messages:visualeditor-dialog-meta-settings-newsectioneditlink-disable','s:2:\"No\";'),
+('en','messages:visualeditor-dialog-meta-settings-newsectioneditlink-force','s:3:\"Yes\";'),
+('en','messages:visualeditor-dialog-meta-settings-newsectioneditlink-help','s:170:\"You can force the display of an extra tab besides the \"$1\" tab on this page which will make it easy to add a new section, or force it to not appear if it otherwise would.\";'),
+('en','messages:visualeditor-dialog-meta-settings-newsectioneditlink-label','s:44:\"Show a tab on this page to add a new section\";'),
+('en','messages:visualeditor-dialog-meta-settings-nocontentconvert-help','s:86:\"You can prevent this page\'s contents being automatically converted into other scripts.\";'),
+('en','messages:visualeditor-dialog-meta-settings-nocontentconvert-label','s:47:\"Don\'t convert content between language variants\";'),
+('en','messages:visualeditor-dialog-meta-settings-noeditsection-help','s:110:\"You can stop the edit links from appearing next to each section in the unusual case where that is appropriate.\";'),
+('en','messages:visualeditor-dialog-meta-settings-noeditsection-label','s:57:\"Disable the edit links next to each heading on this page.\";'),
+('en','messages:visualeditor-dialog-meta-settings-nogallery-help','s:111:\"You can prevent this category from displaying member files as a gallery, if that is inappropriate in this case.\";'),
+('en','messages:visualeditor-dialog-meta-settings-nogallery-label','s:15:\"Disable gallery\";'),
+('en','messages:visualeditor-dialog-meta-settings-notitleconvert-help','s:83:\"You can prevent this page\'s title being automatically converted into other scripts.\";'),
+('en','messages:visualeditor-dialog-meta-settings-notitleconvert-label','s:45:\"Don\'t convert title between language variants\";'),
+('en','messages:visualeditor-dialog-meta-settings-redirect-help','s:244:\"You can make this page into a redirect, a page which will automatically take readers to another page on this wiki. This is useful for mis-spellings and alternative names or concepts. If you do so, readers will not see the contents of this page.\";'),
+('en','messages:visualeditor-dialog-meta-settings-redirect-label','s:21:\"Redirect this page to\";'),
+('en','messages:visualeditor-dialog-meta-settings-redirect-placeholder','s:27:\"Target page for redirection\";'),
+('en','messages:visualeditor-dialog-meta-settings-redirect-statichelp','s:151:\"You can prevent this redirect from being updated automatically when the page to which it redirects is moved, in the very rare case that this is needed.\";'),
+('en','messages:visualeditor-dialog-meta-settings-redirect-staticlabel','s:67:\"Prevent this redirect from being updated when target page is moved.\";'),
+('en','messages:visualeditor-dialog-meta-settings-section','s:13:\"Page settings\";'),
+('en','messages:visualeditor-dialog-meta-settings-toc-default','s:9:\"If needed\";'),
+('en','messages:visualeditor-dialog-meta-settings-toc-disable','s:5:\"Never\";'),
+('en','messages:visualeditor-dialog-meta-settings-toc-force','s:6:\"Always\";'),
+('en','messages:visualeditor-dialog-meta-settings-toc-help','s:219:\"You can force a table of contents that lists each heading on the page to appear on pages with fewer than four headings, or force it to not appear at all. By default, it will appear if the page has four or more headings.\";'),
+('en','messages:visualeditor-dialog-meta-settings-toc-label','s:26:\"Show the Table of Contents\";'),
+('en','messages:visualeditor-dialog-meta-templatesused-noresults','s:19:\"No templates found.\";'),
+('en','messages:visualeditor-dialog-meta-title','s:7:\"Options\";'),
+('en','messages:visualeditor-dialog-table-caption','s:7:\"Caption\";'),
+('en','messages:visualeditor-dialog-table-collapsed','s:19:\"Collapsed initially\";'),
+('en','messages:visualeditor-dialog-table-collapsible','s:11:\"Collapsible\";'),
+('en','messages:visualeditor-dialog-table-sortable','s:8:\"Sortable\";'),
+('en','messages:visualeditor-dialog-table-title','s:16:\"Table properties\";'),
+('en','messages:visualeditor-dialog-table-wikitable','s:18:\"Styled (wikitable)\";'),
+('en','messages:visualeditor-dialog-template-insert','s:17:\"Insert a template\";'),
+('en','messages:visualeditor-dialog-template-title','s:8:\"Template\";'),
+('en','messages:visualeditor-dialog-transclusion-absent-template','s:36:\"The \"$1\" template doesn\'t yet exist.\";'),
+('en','messages:visualeditor-dialog-transclusion-action-save','s:4:\"Save\";'),
+('en','messages:visualeditor-dialog-transclusion-add-content','s:11:\"Add content\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param','s:20:\"Add more information\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-error-alias','s:265:\"\"$1\" is already added as \"$2\". Please check the options in the sidebar. This is due to either the use of [//www.mediawiki.org/wiki/Special:MyLanguage/Help:TemplateData#aliases aliases] or [//www.mediawiki.org/wiki/Special:MyLanguage/Help:TemplateData#label labels].\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-error-deprecated','s:148:\"\"$1\" cannot be added because the parameter has been marked as [//www.mediawiki.org/wiki/Special:MyLanguage/Help:TemplateData#deprecated deprecated].\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-error-exists-selected','s:36:\"Cannot add the parameter \"$2\" twice.\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-error-exists-unselected','s:89:\"The parameter \"$2\" is already available for use. Please check the options in the sidebar.\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-error-forbidden-char','s:67:\"$1 is a forbidden character. Please remove it to add the parameter.\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-help','s:302:\"If known, enter [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Adding_undocumented_parameters undocumented parameter] names. Note that only parameters known by the template will have an effect. You may find information about existing parameters on the [[$1|template\'s page]].\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-placeholder','s:14:\"Parameter name\";'),
+('en','messages:visualeditor-dialog-transclusion-add-param-save','s:13:\"Add parameter\";'),
+('en','messages:visualeditor-dialog-transclusion-add-template','s:12:\"Add template\";'),
+('en','messages:visualeditor-dialog-transclusion-add-undocumented-param','s:26:\"Add undocumented parameter\";'),
+('en','messages:visualeditor-dialog-transclusion-add-wikitext','s:12:\"Add wikitext\";'),
+('en','messages:visualeditor-dialog-transclusion-back-confirmation-prompt','s:59:\"Go back to search? Edits will be lost and cannot be undone.\";'),
+('en','messages:visualeditor-dialog-transclusion-close-confirmation-prompt','s:65:\"Close template editor? Changes will be lost and cannot be undone.\";'),
+('en','messages:visualeditor-dialog-transclusion-collapse-options','s:12:\"Hide options\";'),
+('en','messages:visualeditor-dialog-transclusion-confirmation-discard','s:13:\"Discard edits\";'),
+('en','messages:visualeditor-dialog-transclusion-confirmation-reject','s:16:\"Continue editing\";'),
+('en','messages:visualeditor-dialog-transclusion-content','s:7:\"Content\";'),
+('en','messages:visualeditor-dialog-transclusion-contextitem-description','s:18:\"Generated from: $1\";'),
+('en','messages:visualeditor-dialog-transclusion-contextitem-loading','s:10:\"Loading…\";'),
+('en','messages:visualeditor-dialog-transclusion-deprecated-parameter','s:16:\"Deprecated field\";'),
+('en','messages:visualeditor-dialog-transclusion-deprecated-parameter-description','s:23:\"Field is deprecated. $1\";'),
+('en','messages:visualeditor-dialog-transclusion-expand-options','s:12:\"Show options\";'),
+('en','messages:visualeditor-dialog-transclusion-feedback-message','s:239:\"Recent work was completed to improve template search results. To learn more about the changes or leave feedback, go to the [//meta.wikimedia.org/wiki/Special:MyLanguage/WMDE_Technical_Wishes/Finding_and_inserting_templates project\'s page].\";'),
+('en','messages:visualeditor-dialog-transclusion-filter-hide-unused','s:18:\"Hide unused fields\";'),
+('en','messages:visualeditor-dialog-transclusion-filter-no-match','s:16:\"No matches found\";'),
+('en','messages:visualeditor-dialog-transclusion-filter-placeholder','s:10:\"Find field\";'),
+('en','messages:visualeditor-dialog-transclusion-filter-show-all','s:15:\"Show all fields\";'),
+('en','messages:visualeditor-dialog-transclusion-filter-title','s:23:\"Parameter search for $1\";'),
+('en','messages:visualeditor-dialog-transclusion-help-message','s:164:\"Templates provide formatting for content. This editor shows what options a template provides on the left and values can then be added to those options on the right.\";'),
+('en','messages:visualeditor-dialog-transclusion-help-page-feedback','s:130:\"[//meta.wikimedia.org/wiki/Special:MyLanguage/Talk:WMDE_Technical_Wishes/VisualEditor_template_dialog_improvements Leave feedback]\";'),
+('en','messages:visualeditor-dialog-transclusion-help-page-help','s:119:\"[//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Editing_templates Help for editing templates]\";'),
+('en','messages:visualeditor-dialog-transclusion-help-page-shortcuts','s:162:\"[//www.mediawiki.org/wiki/Special:MyLanguage/VisualEditor/Portal/Keyboard_shortcuts#Template_editor_dialog_shortcuts_and_keyboard_interactions Keyboard shortcuts]\";'),
+('en','messages:visualeditor-dialog-transclusion-help-title','s:24:\"Template editing support\";'),
+('en','messages:visualeditor-dialog-transclusion-loading','s:10:\"Loading...\";'),
+('en','messages:visualeditor-dialog-transclusion-more-template-description','s:86:\"There might be some additional information about the \"$1\" template on [[$2|its page]].\";'),
+('en','messages:visualeditor-dialog-transclusion-multipart-message','s:231:\"You are currently editing a template and one or more pieces of [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Editing_multi-part_template_content connected content] (wikitext and/or additional templates).\";'),
+('en','messages:visualeditor-dialog-transclusion-no-parameters-description','s:300:\"This template may be intended for use without [//www.mediawiki.org/wiki/Special:MyLanguage/Help:Templates#Parameters parameters]. If this template does contain parameters, they are [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Adding_undocumented_parameters undocumented].\";'),
+('en','messages:visualeditor-dialog-transclusion-no-template-data-description','s:409:\"This template is missing [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Template_parameters TemplateData], and its parameters have been [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Autogenerated_parameters autogenerated]. As a result the template and its parameters lack descriptions. There might be additional information on the [[$1|template\'s page]].\";'),
+('en','messages:visualeditor-dialog-transclusion-no-template-description','s:116:\"The \"$1\" template doesn\'t yet have a description, but there might be some information on the [[$2|template\'s page]].\";'),
+('en','messages:visualeditor-dialog-transclusion-options','s:7:\"Options\";'),
+('en','messages:visualeditor-dialog-transclusion-param-default','s:11:\"Default: $1\";'),
+('en','messages:visualeditor-dialog-transclusion-param-example','s:7:\"e.g. $1\";'),
+('en','messages:visualeditor-dialog-transclusion-param-example-long','s:11:\"Example: $1\";'),
+('en','messages:visualeditor-dialog-transclusion-param-info','s:17:\"Field description\";'),
+('en','messages:visualeditor-dialog-transclusion-param-info-missing','s:30:\"No field description available\";'),
+('en','messages:visualeditor-dialog-transclusion-param-selection-aria-description','s:172:\"Press Space to add or remove parameters. Press Enter to add a parameter and immediately edit its value. When a parameter is already selected, press Enter to edit the value.\";'),
+('en','messages:visualeditor-dialog-transclusion-param-selection-aria-label','s:16:\"Parameters in $1\";'),
+('en','messages:visualeditor-dialog-transclusion-param-undocumented','s:24:\"(Undocumented parameter)\";'),
+('en','messages:visualeditor-dialog-transclusion-placeholder','s:14:\"Add a template\";'),
+('en','messages:visualeditor-dialog-transclusion-placeholder-input-placeholder','s:13:\"Find template\";'),
+('en','messages:visualeditor-dialog-transclusion-raw-fallback','s:27:\"Fall back to plain wikitext\";'),
+('en','messages:visualeditor-dialog-transclusion-remove-content','s:14:\"Remove content\";'),
+('en','messages:visualeditor-dialog-transclusion-remove-param','s:12:\"Remove field\";'),
+('en','messages:visualeditor-dialog-transclusion-remove-template','s:15:\"Remove template\";'),
+('en','messages:visualeditor-dialog-transclusion-required-parameter','s:14:\"Required field\";'),
+('en','messages:visualeditor-dialog-transclusion-required-parameter-description','s:18:\"Field is required.\";'),
+('en','messages:visualeditor-dialog-transclusion-required-parameter-dialog-cancel','s:7:\"Go back\";'),
+('en','messages:visualeditor-dialog-transclusion-required-parameter-dialog-ok','s:15:\"Continue anyway\";'),
+('en','messages:visualeditor-dialog-transclusion-required-parameter-dialog-title','s:43:\"Required {{PLURAL:$1|field|fields}} missing\";'),
+('en','messages:visualeditor-dialog-transclusion-required-parameter-is-blank','s:84:\"Are you sure you want to continue without filling the $1 {{PLURAL:$2|field|fields}}?\";'),
+('en','messages:visualeditor-dialog-transclusion-see-template','s:134:\"Templates are user-generated and may lack complete descriptions. There might be additional information on this [[$2|template\'s page]].\";'),
+('en','messages:visualeditor-dialog-transclusion-template-search','s:15:\"Template search\";'),
+('en','messages:visualeditor-dialog-transclusion-template-search-help','s:172:\"Find the template you want to insert by searching for an identifying keyword. Templates that have descriptions are more likely to work well with this editor (VisualEditor).\";'),
+('en','messages:visualeditor-dialog-transclusion-template-title-modifier','s:286:\"Template documentation and [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Glossary#Parameter parameter] names (if existing) are not available when editing templates utilizing nested syntax or modifiers, such as [//www.mediawiki.org/wiki/Special:MyLanguage/Help:Substitution subst].\";'),
+('en','messages:visualeditor-dialog-transclusion-template-title-nonexistent','s:28:\"This template doesn\'t exist.\";'),
+('en','messages:visualeditor-dialog-transclusion-template-widget-aria','s:35:\"Press Space to select the template.\";'),
+('en','messages:visualeditor-dialog-transclusion-template-widget-aria-selected','s:128:\"Press Ctrl+Del to delete the template, its parameters and their values. Press Ctrl+Shift+Arrows to move the template up or down.\";'),
+('en','messages:visualeditor-dialog-transclusion-template-widget-aria-selected-single','s:71:\"Press Ctrl+Del to delete the template, its parameters and their values.\";'),
+('en','messages:visualeditor-dialog-transclusion-templates-menu-aria-label','s:26:\"Template fields setup menu\";'),
+('en','messages:visualeditor-dialog-transclusion-title-edit-known-template','s:8:\"Edit: $1\";'),
+('en','messages:visualeditor-dialog-transclusion-title-edit-transclusion','s:16:\"Template content\";'),
+('en','messages:visualeditor-dialog-transclusion-title-insert-known-template','s:10:\"Insert: $1\";'),
+('en','messages:visualeditor-dialog-transclusion-title-insert-template','s:17:\"Insert a template\";'),
+('en','messages:visualeditor-dialog-transclusion-wikitext','s:8:\"Wikitext\";'),
+('en','messages:visualeditor-dialog-transclusion-wikitext-widget-aria','s:88:\"Press Space to select the wikitext element. Press Enter to select and edit the wikitext.\";'),
+('en','messages:visualeditor-dialog-transclusion-wikitext-widget-aria-selected','s:102:\"Press Ctrl+Del to delete the wikitext element. Press Ctrl+Shift+Arrows to move the element up or down.\";'),
+('en','messages:visualeditor-dialog-transclusion-wikitext-widget-aria-selected-single','s:46:\"Press Ctrl+Del to delete the wikitext element.\";'),
+('en','messages:visualeditor-dialogbutton-media-tooltip','s:16:\"Images and media\";'),
+('en','messages:visualeditor-dialogbutton-meta-tooltip','s:13:\"Page settings\";'),
+('en','messages:visualeditor-dialogbutton-template-tooltip','s:8:\"Template\";'),
+('en','messages:visualeditor-diff-moved-down','s:10:\"Moved down\";'),
+('en','messages:visualeditor-diff-moved-up','s:8:\"Moved up\";'),
+('en','messages:visualeditor-diff-no-changes','s:10:\"No changes\";'),
+('en','messages:visualeditor-diff-timed-out','s:86:\"It took too long to compute your changes, so the description below may not be optimal.\";'),
+('en','messages:visualeditor-dimensionswidget-px','s:2:\"px\";'),
+('en','messages:visualeditor-dimensionswidget-times','s:2:\"×\";'),
+('en','messages:visualeditor-dismissible-message-close','s:35:\"Close message and do not show again\";'),
+('en','messages:visualeditor-donebutton-tooltip','s:12:\"Done editing\";'),
+('en','messages:visualeditor-editconflict','s:121:\"Your changes could not be saved because of an edit conflict. Would {{GENDER:|you}} like to resolve the conflict manually?\";'),
+('en','messages:visualeditor-editingtabdialog-body','s:124:\"{{SITENAME}} now remembers which editor you prefer. You can switch edit modes as you edit, and change your preference later.\";'),
+('en','messages:visualeditor-editingtabdialog-ok','s:37:\"Use the editor I used in my last edit\";'),
+('en','messages:visualeditor-editingtabdialog-title','s:12:\"Editing tabs\";'),
+('en','messages:visualeditor-editnotices-tool','s:31:\"$1 {{PLURAL:$1|notice|notices}}\";'),
+('en','messages:visualeditor-editnotices-tooltip','s:12:\"Edit notices\";'),
+('en','messages:visualeditor-editsummary','s:25:\"Describe what you changed\";'),
+('en','messages:visualeditor-editsummary-characters-remaining','s:34:\"The number of characters remaining\";'),
+('en','messages:visualeditor-educationpopup-dismiss','s:12:\"Okay, got it\";'),
+('en','messages:visualeditor-expandable-less','s:4:\"Less\";'),
+('en','messages:visualeditor-expandable-more','s:4:\"More\";'),
+('en','messages:visualeditor-feedback-defaultmessage','s:7:\"URL: $1\";'),
+('en','messages:visualeditor-feedback-link','s:29:\"Project:VisualEditor/Feedback\";'),
+('en','messages:visualeditor-feedback-source-link','s:34:\"{{int:visualeditor-feedback-link}}\";'),
+('en','messages:visualeditor-feedback-tool','s:34:\"Leave feedback about this software\";'),
+('en','messages:visualeditor-find-and-replace-diacritic','s:21:\"Diacritic insensitive\";'),
+('en','messages:visualeditor-find-and-replace-diacritic-unavailable','s:58:\"Diacritic insensitive search not available in this browser\";'),
+('en','messages:visualeditor-find-and-replace-done','s:4:\"Done\";'),
+('en','messages:visualeditor-find-and-replace-find-text','s:4:\"Find\";'),
+('en','messages:visualeditor-find-and-replace-invalid-regex','s:26:\"Invalid regular expression\";'),
+('en','messages:visualeditor-find-and-replace-match-case','s:10:\"Match case\";'),
+('en','messages:visualeditor-find-and-replace-next-button','s:9:\"Find next\";'),
+('en','messages:visualeditor-find-and-replace-previous-button','s:13:\"Find previous\";'),
+('en','messages:visualeditor-find-and-replace-regular-expression','s:18:\"Regular expression\";'),
+('en','messages:visualeditor-find-and-replace-replace-all-button','s:11:\"Replace all\";'),
+('en','messages:visualeditor-find-and-replace-replace-button','s:7:\"Replace\";'),
+('en','messages:visualeditor-find-and-replace-replace-text','s:7:\"Replace\";'),
+('en','messages:visualeditor-find-and-replace-results','s:8:\"$1 of $2\";'),
+('en','messages:visualeditor-find-and-replace-title','s:16:\"Find and replace\";'),
+('en','messages:visualeditor-find-and-replace-word','s:10:\"Whole word\";'),
+('en','messages:visualeditor-formatdropdown-format-blockquote','s:11:\"Block quote\";'),
+('en','messages:visualeditor-formatdropdown-format-heading-label','s:13:\"Heading (1-6)\";'),
+('en','messages:visualeditor-formatdropdown-format-heading1','s:9:\"Heading 1\";'),
+('en','messages:visualeditor-formatdropdown-format-heading2','s:9:\"Heading 2\";'),
+('en','messages:visualeditor-formatdropdown-format-heading3','s:9:\"Heading 3\";'),
+('en','messages:visualeditor-formatdropdown-format-heading4','s:9:\"Heading 4\";'),
+('en','messages:visualeditor-formatdropdown-format-heading5','s:9:\"Heading 5\";'),
+('en','messages:visualeditor-formatdropdown-format-heading6','s:9:\"Heading 6\";'),
+('en','messages:visualeditor-formatdropdown-format-mw-heading1','s:10:\"Page title\";'),
+('en','messages:visualeditor-formatdropdown-format-mw-heading2','s:7:\"Heading\";'),
+('en','messages:visualeditor-formatdropdown-format-mw-heading3','s:13:\"Sub-heading 1\";'),
+('en','messages:visualeditor-formatdropdown-format-mw-heading4','s:13:\"Sub-heading 2\";'),
+('en','messages:visualeditor-formatdropdown-format-mw-heading5','s:13:\"Sub-heading 3\";'),
+('en','messages:visualeditor-formatdropdown-format-mw-heading6','s:13:\"Sub-heading 4\";'),
+('en','messages:visualeditor-formatdropdown-format-paragraph','s:9:\"Paragraph\";'),
+('en','messages:visualeditor-formatdropdown-format-preformatted','s:12:\"Preformatted\";'),
+('en','messages:visualeditor-formatdropdown-title','s:13:\"Change format\";'),
+('en','messages:visualeditor-generating-wikitext-progress','s:19:\"Generating wikitext\";'),
+('en','messages:visualeditor-help-label','s:19:\"Read the user guide\";'),
+('en','messages:visualeditor-help-link','s:50:\"mw:Special:MyLanguage/Help:VisualEditor/User guide\";'),
+('en','messages:visualeditor-help-title','s:31:\"Guide for how to use the editor\";'),
+('en','messages:visualeditor-help-tool','s:4:\"Help\";'),
+('en','messages:visualeditor-historybutton-redo-tooltip','s:4:\"Redo\";'),
+('en','messages:visualeditor-historybutton-undo-tooltip','s:4:\"Undo\";'),
+('en','messages:visualeditor-horizontalrule-tooltip','s:15:\"Horizontal rule\";'),
+('en','messages:visualeditor-includes-documentation','s:117:\"[//www.mediawiki.org/wiki/Special:MyLanguage/Transclusion#Partial_transclusion Learn more about partial transclusion]\";'),
+('en','messages:visualeditor-includes-includeonly','s:25:\"Content for excerpts only\";'),
+('en','messages:visualeditor-includes-includeonly-description','s:108:\"When content from this page is used by another page, the following additional content will be included here:\";'),
+('en','messages:visualeditor-includes-noinclude-description','s:225:\"When content from this page is used by another page, content from here until the matching end marker will not be included. Be careful when editing the content outside these markers, as other pages may use it.\";'),
+('en','messages:visualeditor-includes-noinclude-end','s:37:\"End of content excluded from excerpts\";'),
+('en','messages:visualeditor-includes-noinclude-start','s:39:\"Start of content excluded from excerpts\";'),
+('en','messages:visualeditor-includes-onlyinclude-description','s:230:\"When content from this page is used by another page, only the content from here until the matching end marker will be included. Be careful when editing the content between these markers, as other pages may use it.\";'),
+('en','messages:visualeditor-includes-onlyinclude-end','s:34:\"End of content allowed in excerpts\";'),
+('en','messages:visualeditor-includes-onlyinclude-start','s:36:\"Start of content allowed in excerpts\";'),
+('en','messages:visualeditor-indentationbutton-indent-tooltip','s:20:\"Increase indentation\";'),
+('en','messages:visualeditor-indentationbutton-outdent-tooltip','s:20:\"Decrease indentation\";'),
+('en','messages:visualeditor-inspector-close-tooltip','s:5:\"Close\";'),
+('en','messages:visualeditor-inspector-remove-tooltip','s:6:\"Remove\";'),
+('en','messages:visualeditor-key-alt','s:3:\"Alt\";'),
+('en','messages:visualeditor-key-backspace','s:9:\"Backspace\";'),
+('en','messages:visualeditor-key-ctrl','s:4:\"Ctrl\";'),
+('en','messages:visualeditor-key-delete','s:6:\"Delete\";'),
+('en','messages:visualeditor-key-down','s:4:\"Down\";'),
+('en','messages:visualeditor-key-end','s:3:\"End\";'),
+('en','messages:visualeditor-key-enter','s:5:\"Enter\";'),
+('en','messages:visualeditor-key-escape','s:6:\"Escape\";'),
+('en','messages:visualeditor-key-home','s:4:\"Home\";'),
+('en','messages:visualeditor-key-insert','s:6:\"Insert\";'),
+('en','messages:visualeditor-key-left','s:4:\"Left\";'),
+('en','messages:visualeditor-key-meta','s:4:\"Meta\";'),
+('en','messages:visualeditor-key-page-down','s:9:\"Page Down\";'),
+('en','messages:visualeditor-key-page-up','s:7:\"Page Up\";'),
+('en','messages:visualeditor-key-right','s:5:\"Right\";'),
+('en','messages:visualeditor-key-shift','s:5:\"Shift\";'),
+('en','messages:visualeditor-key-space','s:5:\"Space\";'),
+('en','messages:visualeditor-key-tab','s:3:\"Tab\";'),
+('en','messages:visualeditor-key-up','s:2:\"Up\";'),
+('en','messages:visualeditor-language-search-input-placeholder','s:31:\"Search by language name or code\";'),
+('en','messages:visualeditor-languageannotation-description','s:2:\"$1\";'),
+('en','messages:visualeditor-languageannotation-description-with-dir','s:7:\"$1 ($2)\";'),
+('en','messages:visualeditor-languagecontext-remove','s:15:\"Remove language\";'),
+('en','messages:visualeditor-languageinspector-title','s:8:\"Language\";'),
+('en','messages:visualeditor-languageinspector-widget-changelang','s:13:\"Find language\";'),
+('en','messages:visualeditor-languageinspector-widget-label-direction','s:9:\"Direction\";'),
+('en','messages:visualeditor-languageinspector-widget-label-langcode','s:13:\"Language code\";'),
+('en','messages:visualeditor-languageinspector-widget-label-language','s:8:\"Language\";'),
+('en','messages:visualeditor-languages-tool','s:9:\"Languages\";'),
+('en','messages:visualeditor-linkcontext-label-change','s:11:\"Change text\";'),
+('en','messages:visualeditor-linkcontext-label-fallback','s:10:\"No preview\";'),
+('en','messages:visualeditor-linkcontext-label-label','s:4:\"Text\";'),
+('en','messages:visualeditor-linkcontext-remove','s:11:\"Remove link\";'),
+('en','messages:visualeditor-linkinspector-button-link-external','s:13:\"External site\";'),
+('en','messages:visualeditor-linkinspector-button-link-internal','s:21:\"Search internal pages\";'),
+('en','messages:visualeditor-linkinspector-convert-link-isbn','s:20:\"Convert to ISBN link\";'),
+('en','messages:visualeditor-linkinspector-convert-link-pmid','s:20:\"Convert to PMID link\";'),
+('en','messages:visualeditor-linkinspector-convert-link-rfc','s:19:\"Convert to RFC link\";'),
+('en','messages:visualeditor-linkinspector-educationpopup-text','s:112:\"Link important words to other wiki articles or even other websites. It will help readers understand the context.\";'),
+('en','messages:visualeditor-linkinspector-educationpopup-title','s:5:\"Links\";'),
+('en','messages:visualeditor-linkinspector-illegal-title','s:18:\"Invalid page title\";'),
+('en','messages:visualeditor-linkinspector-invalid-external','s:42:\"Enter a full URL, e.g. https://example.org\";'),
+('en','messages:visualeditor-linkinspector-title','s:4:\"Link\";'),
+('en','messages:visualeditor-linkinspector-title-add','s:10:\"Add a link\";'),
+('en','messages:visualeditor-linkinspector-title-edit','s:9:\"Edit link\";'),
+('en','messages:visualeditor-linknodeinspector-add-label','s:9:\"Add label\";'),
+('en','messages:visualeditor-linknodeinspector-title','s:11:\"Simple link\";'),
+('en','messages:visualeditor-listbutton-bullet-tooltip','s:11:\"Bullet list\";'),
+('en','messages:visualeditor-listbutton-check-tooltip','s:10:\"Check list\";'),
+('en','messages:visualeditor-listbutton-number-tooltip','s:13:\"Numbered list\";'),
+('en','messages:visualeditor-loaderror-revidconflict','s:78:\"Revision IDs returned by the server do not match (document: $1, metadata: $2).\";'),
+('en','messages:visualeditor-loaderror-wrongmode','s:76:\"Tried to load the editor in wrong mode (data type: \"$1\", editor mode: \"$2\").\";'),
+('en','messages:visualeditor-magiclinknodeinspector-convert-link','s:22:\"Convert to simple link\";'),
+('en','messages:visualeditor-magiclinknodeinspector-title-isbn','s:9:\"ISBN link\";'),
+('en','messages:visualeditor-magiclinknodeinspector-title-pmid','s:9:\"PMID link\";'),
+('en','messages:visualeditor-magiclinknodeinspector-title-rfc','s:8:\"RFC link\";'),
+('en','messages:visualeditor-mainnamespacepagelink','s:22:\"Project:Main namespace\";'),
+('en','messages:visualeditor-media-title-audio','s:5:\"Audio\";'),
+('en','messages:visualeditor-media-title-image','s:5:\"Image\";'),
+('en','messages:visualeditor-media-title-video','s:5:\"Video\";'),
+('en','messages:visualeditor-mediasizewidget-label-defaulterror','s:24:\"Size values are invalid.\";'),
+('en','messages:visualeditor-mediasizewidget-label-scale','s:5:\"Scale\";'),
+('en','messages:visualeditor-mediasizewidget-label-scale-percent','s:19:\"% of thumbnail size\";'),
+('en','messages:visualeditor-mediasizewidget-sizeoptions-custom','s:6:\"Custom\";'),
+('en','messages:visualeditor-mediasizewidget-sizeoptions-default','s:7:\"Default\";'),
+('en','messages:visualeditor-mediasizewidget-sizeoptions-scale','s:5:\"Scale\";'),
+('en','messages:visualeditor-meta-tool','s:7:\"Options\";'),
+('en','messages:visualeditor-mweditmode-tooltip','s:13:\"Switch editor\";'),
+('en','messages:visualeditor-mweditmodesource-progress','s:30:\"Switching to source editing…\";'),
+('en','messages:visualeditor-mweditmodesource-tool-current','s:14:\"Source editing\";'),
+('en','messages:visualeditor-mweditmodesource-tool-unavailable','s:36:\"Source editing is not available here\";'),
+('en','messages:visualeditor-mweditmodesource-warning-cancel','s:6:\"Cancel\";'),
+('en','messages:visualeditor-mweditmodesource-warning-switch-discard','s:29:\"Discard my changes and switch\";'),
+('en','messages:visualeditor-mweditmodeve-popup-body','s:75:\"You can switch back to visual editing at any time by clicking on this icon.\";'),
+('en','messages:visualeditor-mweditmodeve-popup-title','s:35:\"You have switched to source editing\";'),
+('en','messages:visualeditor-mweditmodeve-progress','s:30:\"Switching to visual editing…\";'),
+('en','messages:visualeditor-mweditmodeve-showagain','s:29:\"Don\'t show this message again\";'),
+('en','messages:visualeditor-mweditmodeve-title','s:25:\"Switch to visual editing?\";'),
+('en','messages:visualeditor-mweditmodeve-tool-current','s:14:\"Visual editing\";'),
+('en','messages:visualeditor-mweditmodeve-tool-unavailable','s:36:\"Visual editing is not available here\";'),
+('en','messages:visualeditor-mweditmodeve-warning','s:61:\"You are switching to visual editing.\nDo you want to continue?\";'),
+('en','messages:visualeditor-mweditmodewt-popup-body','s:75:\"You can switch back to source editing at any time by clicking on this icon.\";'),
+('en','messages:visualeditor-mweditmodewt-popup-title','s:35:\"You have switched to visual editing\";'),
+('en','messages:visualeditor-mwgallerycontext-description','s:29:\"$1 {{PLURAL:$1|image|images}}\";'),
+('en','messages:visualeditor-mwgallerydialog-caption-field-label','s:15:\"Gallery caption\";'),
+('en','messages:visualeditor-mwgallerydialog-caption-input-placeholder','s:29:\"Caption for the whole gallery\";'),
+('en','messages:visualeditor-mwgallerydialog-card-images','s:6:\"Images\";'),
+('en','messages:visualeditor-mwgallerydialog-card-options','s:7:\"Options\";'),
+('en','messages:visualeditor-mwgallerydialog-classes-field-label','s:11:\"CSS classes\";'),
+('en','messages:visualeditor-mwgallerydialog-classes-input-placeholder','s:28:\"Class names, space-separated\";'),
+('en','messages:visualeditor-mwgallerydialog-empty-gallery-message','s:21:\"The gallery is empty.\";'),
+('en','messages:visualeditor-mwgallerydialog-heights-field-label','s:12:\"Image height\";'),
+('en','messages:visualeditor-mwgallerydialog-heights-input-placeholder','s:21:\"Default height: $1 px\";'),
+('en','messages:visualeditor-mwgallerydialog-image-caption-placeholder','s:13:\"Image caption\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-dropdown-label-nolines','s:28:\"Traditional with no outlines\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-dropdown-label-packed','s:6:\"Packed\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-dropdown-label-packed-hover','s:29:\"Packed with captions on hover\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-dropdown-label-packed-overlay','s:29:\"Packed with overlaid captions\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-dropdown-label-slideshow','s:9:\"Slideshow\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-dropdown-label-traditional','s:11:\"Traditional\";'),
+('en','messages:visualeditor-mwgallerydialog-mode-field-label','s:12:\"Display mode\";'),
+('en','messages:visualeditor-mwgallerydialog-perrow-field-label','s:14:\"Images per row\";'),
+('en','messages:visualeditor-mwgallerydialog-remove-button-label','s:12:\"Remove image\";'),
+('en','messages:visualeditor-mwgallerydialog-search-button-label','s:13:\"Add new image\";'),
+('en','messages:visualeditor-mwgallerydialog-show-filename-field-label','s:14:\"Show filenames\";'),
+('en','messages:visualeditor-mwgallerydialog-styles-field-label','s:10:\"CSS styles\";'),
+('en','messages:visualeditor-mwgallerydialog-styles-input-placeholder','s:30:\"CSS rules, semicolon-separated\";'),
+('en','messages:visualeditor-mwgallerydialog-title','s:7:\"Gallery\";'),
+('en','messages:visualeditor-mwgallerydialog-widths-field-label','s:11:\"Image width\";'),
+('en','messages:visualeditor-mwgallerydialog-widths-input-placeholder','s:20:\"Default width: $1 px\";'),
+('en','messages:visualeditor-mwlanguagevariant-disabled','s:27:\"Variant conversion disabled\";'),
+('en','messages:visualeditor-mwlanguagevariant-filter','s:23:\"Variants filtered to $1\";'),
+('en','messages:visualeditor-mwlanguagevariant-name','s:17:\"Language name: $1\";'),
+('en','messages:visualeditor-mwlanguagevariant-oneway','s:22:\"One-way conversion: $1\";'),
+('en','messages:visualeditor-mwlanguagevariant-twoway','s:23:\"Language conversion: $1\";'),
+('en','messages:visualeditor-mwlanguagevariant-unknown','s:16:\"Language variant\";'),
+('en','messages:visualeditor-mwlanguagevariantcontextitem-flag-describe','s:25:\"This is a described rule.\";'),
+('en','messages:visualeditor-mwlanguagevariantcontextitem-flag-hidden','s:22:\"This is a hidden rule.\";'),
+('en','messages:visualeditor-mwlanguagevariantcontextitem-flag-title','s:33:\"This rule affects the page title.\";'),
+('en','messages:visualeditor-mwlanguagevariantcontextitem-rule-code-label','s:13:\"Language code\";'),
+('en','messages:visualeditor-mwlanguagevariantcontextitem-rule-invalid-language-label','s:9:\"bot falló.\";'),
+('es','messages:apierror-assertnameduserfailed','s:48:\"La aserción de que el usuario es «$1» falló.\";'),
+('es','messages:apierror-assertuserfailed','s:54:\"La aserción de que el usuario está conectado falló.\";'),
+('es','messages:apierror-autoblocked','s:98:\"Tu dirección IP ha sido bloqueada automáticamente porque fue utilizada por un usuario bloqueado.\";'),
+('es','messages:apierror-bad-badfilecontexttitle','s:60:\"Invalid title in $1badfilecontexttitle parameter.\";'),
+('es','messages:apierror-bad-watchlist-token','s:90:\"Incorrect watchlist token provided. Please set a correct token in [[Special:Preferences]].\";'),
+('es','messages:apierror-badconfig-resulttoosmall','s:134:\"El valor de $wgAPIMaxResultSize en esta wiki es demasiado pequeño como para contener información básica de resultados.\";'),
+('es','messages:apierror-badcontinue','s:96:\"Parámetro continue no válido. Debes pasar el valor original devuelto por la consulta anterior.\";'),
+('es','messages:apierror-baddiff','s:104:\"La comparación no puede recuperarse. Una o ambas revisiones no existen o no tienes permiso para verlas.\";'),
+('es','messages:apierror-baddiffto','s:110:\"$1diffto debe fijarse a un número no negativo, prev, next or cur.\";'),
+('es','messages:apierror-badformat','s:89:\"El formato solicitado $1 no es compatible con el modelo de contenido $2 utilizado por $3.\";'),
+('es','messages:apierror-badformat-generic','s:72:\"El formato solicitado $1 no es compatible con el modelo de contenido $2.\";'),
+('es','messages:apierror-badgenerator-notgenerator','s:63:\"El módulo $1 no puede utilizarse como un generador.\";'),
+('es','messages:apierror-badgenerator-unknown','s:36:\"generator=$1 desconocido.\";'),
+('es','messages:apierror-badip','s:31:\"El parámetro IP no es válido.\";'),
+('es','messages:apierror-badmd5','s:39:\"El hash MD5 suministrado es incorrecto.\";'),
+('es','messages:apierror-badmodule-badsubmodule','s:53:\"El módulo $1 no tiene un submódulo \"$2\".\";'),
+('es','messages:apierror-badmodule-nosubmodules','s:46:\"El módulo $1 no tiene submódulos.\";'),
+('es','messages:apierror-badparameter','s:50:\"Valor no válido para el parámetro $1.\";'),
+('es','messages:apierror-badquery','s:26:\"La consulta no es válida.\";'),
+('es','messages:apierror-badtimestamp','s:82:\"El valor «$2» no es válido para el parámetro de cronomarcación $1.\";'),
+('es','messages:apierror-badtoken','s:28:\"La ficha CSRF no es válida.\";'),
+('es','messages:apierror-badupload','s:224:\"El parámetro de subida de archivo $1 no es una subida de archivo. Asegúrate de usar multipart/form-data para tu POST e introduce un nombre de archivo en la cabecera Content-Disposition.\";'),
+('es','messages:apierror-badurl','s:62:\"Valor no válido \"$2\" para el parámetro de URL $1.\";'),
+('es','messages:apierror-baduser','s:66:\"Valor no válido \"$2\" para el parámetro de usuario $1.\";'),
+('es','messages:apierror-badvalue-notmultivalue','s:84:\"El separador multivalor U+001F solo se puede utilizar en parámetros multivalorados.\";'),
+('es','messages:apierror-blocked','s:29:\"Se te ha bloqueado de editar.\";'),
+('es','messages:apierror-blocked-partial','s:44:\"Se ha bloqueado tu edición en esta página.\";'),
+('es','messages:apierror-blockedfrommail','s:35:\"Se te ha bloqueado de enviar email.\";'),
+('es','messages:apierror-botsnotsupported','s:44:\"Esta interfaz no está disponible para bots.\";'),
+('es','messages:apierror-cannot-async-upload-file','s:292:\"The parameters async and file cannot be combined. If you want asynchronous processing of your uploaded file, first upload it to stash (using the stash parameter) and then publish the stashed file asynchronously (using filekey and async).\";'),
+('es','messages:apierror-cannotreauthenticate','s:76:\"Esta acción no está disponible, ya que tu identidad no se puede verificar.\";'),
+('es','messages:apierror-cannotviewtitle','s:30:\"No tienes permiso para ver $1.\";'),
+('es','messages:apierror-cantblock','s:41:\"No tienes permiso para bloquear usuarios.\";'),
+('es','messages:apierror-cantblock-email','s:101:\"No tienes permiso para bloquear a los usuarios el envío de correo electrónico a través de la wiki.\";'),
+('es','messages:apierror-cantchangecontentmodel','s:69:\"No tienes permiso para cambiar el modelo de contenido de una página.\";'),
+('es','messages:apierror-canthide','s:75:\"No tienes permiso para ocultar nombres de usuario del registro de bloqueos.\";'),
+('es','messages:apierror-cantimport','s:41:\"No tienes permiso para importar páginas.\";'),
+('es','messages:apierror-cantimport-upload','s:49:\"No tienes permiso para importar páginas subidas.\";'),
+('es','messages:apierror-cantoverwrite-sharedfile','s:94:\"El fichero objetivo existe en un repositorio compartido y no tienes permiso para reemplazarlo.\";'),
+('es','messages:apierror-cantsend','s:196:\"No estás conectado, no tienes una dirección de correo electrónico confirmada o no tienes permiso para enviar correo electrónico a otros usuarios, así que no puedes enviar correo electrónico.\";'),
+('es','messages:apierror-cantundelete','s:104:\"No se ha podido restaurar: puede que las revisiones solicitadas no existan o que ya se hayan restaurado.\";'),
+('es','messages:apierror-cantview-deleted-comment','s:51:\"You don\'t have permission to view deleted comments.\";'),
+('es','messages:apierror-cantview-deleted-description','s:64:\"You don\'t have permission to view descriptions of deleted files.\";'),
+('es','messages:apierror-cantview-deleted-metadata','s:60:\"You don\'t have permission to view metadata of deleted files.\";'),
+('es','messages:apierror-cantview-deleted-revision-content','s:63:\"You don\'t have permission to view content of deleted revisions.\";'),
+('es','messages:apierror-changeauth-norequest','s:52:\"No se ha podido crear la petición de modificación.\";'),
+('es','messages:apierror-changecontentmodel-cannot-convert','s:53:\"Could not convert $1 to content model $2\";'),
+('es','messages:apierror-changecontentmodel-cannotbeused','s:57:\"Model de contenido $1 no se puede usar en $2\";'),
+('es','messages:apierror-changecontentmodel-missingtitle','s:150:\"La página que usted ha especificado no existe. Para crear una nueva página con un modelo de contenido a medida, use el modulo action=edit\";'),
+('es','messages:apierror-changecontentmodel-nodirectediting','s:68:\"El modelo de contenido $1 no apoya la edición directa.\";'),
+('es','messages:apierror-chunk-too-small','s:71:\"Minimum chunk size is $1 {{PLURAL:$1|byte|bytes}} for non-final chunks.\";'),
+('es','messages:apierror-cidrtoobroad','s:49:\"$1 CIDR ranges broader than /$2 are not accepted.\";'),
+('es','messages:apierror-compare-maintextrequired','s:124:\"Parameter $1text-main is required when $1slots contains main (cannot delete the main slot).\";'),
+('es','messages:apierror-compare-no-title','s:101:\"Cannot pre-save transform without a title. Try specifying fromtitle or totitle.\";'),
+('es','messages:apierror-compare-nofromrevision','s:91:\"No \'from\' revision. Specify fromrev, fromtitle, or fromid.\";'),
+('es','messages:apierror-compare-nosuchfromsection','s:49:\"No existe una sección $1 en el contenido \'from\'.\";'),
+('es','messages:apierror-compare-nosuchtosection','s:47:\"No existe una sección $1 en el contenido \'to\'.\";'),
+('es','messages:apierror-compare-notext','s:63:\"No se puede usar el parámetro $1 sin $2.\";'),
+('es','messages:apierror-compare-notorevision','s:83:\"No \'to\' revision. Specify torev, totitle, or toid.\";'),
+('es','messages:apierror-compare-relative-to-deleted','s:67:\"Cannot use torelative=$1 relative to a deleted revision.\";'),
+('es','messages:apierror-compare-relative-to-nothing','s:63:\"No \'from\' revision for torelative to be relative to.\";'),
+('es','messages:apierror-concurrency-limit','s:105:\"A concurrency limit has been exceeded. Please wait for each request to return before submitting the next.\";'),
+('es','messages:apierror-contentmodel-mismatch','s:129:\"The content you supplied has $1 content model, which differs from the current content model of the page $2.\";'),
+('es','messages:apierror-contentserializationexception','s:41:\"La serialización de contenido falló: $1\";'),
+('es','messages:apierror-contenttoobig','s:109:\"El contenido proporcionado supera el límite de tamaño del artículo de $1 {{PLURAL:$1|kibibyte|kibibytes}}.\";'),
+('es','messages:apierror-copyuploadbaddomain','s:55:\"No se permite realizar cargas a partir de este dominio.\";'),
+('es','messages:apierror-copyuploadbadurl','s:51:\"No se permite realizar cargas a partir de este URL.\";'),
+('es','messages:apierror-create-titleexists','s:68:\"Los títulos existentes no se pueden proteger con create.\";'),
+('es','messages:apierror-csp-report','s:43:\"Error de procesamiento del informe CSP: $1.\";'),
+('es','messages:apierror-deletedrevs-param-not-1-2','s:68:\"El parámetro $1 no se puede utilizar en los modos 1 o 2.\";'),
+('es','messages:apierror-deletedrevs-param-not-3','s:55:\"El parámetro $1 no se puede usar en modo 3.\";'),
+('es','messages:apierror-edit-invalidredirect','s:90:\"Cannot edit $1 while following redirects, as target $2 is not valid.\";'),
+('es','messages:apierror-emptynewsection','s:38:\"Crear secciones vacías no es posible.\";'),
+('es','messages:apierror-emptypage','s:42:\"Crear páginas vacías no está permitido.\";'),
+('es','messages:apierror-exceptioncaught','s:29:\"[$1] Excepción capturada: $2\";'),
+('es','messages:apierror-exceptioncaughttype','s:32:\"[$1] Caught exception of type $2\";'),
+('es','messages:apierror-filedoesnotexist','s:21:\"El archivo no existe.\";'),
+('es','messages:apierror-fileexists-sharedrepo-perm','s:119:\"El archivo objetivo existe en un repositorio compartido. Usa el parámetro ignorewarnings para reemplazarlo.\";'),
+('es','messages:apierror-filenopath','s:45:\"No se pudo obtener la ruta local del archivo.\";'),
+('es','messages:apierror-filetypecannotberotated','s:37:\"El tipo de archivo no se puede girar.\";'),
+('es','messages:apierror-formatphp','s:114:\"Esta respuesta no se puede representar con format=php. Véase https://phabricator.wikimedia.org/T68776.\";'),
+('es','messages:apierror-imageusage-badtitle','s:48:\"El título de $1 debe ser un archivo.\";'),
+('es','messages:apierror-import-unknownerror','s:41:\"Error desconocido en la importación: $1.\";'),
+('es','messages:apierror-integeroutofrange-abovebotmax','s:93:\"$1 no puede ser mayor que $2 (fijado a $3) para bots o administradores de sistema.\";'),
+('es','messages:apierror-integeroutofrange-abovemax','s:68:\"$1 no puede ser mayor que $2 (fijado a $3) para usuarios.\";'),
+('es','messages:apierror-integeroutofrange-belowminimum','s:54:\"$1 no puede ser menor que $2 (fijado a $3).\";'),
+('es','messages:apierror-invalid-chunk','s:60:\"Offset plus current chunk is greater than claimed file size.\";'),
+('es','messages:apierror-invalid-file-key','s:21:\"Not a valid file key.\";'),
+('es','messages:apierror-invalidcategory','s:61:\"El nombre de la categoría que has introducido no es válida.\";'),
+('es','messages:apierror-invalidexpiry','s:38:\"Tiempo de expiración \"$1\" no válido.\";'),
+('es','messages:apierror-invalidlang','s:62:\"Código de idioma no válido para el parámetro $1.\";'),
+('es','messages:apierror-invalidmethod','s:51:\"Método HTTP no válido. Considera usar GET o POST.\";'),
+('es','messages:apierror-invalidoldimage','s:62:\"El parámetro oldimage tiene un formato no válido.\";'),
+('es','messages:apierror-invalidparammix','s:62:\"{{PLURAL:$2|Los parámetros}} $1 no se pueden utilizar juntos.\";'),
+('es','messages:apierror-invalidparammix-cannotusewith','s:73:\"El parámetro $1 no se puede utilizar junto con $2.\";'),
+('es','messages:apierror-invalidparammix-mustusewith','s:75:\"El parámetro $1 solo se puede utilizar junto con $2.\";'),
+('es','messages:apierror-invalidparammix-parse-new-section','s:173:\"section=new no se puede combinar con los parámetros oldid, pageid y page. Por favor, utiliza title y text.\";'),
+('es','messages:apierror-invalidsection','s:102:\"El parámetro section debe ser un identificador de sección válido, o bien new.\";'),
+('es','messages:apierror-invalidsha1base36hash','s:47:\"El hash SHA1Base36 proporcionado no es válido.\";'),
+('es','messages:apierror-invalidsha1hash','s:41:\"El hash SHA1 proporcionado no es válido.\";'),
+('es','messages:apierror-invalidtitle','s:24:\"Título incorrecto \"$1\".\";'),
+('es','messages:apierror-invalidurlparam','s:63:\"Valor no válido para $1urlparam ($2=$3).\";'),
+('es','messages:apierror-invaliduser','s:36:\"Nombre de usuario «$1» no válido.\";'),
+('es','messages:apierror-invaliduserid','s:56:\"El identificador de usuario $1 no es válido.\";'),
+('es','messages:apierror-maxbytes','s:75:\"El parámetro $1 no puede sobrepasar $2 {{PLURAL:$2|byte|bytes}}\";'),
+('es','messages:apierror-maxchars','s:98:\"El parámetro $1 no puede sobrepasar $2 {{PLURAL:$2|carácter|caracteres}} de longitud.\";'),
+('es','messages:apierror-maxlag','s:55:\"Waiting for $2: $1 {{PLURAL:$1|second|seconds}} lagged.\";'),
+('es','messages:apierror-maxlag-generic','s:70:\"Waiting for a database server: $1 {{PLURAL:$1|second|seconds}} lagged.\";'),
+('es','messages:apierror-mimesearchdisabled','s:55:\"La búsqueda MIME está deshabilitada en el modo avaro.\";'),
+('es','messages:apierror-missingcontent-pageid','s:56:\"Contenido faltante para la página con identificador $1.\";'),
+('es','messages:apierror-missingcontent-revid','s:35:\"Missing content for revision ID $1.\";'),
+('es','messages:apierror-missingcontent-revid-role','s:47:\"Missing content for revision ID $1 for role $2.\";'),
+('es','messages:apierror-missingparam','s:47:\"Se debe establecer el parámetro $1.\";'),
+('es','messages:apierror-missingparam-at-least-one-of','s:76:\"{{PLURAL:$2|El parámetro|Al menos uno de los parámetros}} $1 es necesario.\";'),
+('es','messages:apierror-missingparam-one-of','s:67:\"{{PLURAL:$2|El parámetro|Uno de los parámetros}} $1 es necesario.\";'),
+('es','messages:apierror-missingrev-pageid','s:56:\"No hay ninguna revisión actual de la página con ID $1.\";'),
+('es','messages:apierror-missingrev-title','s:32:\"No current revision of title $1.\";'),
+('es','messages:apierror-missingtitle','s:34:\"El título especificado no existe.\";'),
+('es','messages:apierror-missingtitle-byname','s:24:\"La página $1 no existe.\";'),
+('es','messages:apierror-missingtitle-createonly','s:69:\"Los títulos faltantes solo se pueden proteger con create.\";'),
+('es','messages:apierror-moduledisabled','s:47:\"El módulo $1 ha sido deshabilitado.\";'),
+('es','messages:apierror-multival-only-one-of','s:99:\"Solo {{PLURAL:$3|se permite el valor|se permiten los valores}} $2 para el parámetro $1.\";'),
+('es','messages:apierror-multpages','s:65:\"$1 no se puede utilizar más que con una sola página.\";'),
+('es','messages:apierror-mustbeloggedin','s:30:\"Debes estar conectado para $1.\";'),
+('es','messages:apierror-mustbeloggedin-changeauth','s:71:\"Debes estar conectado para poder cambiar los datos de autentificación.\";'),
+('es','messages:apierror-mustbeloggedin-generic','s:22:\"Debes estar conectado.\";'),
+('es','messages:apierror-mustbeloggedin-linkaccounts','s:43:\"Debes estar conectado para enlazar cuentas.\";'),
+('es','messages:apierror-mustbeloggedin-removeauth','s:60:\"Debes estar conectado para borrar datos de autentificación.\";'),
+('es','messages:apierror-mustbeloggedin-uploadstash','s:102:\"El almacén provisional de cargas solo está disponible para usuarios que hayan accedido a una cuenta.\";'),
+('es','messages:apierror-mustbeposted','s:53:\"El módulo $1 requiere una petición POST.\";'),
+('es','messages:apierror-mustpostparams','s:162:\"Se {{PLURAL:$2|encontró el siguiente parámetro|encontraron los siguientes parámetros}} en la cadena de la consulta, pero deben estar en el cuerpo del POST: $1.\";'),
+('es','messages:apierror-no-direct-editing','s:104:\"La edición directa a través de la API no es compatible con el modelo de contenido $1 utilizado por $2.\";'),
+('es','messages:apierror-noapiwrite','s:65:\"La edición de esta wiki a través de la API está deshabilitada.\";'),
+('es','messages:apierror-nochanges','s:31:\"No se solicitó ningún cambio.\";'),
+('es','messages:apierror-nodeleteablefile','s:43:\"No existe tal versión antigua del archivo.\";'),
+('es','messages:apierror-noedit','s:39:\"No tienes permiso para editar páginas.\";'),
+('es','messages:apierror-noedit-anon','s:49:\"Los usuarios anónimos no pueden editar páginas.\";'),
+('es','messages:apierror-noimageredirect','s:56:\"No tienes permiso para crear redirecciones de imágenes.\";'),
+('es','messages:apierror-noimageredirect-anon','s:66:\"Los usuarios anónimos no pueden crear redirecciones de imágenes.\";'),
+('es','messages:apierror-nosuchlogid','s:56:\"No hay ninguna entrada de registro con identificador $1.\";'),
+('es','messages:apierror-nosuchpageid','s:44:\"No hay ninguna página con identificador $1.\";'),
+('es','messages:apierror-nosuchrcid','s:52:\"No hay ningún cambio reciente con identificador $1.\";'),
+('es','messages:apierror-nosuchrevid','s:46:\"No hay ninguna revisión con identificador $1.\";'),
+('es','messages:apierror-nosuchsection','s:27:\"No hay ninguna sección $1.\";'),
+('es','messages:apierror-nosuchsection-what','s:33:\"No hay ninguna sección $1 en $2.\";'),
+('es','messages:apierror-nosuchuserid','s:33:\"No hay ningún usuario con ID $1.\";'),
+('es','messages:apierror-notarget','s:57:\"No has especificado un destino válido para esta acción.\";'),
+('es','messages:apierror-notpatrollable','s:65:\"La revisión r$1 no se puede patrullar por ser demasiado antigua.\";'),
+('es','messages:apierror-nouploadmodule','s:21:\"No upload module set.\";'),
+('es','messages:apierror-opensearch-json-warnings','s:66:\"No se pueden representar los avisos en formato JSON de OpenSearch.\";'),
+('es','messages:apierror-pagecannotexist','s:58:\"En este espacio de nombres no se permiten páginas reales.\";'),
+('es','messages:apierror-pagedeleted','s:81:\"En algún momento desde que se obtuvo el cronomarcador, se ha borrado la página.\";'),
+('es','messages:apierror-pagelang-disabled','s:58:\"En esta wiki no se puede cambiar el idioma de una página.\";'),
+('es','messages:apierror-paramempty','s:50:\"El parámetro $1 no puede estar vacío.\";'),
+('es','messages:apierror-parsetree-notwikitext','s:75:\"prop=parsetree solo es compatible con el contenido en wikitexto.\";'),
+('es','messages:apierror-parsetree-notwikitext-title','s:109:\"prop=parsetree solo es compatible con el contenido en wikitexto. $1 usa el modelo de contenido $2.\";'),
+('es','messages:apierror-pastexpiry','s:32:\"Expiry time \"$1\" is in the past.\";'),
+('es','messages:apierror-permissiondenied','s:26:\"No tienes permiso para $1.\";'),
+('es','messages:apierror-permissiondenied-generic','s:17:\"Permiso denegado.\";'),
+('es','messages:apierror-permissiondenied-patrolflag','s:97:\"You need the patrol or patrolmarks right to request the patrolled flag.\";'),
+('es','messages:apierror-permissiondenied-unblock','s:44:\"No tienes permiso para desbloquear usuarios.\";'),
+('es','messages:apierror-prefixsearchdisabled','s:62:\"La búsqueda por prefijo está deshabilitada en el modo avaro.\";'),
+('es','messages:apierror-promised-nonwrite-api','s:117:\"La cabecera HTTP Promise-Non-Write-API-Action no se puede enviar a módulos de la API en modo escritura.\";'),
+('es','messages:apierror-protect-invalidaction','s:38:\"Tipo de protección «$1» no válido.\";'),
+('es','messages:apierror-protect-invalidlevel','s:39:\"Nivel de protección «$1» no válido.\";'),
+('es','messages:apierror-ratelimited','s:82:\"Has excedido tu límite de frecuencia. Aguarda unos minutos y vuelve a intentarlo.\";'),
+('es','messages:apierror-readapidenied','s:56:\"Necesitas permiso de lectura para utilizar este módulo.\";'),
+('es','messages:apierror-readonly','s:50:\"La wiki está actualmente en modo de solo lectura.\";'),
+('es','messages:apierror-reauthenticate','s:90:\"No te has autentificado recientemente en esta sesión. Por favor, vuelve a autentificarte.\";'),
+('es','messages:apierror-redirect-appendonly','s:174:\"You have attempted to edit using the redirect-following mode, which must be used in conjunction with section=new, prependtext, or appendtext.\";'),
+('es','messages:apierror-revdel-mutuallyexclusive','s:69:\"No se puede usar el mismo campo en hide y show.\";'),
+('es','messages:apierror-revdel-needtarget','s:48:\"A target title is required for this RevDel type.\";'),
+('es','messages:apierror-revdel-paramneeded','s:71:\"Se requiere al menos un valor para hide y/o show.\";'),
+('es','messages:apierror-revisions-badid','s:67:\"No se encontró ninguna revisión para el parámetro $1.\";'),
+('es','messages:apierror-revisions-norevids','s:256:\"El parámetro revids no se puede utilizar junto con las opciones de lista ($1limit, $1startid, $1endid, $1dir=newer, $1user, $1excludeuser, $1start y $1end).\";'),
+('es','messages:apierror-revisions-singlepage','s:338:\"Se utilizó titles, pageids o un generador para proporcionar múltiples páginas, pero los parámetros $1limit, $1startid, $1endid, $1dir=newer, $1user, $1excludeuser, $1start y $1end solo se pueden utilizar en una sola página.\";'),
+('es','messages:apierror-revwrongpage','s:30:\"r$1 no es una revisión de $2.\";'),
+('es','messages:apierror-searchdisabled','s:52:\"Se ha desactivado la búsqueda de «$1».\";'),
+('es','messages:apierror-sectionreplacefailed','s:49:\"No se ha podido combinar la sección actualizada.\";'),
+('es','messages:apierror-sectionsnotsupported','s:63:\"Las secciones no son compatibles con el modelo de contenido $1.\";'),
+('es','messages:apierror-sectionsnotsupported-what','s:40:\"Las secciones no son compatibles con $1.\";'),
+('es','messages:apierror-show','s:80:\"Parámetro incorrecto: no se pueden proporcionar valores mutuamente excluyentes.\";'),
+('es','messages:apierror-siteinfo-includealldenied','s:118:\"No se puede ver la información de todos los servidores a menos que $wgShowHostnames tenga valor verdadero.\";'),
+('es','messages:apierror-sizediffdisabled','s:62:\"La diferencia de tamaño está deshabilitada en el modo avaro.\";'),
+('es','messages:apierror-spamdetected','s:77:\"Tu edición fue rechazada por contener un fragmento de spam: $1.\";'),
+('es','messages:apierror-specialpage-cantexecute','s:67:\"No tienes permiso para ver los resultados de esta página especial.\";'),
+('es','messages:apierror-stashedfilenotfound','s:63:\"No se pudo encontrar el archivo en el almacén provisional: $1.\";'),
+('es','messages:apierror-stashedit-missingtext','s:42:\"No stashed text found with the given hash.\";'),
+('es','messages:apierror-stashexception','s:2:\"$1\";'),
+('es','messages:apierror-stashfailed-complete','s:62:\"Chunked upload is already completed, check status for details.\";'),
+('es','messages:apierror-stashfailed-nosession','s:40:\"No chunked upload session with this key.\";'),
+('es','messages:apierror-stashfilestorage','s:58:\"No se pudo guardar la carga en el almacén provisional: $1\";'),
+('es','messages:apierror-stashinvalidfile','s:21:\"Invalid stashed file.\";'),
+('es','messages:apierror-stashnosuchfilekey','s:20:\"No such filekey: $1.\";'),
+('es','messages:apierror-stashpathinvalid','s:53:\"File key of improper format or otherwise invalid: $1.\";'),
+('es','messages:apierror-stashwrongowner','s:26:\"Propietario incorrecto: $1\";'),
+('es','messages:apierror-stashzerolength','s:79:\"El archivo mide cero bytes y no puede guardarse en el almacén provisional: $1.\";'),
+('es','messages:apierror-systemblocked','s:62:\"Has sido bloqueado automáticamente por el software MediaWiki.\";'),
+('es','messages:apierror-templateexpansion-notwikitext','s:111:\"La expansión de plantillas solo es compatible con el contenido en wikitexto. $1 usa el modelo de contenido $2.\";'),
+('es','messages:apierror-toofewexpiries','s:102:\"$1 expiry {{PLURAL:$1|timestamp was|timestamps were}} provided where $2 {{PLURAL:$2|was|were}} needed.\";'),
+('es','messages:apierror-toomanyvalues','s:86:\"Se proporcionaron demasiados valores al parámetro $1. El límite es de $2.\";'),
+('es','messages:apierror-unknownaction','s:60:\"La acción especificada, $1, no está reconocida.\";'),
+('es','messages:apierror-unknownerror','s:25:\"Error desconocido: «$1»\";'),
+('es','messages:apierror-unknownerror-editpage','s:34:\"Error de EditPage desconocido: $1.\";'),
+('es','messages:apierror-unknownerror-nocode','s:18:\"Error desconocido.\";'),
+('es','messages:apierror-unknownformat','s:29:\"Formato no reconocido «$1».\";'),
+('es','messages:apierror-unrecognizedparams','s:70:\"{{PLURAL:$2|Parámetro no reconocido|Parámetros no reconocidos}}: $1.\";'),
+('es','messages:apierror-unrecognizedvalue','s:57:\"Valor no reconocido para el parámetro $1: $2.\";'),
+('es','messages:apierror-unsupportedrepo','s:74:\"El repositorio local de archivos no permite consultar todas las imágenes.\";'),
+('es','messages:apierror-upload-filekeyneeded','s:68:\"Must supply a filekey when offset is non-zero.\";'),
+('es','messages:apierror-upload-filekeynotallowed','s:63:\"Cannot supply a filekey when offset is 0.\";'),
+('es','messages:apierror-upload-inprogress','s:57:\"Ya está en curso la carga desde el almacén provisional.\";'),
+('es','messages:apierror-upload-missingresult','s:25:\"No result in status data.\";'),
+('es','messages:apierror-urlparamnormal','s:58:\"No se pudieron normalizar los parámetros de imagen de $1.\";'),
+('es','messages:apierror-visualeditor-badcachekey','s:43:\"No cached serialization found with that key\";'),
+('es','messages:apierror-visualeditor-difffailed','s:40:\"Falló la generación de las diferencias\";'),
+('es','messages:apierror-visualeditor-docserver','s:61:\"Error al ponerse en contacto con el servidor Parsoid/RESTbase\";'),
+('es','messages:apierror-visualeditor-docserver-http','s:54:\"Error contacting the Parsoid/RESTBase server (HTTP $1)\";'),
+('es','messages:apierror-visualeditor-docserver-http-error','s:48:\"Error contacting the Parsoid/RESTBase server: $1\";'),
+('es','messages:apierror-visualeditor-docserver-unconfigured','s:120:\"The VirtualRESTService for the document server is not defined; see https://www.mediawiki.org/wiki/Extension:VisualEditor\";'),
+('es','messages:apierror-visualeditor-latestnotfound','s:58:\"No se pudo encontrar la última revisión para ese título\";'),
+('es','messages:apierror-writeapidenied','s:60:\"No tienes permiso para editar esta wiki a través de la API.\";'),
+('es','messages:apihelp','s:15:\"Ayuda de la API\";'),
+('es','messages:apihelp-block-example-ip-simple','s:80:\"Bloquear la dirección IP 192.0.2.5 durante tres días con un motivo.\";'),
+('es','messages:apihelp-block-example-user-complex','s:118:\"Bloquear al usuario Vandal indefinidamente con un motivo y evitar que cree nuevas cuentas o envíe correos.\";'),
+('es','messages:apihelp-block-param-actionrestrictions','s:103:\"List of actions to block the user from performing. Only applies when partial is set to true.\";'),
+('es','messages:apihelp-block-param-allowusertalk','s:161:\"Permitir que el usuario edite su propia página de discusión (depende de [[mw:Special:MyLanguage/Manual:$wgBlockAllowsUTEdit|$wgBlockAllowsUTEdit]]).\";'),
+('es','messages:apihelp-block-param-anononly','s:98:\"Bloquear solo usuarios anónimos (es decir, desactivar ediciones anónimas de esta dirección IP).\";'),
+('es','messages:apihelp-block-param-autoblock','s:123:\"Bloquear automáticamente la última dirección IP y todas las direcciones IP que traten de iniciar sesión posteriormente.\";'),
+('es','messages:apihelp-block-param-expiry','s:267:\"Fecha de expiración. Puede ser relativa (por ejemplo, 5 months o 2 weeks) o absoluta (por ejemplo, 2014-09-18T12:34:56Z). Si se establece en infinite, indefinite, o never, el bloqueo será permanente.\";'),
+('es','messages:apihelp-block-param-hidename','s:101:\"Ocultar el nombre de usuario del registro de bloqueo (es necesario el derecho hideuser).\";'),
+('es','messages:apihelp-block-param-namespacerestrictions','s:153:\"Lista de identificadores de espacio de nombres para bloquear la edición del usuario. Solo se aplica cuando partial está establecido en true.\";'),
+('es','messages:apihelp-block-param-nocreate','s:33:\"Prevenir la creación de cuentas.\";'),
+('es','messages:apihelp-block-param-noemail','s:108:\"Evitar que el usuario envíe correos a través de la wiki (es necesario el derecho blockemail).\";'),
+('es','messages:apihelp-block-param-pagerestrictions','s:134:\"Lista de títulos para bloquear la edición por parte del usuario. Solo se aplica cuando partial está establecido en true.\";'),
+('es','messages:apihelp-block-param-partial','s:95:\"Bloquear a un usuario en determinadas páginas o espacios de nombres en lugar del sitio entero.\";'),
+('es','messages:apihelp-block-param-reason','s:23:\"Razón para el bloqueo.\";'),
+('es','messages:apihelp-block-param-reblock','s:67:\"Si la cuenta ya está bloqueada, sobrescribir el bloqueo existente.\";'),
+('es','messages:apihelp-block-param-tags','s:74:\"Cambiar las etiquetas que aplicar a la entrada en el registro de bloqueos.\";'),
+('es','messages:apihelp-block-param-user','s:21:\"Usuario que bloquear.\";'),
+('es','messages:apihelp-block-param-userid','s:78:\"ID de usuario para bloquear. No se puede utilizar junto con $1user.\";'),
+('es','messages:apihelp-block-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-block-param-watchuser','s:82:\"Vigilar las páginas de usuario y de discusión del usuario o de la dirección IP.\";'),
+('es','messages:apihelp-block-summary','s:22:\"Bloquear a un usuario.\";'),
+('es','messages:apihelp-changeauthenticationdata-example-password','s:84:\"Intento para cambiar la contraseña del usuario actual a ExamplePassword.\";'),
+('es','messages:apihelp-changeauthenticationdata-summary','s:61:\"Cambiar los datos de autentificación para el usuario actual.\";'),
+('es','messages:apihelp-changecontentmodel-example','s:80:\"Cambiar la página principal para tener el modelo de contenido text\";'),
+('es','messages:apihelp-changecontentmodel-param-bot','s:60:\"Marca el cambio de modelo de contenido con un indicador bot.\";'),
+('es','messages:apihelp-changecontentmodel-param-model','s:40:\"Modelo de contenido del nuevo contenido.\";'),
+('es','messages:apihelp-changecontentmodel-param-pageid','s:99:\"Page ID of the page to change the contentmodel of. Cannot be used together with $1title.\";'),
+('es','messages:apihelp-changecontentmodel-param-summary','s:54:\"Resumen de edición y razón para entrada de registro.\";'),
+('es','messages:apihelp-changecontentmodel-param-tags','s:66:\"Cambia etiquetas para aplicar a la entrada de registro y edición.\";'),
+('es','messages:apihelp-changecontentmodel-param-title','s:98:\"Title of the page to change the contentmodel of. Cannot be used together with $1pageid.\";'),
+('es','messages:apihelp-changecontentmodel-summary','s:44:\"Cambia el modelo de contenido de una página\";'),
+('es','messages:apihelp-checktoken-example-simple','s:47:\"Probar la validez de una ficha csrf.\";'),
+('es','messages:apihelp-checktoken-param-maxtokenage','s:43:\"Duración máxima de la ficha, en segundos.\";'),
+('es','messages:apihelp-checktoken-param-token','s:15:\"Ficha a probar.\";'),
+('es','messages:apihelp-checktoken-param-type','s:23:\"Tipo de ficha a probar.\";'),
+('es','messages:apihelp-checktoken-summary','s:109:\"Comprueba la validez de una ficha desde [[Special:ApiHelp/query+tokens|action=query&meta=tokens]].\";'),
+('es','messages:apihelp-clearhasmsg-example-1','s:56:\"Limpiar la marca hasmsg del usuario actual.\";'),
+('es','messages:apihelp-clearhasmsg-summary','s:55:\"Limpia la marca hasmsg del usuario actual.\";'),
+('es','messages:apihelp-clientlogin-example-login','s:130:\"Comenzar el proceso para iniciar sesión en la wiki como usuario Example con la contraseña ExamplePassword.\";'),
+('es','messages:apihelp-clientlogin-example-login2','s:177:\"Continuar el inicio de sesión después de una respuesta de la UI a la autenticación de dos pasos, en la que devuelve un OATHToken de 987654.\";'),
+('es','messages:apihelp-clientlogin-summary','s:43:\"Entrar en wiki usando el flujo interactivo.\";'),
+('es','messages:apihelp-compare-example-1','s:48:\"Crear una diferencia entre las revisiones 1 y 2.\";'),
+('es','messages:apihelp-compare-extended-description','s:97:\"Se debe pasar un número de revisión, un título de página o una ID tanto desde \"de\" hasta \"a\".\";'),
+('es','messages:apihelp-compare-param-fromcontentformat','s:84:\"Specify fromslots=main and use fromcontentformat-main instead.\";'),
+('es','messages:apihelp-compare-param-fromcontentformat-{slot}','s:79:\"Formato de serialización de contenido de desde texto-{ranura}.\";'),
+('es','messages:apihelp-compare-param-fromcontentmodel','s:83:\"Specify fromslots=main and use fromcontentmodel-main instead.\";'),
+('es','messages:apihelp-compare-param-fromcontentmodel-{slot}','s:130:\"Modelo de contenido de from text-{slot}. Si no se suministra, se calculará en función de los demás parámetros.\";'),
+('es','messages:apihelp-compare-param-fromid','s:36:\"ID de la primera página a comparar.\";'),
+('es','messages:apihelp-compare-param-frompst','s:83:\"Realizar una transformación previa al guardado en fromtext-{slot}.\";'),
+('es','messages:apihelp-compare-param-fromrev','s:32:\"Primera revisión para comparar.\";'),
+('es','messages:apihelp-compare-param-fromsection','s:74:\"Solamente usar la sección especificada del contenido \'from\' especificado.\";'),
+('es','messages:apihelp-compare-param-fromsection-{slot}','s:264:\"Cuando fromtext-{slot} es el contenido de una sola sección, este es el número de sección. Se combinará en la revisión especificada por fromtitle, fromid o fromrev como si se tratara de una edición de sección.\";'),
+('es','messages:apihelp-compare-param-fromslots','s:379:\"Reemplazar el contenido de la revisión especificada por fromtitle, fromid o fromrev.\n\nEste parámetro especifica las ranuras que se van a modificar. Utiliza desde texto-{ranura}, desde modelo de contenido-{ranura} y desde formato de contenido-{ranura} para especificar el contenido de cada ranura.\";'),
+('es','messages:apihelp-compare-param-fromtext','s:86:\"Especificar fromslots=main y utilizar fromtext-main en su lugar.\";'),
+('es','messages:apihelp-compare-param-fromtext-{slot}','s:81:\"Texto de la ranura especificada. Si se omite, la ranura se quita de la revisión.\";'),
+('es','messages:apihelp-compare-param-fromtitle','s:28:\"Primer título para comparar\";'),
+('es','messages:apihelp-compare-param-prop','s:46:\"Qué fragmentos de información se obtendrán.\";'),
+('es','messages:apihelp-compare-param-slots','s:85:\"Return individual diffs for these slots, rather than one combined diff for all slots.\";'),
+('es','messages:apihelp-compare-param-tocontentformat','s:80:\"Specify toslots=main and use tocontentformat-main instead.\";'),
+('es','messages:apihelp-compare-param-tocontentformat-{slot}','s:62:\"Content serialization format of totext-{slot}.\";'),
+('es','messages:apihelp-compare-param-tocontentmodel','s:79:\"Specify toslots=main and use tocontentmodel-main instead.\";'),
+('es','messages:apihelp-compare-param-tocontentmodel-{slot}','s:114:\"Content model of totext-{slot}. If not supplied, it will be guessed based on the other parameters.\";'),
+('es','messages:apihelp-compare-param-toid','s:47:\"Segunda identificador de página para comparar.\";'),
+('es','messages:apihelp-compare-param-topst','s:45:\"Do a pre-save transform on totext.\";'),
+('es','messages:apihelp-compare-param-torelative','s:165:\"Use a revision relative to the revision determined from fromtitle, fromid or fromrev. All of the other \'to\' options will be ignored.\";'),
+('es','messages:apihelp-compare-param-torev','s:32:\"Segunda revisión para comparar.\";'),
+('es','messages:apihelp-compare-param-tosection','s:72:\"Solamente usar la sección especificada del contenido \'to\' especificado.\";'),
+('es','messages:apihelp-compare-param-tosection-{slot}','s:233:\"When totext-{slot} is the content of a single section, this is the section identifier. It will be merged into the revision specified by totitle, toid or torev as if for a section edit.\";'),
+('es','messages:apihelp-compare-param-toslots','s:314:\"Override content of the revision specified by totitle, toid or torev.\n\nThis parameter specifies the slots that are to be modified. Use totext-{slot}, tocontentmodel-{slot}, and tocontentformat-{slot} to specify content for each slot.\";'),
+('es','messages:apihelp-compare-param-totext','s:71:\"Specify toslots=main and use totext-main instead.\";'),
+('es','messages:apihelp-compare-param-totext-{slot}','s:78:\"Text of the specified slot. If omitted, the slot is removed from the revision.\";'),
+('es','messages:apihelp-compare-param-totitle','s:30:\"Segundo título para comparar.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-comment','s:179:\"The comment on the \'from\' and \'to\' revisions. If the comment has been revision deleted, a fromcommenthidden or tocommenthidden property will be returned.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-diff','s:27:\"El HTML de las diferencias.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-diffsize','s:49:\"El tamaño del HTML de las diferencias, en bytes.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-ids','s:59:\"The page and revision IDs of the \'from\' and \'to\' revisions.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-parsedcomment','s:186:\"The parsed comment on the \'from\' and \'to\' revisions. If the comment has been revision deleted, a fromcommenthidden or tocommenthidden property will be returned.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-rel','s:75:\"The revision IDs of the revision previous to \'from\' and after \'to\', if any.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-size','s:42:\"The size of the \'from\' and \'to\' revisions.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-title','s:49:\"The page titles of the \'from\' and \'to\' revisions.\";'),
+('es','messages:apihelp-compare-paramvalue-prop-user','s:179:\"The user name and ID of the \'from\' and \'to\' revisions. If the user has been revision deleted, a fromuserhidden or touserhidden property will be returned.\";'),
+('es','messages:apihelp-compare-summary','s:39:\"Obtener la diferencia entre 2 páginas.\";'),
+('es','messages:apihelp-createaccount-example-create','s:109:\"Empezar el proceso de creación del usuario Example con la contraseña ExamplePassword.\";'),
+('es','messages:apihelp-createaccount-param-preservestate','s:381:\"Si [[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]] devolvió true (verdadero) para hasprimarypreservedstate, deberían omitirse las peticiones marcadas como primary-required. Si devolvió un valor no vacío para preservedusername, se debe usar ese nombre de usuario en el parámetro username.\";'),
+('es','messages:apihelp-createaccount-summary','s:34:\"Crear una nueva cuenta de usuario.\";'),
+('es','messages:apihelp-cspreport-param-reportonly','s:79:\"Marcar como informe proveniente de una normativa de vigilancia, no una impuesta\";'),
+('es','messages:apihelp-cspreport-param-source','s:54:\"Qué generó la cabecera CSP que provocó este informe\";'),
+('es','messages:apihelp-cspreport-summary','s:216:\"Utilizado por los navegadores para informar de violaciones a la normativa de seguridad de contenidos. Este módulo no debe usarse nunca, excepto cuando se usa automáticamente por un navegador web compatible con CSP.\";'),
+('es','messages:apihelp-delete-example-reason','s:83:\"Eliminar Main Page con el motivo Preparándose para traslado.\";'),
+('es','messages:apihelp-delete-example-simple','s:38:\"Borrar la Página principal\";'),
+('es','messages:apihelp-delete-param-deletetalk','s:35:\"Delete the talk page, if it exists.\";'),
+('es','messages:apihelp-delete-param-oldimage','s:159:\"El nombre de la imagen antigua es proporcionado conforme a lo dispuesto por [[Special:ApiHelp/query+imageinfo|action=query&prop=imageinfo&iiprop=archivename]].\";'),
+('es','messages:apihelp-delete-param-pageid','s:77:\"ID de la página a eliminar. No se puede utilizar junto a $1title.\";'),
+('es','messages:apihelp-delete-param-reason','s:82:\"Motivo de la eliminación. Si no se especifica, se generará uno automáticamente.\";'),
+('es','messages:apihelp-delete-param-tags','s:78:\"Cambio de etiquetas para aplicar a la entrada en la eliminación del registro.\";'),
+('es','messages:apihelp-delete-param-title','s:83:\"Título de la página a eliminar. No se puede utilizar junto a $1pageid.\";'),
+('es','messages:apihelp-delete-param-unwatch','s:64:\"Quitar la página de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-delete-param-watch','s:66:\"Añadir esta página a la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-delete-param-watchlist','s:150:\"Añadir o quitar incondicionalmente la página de la lista de seguimiento del usuario actual, usar preferencias o no cambiar el estado de seguimiento.\";'),
+('es','messages:apihelp-delete-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-delete-summary','s:19:\"Borrar una página.\";'),
+('es','messages:apihelp-disabled-summary','s:27:\"Se desactivó este módulo.\";'),
+('es','messages:apihelp-edit-example-edit','s:18:\"Editar una página\";'),
+('es','messages:apihelp-edit-example-prepend','s:53:\"Anteponer __NOTOC__ a una página.\";'),
+('es','messages:apihelp-edit-example-undo','s:68:\"Deshacer intervalo de revisiones 13579-13585 con resumen automático\";'),
+('es','messages:apihelp-edit-param-appendtext','s:149:\"Añadir este texto al principio de la página. Reemplaza $1text.\n\nUtiliza $1section=new para añadir una nueva sección, en lugar de este parámetro.\";'),
+('es','messages:apihelp-edit-param-baserevid','s:259:\"Identificación de la revisión base, usada para detectar conflictos de ediciones. Se puede obtener mediante [[Special:ApiHelp/query+revisions|action=query&prop=revisions]]. \"Self-conflicts\" causan que la edición fracase a menos que basetimestamp sea fijado.\";'),
+('es','messages:apihelp-edit-param-basetimestamp','s:227:\"Cronomarcador de la revisión de base utilizado para detectar conflictos de edición. Puede obtenerse a través de [[Special:ApiHelp/query+revisions|action=query&prop=revisions&rvprop=timestamp]]. Se ignoran los autoconflictos.\";'),
+('es','messages:apihelp-edit-param-bot','s:37:\"Marcar esta como una edición de bot.\";'),
+('es','messages:apihelp-edit-param-contentformat','s:74:\"Formato de serialización de contenido utilizado para el texto de entrada.\";'),
+('es','messages:apihelp-edit-param-contentmodel','s:40:\"Modelo de contenido del nuevo contenido.\";'),
+('es','messages:apihelp-edit-param-createonly','s:34:\"No editar la página si ya existe.\";'),
+('es','messages:apihelp-edit-param-md5','s:170:\"El hash MD5 del parámetro $1text, o los parámetros concatenados $1prependtext y $1appendtext. Si se establece, la edición no se hará a menos que el hash sea correcto.\";'),
+('es','messages:apihelp-edit-param-minor','s:32:\"Marcar esta edición como menor.\";'),
+('es','messages:apihelp-edit-param-nocreate','s:42:\"Producir un error si la página no existe.\";'),
+('es','messages:apihelp-edit-param-notminor','s:18:\"Edición no menor.\";'),
+('es','messages:apihelp-edit-param-pageid','s:75:\"ID de la página a editar. No se puede utilizar junto a $1title.\";'),
+('es','messages:apihelp-edit-param-prependtext','s:64:\"Añadir este texto al principio de la página. Reemplaza $1text.\";'),
+('es','messages:apihelp-edit-param-recreate','s:84:\"Reemplazar los errores acerca de la página de haber sido eliminados en el ínterin.\";'),
+('es','messages:apihelp-edit-param-redirect','s:40:\"Resolver redirecciones automáticamente.\";'),
+('es','messages:apihelp-edit-param-section','s:104:\"Número de la sección. 0 para una sección superior, new para una sección nueva.\";'),
+('es','messages:apihelp-edit-param-sectiontitle','s:33:\"El título de una sección nueva.\";'),
+('es','messages:apihelp-edit-param-starttimestamp','s:297:\"Marca de tiempo de cuando empezó el proceso de edición, usada para detectar conflictos de edición. Se puede obtener un valor apropiado usando [[Special:ApiHelp/main|curtimestamp]] cuando comiences el proceso de edición (por ejemplo, al cargar el contenido de la página por editar).\";'),
+('es','messages:apihelp-edit-param-summary','s:112:\"Editar resumen. Además de la sección del título cuando $1section=new y $1sectiontitle no están establecidos.\";'),
+('es','messages:apihelp-edit-param-tags','s:52:\"Cambia las etiquetas para aplicarlas a la revisión.\";'),
+('es','messages:apihelp-edit-param-text','s:24:\"Contenido de la página.\";'),
+('es','messages:apihelp-edit-param-title','s:81:\"Título de la página a editar. No se puede utilizar junto a $1pageid.\";'),
+('es','messages:apihelp-edit-param-token','s:102:\"La clave debe enviarse siempre como el último parámetro o, al menos, después del parámetro $1text.\";'),
+('es','messages:apihelp-edit-param-undo','s:72:\"Deshacer esta revisión. Reemplaza $1text, $1prependtext y $1appendtext.\";'),
+('es','messages:apihelp-edit-param-undoafter','s:105:\"Deshacer todas las revisiones desde $1undo a esta. Si no está establecido solo se deshace una revisión.\";'),
+('es','messages:apihelp-edit-param-unwatch','s:64:\"Quitar la página de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-edit-param-watch','s:64:\"Añadir la página a la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-edit-param-watchlist','s:120:\"Incondicionalmente añadir o eliminar la página de lista del usuario actual, utilice referencias o no cambiar el reloj.\";'),
+('es','messages:apihelp-edit-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-edit-summary','s:24:\"Crear y editar páginas.\";'),
+('es','messages:apihelp-emailuser-example-email','s:81:\"Enviar un correo al usuario WikiSysop con el texto Content.\";'),
+('es','messages:apihelp-emailuser-param-ccme','s:35:\"Enviarme una copia de este mensaje.\";'),
+('es','messages:apihelp-emailuser-param-subject','s:20:\"Cabecera del asunto.\";'),
+('es','messages:apihelp-emailuser-param-target','s:31:\"Cuenta de usuario destinatario.\";'),
+('es','messages:apihelp-emailuser-param-text','s:19:\"Cuerpo del mensaje.\";'),
+('es','messages:apihelp-emailuser-summary','s:54:\"Enviar un mensaje de correo electrónico a un usuario.\";'),
+('es','messages:apihelp-expandtemplates-example-simple','s:70:\"Expandir el wikitexto {{REVISIONID}} y variables similares.\";'),
+('es','messages:apihelp-expandtemplates-param-showstrategykeys','s:82:\"Si se incluye la información de la estrategia de fusión interna en jsconfigvars.\";'),
+('es','messages:apihelp-expandtemplates-param-text','s:29:\"Wikitexto que se convertirá.\";'),
+('es','messages:apihelp-expandtemplates-param-title','s:22:\"Título de la página.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-categories','s:100:\"Cualesquiera categorías presentes en la entrada que no están representadas en salida de wikitexto.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-encodedjsconfigvars','s:96:\"Da las variables de configuración JavaScript específicas para la página como una cadena JSON.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-jsconfigvars','s:75:\"Da las variables de configuración JavaScript específicas para la página.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-modules','s:225:\"Todos los módulos ResourceLoader que las funciones del analizador sintáctico hayan solicitado añadir a la salida. Debe solicitarse jsconfigvars o bien encodedjsconfigvars junto con modules.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-parsetree','s:46:\"El árbol XML analiza el árbol de la entrada.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-properties','s:71:\"Propiedades de página definidas por palabras mágicas en el wikitexto.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-ttl','s:78:\"El tiempo máximo tras el cual deberían invalidarse los resultados en caché.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-volatile','s:86:\"Si la salida es volátil y no debe ser reutilizada en otro lugar dentro de la página.\";'),
+('es','messages:apihelp-expandtemplates-paramvalue-prop-wikitext','s:23:\"El wikitexto expandido.\";'),
+('es','messages:apihelp-expandtemplates-summary','s:42:\"Expande todas las plantillas en wikitexto.\";'),
+('es','messages:apihelp-feedcontributions-example-simple','s:59:\"Devolver las contribuciones del usuario Example.\";'),
+('es','messages:apihelp-feedcontributions-param-deletedonly','s:41:\"Mostrar solo las contribuciones borradas.\";'),
+('es','messages:apihelp-feedcontributions-param-feedformat','s:26:\"El formato del suministro.\";'),
+('es','messages:apihelp-feedcontributions-param-hideminor','s:26:\"Ocultar ediciones menores.\";'),
+('es','messages:apihelp-feedcontributions-param-month','s:32:\"A partir del mes (y anteriores).\";'),
+('es','messages:apihelp-feedcontributions-param-namespace','s:50:\"Espacio de nombre para filtrar las contribuciones.\";'),
+('es','messages:apihelp-feedcontributions-param-newonly','s:54:\"Mostrar solo ediciones que son creaciones de páginas.\";'),
+('es','messages:apihelp-feedcontributions-param-showsizediff','s:50:\"Mostrar la diferencia de tamaño entre revisiones.\";'),
+('es','messages:apihelp-feedcontributions-param-tagfilter','s:54:\"Filtrar las contribuciones que tienen estas etiquetas.\";'),
+('es','messages:apihelp-feedcontributions-param-toponly','s:51:\"Mostrar solo ediciones que son últimas revisiones.\";'),
+('es','messages:apihelp-feedcontributions-param-user','s:40:\"De qué usuarios recibir contribuciones.\";'),
+('es','messages:apihelp-feedcontributions-param-year','s:33:\"A partir del año (y anteriores).\";'),
+('es','messages:apihelp-feedcontributions-summary','s:55:\"Devuelve el suministro de contribuciones de un usuario.\";'),
+('es','messages:apihelp-feedrecentchanges-example-30days','s:51:\"Mostrar los cambios recientes limitados a 30 días.\";'),
+('es','messages:apihelp-feedrecentchanges-example-simple','s:30:\"Mostrar los cambios recientes.\";'),
+('es','messages:apihelp-feedrecentchanges-param-associated','s:64:\"Incluir el espacio de nombres asociado (discusión o principal).\";'),
+('es','messages:apihelp-feedrecentchanges-param-days','s:39:\"Días a los que limitar los resultados.\";'),
+('es','messages:apihelp-feedrecentchanges-param-feedformat','s:26:\"El formato del suministro.\";'),
+('es','messages:apihelp-feedrecentchanges-param-from','s:52:\"Mostrar los cambios realizados a partir de entonces.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hideanons','s:54:\"Ocultar los cambios realizados por usuarios anónimos.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hidebots','s:40:\"Ocultar los cambios realizados por bots.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hidecategorization','s:49:\"Ocultar los cambios de pertenencia a categorías.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hideliu','s:56:\"Ocultar los cambios realizados por usuarios registrados.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hideminor','s:24:\"Ocultar cambios menores.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hidemyself','s:53:\"Ocultar los cambios realizados por el usuario actual.\";'),
+('es','messages:apihelp-feedrecentchanges-param-hidepatrolled','s:32:\"Ocultar los cambios verificados.\";'),
+('es','messages:apihelp-feedrecentchanges-param-invert','s:62:\"Todos los espacios de nombres menos el que está seleccionado.\";'),
+('es','messages:apihelp-feedrecentchanges-param-limit','s:43:\"Número máximo de resultados que devolver.\";'),
+('es','messages:apihelp-feedrecentchanges-param-namespace','s:50:\"Espacio de nombres al cual limitar los resultados.\";'),
+('es','messages:apihelp-feedrecentchanges-param-showlinkedto','s:70:\"Mostrar los cambios en páginas enlazadas con la página seleccionada.\";'),
+('es','messages:apihelp-feedrecentchanges-param-tagfilter','s:22:\"Filtrar por etiquetas.\";'),
+('es','messages:apihelp-feedrecentchanges-param-target','s:59:\"Mostrar solo los cambios en las páginas enlazadas en esta.\";'),
+('es','messages:apihelp-feedrecentchanges-summary','s:44:\"Devuelve un suministro de cambios recientes.\";'),
+('es','messages:apihelp-feedwatchlist-example-all6hrs','s:72:\"Mostrar todos los cambios en páginas vigiladas en las últimas 6 horas.\";'),
+('es','messages:apihelp-feedwatchlist-example-default','s:49:\"Mostrar el suministro de la lista de seguimiento.\";'),
+('es','messages:apihelp-feedwatchlist-param-feedformat','s:26:\"El formato del suministro.\";'),
+('es','messages:apihelp-feedwatchlist-param-hours','s:62:\"Listar las páginas modificadas desde estas horas hasta ahora.\";'),
+('es','messages:apihelp-feedwatchlist-param-linktosections','s:62:\"Enlazar directamente a las secciones cambiadas de ser posible.\";'),
+('es','messages:apihelp-feedwatchlist-summary','s:51:\"Devuelve el suministro de una lista de seguimiento.\";'),
+('es','messages:apihelp-filerevert-example-revert','s:79:\"Devolver Wiki.png a la versión del 2011-03-05T15:27:40Z.\";'),
+('es','messages:apihelp-filerevert-param-archivename','s:51:\"Nombre del archivo de la revisión para deshacerla.\";'),
+('es','messages:apihelp-filerevert-param-comment','s:20:\"Comentario de carga.\";'),
+('es','messages:apihelp-filerevert-param-filename','s:48:\"Nombre de archivo final, sin el prefijo Archivo:\";'),
+('es','messages:apihelp-filerevert-summary','s:44:\"Revertir el archivo a una versión anterior.\";'),
+('es','messages:apihelp-format-example-generic','s:51:\"Devolver el resultado de la consulta en formato $1.\";'),
+('es','messages:apihelp-format-param-wrappedhtml','s:107:\"Devolver el HTML con resaltado sintáctico y los módulos ResourceLoader asociados en forma de objeto JSON.\";'),
+('es','messages:apihelp-help-example-help','s:33:\"Ayuda del módulo de ayuda en sí\";'),
+('es','messages:apihelp-help-example-main','s:27:\"Ayuda del módulo principal\";'),
+('es','messages:apihelp-help-example-query','s:39:\"Ayuda para dos submódulos de consulta.\";'),
+('es','messages:apihelp-help-example-recursive','s:28:\"Toda la ayuda en una página\";'),
+('es','messages:apihelp-help-example-submodules','s:59:\"Ayuda para action=query y todos sus submódulos.\";'),
+('es','messages:apihelp-help-param-helpformat','s:30:\"Formato de salida de la ayuda.\";'),
+('es','messages:apihelp-help-param-modules','s:176:\"Módulos para los que mostrar ayuda (valores de los parámetros action y format o main). Se pueden especificar submódulos con un +.\";'),
+('es','messages:apihelp-help-param-recursivesubmodules','s:46:\"Incluir ayuda para submódulos recursivamente.\";'),
+('es','messages:apihelp-help-param-submodules','s:54:\"Incluir ayuda para submódulos del módulo con nombre.\";'),
+('es','messages:apihelp-help-param-toc','s:37:\"Incluir un sumario en la salida HTML.\";'),
+('es','messages:apihelp-help-param-wrap','s:72:\"Envolver el producto en una estructura de respuesta de la API estándar.\";'),
+('es','messages:apihelp-help-summary','s:49:\"Mostrar la ayuda para los módulos especificados.\";'),
+('es','messages:apihelp-imagerotate-example-generator','s:76:\"Rotar todas las imágenes en Category:Flip 180 grados.\";'),
+('es','messages:apihelp-imagerotate-example-simple','s:55:\"Rotar File:Example.png 90 grados.\";'),
+('es','messages:apihelp-imagerotate-param-rotation','s:47:\"Grados que rotar una imagen en sentido horario.\";'),
+('es','messages:apihelp-imagerotate-param-tags','s:61:\"Etiquetas que añadir a la entrada en el registro de subidas.\";'),
+('es','messages:apihelp-imagerotate-summary','s:27:\"Girar una o más imágenes.\";'),
+('es','messages:apihelp-import-example-import','s:87:\"Importar [[meta:Help:ParserFunctions]] al espacio de nombres 100 con todo el historial.\";'),
+('es','messages:apihelp-import-extended-description','s:170:\"Tenga en cuenta que el HTTP POST debe hacerse como una carga de archivos (es decir, el uso de multipart/form-data) al enviar un archivo para el parámetro xml.\";'),
+('es','messages:apihelp-import-param-assignknownusers','s:86:\"Asignar ediciones a usuarios locales cuando sus nombres de usuario existan localmente.\";'),
+('es','messages:apihelp-import-param-fullhistory','s:85:\"Para importaciones interwiki: importar todo el historial, no solo la versión actual.\";'),
+('es','messages:apihelp-import-param-interwikipage','s:49:\"Para importaciones interwiki: página a importar.\";'),
+('es','messages:apihelp-import-param-interwikiprefix','s:169:\"Para importaciones cargadas: el prefijo de interwiki debe aplicarse a los nombres de usuario desconocidos (y a los conocidos si se define $1assignknownusers).\";'),
+('es','messages:apihelp-import-param-interwikisource','s:57:\"Para importaciones interwiki: wiki desde la que importar.\";'),
+('es','messages:apihelp-import-param-namespace','s:95:\"Importar a este espacio de nombres. No puede usarse simultáneamente con $1rootpage.\";'),
+('es','messages:apihelp-import-param-rootpage','s:102:\"Importar como subpágina de esta página. No puede usarse simultáneamente con $1namespace.\";'),
+('es','messages:apihelp-import-param-summary','s:48:\"Resumen de importación de entrada del registro.\";'),
+('es','messages:apihelp-import-param-tags','s:128:\"Cambiar las etiquetas que aplicar a la entrada en el registro de importaciones y a la revisión nula de las páginas importadas.\";'),
+('es','messages:apihelp-import-param-templates','s:79:\"Para importaciones interwiki: importar también todas las plantillas incluidas.\";'),
+('es','messages:apihelp-import-param-xml','s:25:\"Se cargó el archivo XML.\";'),
+('es','messages:apihelp-import-summary','s:61:\"Importar una página desde otra wiki, o desde un archivo XML.\";'),
+('es','messages:apihelp-json-param-ascii','s:199:\"Si se especifica, codifica todos los caracteres no pertenecientes a ASCII mediante secuencias de escape hexadecimal. Toma el comportamiento por defecto si formatversion no es 1.\";'),
+('es','messages:apihelp-json-param-callback','s:165:\"Si se especifica, envuelve la salida dentro de una llamada a una función dada. Por motivos de seguridad, cualquier dato específico del usuario estará restringido.\";'),
+('es','messages:apihelp-json-param-formatversion','s:17:\"Formato de salida\";'),
+('es','messages:apihelp-json-param-utf8','s:256:\"Si se especifica, codifica la mayoría (pero no todos) de los caracteres no pertenecientes a ASCII como UTF-8 en lugar de reemplazarlos por secuencias de escape hexadecimal. Toma el comportamiento por defecto si formatversion no es 1.\";'),
+('es','messages:apihelp-json-paramvalue-formatversion-1','s:94:\"Backwards-compatible format (XML-style booleans, * keys for content nodes, etc.).\";'),
+('es','messages:apihelp-json-paramvalue-formatversion-2','s:14:\"Modern format.\";'),
+('es','messages:apihelp-json-paramvalue-formatversion-latest','s:75:\"Use the latest format (currently 2), may change without warning.\";'),
+('es','messages:apihelp-json-summary','s:44:\"Extraer los datos de salida en formato JSON.\";'),
+('es','messages:apihelp-jsonfm-summary','s:81:\"Producir los datos de salida en formato JSON (con resaltado sintáctico en HTML).\";'),
+('es','messages:apihelp-link','s:25:\"[[Special:ApiHelp/$1|$2]]\";'),
+('es','messages:apihelp-linkaccount-example-link','s:66:\"Iniciar el proceso de vincular a una cuenta de Ejemplo.\";'),
+('es','messages:apihelp-linkaccount-summary','s:71:\"Vincular una cuenta de un proveedor de terceros para el usuario actual.\";'),
+('es','messages:apihelp-login-example-login','s:8:\"Acceder.\";'),
+('es','messages:apihelp-login-extended-description','s:297:\"Esta acción solo se debe utilizar en combinación con [[Special:BotPasswords]]; para la cuenta de inicio de sesión no se utiliza y puede fallar sin previo aviso. Para iniciar la sesión de forma segura a la cuenta principal, utilice [[Special:ApiHelp/clientlogin|action=clientlogin]].\";'),
+('es','messages:apihelp-login-extended-description-nobotpasswords','s:163:\"Esta acción esta obsoleta y puede fallar sin previo aviso. Para conectarse de forma segura, utilice [[Special:ApiHelp/clientlogin|action=clientlogin]].\";'),
+('es','messages:apihelp-login-param-domain','s:19:\"Dominio (opcional).\";'),
+('es','messages:apihelp-login-param-name','s:18:\"Nombre de usuario.\";'),
+('es','messages:apihelp-login-param-password','s:12:\"Contraseña.\";'),
+('es','messages:apihelp-login-param-token','s:65:\"La clave de inicio de sesión se obtiene en la primera solicitud.\";'),
+('es','messages:apihelp-login-summary','s:56:\"Iniciar sesión y obtener las cookies de autenticación.\";'),
+('es','messages:apihelp-logout-example-logout','s:37:\"Cerrar la sesión del usuario actual.\";'),
+('es','messages:apihelp-logout-summary','s:39:\"Salir y vaciar los datos de la sesión.\";'),
+('es','messages:apihelp-main-extended-description','s:1398:\"Pruebas: Para facilitar la comprobación de las solicitudes de API, consulta [[Special:ApiSandbox]].
\";'), +('es','messages:apihelp-main-param-action','s:27:\"Qué acción se realizará.\";'), +('es','messages:apihelp-main-param-assert','s:128:\"Comprobar que el usuario haya iniciado sesión si el valor es user o si tiene el permiso de bot si es bot.\";'), +('es','messages:apihelp-main-param-assertuser','s:51:\"Verificar el usuario actual es el usuario nombrado.\";'), +('es','messages:apihelp-main-param-curtimestamp','s:50:\"Incluir la marca de tiempo actual en el resultado.\";'), +('es','messages:apihelp-main-param-errorformat','s:62:\"Formato utilizado para la salida de texto de avisos y errores.\";'), +('es','messages:apihelp-main-param-errorlang','s:359:\"Idioma empleado para advertencias y errores. [[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]] con siprop=languages devuelve una lista de códigos de idioma. Puedes especificar content para utilizar el idioma del contenido de esta wiki o uselang para utilizar el valor del parámetro uselang.\";'), +('es','messages:apihelp-main-param-errorsuselocal','s:116:\"Si se da, los textos de error emplearán mensajes localmente personalizados del espacio de nombres {{ns:MediaWiki}}.\";'), +('es','messages:apihelp-main-param-format','s:24:\"El formato de la salida.\";'), +('es','messages:apihelp-main-param-maxage','s:152:\"Establece la cabecera HTTPmax-age de control de antememoria a esta cantidad de segundos. Los errores nunca se almacenan en la antememoria.\";'),
+('es','messages:apihelp-main-param-maxlag','s:578:\"Se puede usar el retardo máximo cuando se instala MediaWiki en un clúster replicado de base de datos. Para evitar acciones que causen más retardo en la replicación del sitio, este parámetro puede hacer que el cliente espere hasta que el retardo en la replicación sea menor que el valor especificado. En caso de retardo excesivo, se devuelve el código de error maxlag con un mensaje como Esperando a $host: $lag segundos de retardo.Origin, por lo que debería ser algo como https://en.wikipedia.org o https://meta.wikimedia.org. Si este parámetro no coincide con la cabecera Origin, se devolverá una respuesta 403. Si este parámetro coincide con la cabecera Origin y el origen está en la lista blanca, se creará una cabecera Access-Control-Allow-Origin.\n\nEn las peticiones sin autenticación, introduce el valor *. Esto creará una cabecera Access-Control-Allow-Origin, pero el valor de Access-Control-Allow-Credentials será false y todos los datos que dependan del usuario estarán restringidos.\";'),
+('es','messages:apihelp-main-param-requestid','s:103:\"Cualquier valor dado aquí se incluirá en la respuesta. Se puede utilizar para distinguir solicitudes.\";'),
+('es','messages:apihelp-main-param-responselanginfo','s:94:\"Incluye los idiomas utilizados para uselang y errorlang en el resultado.\";'),
+('es','messages:apihelp-main-param-servedby','s:73:\"Incluir el nombre del host que ha servido la solicitud en los resultados.\";'),
+('es','messages:apihelp-main-param-smaxage','s:153:\"Establece la cabecera HTTP s-maxage de control de antememoria a esta cantidad de segundos. Los errores nunca se almacenan en la antememoria.\";'),
+('es','messages:apihelp-main-param-uselang','s:376:\"El idioma que se utilizará para las traducciones de mensajes. [[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]] con siprop=languages devuelve una lista de códigos de idiomas. También puedes introducir user para usar la preferencia de idioma del usuario actual, o content para usar el idioma de contenido de esta wiki.\";'),
+('es','messages:apihelp-main-param-variant','s:90:\"Variante del lenguaje. Solo funciona si el lenguaje original soporta conversión variante.\";'),
+('es','messages:apihelp-main-paramvalue-errorformat-bc','s:100:\"Format used prior to MediaWiki 1.29. errorlang and errorsuselocal are ignored.\";'),
+('es','messages:apihelp-main-paramvalue-errorformat-html','s:4:\"HTML\";'),
+('es','messages:apihelp-main-paramvalue-errorformat-none','s:37:\"No text output, only the error codes.\";'),
+('es','messages:apihelp-main-paramvalue-errorformat-plaintext','s:54:\"Wikitext with HTML tags removed and entities replaced.\";'),
+('es','messages:apihelp-main-paramvalue-errorformat-raw','s:27:\"Message key and parameters.\";'),
+('es','messages:apihelp-main-paramvalue-errorformat-wikitext','s:18:\"Unparsed wikitext.\";'),
+('es','messages:apihelp-main-summary','s:0:\"\";'),
+('es','messages:apihelp-managetags-example-activate','s:96:\"Activar una etiqueta llamada spam con el motivo For use in edit patrolling\";'),
+('es','messages:apihelp-managetags-example-create','s:94:\"Crear una etiqueta llamada spam con el motivo For use in edit patrolling\";'),
+('es','messages:apihelp-managetags-example-deactivate','s:91:\"Desactivar una etiqueta llamada spam con el motivo No longer required\";'),
+('es','messages:apihelp-managetags-example-delete','s:75:\"Eliminar la etiqueta vandlaism con el motivo Misspelt\";'),
+('es','messages:apihelp-managetags-param-ignorewarnings','s:73:\"Ya sea para ignorar las advertencias que se emiten durante la operación.\";'),
+('es','messages:apihelp-managetags-param-operation','s:456:\"Qué operación realizar:\n;create: Crear una nueva etiqueta de cambio de uso manual.\n;delete: Eliminar una etiqueta de cambio de la base de datos, eliminando la etiqueta de todas las revisiones, cambios en entradas recientes y registros en los que se ha utilizado.\n;activate: Activar una etiqueta de cambio, permitiendo a los usuarios aplicarla manualmente.\n;deactivate: Desactivar una etiqueta de cambio, evitando que los usuarios la apliquen manualmente.\";'),
+('es','messages:apihelp-managetags-param-reason','s:74:\"Un motivo opcional para crear, eliminar, activar o desactivar la etiqueta.\";'),
+('es','messages:apihelp-managetags-param-tag','s:264:\"Etiqueta para crear, eliminar, activar o desactivar. Para crear una etiqueta, esta debe no existir. Para eliminarla, debe existir. Para activarla, debe existir y no estar en uso por ninguna extensión. Para desactivarla, debe estar activada y definida manualmente.\";'),
+('es','messages:apihelp-managetags-param-tags','s:94:\"Cambiar las etiquetas que aplicar a la entrada en el registro de administración de etiquetas.\";'),
+('es','messages:apihelp-managetags-summary','s:75:\"Realizar tareas de administración relacionadas con el cambio de etiquetas.\";'),
+('es','messages:apihelp-mergehistory-example-merge','s:71:\"Combinar todo el historial de Oldpage en Newpage.\";'),
+('es','messages:apihelp-mergehistory-example-merge-timestamp','s:109:\"Combinar las revisiones de Oldpage hasta el 2015-12-31T04:37:41Z en Newpage.\";'),
+('es','messages:apihelp-mergehistory-param-from','s:116:\"El título de la página desde la que se combinará la historia. No se puede utilizar junto con $1fromid.\";'),
+('es','messages:apihelp-mergehistory-param-fromid','s:111:\"Page ID de la página desde la que se combinara el historial. No se puede utilizar junto con $1from.\";'),
+('es','messages:apihelp-mergehistory-param-reason','s:37:\"Motivo para la fusión del historial.\";'),
+('es','messages:apihelp-mergehistory-param-timestamp','s:233:\"La marca de tiempo de las revisiones se moverá del historial de la página de origen al historial de la página de destino. Si se omite, todo el historial de la página de la página de origen se fusionará en la página de destino.\";'),
+('es','messages:apihelp-mergehistory-param-to','s:114:\"El título de la página desde la que se combinara el historial. No se puede utilizar junto con $1toid.\";'),
+('es','messages:apihelp-mergehistory-param-toid','s:109:\"Page ID de la página desde la que se combinara el historial. No se puede utilizar junto con $1to.\";'),
+('es','messages:apihelp-mergehistory-summary','s:33:\"Fusionar historiales de páginas.\";'),
+('es','messages:apihelp-move-example-move','s:80:\"Trasladar Badtitle a Goodtitle sin dejar una redirección.\";'),
+('es','messages:apihelp-move-param-from','s:80:\"Título de la página a renombrar. No se puede utilizar con $1fromid.\";'),
+('es','messages:apihelp-move-param-fromid','s:73:\"ID de la página a renombrar. No se puede utilizar con $1from.\";'),
+('es','messages:apihelp-move-param-ignorewarnings','s:24:\"Ignorar cualquier aviso.\";'),
+('es','messages:apihelp-move-param-movesubpages','s:37:\"Renombrar las subpáginas si procede.\";'),
+('es','messages:apihelp-move-param-movetalk','s:45:\"Renombrar la página de discusión si existe.\";'),
+('es','messages:apihelp-move-param-noredirect','s:26:\"No crear una redirección.\";'),
+('es','messages:apihelp-move-param-reason','s:28:\"Motivo del cambio de nombre.\";'),
+('es','messages:apihelp-move-param-tags','s:123:\"Cambiar las etiquetas que aplicar a la entrada en el registro de traslados y en la revisión nula de la página de destino.\";'),
+('es','messages:apihelp-move-param-to','s:45:\"Título para cambiar el nombre de la página.\";'),
+('es','messages:apihelp-move-param-unwatch','s:77:\"Eliminar la página y la redirección de la lista de seguimiento del usuario.\";'),
+('es','messages:apihelp-move-param-watch','s:82:\"Añadir la página y su redirección a la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-move-param-watchlist','s:127:\"Incondicionalmente puede añadir o eliminar la página de lista del usuario actual, utilizar referencias o no cambiar el reloj.\";'),
+('es','messages:apihelp-move-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-move-summary','s:22:\"Trasladar una página.\";'),
+('es','messages:apihelp-no-such-module','s:34:\"No se encontró el módulo «$1».\";'),
+('es','messages:apihelp-none-summary','s:16:\"No extraer nada.\";'),
+('es','messages:apihelp-opensearch-example-te','s:47:\"Buscar páginas que empiecen por Te.\";'),
+('es','messages:apihelp-opensearch-param-format','s:21:\"El formato de salida.\";'),
+('es','messages:apihelp-opensearch-param-limit','s:43:\"Número máximo de resultados que devolver.\";'),
+('es','messages:apihelp-opensearch-param-namespace','s:118:\"Espacios de nombres que buscar. Se ignora si $1search comienza por un prefijo de espacio de nombre válido.\";'),
+('es','messages:apihelp-opensearch-param-redirects','s:257:\"Cómo manejar las redirecciones:\n;return: Volver a la propia redirección.\n;resolve: Volver a la página de destino. Puede devolver menos de $1limit resultados.\nPor motivos históricos, se utiliza \"return\" para $1format=json y \"resolve\" para otros formatos.\";'),
+('es','messages:apihelp-opensearch-param-search','s:14:\"Buscar cadena.\";'),
+('es','messages:apihelp-opensearch-param-suggest','s:17:\"Ya no se utiliza.\";'),
+('es','messages:apihelp-opensearch-param-warningsaserror','s:129:\"Si las advertencias están planteadas con format=json, devolver un error de API en lugar de hacer caso omiso de ellas.\";'),
+('es','messages:apihelp-opensearch-summary','s:51:\"Buscar en la wiki mediante el protocolo OpenSearch.\";'),
+('es','messages:apihelp-options-example-change','s:64:\"Cambiar las preferencias skin y hideminor.\";'),
+('es','messages:apihelp-options-example-complex','s:86:\"Restablecer todas las preferencias y establecer skin y nickname.\";'),
+('es','messages:apihelp-options-example-reset','s:34:\"Restablecer todas las preferencias\";'),
+('es','messages:apihelp-options-extended-description','s:223:\"Solo se pueden establecer opciones que estén registradas en el núcleo o en una de las extensiones instaladas u opciones con claves predefinidas con userjs- (diseñadas para utilizarse con scripts de usuario).\";'),
+('es','messages:apihelp-options-param-change','s:450:\"Lista de cambios con el formato nombre=valor (por ejemplo: skin=vector). Si no se da ningún valor (ni siquiera un signo de igual), por ejemplo: optionname|otheroption|..., la opción se restablecerá a sus valores predeterminados. Si algún valor contiene el carácter tubería (|), se debe utilizar el [[Special:ApiHelp/main#main/datatypes|separador alternativo de múltiples valores]] para que las operaciones se realicen correctamente.\";'),
+('es','messages:apihelp-options-param-optionname','s:92:\"El nombre de la opción que debe establecerse en el valor dado por $1optionvalue.\";'),
+('es','messages:apihelp-options-param-optionvalue','s:64:\"El valor de la opción especificada por $1optionname.\";'),
+('es','messages:apihelp-options-param-reset','s:76:\"Restablece las preferencias de la página web a sus valores predeterminados.\";'),
+('es','messages:apihelp-options-param-resetkinds','s:96:\"Lista de tipos de opciones a restablecer cuando la opción $1reset esté establecida.\";'),
+('es','messages:apihelp-options-summary','s:40:\"Cambiar preferencias del usuario actual.\";'),
+('es','messages:apihelp-paraminfo-example-1','s:278:\"Mostrar información para [[Special:ApiHelp/parse|action=parse]], [[Special:ApiHelp/jsonfm|format=jsonfm]], [[Special:ApiHelp/query+allpages|action=query&list=allpages]] y [[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]].\";'),
+('es','messages:apihelp-paraminfo-example-2','s:101:\"Mostrar información para todos los submódulos de [[Special:ApiHelp/query|action=query]].\";'),
+('es','messages:apihelp-paraminfo-param-formatmodules','s:132:\"Lista de los nombres del formato de los módulos (valor del parámetro format). Utiliza $1modules en su lugar.\";'),
+('es','messages:apihelp-paraminfo-param-helpformat','s:32:\"Formato de las cadenas de ayuda.\";'),
+('es','messages:apihelp-paraminfo-param-mainmodule','s:120:\"Obtener también información sobre el módulo principal (primer nivel). Utilizar $1modules=main en su lugar.\";'),
+('es','messages:apihelp-paraminfo-param-modules','s:276:\"Lista de los nombres de los módulos (valores de los parámetros action y format o main). Se pueden especificar submódulos con un +, todos los submódulos con +* o todos los submódulos recursivamente con +**.\";'),
+('es','messages:apihelp-paraminfo-param-pagesetmodule','s:89:\"Obtener también información sobre el módulo PageSet (Proporcionar títulos= y amigos).\";'),
+('es','messages:apihelp-paraminfo-param-querymodules','s:208:\"Lista de los nombres de los módulos de consulta (valor de los parámetros prop, meta or list). Utiliza $1modules=query+foo en vez de $1querymodules=foo.\";'),
+('es','messages:apihelp-paraminfo-summary','s:54:\"Obtener información acerca de los módulos de la API.\";'),
+('es','messages:apihelp-parse-example-page','s:21:\"Analizar una página.\";'),
+('es','messages:apihelp-parse-example-summary','s:20:\"Analizar un resumen.\";'),
+('es','messages:apihelp-parse-example-text','s:19:\"Analizar wikitexto.\";'),
+('es','messages:apihelp-parse-example-texttitle','s:59:\"Analizar wikitexto, especificando el título de la página.\";'),
+('es','messages:apihelp-parse-extended-description','s:566:\"Véanse los distintos módulos prop de [[Special:ApiHelp/query|action=query]] para obtener información de la versión actual de una página.\n\nHay varias maneras de especificar el texto que analizar:\n# Especificar una página o revisión, mediante $1page, $1pageid o $1oldid.\n# Especificar explícitamente el contenido, mediante $1text, $1title, $1revid, y $1contentmodel.\n# Especificar solamente un resumen que analizar. Se debería asignar a $1prop un valor vacío.\";'),
+('es','messages:apihelp-parse-param-contentformat','s:127:\"Formato de serialización de contenido utilizado para la introducción de texto. Sólo es válido cuando se utiliza con $1text.\";'),
+('es','messages:apihelp-parse-param-contentmodel','s:196:\"Modelo de contenido del texto de entrada. Si se omite, se debe especificar $1title, y el valor por defecto será el modelo del título especificado. Solo es válido cuando se use junto con $1text.\";'),
+('es','messages:apihelp-parse-param-disableeditsection','s:71:\"Omitir los enlaces de edición de sección de la salida del analizador.\";'),
+('es','messages:apihelp-parse-param-disablelimitreport','s:83:\"Omitir el informe de límite (\"NewPP limit report\") desde la salida del analizador.\";'),
+('es','messages:apihelp-parse-param-disablepp','s:48:\"Usa $1disablelimitreport en su lugar.\";'),
+('es','messages:apihelp-parse-param-disablestylededuplication','s:59:\"Do not deduplicate inline stylesheets in the parser output.\";'),
+('es','messages:apihelp-parse-param-disabletoc','s:31:\"Omitir el sumario en la salida.\";'),
+('es','messages:apihelp-parse-param-effectivelanglinks','s:110:\"Incluye enlaces de idiomas proporcionados por las extensiones (para utilizar con $1prop=langlinks).\";'),
+('es','messages:apihelp-parse-param-generatexml','s:135:\"Generar árbol de análisis sintáctico XML (requiere modelo de contenido $1; sustituido por $2prop=parsetree).\";'),
+('es','messages:apihelp-parse-param-oldid','s:90:\"Analizar el contenido de esta revisión. Remplaza $1page y $1pageid.\";'),
+('es','messages:apihelp-parse-param-onlypst','s:199:\"Guardar previamente los cambios antes de transformar (PST) en la entrada. Devuelve el mismo wikitexto, después de que un PST se ha aplicado. Sólo es válido cuando se utiliza con $1text.\";'),
+('es','messages:apihelp-parse-param-page','s:103:\"Analizar el contenido de esta página. No se puede utilizar con $1text y $1title.\";'),
+('es','messages:apihelp-parse-param-pageid','s:66:\"Analizar el contenido de esta página. Remplaza $1page.\";'),
+('es','messages:apihelp-parse-param-preview','s:33:\"Analizar en modo de vista previa.\";'),
+('es','messages:apihelp-parse-param-prop','s:36:\"Qué piezas de información obtener:\";'),
+('es','messages:apihelp-parse-param-pst','s:133:\"Guardar previamente los cambios antes de transformar la entrada antes de analizarla. Sólo es válido cuando se utiliza con el texto.\";'),
+('es','messages:apihelp-parse-param-redirects','s:84:\"Si $1page o $1pageid contienen una redirección, soluciónalo.\";'),
+('es','messages:apihelp-parse-param-revid','s:84:\"Revision ID, for {{REVISIONID}} and similar variables.\";'),
+('es','messages:apihelp-parse-param-section','s:266:\"Analizar solo el contenido de este número de sección.\n\nSi el valor es new, analiza $1text y $1sectiontitle como si se añadiera una nueva sección a la página.\n\nnew solo se permite cuando se especifique text.\";'),
+('es','messages:apihelp-parse-param-sectionpreview','s:84:\"Analizar sección en modo de vista previa (también activa el modo de vista previa).\";'),
+('es','messages:apihelp-parse-param-sectiontitle','s:205:\"Nuevo título de sección cuando section tiene el valor new.\n\nAl contrario que en la edición de páginas, no se sustituye por summary cuando se omite o su valor es vacío.\";'),
+('es','messages:apihelp-parse-param-showstrategykeys','s:82:\"Si se incluye la información de la estrategia de fusión interna en jsconfigvars.\";'),
+('es','messages:apihelp-parse-param-summary','s:19:\"Resumen a analizar.\";'),
+('es','messages:apihelp-parse-param-text','s:112:\"Texto a analizar. Utiliza $1title o $1contentmodel para controlar el modelo del contenido.\";'),
+('es','messages:apihelp-parse-param-title','s:143:\"Título de la página a la que pertenece el texto. Si se omite se debe especificar $1contentmodel, y se usará [[API]] como título.\";'),
+('es','messages:apihelp-parse-param-useskin','s:214:\"Aplicar la piel seleccionada a la salida del analizador. Puede afectar a las siguientes propiedades: langlinks, headitems, módulos, jsconfigvars, indicadores.\";'),
+('es','messages:apihelp-parse-param-wrapoutputclass','s:43:\"CSS class to use to wrap the parser output.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-categories','s:45:\"Da las categorías en el wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-categorieshtml','s:39:\"Da la versión HTML de las categorías.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-displaytitle','s:42:\"Añade el título del wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-encodedjsconfigvars','s:90:\"Da la configuración JavaScript de variables específica para la página como cadena JSON.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-externallinks','s:48:\"Da los enlaces externos del wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-headhtml','s:65:\"Proporciona la <head> analizada de la página.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-headitems','s:81:\"Proporciona elementos para colocar en el <head> de la página.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-images','s:41:\"Da las imágenes del wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-indicators','s:65:\"Da el HTML de los indicadores de estado utilizados en la página.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-iwlinks','s:45:\"Da los enlaces interwiki del texto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-jsconfigvars','s:140:\"Proporciona las variables de configuración de JavaScript específicas de la página. Para obtenerlas, utiliza mw.config.set().\";'),
+('es','messages:apihelp-parse-paramvalue-prop-langlinks','s:54:\"Da el idioma de los enlaces en el wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-limitreportdata','s:114:\"Da el informe del límite de forma estructurada. No da datos si $1disablelimitreport está establecido.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-limitreporthtml','s:110:\"Da la versión HTML del informe del límite. No da datos si $1disablelimitreport está establecido.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-links','s:48:\"Da los enlaces internos del wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-modules','s:237:\"Proporciona los módulos de ResourceLoader utilizados en la página. Para cargar, utiliza mw.loader.using(). jsconfigvars o bien encodedjsconfigvars deben solicitarse en conjunto con modules.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-parsetree','s:115:\"El árbol de análisis sintáctico XML del contenido de la revisión (requiere modelo de contenido $1)\";'),
+('es','messages:apihelp-parse-paramvalue-prop-parsewarnings','s:63:\"Da las advertencias que se produjeron al analizar el contenido.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-parsewarningshtml','s:65:\"Gives the warnings that occurred while parsing content (as HTML).\";'),
+('es','messages:apihelp-parse-paramvalue-prop-properties','s:58:\"Da varias propiedades definidas en el wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-revid','s:50:\"Añade la ID de revisión de la página analizada.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-sections','s:41:\"Da las secciones del wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-subtitle','s:43:\"Adds the page subtitle for the parsed page.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-templates','s:42:\"Da las plantillas del wikitexto analizado.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-text','s:35:\"Da el texto analizado en wikitexto.\";'),
+('es','messages:apihelp-parse-paramvalue-prop-wikitext','s:49:\"Da el wikitexto original que se había analizado.\";'),
+('es','messages:apihelp-parse-summary','s:69:\"Analiza el contenido y devuelve la salida del analizador sintáctico.\";'),
+('es','messages:apihelp-patrol-example-rcid','s:29:\"Verificar un cambio reciente.\";'),
+('es','messages:apihelp-patrol-example-revid','s:24:\"Verificar una revisión.\";'),
+('es','messages:apihelp-patrol-param-rcid','s:49:\"Identificador de cambios recientes que verificar.\";'),
+('es','messages:apihelp-patrol-param-revid','s:41:\"Identificador de revisión que patrullar.\";'),
+('es','messages:apihelp-patrol-param-tags','s:73:\"Cambio de etiquetas para aplicar a la entrada en la patrulla de registro.\";'),
+('es','messages:apihelp-patrol-summary','s:34:\"Verificar una página o revisión.\";'),
+('es','messages:apihelp-php-param-formatversion','s:17:\"Formato de salida\";'),
+('es','messages:apihelp-php-paramvalue-formatversion-1','s:94:\"Backwards-compatible format (XML-style booleans, * keys for content nodes, etc.).\";'),
+('es','messages:apihelp-php-paramvalue-formatversion-2','s:14:\"Modern format.\";'),
+('es','messages:apihelp-php-paramvalue-formatversion-latest','s:75:\"Use the latest format (currently 2), may change without warning.\";'),
+('es','messages:apihelp-php-summary','s:55:\"Extraer los datos de salida en formato serializado PHP.\";'),
+('es','messages:apihelp-phpfm-summary','s:92:\"Producir los datos de salida en formato PHP serializado (con resaltado sintáctico en HTML).\";'),
+('es','messages:apihelp-protect-example-protect','s:20:\"Proteger una página\";'),
+('es','messages:apihelp-protect-example-unprotect','s:138:\"Desproteger una página estableciendo la restricción a all («todos», es decir, cualquier usuario puede realizar la acción).\";'),
+('es','messages:apihelp-protect-example-unprotect2','s:51:\"Desproteger una página anulando las restricciones.\";'),
+('es','messages:apihelp-protect-param-cascade','s:215:\"Activar la protección en cascada (o sea, proteger plantillas e imágenes transcluidas usadas en esta página). Se ignorará si ninguno de los niveles de protección dados son compatibles con la función de cascada.\";'),
+('es','messages:apihelp-protect-param-expiry','s:242:\"Marcas de tiempo de expiración. Si solo se establece una marca de tiempo, se utilizará para todas las protecciones. Utiliza infinite, indefinite, infinity, o never para una protección indefinida.\";'),
+('es','messages:apihelp-protect-param-pageid','s:67:\"ID de la página a (des)proteger. No se puede utilizar con $1title.\";'),
+('es','messages:apihelp-protect-param-protections','s:332:\"Lista de los niveles de protección, con formato action=level (por ejemplo: edit=sysop). Un nivel de all («todos») significa que cualquier usuaro puede realizar la acción, es decir, no hay restricción.\n\nNota: Cualquier acción no mencionada tendrá las restricciones eliminadas.\";'),
+('es','messages:apihelp-protect-param-reason','s:30:\"Motivo de la (des)protección.\";'),
+('es','messages:apihelp-protect-param-tags','s:78:\"Cambiar las etiquetas para aplicar a la entrada en el registro de protección.\";'),
+('es','messages:apihelp-protect-param-title','s:73:\"Título de la página a (des)proteger. No se puede utilizar con $1pageid.\";'),
+('es','messages:apihelp-protect-param-watch','s:108:\"Si se activa, añade la página en proceso de (des)protección a la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-protect-param-watchlist','s:158:\"Añadir o borrar incondicionalmente la página de la lista de seguimiento del usuario actual, utilizar las preferencias o no cambiar el estado de seguimiento.\";'),
+('es','messages:apihelp-protect-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-protect-summary','s:47:\"Cambiar el nivel de protección de una página.\";'),
+('es','messages:apihelp-purge-example-generator','s:65:\"Purgar las 10 primeras páginas del espacio de nombres principal.\";'),
+('es','messages:apihelp-purge-example-simple','s:59:\"Purgar la Main Page y la página API.\";'),
+('es','messages:apihelp-purge-param-forcelinkupdate','s:33:\"Actualizar las tablas de enlaces.\";'),
+('es','messages:apihelp-purge-param-forcerecursivelinkupdate','s:122:\"Actualizar la tabla de enlaces y todas las tablas de enlaces de cualquier página que use esta página como una plantilla.\";'),
+('es','messages:apihelp-purge-summary','s:48:\"Purgar la caché de los títulos proporcionados.\";'),
+('es','messages:apihelp-query+allcategories-example-generator','s:117:\"Recupera la información sobre la propia página de categoría para las categorías que empiezan por List.\";'),
+('es','messages:apihelp-query+allcategories-example-size','s:80:\"Lista las categorías con información sobre el número de páginas de cada una.\";'),
+('es','messages:apihelp-query+allcategories-param-dir','s:27:\"Dirección de ordenamiento.\";'),
+('es','messages:apihelp-query+allcategories-param-from','s:43:\"La categoría para comenzar la enumeración\";'),
+('es','messages:apihelp-query+allcategories-param-limit','s:36:\"Cuántas categorías se devolverán.\";'),
+('es','messages:apihelp-query+allcategories-param-max','s:66:\"Devolver solo categorías con como mucho este número de miembros.\";'),
+('es','messages:apihelp-query+allcategories-param-min','s:64:\"Devolver solo categorías con al menos este número de miembros.\";'),
+('es','messages:apihelp-query+allcategories-param-prefix','s:74:\"Buscar todos los títulos de las categorías que comiencen con este valor.\";'),
+('es','messages:apihelp-query+allcategories-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+allcategories-param-to','s:42:\"La categoría para detener la enumeración\";'),
+('es','messages:apihelp-query+allcategories-paramvalue-prop-hidden','s:83:\"Etiqueta las categorías que están ocultas con __HIDDENCAT__.\";'),
+('es','messages:apihelp-query+allcategories-paramvalue-prop-size','s:47:\"Añade el número de páginas en la categoría.\";'),
+('es','messages:apihelp-query+allcategories-summary','s:31:\"Enumerar todas las categorías.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-example-ns-main','s:78:\"Listar las primeras 50 revisiones borradas en el espacio de nombres principal.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-example-user','s:78:\"Listar las últimas 50 contribuciones borradas del usuario Example.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-end','s:47:\"El sello de tiempo para detener la enumeración\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-excludeuser','s:41:\"No listar las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-from','s:33:\"Empezar a listar en este título.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-generatetitles','s:92:\"Cuando se utiliza como generador, generar títulos en lugar de identificadores de revisión.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-miser-user-namespace','s:295:\"Nota: debido al [[mw:Special:MyLanguage/Manual:$wgMiserMode|modo avaro]], usar juntos $1user y $1namespace puede dar lugar a que se devuelvan menos de $1limit resultados antes de continuar. En casos extremos, podrían devolverse cero resultados.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-namespace','s:52:\"Listar solo las páginas en este espacio de nombres.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-prefix','s:71:\"Buscar todos los títulos de las páginas que comiencen con este valor.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-start','s:48:\"El sello de tiempo para comenzar la enumeración\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-tag','s:45:\"Listar solo las revisiones con esta etiqueta.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-to','s:35:\"Terminar de listar en este título.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-param-user','s:43:\"Listar solo las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-paraminfo-nonuseronly','s:42:\"No puede utilizarse con $3user.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-paraminfo-useronly','s:40:\"Solo puede usarse con $3user.\";'),
+('es','messages:apihelp-query+alldeletedrevisions-summary','s:81:\"Listar todas las revisiones eliminadas por un usuario o en un espacio de nombres.\";'),
+('es','messages:apihelp-query+allfileusages-example-b','s:134:\"Listar títulos de archivos, incluyendo los desaparecidos, con las ID de páginas a las que pertenecen, empezando por la B.\";'),
+('es','messages:apihelp-query+allfileusages-example-generator','s:49:\"Recupera las páginas que contienen los archivos.\";'),
+('es','messages:apihelp-query+allfileusages-example-unique','s:36:\"Listar títulos de archivos únicos.\";'),
+('es','messages:apihelp-query+allfileusages-example-unique-generator','s:66:\"Recupera los títulos de todos los archivos y marca los faltantes.\";'),
+('es','messages:apihelp-query+allfileusages-param-dir','s:36:\"La dirección en la que se listará.\";'),
+('es','messages:apihelp-query+allfileusages-param-from','s:53:\"El título del archivo para comenzar la enumeración.\";'),
+('es','messages:apihelp-query+allfileusages-param-limit','s:43:\"Cuántos elementos en total se devolverán.\";'),
+('es','messages:apihelp-query+allfileusages-param-prefix','s:71:\"Buscar todos los títulos de los archivos que comiencen con este valor.\";'),
+('es','messages:apihelp-query+allfileusages-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+allfileusages-param-to','s:52:\"El título del archivo para detener la enumeración.\";'),
+('es','messages:apihelp-query+allfileusages-param-unique','s:169:\"Mostrar solo títulos únicos de archivo. No se puede usar junto con $1prop=ids. Cuando se use como generador, devuelve páginas de destino en vez de páginas de origen.\";'),
+('es','messages:apihelp-query+allfileusages-paramvalue-prop-ids','s:80:\"Agrega los ID de página de las páginas en uso (no se puede usar con $1unique).\";'),
+('es','messages:apihelp-query+allfileusages-paramvalue-prop-title','s:30:\"Agrega el título del archivo.\";'),
+('es','messages:apihelp-query+allfileusages-summary','s:66:\"Enumerar todos los usos del archivo, incluidos los que no existen.\";'),
+('es','messages:apihelp-query+allimages-example-b','s:69:\"Mostrar una lista de archivos que empiecen por la letra B.\";'),
+('es','messages:apihelp-query+allimages-example-generator','s:81:\"Mostrar información acerca de 4 archivos que empiecen por la letra T.\";'),
+('es','messages:apihelp-query+allimages-example-mimetypes','s:83:\"Mostrar una lista de archivos tipo MIME image/png o image/gif\";'),
+('es','messages:apihelp-query+allimages-example-recent','s:84:\"Mostrar una lista de archivos subidos recientemente, similar a [[Special:NewFiles]].\";'),
+('es','messages:apihelp-query+allimages-param-dir','s:36:\"La dirección en la que se listará.\";'),
+('es','messages:apihelp-query+allimages-param-end','s:90:\"El cronomarcador para detener la enumeración. Solo puede utilizarse con $1sort=timestamp.\";'),
+('es','messages:apihelp-query+allimages-param-filterbots','s:116:\"Cómo filtrar archivos subidos por bots. Solo se puede usar con $1sort=timestamp. No se puede usar junto con $1user.\";'),
+('es','messages:apihelp-query+allimages-param-from','s:93:\"El título de la imagen para comenzar la enumeración. Solo puede utilizarse con $1sort=name.\";'),
+('es','messages:apihelp-query+allimages-param-limit','s:43:\"Cuántas imágenes en total se devolverán.\";'),
+('es','messages:apihelp-query+allimages-param-maxsize','s:57:\"Limitar a imágenes con como mucho este número de bytes.\";'),
+('es','messages:apihelp-query+allimages-param-mime','s:64:\"Tipos MIME que buscar, como, por ejemplo, image/jpeg.\";'),
+('es','messages:apihelp-query+allimages-param-minsize','s:55:\"Limitar a imágenes con al menos este número de bytes.\";'),
+('es','messages:apihelp-query+allimages-param-prefix','s:106:\"Buscar todos los títulos de imágenes que empiecen por este valor. Solo puede utilizarse con $1sort=name.\";'),
+('es','messages:apihelp-query+allimages-param-sha1','s:46:\"Suma SHA1 de la imagen. Invalida $1sha1base36.\";'),
+('es','messages:apihelp-query+allimages-param-sha1base36','s:55:\"Suma SHA1 de la imagen en base 36 (usada en MediaWiki).\";'),
+('es','messages:apihelp-query+allimages-param-sort','s:45:\"Propiedad por la que realizar la ordenación.\";'),
+('es','messages:apihelp-query+allimages-param-start','s:91:\"El cronomarcador para comenzar la enumeración. Solo puede utilizarse con $1sort=timestamp.\";'),
+('es','messages:apihelp-query+allimages-param-to','s:92:\"El título de la imagen para detener la enumeración. Solo puede utilizarse con $1sort=name.\";'),
+('es','messages:apihelp-query+allimages-param-user','s:134:\"Devolver solo los archivos subidos por este usuario. Solo se puede usar con $1tipo=timestamp. No se puede usar junto con $1filterbots.\";'),
+('es','messages:apihelp-query+allimages-summary','s:45:\"Enumerar todas las imágenes secuencialmente.\";'),
+('es','messages:apihelp-query+alllinks-example-b','s:138:\"Enumera los títulos enlazados, incluyendo los títulos faltantes, con los ID de página de los que provienen, empezando por B.\";'),
+('es','messages:apihelp-query+alllinks-example-generator','s:43:\"Obtiene páginas que contienen los enlaces.\";'),
+('es','messages:apihelp-query+alllinks-example-unique','s:41:\"Lista de títulos vinculados únicamente.\";'),
+('es','messages:apihelp-query+alllinks-example-unique-generator','s:62:\"Obtiene todos los títulos enlazados, marcando los que falten.\";'),
+('es','messages:apihelp-query+alllinks-param-dir','s:36:\"La dirección en la que se listará.\";'),
+('es','messages:apihelp-query+alllinks-param-from','s:52:\"El título del enlace para comenzar la enumeración.\";'),
+('es','messages:apihelp-query+alllinks-param-limit','s:43:\"Cuántos elementos en total se devolverán.\";'),
+('es','messages:apihelp-query+alllinks-param-namespace','s:35:\"El espacio de nombres que enumerar.\";'),
+('es','messages:apihelp-query+alllinks-param-prefix','s:66:\"Buscar todos los títulos vinculados que comiencen con este valor.\";'),
+('es','messages:apihelp-query+alllinks-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+alllinks-param-to','s:51:\"El título del enlace para detener la enumeración.\";'),
+('es','messages:apihelp-query+alllinks-param-unique','s:168:\"Mostrar solo títulos únicos enlazados. No se puede usar junto con $1prop=ids. Cuando se use como generador, devuelve páginas de destino en vez de páginas de origen.\";'),
+('es','messages:apihelp-query+alllinks-paramvalue-prop-ids','s:91:\"Agrega el ID de página de la página de enlace (no se puede usar con $1unique).\";'),
+('es','messages:apihelp-query+alllinks-paramvalue-prop-title','s:29:\"Añade el título del enlace.\";'),
+('es','messages:apihelp-query+alllinks-summary','s:75:\"Enumerar todos los enlaces que apunten a un determinado espacio de nombres.\";'),
+('es','messages:apihelp-query+allmessages-example-de','s:68:\"Mostrar mensajes august y mainpage en alemán.\";'),
+('es','messages:apihelp-query+allmessages-example-ipb','s:50:\"Mostrar mensajes que empiecen por ipb-.\";'),
+('es','messages:apihelp-query+allmessages-param-args','s:47:\"Los argumentos que se sustituyen en el mensaje.\";'),
+('es','messages:apihelp-query+allmessages-param-customised','s:58:\"Devolver solo mensajes en este estado de personalización.\";'),
+('es','messages:apihelp-query+allmessages-param-enableparser','s:144:\"Establecer para habilitar el analizador, se preprocesará el wikitexto del mensaje (sustitución de palabras mágicas, uso de plantillas, etc.).\";'),
+('es','messages:apihelp-query+allmessages-param-filter','s:61:\"Devolver solo mensajes con nombres que contengan esta cadena.\";'),
+('es','messages:apihelp-query+allmessages-param-from','s:48:\"Devolver mensajes que empiecen por este mensaje.\";'),
+('es','messages:apihelp-query+allmessages-param-includelocal','s:338:\"Incluir también los mensajes locales, es decir, aquellos que no existen en el propio software pero sí en el espacio de nombres {{ns:MediaWiki}}.\nEsto muestra todas las páginas del espacio de nombres {{ns:MediaWiki}}, así que también mostrará las que no son propiamente mensajes, como, por ejemplo, [[MediaWiki:Common.js|Common.js]].\";'),
+('es','messages:apihelp-query+allmessages-param-lang','s:33:\"Devolver mensajes en este idioma.\";'),
+('es','messages:apihelp-query+allmessages-param-messages','s:82:\"Qué mensajes mostrar. * (predeterminado) significa todos los mensajes.\";'),
+('es','messages:apihelp-query+allmessages-param-nocontent','s:70:\"Si se establece, no incluya el contenido de los mensajes en la salida.\";'),
+('es','messages:apihelp-query+allmessages-param-prefix','s:35:\"Devolver mensajes con este prefijo.\";'),
+('es','messages:apihelp-query+allmessages-param-prop','s:31:\"Qué propiedades se obtendrán.\";'),
+('es','messages:apihelp-query+allmessages-param-title','s:97:\"Nombre de página que usar como contexto al analizar el mensaje (para la opción $1enableparser).\";'),
+('es','messages:apihelp-query+allmessages-param-to','s:46:\"Devolver mensajes que acaben por este mensaje.\";'),
+('es','messages:apihelp-query+allmessages-summary','s:36:\"Devolver los mensajes de este sitio.\";'),
+('es','messages:apihelp-query+allpages-example-b','s:69:\"Mostrar una lista de páginas que empiecen con la letra B.\";'),
+('es','messages:apihelp-query+allpages-example-generator','s:81:\"Mostrar información acerca de 4 páginas que empiecen por la letra T.\";'),
+('es','messages:apihelp-query+allpages-example-generator-revisions','s:94:\"Mostrar el contenido de las 2 primeras páginas que no redirijan y empiecen por Re.\";'),
+('es','messages:apihelp-query+allpages-param-dir','s:36:\"La dirección en la que se listará.\";'),
+('es','messages:apihelp-query+allpages-param-filterlanglinks','s:136:\"Filtrar en función de si una página tiene langlinks. Tenga en cuenta que esto no puede considerar langlinks agregados por extensiones.\";'),
+('es','messages:apihelp-query+allpages-param-filterredir','s:21:\"Qué páginas listar.\";'),
+('es','messages:apihelp-query+allpages-param-from','s:51:\"El título de página para comenzar la enumeración\";'),
+('es','messages:apihelp-query+allpages-param-limit','s:42:\"Cuántas páginas en total se devolverán.\";'),
+('es','messages:apihelp-query+allpages-param-maxsize','s:53:\"Limitar a páginas con este número máximo de bytes.\";'),
+('es','messages:apihelp-query+allpages-param-minsize','s:54:\"Limitar a páginas con al menos este número de bytes.\";'),
+('es','messages:apihelp-query+allpages-param-namespace','s:35:\"El espacio de nombres que enumerar.\";'),
+('es','messages:apihelp-query+allpages-param-prefix','s:71:\"Buscar todos los títulos de las páginas que comiencen con este valor.\";'),
+('es','messages:apihelp-query+allpages-param-prexpiry','s:274:\"¿Cuál término de protección para filtrar la página en:\n; Indefinida: Obtener sólo páginas con protección de vencimiento indefinida.\n; Definida: Obtener sólo las páginas con un definitivo (específico) vencimiento.\n; Todos: Obtener páginas con cualquier caducidad.\";'),
+('es','messages:apihelp-query+allpages-param-prfiltercascade','s:98:\"Filtrar protecciones según la protección en cascada (se ignora cuando $1prtype no está fijado).\";'),
+('es','messages:apihelp-query+allpages-param-prlevel','s:102:\"Filtrar protecciones según el nivel de protección (se debe usar junto con el parámetro $1prtype= ).\";'),
+('es','messages:apihelp-query+allpages-param-prtype','s:30:\"Limitar a páginas protegidas.\";'),
+('es','messages:apihelp-query+allpages-param-to','s:51:\"El título de página para detener la enumeración.\";'),
+('es','messages:apihelp-query+allpages-summary','s:81:\"Enumerar todas las páginas secuencialmente en un espacio de nombres determinado.\";'),
+('es','messages:apihelp-query+allredirects-example-b','s:161:\"Enumera las páginas de destino, incluyendo las páginas desaparecidas, con los identificadores de las páginas de las que provienen, empezando por B.\";'),
+('es','messages:apihelp-query+allredirects-example-generator','s:49:\"Obtiene páginas que contienen las redirecciones.\";'),
+('es','messages:apihelp-query+allredirects-example-unique','s:32:\"La lista de páginas de destino.\";'),
+('es','messages:apihelp-query+allredirects-example-unique-generator','s:63:\"Obtiene todas las páginas de destino, marcando los que faltan.\";'),
+('es','messages:apihelp-query+allredirects-param-dir','s:36:\"La dirección en la que se listará.\";'),
+('es','messages:apihelp-query+allredirects-param-from','s:59:\"El título de la redirección para iniciar la enumeración.\";'),
+('es','messages:apihelp-query+allredirects-param-limit','s:34:\"Cuántos elementos se devolverán.\";'),
+('es','messages:apihelp-query+allredirects-param-namespace','s:33:\"El espacio de nombres a enumerar.\";'),
+('es','messages:apihelp-query+allredirects-param-prefix','s:65:\"Buscar todas las páginas de destino que empiecen con este valor.\";'),
+('es','messages:apihelp-query+allredirects-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+allredirects-param-to','s:59:\"El título de la redirección para detener la enumeración.\";'),
+('es','messages:apihelp-query+allredirects-param-unique','s:200:\"Mostrar solo títulos únicos de páginas de destino. No se puede usar junto con $1prop=ids|fragment|interwiki. Cuando se use como generador, devuelve páginas de destino en vez de páginas de origen.\";'),
+('es','messages:apihelp-query+allredirects-paramvalue-prop-fragment','s:99:\"Añade el fragmento de la redirección, si existe (no se puede usar junto con $1unique).\";'),
+('es','messages:apihelp-query+allredirects-paramvalue-prop-ids','s:103:\"Añade el identificador de la página de redirección (no se puede usar junto con $1unique).\";'),
+('es','messages:apihelp-query+allredirects-paramvalue-prop-interwiki','s:107:\"Añade el prefijo interwiki de la redirección, si existe (no se puede usar junto con $1unique).\";'),
+('es','messages:apihelp-query+allredirects-paramvalue-prop-title','s:37:\"Añade el título de la redirección.\";'),
+('es','messages:apihelp-query+allredirects-summary','s:68:\"Obtener la lista de todas las redirecciones a un espacio de nombres.\";'),
+('es','messages:apihelp-query+allrevisions-example-ns-any','s:45:\"List the first 50 revisions in any namespace.\";'),
+('es','messages:apihelp-query+allrevisions-example-user','s:69:\"Listar las últimas 50 contribuciones del usuario Example.\";'),
+('es','messages:apihelp-query+allrevisions-param-end','s:48:\"La marca de tiempo para detener la enumeración.\";'),
+('es','messages:apihelp-query+allrevisions-param-excludeuser','s:41:\"No listar las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+allrevisions-param-generatetitles','s:78:\"Cuando se utilice como generador, genera títulos en lugar de ID de revisión.\";'),
+('es','messages:apihelp-query+allrevisions-param-namespace','s:52:\"Listar solo las páginas en este espacio de nombres.\";'),
+('es','messages:apihelp-query+allrevisions-param-start','s:48:\"La marca de tiempo para iniciar la enumeración.\";'),
+('es','messages:apihelp-query+allrevisions-param-user','s:43:\"Listar solo las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+allrevisions-summary','s:28:\"Listar todas las revisiones.\";'),
+('es','messages:apihelp-query+alltransclusions-example-b','s:157:\"Enumerar los títulos transcluidos, incluyendo los faltantes, junto con los identificadores de las páginas de las que provienen, empezando por B.\";'),
+('es','messages:apihelp-query+alltransclusions-example-generator','s:54:\"Obtiene las páginas que contienen las transclusiones.\";'),
+('es','messages:apihelp-query+alltransclusions-example-unique','s:45:\"Listar títulos transcluidos de forma única.\";'),
+('es','messages:apihelp-query+alltransclusions-example-unique-generator','s:65:\"Obtiene todos los títulos transcluidos, marcando los que faltan.\";'),
+('es','messages:apihelp-query+alltransclusions-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+alltransclusions-param-from','s:66:\"El título de la transclusión por la que empezar la enumeración.\";'),
+('es','messages:apihelp-query+alltransclusions-param-limit','s:42:\"Número de elementos que se desea obtener.\";'),
+('es','messages:apihelp-query+alltransclusions-param-namespace','s:35:\"El espacio de nombres que enumerar.\";'),
+('es','messages:apihelp-query+alltransclusions-param-prefix','s:68:\"Buscar todos los títulos transcluidos que comiencen con este valor.\";'),
+('es','messages:apihelp-query+alltransclusions-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+alltransclusions-param-to','s:67:\"El título de la transclusión por la que terminar la enumeración.\";'),
+('es','messages:apihelp-query+alltransclusions-param-unique','s:171:\"Mostrar solo títulos únicos transcluidos. No se puede usar junto con $1prop=ids. Cuando se use como generador, devuelve páginas de destino en vez de páginas de origen.\";'),
+('es','messages:apihelp-query+alltransclusions-paramvalue-prop-ids','s:86:\"Agrega el ID de página de la página de redirección (no se puede usar con $1unique).\";'),
+('es','messages:apihelp-query+alltransclusions-paramvalue-prop-title','s:38:\"Añade el título de la transclusión.\";'),
+('es','messages:apihelp-query+alltransclusions-summary','s:118:\"Mostrar todas las transclusiones (páginas integradas mediante {{x}}), incluidas las inexistentes.\";'),
+('es','messages:apihelp-query+allusers-example-y','s:46:\"Listar usuarios que empiecen por Y.\";'),
+('es','messages:apihelp-query+allusers-param-activeusers','s:84:\"Solo listar usuarios activos en {{PLURAL:$1|el último día|los $1 últimos días}}.\";'),
+('es','messages:apihelp-query+allusers-param-attachedwiki','s:116:\"Con $1prop=centralids, indicar también si el usuario está conectado con la wiki identificado por el ID.\";'),
+('es','messages:apihelp-query+allusers-param-dir','s:27:\"Dirección de ordenamiento.\";'),
+('es','messages:apihelp-query+allusers-param-excludegroup','s:38:\"Excluir a los usuarios en estos grupos\";'),
+('es','messages:apihelp-query+allusers-param-from','s:56:\"El nombre de usuario por el que empezar la enumeración.\";'),
+('es','messages:apihelp-query+allusers-param-group','s:42:\"Incluir solo usuarios en los grupos dados.\";'),
+('es','messages:apihelp-query+allusers-param-limit','s:43:\"Cuántos nombres de usuario se devolverán.\";'),
+('es','messages:apihelp-query+allusers-param-prefix','s:54:\"Buscar todos los usuarios que empiecen con este valor.\";'),
+('es','messages:apihelp-query+allusers-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+allusers-param-rights','s:170:\"Sólo se incluyen a los usuarios con los derechos cedidos. No incluye los derechos concedidos por la implícita o auto-promoverse grupos como *, usuario, o autoconfirmed.\";'),
+('es','messages:apihelp-query+allusers-param-to','s:58:\"El nombre de usuario por el que finalizar la enumeración.\";'),
+('es','messages:apihelp-query+allusers-param-witheditsonly','s:54:\"Mostrar solo los usuarios que han realizado ediciones.\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-blockinfo','s:54:\"Añade información sobre un bloque actual al usuario.\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-centralids','s:56:\"Añade el central IDs y estado de anexo para el usuario.\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-editcount','s:43:\"Añade el número de ediciones del usuario.\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-groups','s:138:\"Lista los grupos a los que el usuario pertenece. Esto utiliza más recursos del servidor y puede devolver menos resultados que el límite.\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-implicitgroups','s:57:\"Lista todos los grupos el usuario es automáticamente en.\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-registration','s:114:\"Añade la marca de tiempo del momento en que el usuario se registró, si está disponible (puede estar en blanco).\";'),
+('es','messages:apihelp-query+allusers-paramvalue-prop-rights','s:40:\"Lista los permisos que tiene el usuario.\";'),
+('es','messages:apihelp-query+allusers-summary','s:40:\"Enumerar todos los usuarios registrados.\";'),
+('es','messages:apihelp-query+authmanagerinfo-example-login','s:85:\"Captura de las solicitudes que puede ser utilizadas al comienzo de inicio de sesión.\";'),
+('es','messages:apihelp-query+authmanagerinfo-example-login-merged','s:120:\"Obtener las peticiones que podrían utilizarse al empezar un inicio de sesión, con los campos de formulario integrados.\";'),
+('es','messages:apihelp-query+authmanagerinfo-example-securitysensitiveoperation','s:87:\"Comprueba si la autentificación es suficiente para realizar la acción foo.\";'),
+('es','messages:apihelp-query+authmanagerinfo-param-requestsfor','s:122:\"Obtener información sobre las peticiones de autentificación requeridas para la acción de autentificación especificada.\";'),
+('es','messages:apihelp-query+authmanagerinfo-param-securitysensitiveoperation','s:126:\"Compruebe si el estado de autenticación actual del usuario es suficiente para la operación sensible-seguridad especificada.\";'),
+('es','messages:apihelp-query+authmanagerinfo-summary','s:64:\"Recuperar información sobre el estado de autenticación actual.\";'),
+('es','messages:apihelp-query+backlinks-example-generator','s:77:\"Obtener información acerca de las páginas enlazadas a Main page.\";'),
+('es','messages:apihelp-query+backlinks-example-simple','s:39:\"Mostrar enlaces a Main page.\";'),
+('es','messages:apihelp-query+backlinks-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+backlinks-param-filterredir','s:152:\"Cómo filtrar redirecciones. Si se establece a nonredirects cuando está activo $1redirect, esto sólo se aplica al segundo nivel.\";'),
+('es','messages:apihelp-query+backlinks-param-limit','s:208:\"Cuántas páginas en total se devolverán. Si está activo $1redirect, el límite aplica a cada nivel por separado (lo que significa que se pueden devolver hasta 2 * $1limit resultados).\";'),
+('es','messages:apihelp-query+backlinks-param-namespace','s:35:\"El espacio de nombres que enumerar.\";'),
+('es','messages:apihelp-query+backlinks-param-pageid','s:81:\"Identificador de página que buscar. No puede usarse junto con $1title\";'),
+('es','messages:apihelp-query+backlinks-param-redirect','s:153:\"Si la página con el enlace es una redirección, encontrar también las páginas que enlacen a esa redirección. El límite máximo se reduce a la mitad.\";'),
+('es','messages:apihelp-query+backlinks-param-title','s:67:\"Título que buscar. No se puede usar junto con $1pageid.\";'),
+('es','messages:apihelp-query+backlinks-summary','s:59:\"Encuentra todas las páginas que enlazan a la página dada.\";'),
+('es','messages:apihelp-query+blocks-example-simple','s:15:\"Listar bloques.\";'),
+('es','messages:apihelp-query+blocks-example-users','s:71:\"Muestra los bloqueos de los usuarios Alice y Bob.\";'),
+('es','messages:apihelp-query+blocks-param-end','s:47:\"El sello de tiempo para detener la enumeración\";'),
+('es','messages:apihelp-query+blocks-param-ids','s:45:\"Lista de bloquear IDs para listar (opcional).\";'),
+('es','messages:apihelp-query+blocks-param-ip','s:229:\"Obtiene todos los bloqueos que se aplican a esta dirección IP o intervalo CIDR, incluyendo bloqueos de intervalos. No se puede usar en conjunto con $3users. No se aceptan intervalos CIDR mayores que IPv4/$1 o IPv6/$2.\";'),
+('es','messages:apihelp-query+blocks-param-limit','s:39:\"El número máximo de filtros a listar.\";'),
+('es','messages:apihelp-query+blocks-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+blocks-param-show','s:177:\"Muestra solamente los elementos que cumplen estos criterios.\nPor ejemplo, para mostrar solamente los bloqueos indefinidos a direcciones IP, introduce $1show=ip|!temp.\";'),
+('es','messages:apihelp-query+blocks-param-start','s:48:\"El sello de tiempo para comenzar la enumeración\";'),
+('es','messages:apihelp-query+blocks-param-users','s:38:\"Lista de usuarios a buscar (opcional).\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-by','s:51:\"Añade el nombre de usuario del bloqueo de usuario.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-byid','s:44:\"Añade el usuario ID del usuario bloqueador.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-expiry','s:71:\"Añade la marca de tiempo correspondiente a la expiración del bloqueo.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-flags','s:58:\"Etiquetas la prohibición con (autoblock, anononly, etc.).\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-id','s:24:\"Agrega el ID del bloque.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-range','s:58:\"Añade la gama de direcciones de IP afectó por el bloque.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-reason','s:38:\"Añade la razón dada para el bloqueo.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-restrictions','s:65:\"Adds the partial block restrictions if the block is not sitewide.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-timestamp','s:54:\"Añade la fecha y hora de cuando se aplicó el bloque.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-user','s:50:\"Añade el nombre de usuario del usuario bloqueado.\";'),
+('es','messages:apihelp-query+blocks-paramvalue-prop-userid','s:46:\"Añade el identificador del usuario bloqueado.\";'),
+('es','messages:apihelp-query+blocks-summary','s:54:\"Listar todos los usuarios y direcciones IP bloqueadas.\";'),
+('es','messages:apihelp-query+categories-example-generator','s:105:\"Obtener información acerca de todas las categorías utilizadas en la página Albert Einstein.\";'),
+('es','messages:apihelp-query+categories-example-simple','s:91:\"Obtener una lista de categorías a las que pertenece la página Albert Einstein.\";'),
+('es','messages:apihelp-query+categories-param-categories','s:122:\"Enumerar solamente estas categorías. Útil para comprobar si una página determinada está en una categoría determinada.\";'),
+('es','messages:apihelp-query+categories-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+categories-param-limit','s:36:\"Cuántas categorías se devolverán.\";'),
+('es','messages:apihelp-query+categories-param-prop','s:58:\"Qué propiedades adicionales obtener para cada categoría:\";'),
+('es','messages:apihelp-query+categories-param-show','s:33:\"Qué tipo de categorías mostrar.\";'),
+('es','messages:apihelp-query+categories-paramvalue-prop-hidden','s:83:\"Etiqueta las categorías que están ocultas con __HIDDENCAT__.\";'),
+('es','messages:apihelp-query+categories-paramvalue-prop-sortkey','s:128:\"Añade la clave de ordenación (cadena hexadecimal) y el prefijo de la clave de ordenación (la parte legible) de la categoría.\";'),
+('es','messages:apihelp-query+categories-paramvalue-prop-timestamp','s:71:\"Añade la marca de tiempo del momento en que se añadió la categoría.\";'),
+('es','messages:apihelp-query+categories-summary','s:64:\"Enumera todas las categorías a las que pertenecen las páginas.\";'),
+('es','messages:apihelp-query+categoryinfo-example-simple','s:80:\"Obtener información acerca de Category:Foo y Category:Bar\";'),
+('es','messages:apihelp-query+categoryinfo-summary','s:54:\"Devuelve información acerca de las categorías dadas.\";'),
+('es','messages:apihelp-query+categorymembers-example-generator','s:86:\"Obtener información sobre las primeras 10 páginas de la Category:Physics.\";'),
+('es','messages:apihelp-query+categorymembers-example-simple','s:64:\"Obtener las primeras 10 páginas en Category:Physics.\";'),
+('es','messages:apihelp-query+categorymembers-param-dir','s:35:\"Dirección en la que desea ordenar.\";'),
+('es','messages:apihelp-query+categorymembers-param-end','s:112:\"Cronomarcador por el que terminar la enumeración. Solo se puede utilizar junto con $1sort=timestamp.\";'),
+('es','messages:apihelp-query+categorymembers-param-endhexsortkey','s:174:\"Clave de ordenación por la que terminar la enumeración, tal como se ha devuelto por $1prop=sortkey. Solo se puede utilizar junto con $1sort=timestamp.\";'),
+('es','messages:apihelp-query+categorymembers-param-endsortkey','s:37:\"Utilizar $1endhexsortkey en su lugar.\";'),
+('es','messages:apihelp-query+categorymembers-param-endsortkeyprefix','s:263:\"Prefijo de la clave de ordenación antes del cual termina la enumeración (no en el cual; si este valor existe, no será incluido). Solo se puede utilizar junto con $1sort=sortkey. Reemplaza $1endhexsortkey.\";'),
+('es','messages:apihelp-query+categorymembers-param-limit','s:41:\"Número máximo de páginas que devolver.\";'),
+('es','messages:apihelp-query+categorymembers-param-namespace','s:202:\"Incluir solamente páginas de estos espacios de nombres. Ten en cuenta que puede haberse utilizado $1type=subcat o $1type=file en lugar de $1namespace=14 o 6.\";'),
+('es','messages:apihelp-query+categorymembers-param-pageid','s:96:\"ID de página de la categoría para enumerar. No se puede utilizar junto con $1title.\";'),
+('es','messages:apihelp-query+categorymembers-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+categorymembers-param-sort','s:45:\"Propiedad por la que realizar la ordenación.\";'),
+('es','messages:apihelp-query+categorymembers-param-start','s:111:\"Cronomarcador por el que empezar la enumeración. Solo se puede utilizar junto con $1sort=timestamp.\";'),
+('es','messages:apihelp-query+categorymembers-param-starthexsortkey','s:173:\"Clave de ordenación por la que empezar la enumeración, tal como se ha devuelto por $1prop=sortkey. Solo se puede utilizar junto con $1sort=timestamp.\";'),
+('es','messages:apihelp-query+categorymembers-param-startsortkey','s:39:\"Utilizar $1starthexsortkey en su lugar.\";'),
+('es','messages:apihelp-query+categorymembers-param-startsortkeyprefix','s:170:\"Prefijo de la clave de ordenación por el que empezar la enumeración. Solo se puede utilizar junto con $1sort=sortkey. Reemplaza $1starthexsortkey.\";'),
+('es','messages:apihelp-query+categorymembers-param-title','s:141:\"Categoría que enumerar (requerida). Debe incluir el prefijo {{ns:category}}:. No se puede utilizar junto con $1pageid.\";'),
+('es','messages:apihelp-query+categorymembers-param-type','s:110:\"Qué tipo de miembros de la categoría incluir. Ignorado cuando se ha establecido $1sort=timestamp.\";'),
+('es','messages:apihelp-query+categorymembers-paramvalue-prop-ids','s:35:\"Añade el identificador de página.\";'),
+('es','messages:apihelp-query+categorymembers-paramvalue-prop-sortkey','s:99:\"Añade la clave de ordenación utilizada para la ordenación en la categoría (cadena hexadecimal).\";'),
+('es','messages:apihelp-query+categorymembers-paramvalue-prop-sortkeyprefix','s:121:\"Añade la clave de ordenación utilizada para la ordenación en la categoría (parte legible de la clave de ordenación).\";'),
+('es','messages:apihelp-query+categorymembers-paramvalue-prop-timestamp','s:68:\"Añade la marca de tiempo del momento en que se incluyó la página.\";'),
+('es','messages:apihelp-query+categorymembers-paramvalue-prop-title','s:74:\"Agrega el título y el identificador del espacio de nombres de la página.\";'),
+('es','messages:apihelp-query+categorymembers-paramvalue-prop-type','s:113:\"Añade el tipo en el que se categorizó la página (page, subcat or file).\";'),
+('es','messages:apihelp-query+categorymembers-summary','s:48:\"Lista todas las páginas en una categoría dada.\";'),
+('es','messages:apihelp-query+contributors-example-simple','s:62:\"Mostrar los contribuyentes de la página Main Page.\";'),
+('es','messages:apihelp-query+contributors-param-excludegroup','s:130:\"Excluir usuarios de los grupos especificados. No incluye grupos implícitos o autopromocionados, como *, usuario o autoconfirmado.\";'),
+('es','messages:apihelp-query+contributors-param-excluderights','s:155:\"Excluir usuarios con los derechos especificados. No incluye derechos concedidos a grupos implícitos o autopromocionados, como *, usuario o autoconfirmado.\";'),
+('es','messages:apihelp-query+contributors-param-group','s:135:\"Solo incluir usuarios de los grupos especificados. No incluye grupos implícitos o autopromocionados, como *, usuario o autoconfirmado.\";'),
+('es','messages:apihelp-query+contributors-param-limit','s:39:\"Cuántos contribuyentes se devolverán.\";'),
+('es','messages:apihelp-query+contributors-param-rights','s:160:\"Solo incluir usuarios con los derechos especificados. No incluye derechos concedidos a grupos implícitos o autopromocionados, como *, usuario o autoconfirmado.\";'),
+('es','messages:apihelp-query+contributors-summary','s:102:\"Obtener la lista de contribuidores conectados y el número de contribuidores anónimos de una página.\";'),
+('es','messages:apihelp-query+deletedrevisions-example-revids','s:66:\"Mostrar la información de la revisión borrada 123456.\";'),
+('es','messages:apihelp-query+deletedrevisions-example-titles','s:123:\"Muestra la lista de revisiones borradas de las páginas Main Page y Talk:Main Page, con su contenido.\";'),
+('es','messages:apihelp-query+deletedrevisions-extended-description','s:325:\"Puede ser utilizada de varias maneras:\n# Obtenga las revisiones eliminadas de un conjunto de páginas, estableciendo títulos o ID de paginas. Ordenadas por título y marca horaria.\n# Obtener datos sobre un conjunto de revisiones eliminadas estableciendo sus ID con identificación de revisión. Ordenado por ID de revisión.\";'),
+('es','messages:apihelp-query+deletedrevisions-param-end','s:119:\"Marca de tiempo por la que terminar la enumeración. Se ignora cuando se esté procesando una lista de ID de revisión.\";'),
+('es','messages:apihelp-query+deletedrevisions-param-excludeuser','s:41:\"No listar las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+deletedrevisions-param-start','s:118:\"Marca de tiempo por la que empezar la enumeración. Se ignora cuando se esté procesando una lista de ID de revisión.\";'),
+('es','messages:apihelp-query+deletedrevisions-param-tag','s:45:\"Listar solo las revisiones con esta etiqueta.\";'),
+('es','messages:apihelp-query+deletedrevisions-param-user','s:43:\"Listar solo las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+deletedrevisions-summary','s:44:\"Obtener información de revisión eliminada.\";'),
+('es','messages:apihelp-query+deletedrevs-example-mode1','s:130:\"Muestra las últimas revisiones borradas de las páginas Main Page y Talk:Main Page, con contenido (modo 1).\";'),
+('es','messages:apihelp-query+deletedrevs-example-mode2','s:66:\"Muestra las últimas 50 contribuciones de Bob (modo 2).\";'),
+('es','messages:apihelp-query+deletedrevs-example-mode3-main','s:75:\"Muestra las primeras 50 revisiones borradas del espacio principal (modo 3).\";'),
+('es','messages:apihelp-query+deletedrevs-example-mode3-talk','s:78:\"Listar las primeras 50 páginas en el espacio de nombres {{ns:talk}} (modo 3).\";'),
+('es','messages:apihelp-query+deletedrevs-extended-description','s:371:\"Opera en tres modos:\n# Lista de revisiones borradas de los títulos dados, ordenadas por marca de tiempo.\n# Lista de contribuciones borradas del usuario dado, ordenadas por marca de tiempo.\n# Lista de todas las revisiones borradas en el espacio de nombres dado, ordenadas por título y marca de tiempo (donde no se ha especificado ningún título ni se ha fijado $1user).\";'),
+('es','messages:apihelp-query+deletedrevs-param-end','s:52:\"Marca de tiempo por la que terminar la enumeración.\";'),
+('es','messages:apihelp-query+deletedrevs-param-excludeuser','s:41:\"No listar las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+deletedrevs-param-from','s:33:\"Empezar a listar en este título.\";'),
+('es','messages:apihelp-query+deletedrevs-param-limit','s:45:\"La cantidad máxima de revisiones que listar.\";'),
+('es','messages:apihelp-query+deletedrevs-param-namespace','s:52:\"Listar solo las páginas en este espacio de nombres.\";'),
+('es','messages:apihelp-query+deletedrevs-param-prefix','s:54:\"Buscar todas las páginas que empiecen con este valor.\";'),
+('es','messages:apihelp-query+deletedrevs-param-prop','s:738:\"Propiedades que obtener:\n;revid: Añade el identificador de la revisión borrada.\n;parentid: Añade el identificador de la revisión anterior de la página.\n;user: Añade el usuario que hizo la revisión.\n;userid: Añade el identificador del usuario que hizo la revisión.\n;comment: Añade el comentario de la revisión.\n;parsedcomment: Añade el comentario de la revisión, pasado por el analizador sintáctico.\n;minor: Añade una etiqueta si la revisión es menor.\n;len: Añade la longitud (en bytes) de la revisión.\n;sha1: Añade el SHA-1 (base 16) de la revisión.\n;content: Añade el contenido de la revisión.\n;token:Obsoleto. Devuelve el token de edición.\n;tags: Etiquetas de la revisión.\";'),
+('es','messages:apihelp-query+deletedrevs-param-start','s:51:\"Marca de tiempo por la que empezar la enumeración.\";'),
+('es','messages:apihelp-query+deletedrevs-param-tag','s:45:\"Listar solo las revisiones con esta etiqueta.\";'),
+('es','messages:apihelp-query+deletedrevs-param-to','s:35:\"Terminar de listar en este título.\";'),
+('es','messages:apihelp-query+deletedrevs-param-unique','s:43:\"Listar solo una revisión por cada página.\";'),
+('es','messages:apihelp-query+deletedrevs-param-user','s:43:\"Listar solo las revisiones de este usuario.\";'),
+('es','messages:apihelp-query+deletedrevs-paraminfo-modes','s:28:\"{{PLURAL:$1|Modo|Modos}}: $2\";'),
+('es','messages:apihelp-query+deletedrevs-summary','s:40:\"Muestra la lista de revisiones borradas.\";'),
+('es','messages:apihelp-query+disabled-summary','s:41:\"Se ha desactivado el módulo de consulta.\";'),
+('es','messages:apihelp-query+duplicatefiles-example-generated','s:40:\"Buscar duplicados en todos los archivos.\";'),
+('es','messages:apihelp-query+duplicatefiles-example-simple','s:55:\"Buscar duplicados de [[:File:Alber Einstein Head.jpg]].\";'),
+('es','messages:apihelp-query+duplicatefiles-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+duplicatefiles-param-limit','s:45:\"Número de archivos duplicados para devolver.\";'),
+('es','messages:apihelp-query+duplicatefiles-param-localonly','s:45:\"Buscar solo archivos en el repositorio local.\";'),
+('es','messages:apihelp-query+duplicatefiles-summary','s:98:\"Enumerar todos los archivos que son duplicados de los archivos dados a partir de los valores hash.\";'),
+('es','messages:apihelp-query+embeddedin-example-generator','s:81:\"Obtener información sobre las páginas que transcluyen Template:Stub.\";'),
+('es','messages:apihelp-query+embeddedin-example-simple','s:62:\"Mostrar las páginas que transcluyen Template:Stub.\";'),
+('es','messages:apihelp-query+embeddedin-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+embeddedin-param-filterredir','s:32:\"Cómo filtrar las redirecciones.\";'),
+('es','messages:apihelp-query+embeddedin-param-limit','s:33:\"Cuántas páginas se devolverán.\";'),
+('es','messages:apihelp-query+embeddedin-param-namespace','s:35:\"El espacio de nombres que enumerar.\";'),
+('es','messages:apihelp-query+embeddedin-param-pageid','s:72:\"Identificador de página que buscar. No se puede usar junto con $1title.\";'),
+('es','messages:apihelp-query+embeddedin-param-title','s:59:\"Título a buscar. No puede usarse en conjunto con $1pageid.\";'),
+('es','messages:apihelp-query+embeddedin-summary','s:61:\"Encuentra todas las páginas que transcluyen el título dado.\";'),
+('es','messages:apihelp-query+extlinks-example-simple','s:66:\"Obtener una lista de los enlaces externos en Main Page.\";'),
+('es','messages:apihelp-query+extlinks-param-expandurl','s:69:\"Expandir las URL relativas a un protocolo con el protocolo canónico.\";'),
+('es','messages:apihelp-query+extlinks-param-limit','s:32:\"Cuántos enlaces se devolverán.\";'),
+('es','messages:apihelp-query+extlinks-param-protocol','s:197:\"Protocolo de la URL. Si está vacío y $1query está definido, el protocolo es http. Para enumerar todos los enlaces externos, deja a la vez vacíos esto y $1query.\";'),
+('es','messages:apihelp-query+extlinks-param-query','s:120:\"Cadena de búsqueda sin protocolo. Útil para comprobar si una determinada página contiene una determinada URL externa.\";'),
+('es','messages:apihelp-query+extlinks-summary','s:81:\"Devuelve todas las URL externas (excluidos los interwikis) de las páginas dadas.\";'),
+('es','messages:apihelp-query+exturlusage-example-simple','s:70:\"Mostrar páginas que enlacen con https://www.mediawiki.org.\";'),
+('es','messages:apihelp-query+exturlusage-param-expandurl','s:69:\"Expandir las URL relativas a un protocolo con el protocolo canónico.\";'),
+('es','messages:apihelp-query+exturlusage-param-limit','s:33:\"Cuántas páginas se devolverán.\";'),
+('es','messages:apihelp-query+exturlusage-param-namespace','s:37:\"Los espacios de nombres que enumerar.\";'),
+('es','messages:apihelp-query+exturlusage-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+exturlusage-param-protocol','s:180:\"Protocolo del URL. Si está vacío y se establece $1query, el protocolo es http. Deja vacío esto y $1query para listar todos los enlaces externos.\";'),
+('es','messages:apihelp-query+exturlusage-param-query','s:128:\"Cadena de búsqueda sin protocolo. Véase [[Special:LinkSearch]]. Deja el campo vacío para enumerar todos los enlaces externos.\";'),
+('es','messages:apihelp-query+exturlusage-paramvalue-prop-ids','s:37:\"Añade el identificado de la página.\";'),
+('es','messages:apihelp-query+exturlusage-paramvalue-prop-title','s:74:\"Agrega el título y el identificador del espacio de nombres de la página.\";'),
+('es','messages:apihelp-query+exturlusage-paramvalue-prop-url','s:38:\"Añade el URL utilizado en la página.\";'),
+('es','messages:apihelp-query+exturlusage-summary','s:44:\"Enumera páginas que contienen una URL dada.\";'),
+('es','messages:apihelp-query+filearchive-example-simple','s:51:\"Mostrar una lista de todos los archivos eliminados.\";'),
+('es','messages:apihelp-query+filearchive-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+filearchive-param-from','s:50:\"El título de imagen para comenzar la enumeración\";'),
+('es','messages:apihelp-query+filearchive-param-limit','s:43:\"Número de imágenes que devolver en total.\";'),
+('es','messages:apihelp-query+filearchive-param-prefix','s:72:\"Buscar todos los títulos de las imágenes que comiencen con este valor.\";'),
+('es','messages:apihelp-query+filearchive-param-prop','s:41:\"Qué información de imagen se obtendrá:\";'),
+('es','messages:apihelp-query+filearchive-param-sha1','s:47:\"Hash SHA1 de la imagen. Reemplaza $1sha1base36.\";'),
+('es','messages:apihelp-query+filearchive-param-sha1base36','s:59:\"Hash SHA1 de la imagen en base 36 (utilizado en MediaWiki).\";'),
+('es','messages:apihelp-query+filearchive-param-to','s:50:\"El título de imagen para detener la enumeración.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-archivename','s:96:\"Añade el nombre de archivo de la versión archivada para las versiones que no son las últimas.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-bitdepth','s:44:\"Añade la profundidad de bit de la versión.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-description','s:51:\"Añade la descripción de la versión de la imagen.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-dimensions','s:18:\"Alias del tamaño.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-mediatype','s:39:\"Añade el tipo multimedia de la imagen.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-metadata','s:57:\"Enumera los metadatos Exif para la versión de la imagen.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-mime','s:28:\"Añade el MIME de la imagen.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-parseddescription','s:40:\"Analizar la descripción de la versión.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-sha1','s:36:\"Añade el hash SHA-1 para la imagen.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-size','s:107:\"Agrega el tamaño de la imagen en bytes y la altura, la anchura y el número de páginas (si es aplicable).\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-timestamp','s:48:\"Añade la marca de tiempo de la versión subida.\";'),
+('es','messages:apihelp-query+filearchive-paramvalue-prop-user','s:54:\"Agrega el usuario que subió la versión de la imagen.\";'),
+('es','messages:apihelp-query+filearchive-summary','s:57:\"Enumerar todos los archivos borrados de forma secuencial.\";'),
+('es','messages:apihelp-query+filerepoinfo-example-simple','s:60:\"Obtener información acerca de los repositorios de archivos.\";'),
+('es','messages:apihelp-query+filerepoinfo-param-prop','s:100:\"Qué propiedades del repositorio obtener (las propiedades disponibles pueden variar en otras wikis).\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-apiurl','s:73:\"URL to the repository API - helpful for getting image info from the host.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-articlepath','s:106:\"Repository wiki\'s [[mw:Special:MyLanguage/Manual:$wgArticlePath|$wgArticlePath]] or equivalent.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-canUpload','s:90:\"Whether files can be uploaded to this repository, e.g. via CORS and shared authentication.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-displayname','s:47:\"The human-readable name of the repository wiki.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-favicon','s:126:\"URL del favicono de la wiki del repositorio, proveniente de [[mw:Special:MyLanguage/Manual:$wgFavicon|$wgFavicon]].\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-fetchDescription','s:106:\"Whether file description pages are fetched from this repository when viewing local file description pages.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-initialCapital','s:58:\"Whether file names implicitly start with a capital letter.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-local','s:48:\"Whether that repository is the local one or not.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-name','s:189:\"The key of the repository - used in e.g. [[mw:Special:MyLanguage/Manual:$wgForeignFileRepos|$wgForeignFileRepos]] and [[Special:ApiHelp/query+imageinfo|imageinfo]] return values.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-rootUrl','s:53:\"Ruta de la URL raíz para las rutas de las imágenes.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-scriptDirUrl','s:79:\"Ruta de la URL raíz para la instalación MediaWiki de la wiki del repositorio.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-server','s:105:\"[[mw:Special:MyLanguage/Manual:$wgServer|$wgServer]] o equivalente de la wiki del repositorio.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-thumbUrl','s:54:\"Ruta de la URL raíz para las rutas de las miniaturas.\";'),
+('es','messages:apihelp-query+filerepoinfo-paramvalue-prop-url','s:35:\"Ruta de la URL de la zona pública.\";'),
+('es','messages:apihelp-query+filerepoinfo-summary','s:86:\"Devuelve metainformación sobre los repositorios de imágenes configurados en la wiki.\";'),
+('es','messages:apihelp-query+fileusage-example-generator','s:79:\"Obtener información acerca de las páginas que utilicen [[:File:Example.jpg]].\";'),
+('es','messages:apihelp-query+fileusage-example-simple','s:65:\"Obtener una lista de páginas que utilicen [[:File:Example.jpg]].\";'),
+('es','messages:apihelp-query+fileusage-param-limit','s:24:\"Cuántos se devolverán.\";'),
+('es','messages:apihelp-query+fileusage-param-namespace','s:51:\"Incluir solo páginas de estos espacios de nombres.\";'),
+('es','messages:apihelp-query+fileusage-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+fileusage-param-show','s:164:\"Muestra solo los elementos que cumplen estos criterios:\n;redirect: Muestra solamente redirecciones.\n;!redirect: Muestra solamente páginas que no son redirecciones.\";'),
+('es','messages:apihelp-query+fileusage-paramvalue-prop-pageid','s:30:\"Identificador de cada página.\";'),
+('es','messages:apihelp-query+fileusage-paramvalue-prop-redirect','s:41:\"Marcar si la página es una redirección.\";'),
+('es','messages:apihelp-query+fileusage-paramvalue-prop-title','s:24:\"Título de cada página.\";'),
+('es','messages:apihelp-query+fileusage-summary','s:61:\"Encontrar todas las páginas que utilizan los archivos dados.\";'),
+('es','messages:apihelp-query+imageinfo-example-dated','s:80:\"Obtener información sobre las versiones de [[:File:Test.jpg]] a partir de 2008.\";'),
+('es','messages:apihelp-query+imageinfo-example-simple','s:84:\"Obtener información sobre la versión actual de [[:File:Albert Einstein Head.jpg]].\";'),
+('es','messages:apihelp-query+imageinfo-param-badfilecontexttitle','s:133:\"Si $2prop=badfile está establecido, este es el título de la página utilizado al evaluar la [[MediaWiki:Bad image list]]\";'),
+('es','messages:apihelp-query+imageinfo-param-end','s:50:\"Cronomarcador por el que terminar la enumeración.\";'),
+('es','messages:apihelp-query+imageinfo-param-extmetadatafilter','s:89:\"Si se especifica y no vacío, sólo estas claves serán devueltos por $1prop=extmetadata.\";'),
+('es','messages:apihelp-query+imageinfo-param-extmetadatalanguage','s:175:\"En qué idioma obtener «extmetadata». Esto afecta tanto la traducción que se obtendrá ―si hay varias― como el formato de elementos como los números y algunos valores.\";'),
+('es','messages:apihelp-query+imageinfo-param-extmetadatamultilang','s:89:\"Si las traducciones para la propiedad extmetadata están disponibles, busque todas ellas.\";'),
+('es','messages:apihelp-query+imageinfo-param-limit','s:58:\"Cuántos revisiones de archivos se devolverán por perfil.\";'),
+('es','messages:apihelp-query+imageinfo-param-localonly','s:45:\"Buscar solo archivos en el repositorio local.\";'),
+('es','messages:apihelp-query+imageinfo-param-metadataversion','s:188:\"Versión de los metadatos que se utilizará. Si se especifica latest, utilizará la última versión. El valor predeterminado es 1, por motivo de retrocompatibilidad.\";'),
+('es','messages:apihelp-query+imageinfo-param-prop','s:43:\"Qué información del archivo se obtendrá:\";'),
+('es','messages:apihelp-query+imageinfo-param-start','s:49:\"Cronomarcador por el que empezar la enumeración.\";'),
+('es','messages:apihelp-query+imageinfo-param-urlheight','s:21:\"Similar a $1urlwidth.\";'),
+('es','messages:apihelp-query+imageinfo-param-urlparam','s:216:\"Un controlador específico de la cadena de parámetro. Por ejemplo, los archivos Pdf pueden utilizar page15-100px. $1urlwidth debe ser utilizado y debe ser consistente con $1urlparam.\";'),
+('es','messages:apihelp-query+imageinfo-param-urlwidth','s:191:\"Si se establece $2prop=url, se devolverá una URL a una imagen escalada a este ancho.\nPor razones de rendimiento, si se utiliza esta opción, no se devolverán más de $1 imágenes escaladas.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-archivename','s:97:\"Añade el nombre del archivo de la versión archivada para las versiones anteriores a la última.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-badfile','s:61:\"Añade si el archivo está en la [[MediaWiki:Bad image list]]\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-bitdepth','s:45:\"Añade la profundidad de bits de la versión.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-canonicaltitle','s:40:\"Agrega el título canónico del archivo.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-comment','s:30:\"Comentarios sobre la versión.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-commonmetadata','s:86:\"Enumera los metadatos genéricos del formato del archivo para la versión del archivo.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-dimensions','s:22:\"Alias para el tamaño.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-extmetadata','s:102:\"Enumera metadatos con formato combinados de múltiples fuentes. Los resultados están en formato HTML.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-mediatype','s:39:\"Añade el tipo multimedia de la imagen.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-metadata','s:56:\"Enumera los metadatos Exif para la versión del archivo.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-mime','s:32:\"Añade el tipo MIME del archivo.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-parsedcomment','s:38:\"Analizar el comentario de la versión.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-sha1','s:36:\"Añade el hash SHA-1 para la imagen.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-size','s:98:\"Agrega el tamaño del archivo en bytes y la altura, el ancho y el número de páginas (si aplica).\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-thumbmime','s:97:\"Añade el tipo MIME de la miniatura de la imagen (se requiere la URL y el parámetro $1urlwidth).\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-timestamp','s:52:\"Añade la marca de tiempo a la versión actualizada.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-uploadwarning','s:159:\"Usado por la página de Carga Especial para obtener información sobre un archivo existente. No está diseñado para ser utilizado fuera del núcleo MediaWiki.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-url','s:61:\"Devuelve la URL para el archivo y la página de descripción.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-user','s:55:\"Añade el usuario que subió cada versión del archivo.\";'),
+('es','messages:apihelp-query+imageinfo-paramvalue-prop-userid','s:61:\"Añade la ID de usuario que subió cada versión del archivo.\";'),
+('es','messages:apihelp-query+imageinfo-summary','s:59:\"Devuelve información del archivo y su historial de subida.\";'),
+('es','messages:apihelp-query+images-example-generator','s:73:\"Obtener información sobre todos los archivos empleados en [[Main Page]].\";'),
+('es','messages:apihelp-query+images-example-simple','s:69:\"Obtener una lista de los archivos usados en la [[Main Page|Portada]].\";'),
+('es','messages:apihelp-query+images-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+images-param-images','s:106:\"Mostrar solo estos archivos. Útil para comprobar si una determinada página tiene un determinado archivo.\";'),
+('es','messages:apihelp-query+images-param-limit','s:33:\"Cuántos archivos se devolverán.\";'),
+('es','messages:apihelp-query+images-summary','s:61:\"Devuelve todos los archivos contenidos en las páginas dadas.\";'),
+('es','messages:apihelp-query+imageusage-example-generator','s:87:\"Obtener información sobre las páginas que empleen [[:File:Albert Einstein Head.jpg]].\";'),
+('es','messages:apihelp-query+imageusage-example-simple','s:65:\"Mostrar las páginas que usan [[:File:Albert Einstein Head.jpg]].\";'),
+('es','messages:apihelp-query+imageusage-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+imageusage-param-filterredir','s:141:\"Cómo filtrar las redirecciones. Si se establece a no redirecciones cuando está habilitado $1redirect, esto solo se aplica al segundo nivel.\";'),
+('es','messages:apihelp-query+imageusage-param-limit','s:189:\"Número de páginas que devolver. Si está habilitado $1redirect, el límite se aplica a cada nivel de forma separada (es decir, se pueden devolver hasta 2 * $1limit).\";'),
+('es','messages:apihelp-query+imageusage-param-namespace','s:35:\"El espacio de nombres que enumerar.\";'),
+('es','messages:apihelp-query+imageusage-param-pageid','s:52:\"ID de página a buscar. No puede usarse con $1title.\";'),
+('es','messages:apihelp-query+imageusage-param-redirect','s:153:\"Si la página con el enlace es una redirección, encontrar también las páginas que enlacen a esa redirección. El límite máximo se reduce a la mitad.\";'),
+('es','messages:apihelp-query+imageusage-param-title','s:59:\"Título a buscar. No puede usarse en conjunto con $1pageid.\";'),
+('es','messages:apihelp-query+imageusage-summary','s:64:\"Encontrar todas las páginas que usen el título de imagen dado.\";'),
+('es','messages:apihelp-query+info-example-protection','s:84:\"Obtén información general y protección acerca de la página Main Page.\";'),
+('es','messages:apihelp-query+info-example-simple','s:63:\"Obtener información acerca de la página Main Page.\";'),
+('es','messages:apihelp-query+info-param-linkcontext','s:134:\"The context title to use when determining extra CSS classes (e.g. link colors) when $1prop contains linkclasses.\";'),
+('es','messages:apihelp-query+info-param-prop','s:43:\"Qué propiedades adicionales se obtendrán:\";'),
+('es','messages:apihelp-query+info-param-testactions','s:82:\"Comprobar su el usuario actual puede realizar determinadas acciones en la página.\";'),
+('es','messages:apihelp-query+info-param-testactionsdetail','s:213:\"Nivel de detalle para $1testactions. Usa los parámetros errorformat y errorlang del [[Special:ApiHelp/main|módulo principal]] para controlar el formato de los mensajes devueltos.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-associatedpage','s:107:\"The prefixed title of the [[:mw:Special:MyLanguage/Help:Associated_pages|associated subject or talk page]].\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-displaytitle','s:74:\"Proporciona la manera en que se muestra realmente el título de la página\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-linkclasses','s:149:\"Gives the additional CSS classes (e.g. link colors) used for links to this page if they were to appear on the page named by $1linkcontext.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-notificationtimestamp','s:68:\"La hora de notificación de la lista de seguimiento de cada página.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-preload','s:50:\"Muestra el texto devuelto por EditFormPreloadText.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-protection','s:47:\"Listar el nivel de protección de cada página.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-readable','s:85:\"Si el usuario puede leer esta página. Usa intestactions=read en su lugar.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-subjectid','s:71:\"La ID de página de la página principal de cada página de discusión.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-talkid','s:100:\"El identificador de la página de discusión correspondiente a cada página que no es de discusión.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-url','s:81:\"Muestra una URL completa, una URL de edición y la URL canónica de cada página.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-varianttitles','s:69:\"Gives the display title in all variants of the site content language.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-visitingwatchers','s:108:\"El número de observadores de cada página que ha visitado ediciones recientes a esa página, si se permite.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-watched','s:49:\"Muestra el estado de seguimiento de cada página.\";'),
+('es','messages:apihelp-query+info-paramvalue-prop-watchers','s:42:\"El número de observadores, si se permite.\";'),
+('es','messages:apihelp-query+info-paramvalue-testactionsdetail-boolean','s:45:\"Devolver un valor booleano para cada acción.\";'),
+('es','messages:apihelp-query+info-paramvalue-testactionsdetail-full','s:92:\"Return messages describing why the action is disallowed, or an empty array if it is allowed.\";'),
+('es','messages:apihelp-query+info-paramvalue-testactionsdetail-quick','s:51:\"Like full but skipping expensive checks.\";'),
+('es','messages:apihelp-query+info-summary','s:43:\"Obtener información básica de la página.\";'),
+('es','messages:apihelp-query+iwbacklinks-example-generator','s:73:\"Obtener información sobre las páginas que enlacen a [[wikibooks:Test]].\";'),
+('es','messages:apihelp-query+iwbacklinks-example-simple','s:51:\"Obtener las páginas enlazadas a [[wikibooks:Test]]\";'),
+('es','messages:apihelp-query+iwbacklinks-extended-description','s:225:\"Puede utilizarse para encontrar todos los enlaces con un prefijo, o todos los enlaces a un título (con un determinado prefijo). Si no se introduce ninguno de los parámetros, se entiende como «todos los enlaces interwiki».\";'),
+('es','messages:apihelp-query+iwbacklinks-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+iwbacklinks-param-limit','s:33:\"Cuántas páginas se devolverán.\";'),
+('es','messages:apihelp-query+iwbacklinks-param-prefix','s:26:\"Prefijo para el interwiki.\";'),
+('es','messages:apihelp-query+iwbacklinks-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+iwbacklinks-param-title','s:83:\"Enlace interlingüístico que buscar. Se debe usar junto con $1blprefix.\";'),
+('es','messages:apihelp-query+iwbacklinks-paramvalue-prop-iwprefix','s:32:\"Añade el prefijo del interwiki.\";'),
+('es','messages:apihelp-query+iwbacklinks-paramvalue-prop-iwtitle','s:32:\"Añade el título del interwiki.\";'),
+('es','messages:apihelp-query+iwbacklinks-summary','s:66:\"Encontrar todas las páginas que enlazan al enlace interwiki dado.\";'),
+('es','messages:apihelp-query+iwlinks-example-simple','s:65:\"Obtener los enlaces interwiki de la página Main Page.\";'),
+('es','messages:apihelp-query+iwlinks-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+iwlinks-param-limit','s:45:\"Cuántos enlaces interwiki se desea devolver.\";'),
+('es','messages:apihelp-query+iwlinks-param-prefix','s:56:\"Devolver únicamente enlaces interwiki con este prefijo.\";'),
+('es','messages:apihelp-query+iwlinks-param-prop','s:67:\"Qué propiedades adicionales obtener para cada enlace interlingüe:\";'),
+('es','messages:apihelp-query+iwlinks-param-title','s:74:\"El enlace Interwiki para buscar. Debe utilizarse con $1prefix .\";'),
+('es','messages:apihelp-query+iwlinks-param-url','s:63:\"Si desea obtener la URL completa (no se puede usar con $1prop).\";'),
+('es','messages:apihelp-query+iwlinks-paramvalue-prop-url','s:23:\"Añade el URL completo.\";'),
+('es','messages:apihelp-query+iwlinks-summary','s:59:\"Devuelve todos los enlaces interwiki de las páginas dadas.\";'),
+('es','messages:apihelp-query+langbacklinks-example-generator','s:69:\"Obtener información acerca de las páginas enlazadas a [[:fr:Test]].\";'),
+('es','messages:apihelp-query+langbacklinks-example-simple','s:45:\"Obtener las páginas enlazadas a [[:fr:Test]]\";'),
+('es','messages:apihelp-query+langbacklinks-extended-description','s:311:\"Puede utilizarse para encontrar todos los enlaces con un código de idioma, o todos los enlaces a un título (con un idioma dado). El uso de ninguno de los parámetros es efectivamente \"todos los enlaces de idioma\".\n\nTenga en cuenta que esto no puede considerar los enlaces de idiomas agregados por extensiones.\";'),
+('es','messages:apihelp-query+langbacklinks-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+langbacklinks-param-lang','s:28:\"Idioma del enlace de idioma.\";'),
+('es','messages:apihelp-query+langbacklinks-param-limit','s:42:\"Cuántas páginas en total se devolverán.\";'),
+('es','messages:apihelp-query+langbacklinks-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+langbacklinks-param-title','s:57:\"Enlace de idioma para buscar. Debe utilizarse con $1lang.\";'),
+('es','messages:apihelp-query+langbacklinks-paramvalue-prop-lllang','s:49:\"Agrega el código de idioma del enlace de idioma.\";'),
+('es','messages:apihelp-query+langbacklinks-paramvalue-prop-lltitle','s:39:\"Añade el título del enlace de idioma.\";'),
+('es','messages:apihelp-query+langbacklinks-summary','s:71:\"Encuentra todas las páginas que conectan con el enlace de idioma dado.\";'),
+('es','messages:apihelp-query+langlinks-example-simple','s:75:\"Obtener los enlaces interlingüísticos de la página Main Page.\";'),
+('es','messages:apihelp-query+langlinks-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+langlinks-param-inlanguagecode','s:58:\"Código de idioma para los nombres de idiomas localizados.\";'),
+('es','messages:apihelp-query+langlinks-param-lang','s:59:\"Devolver solo enlaces de idioma con este código de idioma.\";'),
+('es','messages:apihelp-query+langlinks-param-limit','s:52:\"Número de enlaces interlingüísticos que devolver.\";'),
+('es','messages:apihelp-query+langlinks-param-prop','s:67:\"Qué propiedades adicionales obtener para cada enlace interlingüe:\";'),
+('es','messages:apihelp-query+langlinks-param-title','s:60:\"Enlace que buscar. Se debe usar junto con $1lang.\";'),
+('es','messages:apihelp-query+langlinks-param-url','s:70:\"Obtener la URL completa o no (no se puede usar con $1prop).\";'),
+('es','messages:apihelp-query+langlinks-paramvalue-prop-autonym','s:35:\"Añade el nombre nativo del idioma.\";'),
+('es','messages:apihelp-query+langlinks-paramvalue-prop-langname','s:122:\"Añade el nombre del idioma localizado (o la mejor estimación). Usa $1inlanguagecode para controlar el idioma.\";'),
+('es','messages:apihelp-query+langlinks-paramvalue-prop-url','s:23:\"Añade el URL completo.\";'),
+('es','messages:apihelp-query+langlinks-summary','s:69:\"Devuelve todos los enlaces interlingüísticos de las páginas dadas.\";'),
+('es','messages:apihelp-query+languageinfo-example-autonym-name-de','s:79:\"Obtener los endónimos y los nombres alemanes de todos los idiomas compatibles.\";'),
+('es','messages:apihelp-query+languageinfo-example-bcp47-dir','s:89:\"Obtener el código lingüístico BCP-47 y la dirección de todos los idiomas compatibles.\";'),
+('es','messages:apihelp-query+languageinfo-example-fallbacks-variants-oc','s:60:\"Obtener los idiomas de reserva y las variantes del occitano.\";'),
+('es','messages:apihelp-query+languageinfo-example-simple','s:67:\"Obtener los códigos lingüísticos de todos los idiomas admitidos.\";'),
+('es','messages:apihelp-query+languageinfo-extended-description','s:125:\"[[mw:API:Query#Continuing queries|Continuation]] may be applied if retrieving the information takes too long for one request.\";'),
+('es','messages:apihelp-query+languageinfo-param-code','s:93:\"Language codes of the languages that should be returned, or * for all languages.\";'),
+('es','messages:apihelp-query+languageinfo-param-prop','s:43:\"Which information to get for each language.\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-autonym','s:64:\"The autonym of the language, that is, the name in that language.\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-bcp47','s:25:\"The BCP-47 language code.\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-code','s:100:\"El código lingüístico (es específico de MediaWiki, pero existen coincidencias con otras normas.)\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-dir','s:86:\"La dirección de escritura del idioma (bien ltr o bien rtl).\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-fallbacks','s:181:\"The language codes of the fallback languages configured for this language. The implicit final fallback to \'en\' is not included (but some languages may fall back to \'en\' explicitly).\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-name','s:133:\"The name of the language in the language specified by the uselang parameter, with language fallbacks applied if necessary.\";'),
+('es','messages:apihelp-query+languageinfo-paramvalue-prop-variants','s:62:\"The language codes of the variants supported by this language.\";'),
+('es','messages:apihelp-query+languageinfo-summary','s:52:\"Devolver información sobre los idiomas disponibles.\";'),
+('es','messages:apihelp-query+links-example-generator','s:93:\"Obtenga información sobre las páginas de enlace en la página Página principal.\";'),
+('es','messages:apihelp-query+links-example-namespaces','s:110:\"Obtener enlaces de la página Main Page de los espacios de nombres {{ns:user}} and {{ns:template}}.\";'),
+('es','messages:apihelp-query+links-example-simple','s:54:\"Obtener los enlaces de la página Main Page\";'),
+('es','messages:apihelp-query+links-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+links-param-limit','s:32:\"Cuántos enlaces se devolverán.\";'),
+('es','messages:apihelp-query+links-param-namespace','s:54:\"Mostrar solo los enlaces en estos espacios de nombres.\";'),
+('es','messages:apihelp-query+links-param-titles','s:124:\"Devolver solo los enlaces a estos títulos. Útil para comprobar si una determinada página enlaza a un determinado título.\";'),
+('es','messages:apihelp-query+links-summary','s:49:\"Devuelve todos los enlaces de las páginas dadas.\";'),
+('es','messages:apihelp-query+linkshere-example-generator','s:81:\"Obtener información acerca de las páginas enlazadas a la [[Main Page|Portada]].\";'),
+('es','messages:apihelp-query+linkshere-example-simple','s:61:\"Obtener una lista de páginas que enlacen a la [[Main Page]].\";'),
+('es','messages:apihelp-query+linkshere-param-limit','s:24:\"Cuántos se devolverán.\";'),
+('es','messages:apihelp-query+linkshere-param-namespace','s:51:\"Incluir solo páginas de estos espacios de nombres.\";'),
+('es','messages:apihelp-query+linkshere-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+linkshere-param-show','s:164:\"Muestra solo los elementos que cumplen estos criterios:\n;redirect: Muestra solamente redirecciones.\n;!redirect: Muestra solamente páginas que no son redirecciones.\";'),
+('es','messages:apihelp-query+linkshere-paramvalue-prop-pageid','s:30:\"Identificador de cada página.\";'),
+('es','messages:apihelp-query+linkshere-paramvalue-prop-redirect','s:42:\"Indicar si la página es una redirección.\";'),
+('es','messages:apihelp-query+linkshere-paramvalue-prop-title','s:24:\"Título de cada página.\";'),
+('es','messages:apihelp-query+linkshere-summary','s:59:\"Buscar todas las páginas que enlazan a las páginas dadas.\";'),
+('es','messages:apihelp-query+logevents-example-simple','s:43:\"Mostrar los eventos recientes del registro.\";'),
+('es','messages:apihelp-query+logevents-param-action','s:257:\"Filtrar las acciones del registro solo a esta acción. Reemplaza $1type. En la lista de valores posibles, los valores con el asterisco como carácter comodín tales como action/* pueden tener distintas cadenas después de la barra (/).\";'),
+('es','messages:apihelp-query+logevents-param-end','s:50:\"Cronomarcador por el que terminar la enumeración.\";'),
+('es','messages:apihelp-query+logevents-param-limit','s:50:\"Número total de entradas de eventos que devolver.\";'),
+('es','messages:apihelp-query+logevents-param-namespace','s:58:\"Filtrar entradas a aquellas en el espacio de nombres dado.\";'),
+('es','messages:apihelp-query+logevents-param-prefix','s:47:\"Filtrar entradas que empiezan por este prefijo.\";'),
+('es','messages:apihelp-query+logevents-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+logevents-param-start','s:51:\"Marca de tiempo por la que empezar la enumeración.\";'),
+('es','messages:apihelp-query+logevents-param-tag','s:55:\"Solo mostrar las entradas de eventos con esta etiqueta.\";'),
+('es','messages:apihelp-query+logevents-param-title','s:57:\"Filtrar entradas a aquellas relacionadas con una página.\";'),
+('es','messages:apihelp-query+logevents-param-type','s:51:\"Filtrar las entradas del registro solo a este tipo.\";'),
+('es','messages:apihelp-query+logevents-param-user','s:59:\"Filtrar entradas a aquellas realizadas por el usuario dado.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-comment','s:147:\"Agrega el comentario del evento de registro. Si el comentario se ha eliminado de revisión, se devolverá una commenthidden propiedad.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-details','s:154:\"Muestra detalles adicionales sobre el evento de registro. Si se ha eliminado el evento de registro, se devolverá una actionhidden propiedad.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-ids','s:47:\"Agrega el identificador del evento de registro.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-parsedcomment','s:157:\"Agrega el comentario analizado del evento de registro. Si el comentario se ha eliminado de revisión, se devolverá una commenthidden propiedad.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-tags','s:50:\"Muestra las etiquetas para el evento del registro.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-timestamp','s:54:\"Añade la marca de tiempo para el evento del registro.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-title','s:60:\"Añade el título de la página para el evento del registro.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-type','s:38:\"Añade el tipo del evento de registro.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-user','s:151:\"Agrega el usuario responsable del evento de registro. Si se ha eliminado la revisión del usuario, se devolverá una userhidden propiedad.\";'),
+('es','messages:apihelp-query+logevents-paramvalue-prop-userid','s:176:\"Agrega el identificador de usuario que fue responsable del evento de registro. Si se ha eliminado la revisión del usuario, se devolverá una userhidden propiedad.\";'),
+('es','messages:apihelp-query+logevents-summary','s:33:\"Obtener eventos de los registros.\";'),
+('es','messages:apihelp-query+mystashedfiles-example-simple','s:149:\"Obtener la clave de archivo, el tamaño del archivo y el tamaño en píxeles de los archivos en el almacén provisional de cargas del usuario actual.\";'),
+('es','messages:apihelp-query+mystashedfiles-param-limit','s:26:\"Cuántos archivos obtener.\";'),
+('es','messages:apihelp-query+mystashedfiles-param-prop','s:39:\"Propiedades a buscar para los archivos.\";'),
+('es','messages:apihelp-query+mystashedfiles-paramvalue-prop-size','s:61:\"Buscar el tamaño del archivo y las dimensiones de la imagen.\";'),
+('es','messages:apihelp-query+mystashedfiles-paramvalue-prop-type','s:51:\"Obtener el tipo MIME y tipo multimedia del archivo.\";'),
+('es','messages:apihelp-query+mystashedfiles-summary','s:90:\"Obtener una lista de los archivos en el almacén provisional de cargas del usuario actual.\";'),
+('es','messages:apihelp-query+pagepropnames-example-simple','s:47:\"Obtener los 10 primeros nombres de propiedades.\";'),
+('es','messages:apihelp-query+pagepropnames-param-limit','s:40:\"Número máximo de nombres que devolver.\";'),
+('es','messages:apihelp-query+pagepropnames-summary','s:74:\"Mostrar todos los nombres de propiedades de página utilizados en la wiki.\";'),
+('es','messages:apihelp-query+pageprops-example-simple','s:84:\"Obtener las propiedades de las páginas Main Page y MediaWiki.\";'),
+('es','messages:apihelp-query+pageprops-param-prop','s:265:\"Sólo listar estas propiedades de página ([[Special:ApiHelp/query+pagepropnames|action=query&list=pagepropnames]] devuelve los nombres de las propiedades de página en uso). Útil para comprobar si las páginas usan una determinada propiedad de página.\";'),
+('es','messages:apihelp-query+pageprops-summary','s:82:\"Obtener diferentes propiedades de página definidas en el contenido de la página.\";'),
+('es','messages:apihelp-query+pageswithprop-example-generator','s:110:\"Obtener información adicional acerca de las 10 primeras páginas que utilicen __NOTOC__.\";'),
+('es','messages:apihelp-query+pageswithprop-example-simple','s:96:\"Listar las 10 primeras páginas que utilicen {{DISPLAYTITLE:}}.\";'),
+('es','messages:apihelp-query+pageswithprop-param-dir','s:38:\"Dirección en la que se desea ordenar.\";'),
+('es','messages:apihelp-query+pageswithprop-param-limit','s:50:\"El máximo número de páginas que se devolverán.\";'),
+('es','messages:apihelp-query+pageswithprop-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+pageswithprop-param-propname','s:195:\"Propiedad de página para la cual enumerar páginas ([[Special:ApiHelp/query+pagepropnames|action=query&list=pagepropnames]] devuelve los nombres de las propiedades de página en uso).\";'),
+('es','messages:apihelp-query+pageswithprop-paramvalue-prop-ids','s:35:\"Añade el identificador de página.\";'),
+('es','messages:apihelp-query+pageswithprop-paramvalue-prop-title','s:74:\"Agrega el título y el identificador del espacio de nombres de la página.\";'),
+('es','messages:apihelp-query+pageswithprop-paramvalue-prop-value','s:43:\"Añade el valor de la propiedad de página.\";'),
+('es','messages:apihelp-query+pageswithprop-summary','s:61:\"Mostrar todas las páginas que usen una propiedad de página.\";'),
+('es','messages:apihelp-query+prefixsearch-example-simple','s:64:\"Buscar títulos de páginas que empiecen con meaning.\";'),
+('es','messages:apihelp-query+prefixsearch-extended-description','s:557:\"A pesar de la similitud en los nombres, este módulo no pretende ser equivalente a [[Special:PrefixIndex]]; para eso, vea [[Special:ApiHelp/query+allpages|action=query&list=allpages]] con el parámetro apprefix. El propósito de este módulo es similar a [[Special:ApiHelp/opensearch|action=opensearch]]: para tomar la entrada del usuario y proporcionar los mejores títulos coincidentes. Dependiendo del motor de búsqueda backend, esto puede incluir la corrección de errores, redirigir la evasión, u otras heurísticas.\";'),
+('es','messages:apihelp-query+prefixsearch-param-limit','s:43:\"Número máximo de resultados que devolver.\";'),
+('es','messages:apihelp-query+prefixsearch-param-namespace','s:118:\"Espacios de nombres que buscar. Se ignora si $1search comienza por un prefijo de espacio de nombre válido.\";'),
+('es','messages:apihelp-query+prefixsearch-param-offset','s:33:\"Número de resultados que omitir.\";'),
+('es','messages:apihelp-query+prefixsearch-param-profile','s:33:\"Perfil de búsqueda que utilizar.\";'),
+('es','messages:apihelp-query+prefixsearch-param-search','s:14:\"Buscar cadena.\";'),
+('es','messages:apihelp-query+prefixsearch-summary','s:56:\"Realice una búsqueda de prefijo de títulos de página.\";'),
+('es','messages:apihelp-query+protectedtitles-example-generator','s:75:\"Encuentra enlaces a títulos protegidos en el espacio de nombres principal.\";'),
+('es','messages:apihelp-query+protectedtitles-example-simple','s:27:\"Listar títulos protegidos.\";'),
+('es','messages:apihelp-query+protectedtitles-param-end','s:64:\"Terminar la enumeración en esta marca de tiempo de protección.\";'),
+('es','messages:apihelp-query+protectedtitles-param-level','s:54:\"Listar solo títulos con estos niveles de protección.\";'),
+('es','messages:apihelp-query+protectedtitles-param-limit','s:33:\"Cuántas páginas se devolverán.\";'),
+('es','messages:apihelp-query+protectedtitles-param-namespace','s:54:\"Listar solo los títulos en estos espacios de nombres.\";'),
+('es','messages:apihelp-query+protectedtitles-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+protectedtitles-param-start','s:63:\"Empezar la enumeración en esta marca de tiempo de protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-comment','s:39:\"Añade el comentario de la protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-expiry','s:62:\"Añade la fecha y hora de cuando se levantará la protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-level','s:31:\"Agrega el nivel de protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-parsedcomment','s:51:\"Añade el comentario analizado para la protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-timestamp','s:63:\"Añade la marca de tiempo de cuando se añadió la protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-user','s:45:\"Agrega el usuario que agregó la protección.\";'),
+('es','messages:apihelp-query+protectedtitles-paramvalue-prop-userid','s:62:\"Agrega el identificador de usuario que agregó la protección.\";'),
+('es','messages:apihelp-query+protectedtitles-summary','s:55:\"Mostrar todos los títulos protegidos contra creación.\";'),
+('es','messages:apihelp-query+querypage-example-ancientpages','s:48:\"Devolver resultados de [[Special:Ancientpages]].\";'),
+('es','messages:apihelp-query+querypage-param-limit','s:41:\"Número de resultados que se devolverán.\";'),
+('es','messages:apihelp-query+querypage-param-page','s:80:\"El nombre de la página especial. Recuerda, distingue mayúsculas y minúsculas.\";'),
+('es','messages:apihelp-query+querypage-summary','s:77:\"Obtenga una lista proporcionada por una página especial basada en QueryPage.\";'),
+('es','messages:apihelp-query+random-example-generator','s:85:\"Devuelve la información de dos páginas aleatorias del espacio de nombres principal.\";'),
+('es','messages:apihelp-query+random-example-simple','s:66:\"Devuelve dos páginas aleatorias del espacio de nombres principal.\";'),
+('es','messages:apihelp-query+random-extended-description','s:346:\"Las páginas aparecen enumeradas en una secuencia fija, solo que el punto de partida es aleatorio. Esto quiere decir que, si, por ejemplo, Portada es la primera página aleatoria de la lista, Lista de monos ficticios siempre será la segunda, Lista de personas en sellos de Vanuatu la tercera, etc.\";'),
+('es','messages:apihelp-query+random-param-filterredir','s:32:\"Cómo filtrar las redirecciones.\";'),
+('es','messages:apihelp-query+random-param-limit','s:60:\"Limita el número de páginas aleatorias que se devolverán.\";'),
+('es','messages:apihelp-query+random-param-namespace','s:56:\"Devolver solo las páginas de estos espacios de nombres.\";'),
+('es','messages:apihelp-query+random-param-redirect','s:51:\"Usa $1filterredir=redirects en su lugar.\";'),
+('es','messages:apihelp-query+random-summary','s:43:\"Obtener un conjunto de páginas aleatorias.\";'),
+('es','messages:apihelp-query+recentchanges-example-generator','s:68:\"Obtener información de página de cambios recientes no patrullados.\";'),
+('es','messages:apihelp-query+recentchanges-example-simple','s:27:\"Lista de cambios recientes.\";'),
+('es','messages:apihelp-query+recentchanges-param-end','s:48:\"El cronomarcador para finalizar la enumeración.\";'),
+('es','messages:apihelp-query+recentchanges-param-excludeuser','s:34:\"No listar cambios de este usuario.\";'),
+('es','messages:apihelp-query+recentchanges-param-generaterevisions','s:262:\"Cuando se utilice como generador, genera identificadores de revisión en lugar de títulos. Las entradas en la lista de cambios recientes que no tengan identificador de revisión asociado (por ejemplo, la mayoría de las entradas de registro) no generarán nada.\";'),
+('es','messages:apihelp-query+recentchanges-param-limit','s:41:\"Cuántos cambios en total se devolverán.\";'),
+('es','messages:apihelp-query+recentchanges-param-namespace','s:58:\"Filtrar cambios solamente a los espacios de nombres dados.\";'),
+('es','messages:apihelp-query+recentchanges-param-prop','s:43:\"Incluir piezas adicionales de información:\";'),
+('es','messages:apihelp-query+recentchanges-param-show','s:166:\"Muestra solo los elementos que cumplan estos criterios. Por ejemplo, para ver solo ediciones menores realizadas por usuarios conectados, introduce $1show=minor|!anon.\";'),
+('es','messages:apihelp-query+recentchanges-param-slot','s:44:\"Only list changes that touch the named slot.\";'),
+('es','messages:apihelp-query+recentchanges-param-start','s:49:\"El sello de tiempo para comenzar la enumeración.\";'),
+('es','messages:apihelp-query+recentchanges-param-tag','s:42:\"Listar solo los cambios con esta etiqueta.\";'),
+('es','messages:apihelp-query+recentchanges-param-title','s:70:\"Filtrar entradas mostrando solo aquellas relacionadas con una página.\";'),
+('es','messages:apihelp-query+recentchanges-param-toponly','s:66:\"Enumerar solo las modificaciones que sean las últimas revisiones.\";'),
+('es','messages:apihelp-query+recentchanges-param-type','s:40:\"Cuántos tipos de cambios se mostrarán.\";'),
+('es','messages:apihelp-query+recentchanges-param-user','s:40:\"Listar solo los cambios de este usuario.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-autopatrolled','s:53:\"Tags patrollable edits as being autopatrolled or not.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-comment','s:36:\"Añade el comentario de la edición.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-flags','s:31:\"Añade marcas para la edición.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-ids','s:99:\"Añade los códigos ID de la página, de los cambios recientes y de las revisiones antigua y nueva.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-loginfo','s:111:\"Añade información de registro (identificador de registro, tipo de registro, etc.) a las entradas de registro.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-parsedcomment','s:48:\"Añade el comentario analizado para la edición.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-patrolled','s:66:\"Etiqueta ediciones verificables como verificadas o no verificadas.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-redirect','s:55:\"Etiqueta la edición si la página es una redirección.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-sha1','s:89:\"Añade la suma de comprobación de contenido para las entradas asociadas a una revisión.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-sizes','s:70:\"Añade la longitud antigua y la longitud nueva de la página en bytes.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-tags','s:36:\"Muestra las etiquetas de la entrada.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-timestamp','s:39:\"Añade el cronomarcador de la edición.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-title','s:44:\"Añade el título de página de la edición.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-user','s:89:\"Añade el usuario responsable de la edición y añade una etiqueta si se trata de una IP.\";'),
+('es','messages:apihelp-query+recentchanges-paramvalue-prop-userid','s:63:\"Añade el identificador del usuario responsable de la edición.\";'),
+('es','messages:apihelp-query+recentchanges-summary','s:27:\"Enumerar cambios recientes.\";'),
+('es','messages:apihelp-query+redirects-example-generator','s:78:\"Obtener información sobre todas las redirecciones a la [[Main Page|Portada]].\";'),
+('es','messages:apihelp-query+redirects-example-simple','s:65:\"Mostrar una lista de las redirecciones a la [[Main Page|Portada]]\";'),
+('es','messages:apihelp-query+redirects-param-limit','s:38:\"Cuántas redirecciones se devolverán.\";'),
+('es','messages:apihelp-query+redirects-param-namespace','s:51:\"Incluir solo páginas de estos espacios de nombres.\";'),
+('es','messages:apihelp-query+redirects-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+redirects-param-show','s:173:\"Mostrar únicamente los elementos que cumplan con estos criterios:\n;fragment: mostrar solo redirecciones con fragmento.\n;!fragment: mostrar solo redirecciones sin fragmento.\";'),
+('es','messages:apihelp-query+redirects-paramvalue-prop-fragment','s:47:\"Fragmento de cada redirección, si los hubiere.\";'),
+('es','messages:apihelp-query+redirects-paramvalue-prop-pageid','s:46:\"Identificador de página de cada redirección.\";'),
+('es','messages:apihelp-query+redirects-paramvalue-prop-title','s:29:\"Título de cada redirección.\";'),
+('es','messages:apihelp-query+redirects-summary','s:54:\"Devuelve todas las redirecciones a las páginas dadas.\";'),
+('es','messages:apihelp-query+revisions+base-param-contentformat','s:104:\"Formato de serialización utilizado para $1difftotext y esperado para la salida de contenido.\";'),
+('es','messages:apihelp-query+revisions+base-param-diffto','s:218:\"Use [[Special:ApiHelp/compare|action=compare]] instead. Revision ID to diff each revision to. Use prev, next and cur for the previous, next and current revision respectively.\";'),
+('es','messages:apihelp-query+revisions+base-param-difftotext','s:254:\"Use [[Special:ApiHelp/compare|action=compare]] instead. Text to diff each revision to. Only diffs a limited number of revisions. Overrides $1diffto. If $1section is set, only that section will be diffed against this text.\";'),
+('es','messages:apihelp-query+revisions+base-param-difftotextpst','s:177:\"Use [[Special:ApiHelp/compare|action=compare]] instead. Perform a pre-save transform on the text before diffing it. Only valid when used with $1difftotext.\";'),
+('es','messages:apihelp-query+revisions+base-param-expandtemplates','s:169:\"Usa [[Special:ApiHelp/expandtemplates|action=expandtemplates]] en su lugar.\nExpandir las plantillas en el contenido de la revisión (necesita $1prop=content).\";'),
+('es','messages:apihelp-query+revisions+base-param-generatexml','s:246:\"Usa [[Special:ApiHelp/expandtemplates|action=expandtemplates]] o [[Special:ApiHelp/parse|action=parse]] en su lugar.\nGenerar el árbol de análisis sintáctico XML para el contenido de la revisión (necesita $1prop=content).\";'),
+('es','messages:apihelp-query+revisions+base-param-limit','s:53:\"Limitar la cantidad de revisiones que se devolverán.\";'),
+('es','messages:apihelp-query+revisions+base-param-parse','s:219:\"Usa [[Special:ApiHelp/parse|action=parse]] en su lugar.\nAnalizar el contenido de la revisión (requiere $1prop=content). Por razones de rendimiento, si se usa esta opción, el valor de $1limit es forzado a 1.\";'),
+('es','messages:apihelp-query+revisions+base-param-prop','s:54:\"Las propiedades que se obtendrán para cada revisión:\";'),
+('es','messages:apihelp-query+revisions+base-param-section','s:61:\"Recuperar solamente el contenido de este número de sección.\";'),
+('es','messages:apihelp-query+revisions+base-param-slots','s:203:\"Which revision slots to return data for, when slot-related properties are included in $1props. If omitted, data from the main slot will be returned in a backwards-compatible format.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-comment','s:41:\"Comentario del usuario para la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-content','s:39:\"Contenido de cada espacio de revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-contentmodel','s:57:\"Id. del modelo de contenido en cada espacio de revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-flags','s:28:\"Marcas de revisión (menor).\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-ids','s:33:\"El identificador de la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-parsedcomment','s:51:\"Comentario analizado del usuario para la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-parsetree','s:258:\"Usa [[Special:ApiHelp/expandtemplates|action=expandtemplates]] o [[Special:ApiHelp/parse|action=parse]] en su lugar.\nEl árbol de análisis sintáctico XML del contenido de la revisión (necesita el modelo de contenido $1).\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-roles','s:51:\"List content slot roles that exist in the revision.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-sha1','s:32:\"SHA-1 (base 16) de la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-size','s:36:\"Longitud (en bytes) de la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-slotsha1','s:133:\"SHA-1 (base 16) of each revision slot. If the content has been revision deleted, a sha1hidden property will be returned.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-slotsize','s:37:\"Length (bytes) of each revision slot.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-tags','s:28:\"Etiquetas para la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-timestamp','s:32:\"La fecha y hora de la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-user','s:34:\"Usuario que realizó la revisión.\";'),
+('es','messages:apihelp-query+revisions+base-paramvalue-prop-userid','s:53:\"Identificador de usuario del creador de la revisión.\";'),
+('es','messages:apihelp-query+revisions-example-content','s:109:\"Obtener datos con el contenido de la última revisión de los títulos API y Main Page.\";'),
+('es','messages:apihelp-query+revisions-example-first5','s:58:\"Obtener las primeras 5 revisiones de Main Page.\";'),
+('es','messages:apihelp-query+revisions-example-first5-after','s:92:\"Obtener las primeras 5 revisiones de Main Page realizadas después de 2006-05-01.\";'),
+('es','messages:apihelp-query+revisions-example-first5-not-localhost','s:128:\"Obtener las primeras 5 revisiones de Main Page que no fueron realizadas por el usuario anónimo 127.0.0.1.\";'),
+('es','messages:apihelp-query+revisions-example-first5-user','s:124:\"Obtener las primeras 5 revisiones de Main Page que fueron realizadas por el usuario MediaWiki default.\";'),
+('es','messages:apihelp-query+revisions-example-last5','s:61:\"Mostrar las últimas 5 revisiones de la Main Page.\";'),
+('es','messages:apihelp-query+revisions-extended-description','s:337:\"Puede ser utilizado de varias maneras:\n# Obtener datos sobre un conjunto de páginas (última revisión), estableciendo títulos o ID de paginas.\n# Obtener revisiones para una página determinada, usando títulos o ID de páginas con inicio, fin o límite.\n# Obtener datos sobre un conjunto de revisiones estableciendo sus ID con revids.\";'),
+('es','messages:apihelp-query+revisions-param-end','s:34:\"Enumerar hasta este cronomarcador.\";'),
+('es','messages:apihelp-query+revisions-param-endid','s:143:\"Detener la enumeración en la marca de tiempo de esta revisión. La revisión debe existir, pero no es necesario que pertenezca a esta página.\";'),
+('es','messages:apihelp-query+revisions-param-excludeuser','s:49:\"Excluir las revisiones realizadas por el usuario.\";'),
+('es','messages:apihelp-query+revisions-param-start','s:60:\"Marca de tiempo a partir de la cual empezar la enumeración.\";'),
+('es','messages:apihelp-query+revisions-param-startid','s:146:\"Iniciar la enumeración desde la marca de tiempo de esta revisión. La revisión debe existir, pero no es necesario que pertenezca a esta página.\";'),
+('es','messages:apihelp-query+revisions-param-tag','s:51:\"Mostrar solo revisiones marcadas con esta etiqueta.\";'),
+('es','messages:apihelp-query+revisions-param-user','s:54:\"Incluir solo las revisiones realizadas por el usuario.\";'),
+('es','messages:apihelp-query+revisions-paraminfo-singlepageonly','s:54:\"Solo se puede usar con una sola página (modo n.º 2).\";'),
+('es','messages:apihelp-query+revisions-summary','s:37:\"Obtener información de la revisión.\";'),
+('es','messages:apihelp-query+search-example-generator','s:94:\"Obtener información acerca de las páginas devueltas por una búsqueda de meaning.\";'),
+('es','messages:apihelp-query+search-example-simple','s:26:\"Buscar meaning.\";'),
+('es','messages:apihelp-query+search-example-text','s:40:\"Buscar meaning en los textos.\";'),
+('es','messages:apihelp-query+search-param-backend','s:70:\"Qué servidor de búsqueda utilizar, si no es el servidor por defecto.\";'),
+('es','messages:apihelp-query+search-param-enablerewrites','s:207:\"Habilitar la reescritura de consultas internas. Algunos servidores de búsqueda pueden reescribir la consulta a una que considere que da mejores resultados, por ejemplo, corrigiendo las faltas ortográficas.\";'),
+('es','messages:apihelp-query+search-param-info','s:24:\"Qué metadatos devolver.\";'),
+('es','messages:apihelp-query+search-param-interwiki','s:60:\"Incluir resultados interwiki en la búsqueda, si es posible.\";'),
+('es','messages:apihelp-query+search-param-limit','s:42:\"Cuántas páginas en total se devolverán.\";'),
+('es','messages:apihelp-query+search-param-namespace','s:41:\"Buscar solo en estos espacios de nombres.\";'),
+('es','messages:apihelp-query+search-param-prop','s:32:\"Qué propiedades se devolverán:\";'),
+('es','messages:apihelp-query+search-param-qiprofile','s:61:\"Query independent profile to use (affects ranking algorithm).\";'),
+('es','messages:apihelp-query+search-param-search','s:175:\"Search for page titles or content matching this value. You can use the search string to invoke special search features, depending on what the wiki\'s search backend implements.\";'),
+('es','messages:apihelp-query+search-param-sort','s:66:\"Establecer el orden de clasificación de los resultados devueltos.\";'),
+('es','messages:apihelp-query+search-param-what','s:31:\"Tipo de búsqueda que realizar.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-categorysnippet','s:63:\"Añade un fragmento analizado de la categoría correspondiente.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-extensiondata','s:55:\"Añade datos adicionales generados por las extensiones.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-hasrelated','s:8:\"Ignorado\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-isfilematch','s:83:\"Añade un booleano que indica si la búsqueda corresponde al contenido del archivo.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-redirectsnippet','s:61:\"Añade un fragmento analizado del título de la redirección.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-redirecttitle','s:49:\"Añade el título de la redirección coincidente.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-score','s:9:\"Ignorado.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-sectionsnippet','s:73:\"Añade un fragmento analizado del título de la sección correspondiente.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-sectiontitle','s:49:\"Añade el título de la sección correspondiente.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-size','s:41:\"Añade el tamaño de la página en bytes.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-snippet','s:44:\"Añade un fragmento analizado de la página.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-timestamp','s:63:\"Añade la marca de tiempo de la última edición de la página.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-titlesnippet','s:56:\"Añade un fragmento analizado del título de la página.\";'),
+('es','messages:apihelp-query+search-paramvalue-prop-wordcount','s:44:\"Añade el número de palabras de la página.\";'),
+('es','messages:apihelp-query+search-summary','s:41:\"Realizar una búsqueda de texto completa.\";'),
+('es','messages:apihelp-query+siteinfo-example-interwiki','s:48:\"Obtener una lista de prefijos interwiki locales.\";'),
+('es','messages:apihelp-query+siteinfo-example-replag','s:34:\"Check the current replication lag.\";'),
+('es','messages:apihelp-query+siteinfo-example-simple','s:31:\"Obtener información del sitio.\";'),
+('es','messages:apihelp-query+siteinfo-param-filteriw','s:77:\"Devuelve solo entradas locales o solo entradas no locales del mapa interwiki.\";'),
+('es','messages:apihelp-query+siteinfo-param-inlanguagecode','s:106:\"Código de idioma para los nombres localizados de los idiomas (en el mejor intento posible) y apariencias.\";'),
+('es','messages:apihelp-query+siteinfo-param-numberingroup','s:57:\"Muestra el número de usuarios en los grupos de usuarios.\";'),
+('es','messages:apihelp-query+siteinfo-param-prop','s:31:\"Qué información se obtendrá:\";'),
+('es','messages:apihelp-query+siteinfo-param-showalldb','s:61:\"List all database servers, not just the one lagging the most.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-dbrepllag','s:81:\"Devuelve el servidor de base de datos con el retraso de replicación más grande.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-defaultoptions','s:69:\"Devuelve los valores predeterminados de las preferencias del usuario.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-extensions','s:47:\"Devuelve las extensiones instaladas en la wiki.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-extensiontags','s:62:\"Devuelve una lista de las etiquetas extensoras del analizador.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-fileextensions','s:69:\"Devuelve una lista de extensiones de archivo permitidas para subirse.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-functionhooks','s:40:\"Returns a list of parser function hooks.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-general','s:32:\"Información global del sistema.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-interwikimap','s:125:\"Devuelve el mapa interwiki (opcionalmente filtrado, opcionalmente localizado mediante el uso de $1inlanguagecode).\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-languages','s:129:\"Devuelve una lista de los idiomas que admite MediaWiki (opcionalmente localizada mediante el uso de $1inlanguagecode).\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-languagevariants','s:153:\"Returns a list of language codes for which [[mw:Special:MyLanguage/LanguageConverter|LanguageConverter]] is enabled, and the variants supported for each.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-libraries','s:47:\"Devuelve las bibliotecas instaladas en la wiki.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-magicwords','s:39:\"Lista de palabras mágicas y sus alias.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-namespacealiases','s:49:\"Lista de alias registrados de espacios de nombres\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-namespaces','s:66:\"Lista de espacios de nombres registrados y sus nombres canónicos.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-protocols','s:77:\"Devuelve una lista de los protocolos que se permiten en los enlaces externos.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-restrictions','s:76:\"Devuelve información sobre tipos de restricciones (protección) disponible.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-rightsinfo','s:77:\"Devuelve información de permisos (licencia) de la wiki, si está disponible.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-showhooks','s:115:\"Returns a list of all subscribed hooks (contents of [[mw:Special:MyLanguage/Manual:$wgHooks|$wgHooks]]).\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-skins','s:174:\"Devuelve una lista de todas las apariencias habilitadas (opcionalmente localizada mediante el uso de $1inlanguagecode, de lo contrario en el idioma del contenido).\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-specialpagealiases','s:38:\"Lista de alias de páginas especiales.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-statistics','s:37:\"Devuelve las estadísticas del sitio.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-uploaddialog','s:40:\"Returns the upload dialog configuration.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-usergroups','s:57:\"Devuelve los grupos de usuarios y los permisos asociados.\";'),
+('es','messages:apihelp-query+siteinfo-paramvalue-prop-variables','s:48:\"Devuelve una lista de identificadores variables.\";'),
+('es','messages:apihelp-query+siteinfo-summary','s:55:\"Devolver información general acerca de la página web.\";'),
+('es','messages:apihelp-query+stashimageinfo-example-params','s:51:\"Devuelve las miniaturas de dos archivos escondidos.\";'),
+('es','messages:apihelp-query+stashimageinfo-example-simple','s:48:\"Devuelve información para un archivo escondido.\";'),
+('es','messages:apihelp-query+stashimageinfo-param-filekey','s:82:\"Clave que identifica una carga anterior que se guardó en el almacén provisional.\";'),
+('es','messages:apihelp-query+stashimageinfo-param-sessionkey','s:45:\"Alias de $1filekey, para retrocompatibilidad.\";'),
+('es','messages:apihelp-query+stashimageinfo-summary','s:59:\"Devuelve información del archivo para archivos escondidos.\";'),
+('es','messages:apihelp-query+tags-example-simple','s:34:\"Enumera las etiquetas disponibles.\";'),
+('es','messages:apihelp-query+tags-param-limit','s:46:\"El número máximo de etiquetas para enumerar.\";'),
+('es','messages:apihelp-query+tags-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-active','s:39:\"Si la etiqueta aún se sigue aplicando.\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-defined','s:38:\"Indicar si la etiqueta está definida.\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-description','s:38:\"Añade la descripción de la etiqueta.\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-displayname','s:46:\"Agrega el mensaje de sistema para la etiqueta.\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-hitcount','s:80:\"Añade el número de revisiones y entradas de registro que tienen esta etiqueta.\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-name','s:32:\"Añade el nombre de la etiqueta.\";'),
+('es','messages:apihelp-query+tags-paramvalue-prop-source','s:206:\"Obtiene las fuentes de la etiqueta, que pueden incluir extension para etiquetas definidas por extensiones y manual para etiquetas que pueden aplicarse manualmente por los usuarios.\";'),
+('es','messages:apihelp-query+tags-summary','s:40:\"Enumerar las etiquetas de modificación.\";'),
+('es','messages:apihelp-query+templates-example-generator','s:93:\"Obtener información sobre las páginas de las plantillas utilizadas en Main Page.\";'),
+('es','messages:apihelp-query+templates-example-namespaces','s:137:\"Obtener las páginas de los espacios de nombres {{ns:user}} y {{ns:template}} que están transcluidas en la página Main Page.\";'),
+('es','messages:apihelp-query+templates-example-simple','s:68:\"Obtener las plantillas que se usan en la página Portada.\";'),
+('es','messages:apihelp-query+templates-param-dir','s:38:\"La dirección en que ordenar la lista.\";'),
+('es','messages:apihelp-query+templates-param-limit','s:35:\"Cuántas plantillas se devolverán.\";'),
+('es','messages:apihelp-query+templates-param-namespace','s:58:\"Mostrar plantillas solamente en estos espacios de nombres.\";'),
+('es','messages:apihelp-query+templates-param-templates','s:113:\"Mostrar solo estas plantillas. Útil para comprobar si una determinada página utiliza una determinada plantilla.\";'),
+('es','messages:apihelp-query+templates-summary','s:63:\"Devuelve todas las páginas transcluidas en las páginas dadas.\";'),
+('es','messages:apihelp-query+tokens-example-simple','s:36:\"Retrieve a csrf token (the default).\";'),
+('es','messages:apihelp-query+tokens-example-types','s:42:\"Retrieve a watch token and a patrol token.\";'),
+('es','messages:apihelp-query+tokens-param-type','s:26:\"Types of token to request.\";'),
+('es','messages:apihelp-query+tokens-summary','s:39:\"Gets tokens for data-modifying actions.\";'),
+('es','messages:apihelp-query+transcludedin-example-generator','s:77:\"Obtener información sobre las páginas que transcluyen Main Page.\";'),
+('es','messages:apihelp-query+transcludedin-example-simple','s:65:\"Obtener una lista de páginas transcluyendo Main Page.\";'),
+('es','messages:apihelp-query+transcludedin-param-limit','s:24:\"Cuántos se devolverán.\";'),
+('es','messages:apihelp-query+transcludedin-param-namespace','s:55:\"Incluir solo las páginas en estos espacios de nombres.\";'),
+('es','messages:apihelp-query+transcludedin-param-prop','s:31:\"Qué propiedades se obtendrán:\";'),
+('es','messages:apihelp-query+transcludedin-param-show','s:164:\"Muestra solo los elementos que cumplen estos criterios:\n;redirect: Muestra solamente redirecciones.\n;!redirect: Muestra solamente páginas que no son redirecciones.\";'),
+('es','messages:apihelp-query+transcludedin-paramvalue-prop-pageid','s:30:\"Identificador de cada página.\";'),
+('es','messages:apihelp-query+transcludedin-paramvalue-prop-redirect','s:41:\"Marcar si la página es una redirección.\";'),
+('es','messages:apihelp-query+transcludedin-paramvalue-prop-title','s:24:\"Título de cada página.\";'),
+('es','messages:apihelp-query+transcludedin-summary','s:64:\"Encuentra todas las páginas que transcluyan las páginas dadas.\";'),
+('es','messages:apihelp-query+usercontribs-example-ipprefix','s:90:\"Mostrar las contribuciones de todas las direcciones IP con el prefijo 192.0.2..\";'),
+('es','messages:apihelp-query+usercontribs-example-user','s:54:\"Mostrar contribuciones del usuario Example.\";'),
+('es','messages:apihelp-query+usercontribs-param-end','s:68:\"The end timestamp to return to, i.e. revisions after this timestamp.\";'),
+('es','messages:apihelp-query+usercontribs-param-limit','s:53:\"Número máximo de contribuciones que se devolverán.\";'),
+('es','messages:apihelp-query+usercontribs-param-namespace','s:62:\"Enumerar solo las contribuciones en estos espacios de nombres.\";'),
+('es','messages:apihelp-query+usercontribs-param-prop','s:43:\"Incluir piezas adicionales de información:\";'),
+('es','messages:apihelp-query+usercontribs-param-show','s:371:\"Mostrar solo los elementos que coinciden con estos criterios. Por ejemplo, solo ediciones no menores: $2show=!minor.\n\nSi se establece $2show=patrolled o $2show=!patrolled, no se mostrarán las revisiones con una antigüedad mayor que [[mw:Special:MyLanguage/Manual:$wgRCMaxAge|$wgRCMaxAge]] ($1 {{PLURAL:$1|segundo|segundos}}).\";'),
+('es','messages:apihelp-query+usercontribs-param-start','s:73:\"The start timestamp to return from, i.e. revisions before this timestamp.\";'),
+('es','messages:apihelp-query+usercontribs-param-tag','s:47:\"Enumerar solo las revisiones con esta etiqueta.\";'),
+('es','messages:apihelp-query+usercontribs-param-toponly','s:66:\"Enumerar solo las modificaciones que sean las últimas revisiones.\";'),
+('es','messages:apihelp-query+usercontribs-param-user','s:146:\"Los usuarios para los cuales se desea recuperar las contribuciones. No se puede utilizar junto con $1userids o $1userprefix.\";'),
+('es','messages:apihelp-query+usercontribs-param-userids','s:169:\"Los identificadores de los usuarios para los cuales se desea recuperar las contribuciones. No se puede utilizar junto con $1userids o $1userprefix.\";'),
+('es','messages:apihelp-query+usercontribs-param-userprefix','s:163:\"Recuperar las contribuciones de todos los usuarios cuyos nombres comienzan con este valor. No se puede utilizar junto con $1user o $1userids.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-autopatrolled','s:25:\"Tags autopatrolled edits.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-comment','s:36:\"Añade el comentario de la edición.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-flags','s:33:\"Añade las marcas de la edición.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-ids','s:53:\"Añade el identificador de página y el de revisión.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-parsedcomment','s:46:\"Añade el comentario analizado de la edición.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-patrolled','s:31:\"Etiqueta ediciones verificadas.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-size','s:39:\"Añade el nuevo tamaño de la edición.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-sizediff','s:74:\"Añade la diferencia de tamaño de la edición respecto de su progenitora.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-tags','s:37:\"Lista las etiquetas para la edición.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-timestamp','s:35:\"Añade fecha y hora de la edición.\";'),
+('es','messages:apihelp-query+usercontribs-paramvalue-prop-title','s:74:\"Agrega el título y el identificador del espacio de nombres de la página.\";'),
+('es','messages:apihelp-query+usercontribs-summary','s:54:\"Obtener todas las ediciones realizadas por un usuario.\";'),
+('es','messages:apihelp-query+userinfo-example-data','s:55:\"Obtener información adicional sobre el usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-example-simple','s:45:\"Obtener información sobre el usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-param-attachedwiki','s:109:\"With $1prop=centralids, indicate whether the user is attached with the wiki identified by this ID.\";'),
+('es','messages:apihelp-query+userinfo-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-acceptlang','s:100:\"Reenvía la cabecera Accept-Language enviada por el cliente en un formato estructurado.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-blockinfo','s:69:\"Etiqueta si el usuario está bloqueado, por quién y por qué motivo.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-centralids','s:56:\"Adds the central IDs and attachment status for the user.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-changeablegroups','s:71:\"Enumera los grupos a los que el usuario actual se puede unir o retirar.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-editcount','s:50:\"Añade el número de ediciones del usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-email','s:96:\"Añade la dirección de correo electrónico del usuario y la fecha de autenticación por correo.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-groupmemberships','s:143:\"Enumera los grupos a los que se ha asignado explícitamente al usuario actual, incluida la fecha de expiración de la pertenencia a cada grupo.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-groups','s:58:\"Lista todos los grupos al que pertenece el usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-hasmsg','s:89:\"Añade una etiqueta messages si el usuario actual tiene mensajes pendientes.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-implicitgroups','s:80:\"Enumera todos los grupos a los que pertenece automáticamente el usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-latestcontrib','s:44:\"Adds the date of user\'s latest contribution.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-options','s:68:\"Lista todas las preferencias que haya establecido el usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-ratelimits','s:66:\"Lista todos los límites de velocidad aplicados al usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-realname','s:34:\"Añade el nombre real del usuario.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-registrationdate','s:40:\"Añade la fecha de registro del usuario.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-rights','s:53:\"Lista todos los permisos que tiene el usuario actual.\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-theoreticalratelimits','s:129:\"Lists all rate limits that would apply to the current user if they were not exempt from all ratelimits based on user rights or ip\";'),
+('es','messages:apihelp-query+userinfo-paramvalue-prop-unreadcount','s:143:\"Añade el recuento de páginas no leídas de la lista de seguimiento del usuario (máximo $1, devuelve $2 si el número es mayor).\";'),
+('es','messages:apihelp-query+userinfo-summary','s:45:\"Obtener información sobre el usuario actual.\";'),
+('es','messages:apihelp-query+users-example-simple','s:53:\"Devolver información del usuario Example.\";'),
+('es','messages:apihelp-query+users-param-attachedwiki','s:109:\"With $1prop=centralids, indicate whether the user is attached with the wiki identified by this ID.\";'),
+('es','messages:apihelp-query+users-param-prop','s:36:\"Qué piezas de información incluir:\";'),
+('es','messages:apihelp-query+users-param-userids','s:73:\"Una lista de identificadores de usuarios de los que obtener información.\";'),
+('es','messages:apihelp-query+users-param-users','s:54:\"Una lista de usuarios de los que obtener información.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-blockinfo','s:69:\"Etiqueta si el usuario está bloqueado, por quién y por qué razón.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-cancreate','s:89:\"Indica si se puede crear una cuenta para nombres de usuario válidos pero no registrados.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-centralids','s:56:\"Adds the central IDs and attachment status for the user.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-editcount','s:43:\"Añade el número de ediciones del usuario.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-emailable','s:98:\"Marca si el usuario puede y quiere recibir correo electrónico a través de [[Special:Emailuser]].\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-gender','s:82:\"Etiqueta el género del usuario. Devuelve \"masculino\", \"femenino\" o \"desconocido\".\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-groupmemberships','s:112:\"Lists groups that each user has been explicitly assigned to, including the expiry date of each group membership.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-groups','s:56:\"Lista todos los grupos a los que pertenece cada usuario.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-implicitgroups','s:73:\"Enumera todos los grupos a los que pertenece automáticamente un usuario.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-registration','s:49:\"Añade el cronomarcador del registro del usuario.\";'),
+('es','messages:apihelp-query+users-paramvalue-prop-rights','s:50:\"Enumera todos los permisos que tiene cada usuario.\";'),
+('es','messages:apihelp-query+users-summary','s:49:\"Obtener información sobre una lista de usuarios.\";'),
+('es','messages:apihelp-query+watchlist-example-allrev','s:113:\"Obtener información sobre todos los cambios recientes de páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlist-example-expiry','s:165:\"Fetch additional information about the top revision for recently changed pages on the current user\'s watchlist, including when temporarily watched items will expire.\";'),
+('es','messages:apihelp-query+watchlist-example-generator','s:116:\"Obtener información de página de las páginas con cambios recientes de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlist-example-generator-rev','s:117:\"Obtener información de revisión de los cambios recientes de páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlist-example-props','s:138:\"Obtener información adicional sobre la última revisión de páginas con cambios recientes en la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlist-example-simple','s:113:\"Enumera la última revisión de las páginas con cambios recientes de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlist-example-wlowner','s:122:\"Enumerar la última revisión de páginas con cambios recientes de la lista de seguimiento del usuario Example.\";'),
+('es','messages:apihelp-query+watchlist-param-allrev','s:67:\"Include multiple revisions of the same page within given timeframe.\";'),
+('es','messages:apihelp-query+watchlist-param-end','s:48:\"El cronomarcador para finalizar la enumeración.\";'),
+('es','messages:apihelp-query+watchlist-param-excludeuser','s:34:\"No listar cambios de este usuario.\";'),
+('es','messages:apihelp-query+watchlist-param-limit','s:53:\"Número de resultados que devolver en cada petición.\";'),
+('es','messages:apihelp-query+watchlist-param-namespace','s:58:\"Filtrar cambios solamente a los espacios de nombres dados.\";'),
+('es','messages:apihelp-query+watchlist-param-owner','s:83:\"Utilizado junto con $1token para acceder a la lista de seguimiento de otro usuario.\";'),
+('es','messages:apihelp-query+watchlist-param-prop','s:43:\"Qué propiedades adicionales se obtendrán:\";'),
+('es','messages:apihelp-query+watchlist-param-show','s:166:\"Muestra solo los elementos que cumplan estos criterios. Por ejemplo, para ver solo ediciones menores realizadas por usuarios conectados, introduce $1show=minor|!anon.\";'),
+('es','messages:apihelp-query+watchlist-param-start','s:48:\"El sello de tiempo para comenzar la enumeración\";'),
+('es','messages:apihelp-query+watchlist-param-token','s:148:\"A security token (available in the user\'s [[Special:Preferences#mw-prefsection-watchlist|preferences]]) to allow access to another user\'s watchlist.\";'),
+('es','messages:apihelp-query+watchlist-param-type','s:30:\"Qué tipos de cambios mostrar:\";'),
+('es','messages:apihelp-query+watchlist-param-user','s:46:\"Mostrar solamente los cambios de este usuario.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-autopatrol','s:34:\"Tags edits that are autopatrolled.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-comment','s:36:\"Añade el comentario de la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-flags','s:31:\"Añade marcas para la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-ids','s:51:\"Añade identificadores de revisiones y de páginas.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-loginfo','s:52:\"Añade información del registro cuando corresponda.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-notificationtimestamp','s:94:\"Añade fecha y hora de cuando el usuario fue notificado por última vez acerca de la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-parsedcomment','s:46:\"Añade el comentario analizado de la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-patrol','s:46:\"Etiqueta las ediciones que están verificadas.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-sizes','s:50:\"Añade la longitud vieja y la nueva de la página.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-tags','s:36:\"Enumera las etiquetas de la entrada.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-timestamp','s:39:\"Añade el cronomarcador de la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-title','s:32:\"Añade el título de la página.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-user','s:39:\"Añade el usuario que hizo la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-prop-userid','s:61:\"Añade el identificador de usuario de quien hizo la edición.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-type-categorize','s:37:\"Cambios de pertenencia a categorías.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-type-edit','s:29:\"Ediciones comunes en páginas\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-type-external','s:17:\"Cambios externos.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-type-log','s:22:\"Entradas del registro.\";'),
+('es','messages:apihelp-query+watchlist-paramvalue-type-new','s:23:\"Creaciones de páginas.\";'),
+('es','messages:apihelp-query+watchlist-summary','s:92:\"Obtener los cambios recientes de las páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlistraw-example-generator','s:83:\"Obtener información de las páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlistraw-example-simple','s:66:\"Listar las páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query+watchlistraw-param-dir','s:36:\"La dirección en la que se listará.\";'),
+('es','messages:apihelp-query+watchlistraw-param-fromtitle','s:84:\"Título (con el prefijo de espacio de nombres) desde el que se empezará a enumerar.\";'),
+('es','messages:apihelp-query+watchlistraw-param-limit','s:53:\"Número de resultados que devolver en cada petición.\";'),
+('es','messages:apihelp-query+watchlistraw-param-namespace','s:64:\"Mostrar solamente las páginas de los espacios de nombres dados.\";'),
+('es','messages:apihelp-query+watchlistraw-param-owner','s:83:\"Utilizado junto con $1token para acceder a la lista de seguimiento de otro usuario.\";'),
+('es','messages:apihelp-query+watchlistraw-param-prop','s:43:\"Qué propiedades adicionales se obtendrán:\";'),
+('es','messages:apihelp-query+watchlistraw-param-show','s:59:\"Mostrar solo los elementos que cumplen con estos criterios.\";'),
+('es','messages:apihelp-query+watchlistraw-param-token','s:148:\"A security token (available in the user\'s [[Special:Preferences#mw-prefsection-watchlist|preferences]]) to allow access to another user\'s watchlist.\";'),
+('es','messages:apihelp-query+watchlistraw-param-totitle','s:83:\"Título (con el prefijo de espacio de nombres) desde el que se dejará de enumerar.\";'),
+('es','messages:apihelp-query+watchlistraw-paramvalue-prop-changed','s:83:\"Añade la marca de tiempo de la última notificación al usuario sobre la edición.\";'),
+('es','messages:apihelp-query+watchlistraw-summary','s:73:\"Obtener todas las páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-query-example-allpages','s:65:\"Obtener revisiones de páginas que comiencen por API/.\";'),
+('es','messages:apihelp-query-example-revisions','s:138:\"Busque [[Special:ApiHelp/query+siteinfo|información del sitio]] y [[Special:ApiHelp/query+revisions|revisiones]] de Main Page.\";'),
+('es','messages:apihelp-query-extended-description','s:144:\"Todas las modificaciones de datos tendrán que utilizar primero la consulta para adquirir un token para evitar el abuso desde sitios maliciosos.\";'),
+('es','messages:apihelp-query-param-export','s:67:\"Exportar las revisiones actuales de las páginas dadas o generadas.\";'),
+('es','messages:apihelp-query-param-exportnowrap','s:145:\"Devuelve el XML de exportación sin envolverlo en un resultado XML (mismo formato que [[Special:Export]]). Solo se puede usar junto con $1export.\";'),
+('es','messages:apihelp-query-param-exportschema','s:106:\"Target the given version of the XML dump format when exporting. Can only be used with $1export.\";'),
+('es','messages:apihelp-query-param-indexpageids','s:96:\"Incluir una sección de ID de páginas adicional en la que se muestran todas las ID de páginas.\";'),
+('es','messages:apihelp-query-param-iwurl','s:49:\"Si la URL completa si el título es un interwiki.\";'),
+('es','messages:apihelp-query-param-list','s:20:\"Qué listas obtener.\";'),
+('es','messages:apihelp-query-param-meta','s:23:\"Qué metadatos obtener.\";'),
+('es','messages:apihelp-query-param-prop','s:55:\"Qué propiedades obtener para las páginas consultadas.\";'),
+('es','messages:apihelp-query-param-rawcontinue','s:71:\"Devuelve los datos query-continue en bruto para continuar.\";'),
+('es','messages:apihelp-query-summary','s:35:\"Obtener datos de y sobre MediaWiki.\";'),
+('es','messages:apihelp-rawfm-summary','s:107:\"Extraer los datos de salida, incluidos los elementos de depuración, en formato JSON (embellecido en HTML).\";'),
+('es','messages:apihelp-removeauthenticationdata-example-simple','s:88:\"Trata de eliminar los datos del usuario actual para FooAuthenticationRequest.\";'),
+('es','messages:apihelp-removeauthenticationdata-summary','s:57:\"Elimina los datos de autentificación del usuario actual.\";'),
+('es','messages:apihelp-resetpassword-example-email','s:142:\"Enviar un correo de recuperación de contraseña para todos los usuarios con dirección de correo electrónico usuario@ejemplo.com.\";'),
+('es','messages:apihelp-resetpassword-example-user','s:79:\"Enviar un correo de recuperación de contraseña al usuario Ejemplo.\";'),
+('es','messages:apihelp-resetpassword-extended-description-noroutes','s:167:\"No password reset routes are available.\n\nEnable routes in [[mw:Special:MyLanguage/Manual:$wgPasswordResetRoutes|$wgPasswordResetRoutes]] to use this module.\";'),
+('es','messages:apihelp-resetpassword-param-email','s:71:\"Dirección de correo electrónico del usuario que se va a reinicializar\";'),
+('es','messages:apihelp-resetpassword-param-user','s:39:\"Usuario en proceso de reinicialización\";'),
+('es','messages:apihelp-resetpassword-summary','s:68:\"Enviar un email de reinicialización de la contraseña a un usuario.\";'),
+('es','messages:apihelp-revisiondelete-example-log','s:106:\"Ocultar todos los datos de la entrada de registro 67890 con el motivo BLP violation.\";'),
+('es','messages:apihelp-revisiondelete-example-revision','s:89:\"Ocultar el contenido de la revisión 12345 de la página Main Page.\";'),
+('es','messages:apihelp-revisiondelete-param-hide','s:31:\"Qué ocultar en cada revisión.\";'),
+('es','messages:apihelp-revisiondelete-param-ids','s:46:\"Identificadores de las revisiones para borrar.\";'),
+('es','messages:apihelp-revisiondelete-param-reason','s:42:\"Motivo de la eliminación o restauración.\";'),
+('es','messages:apihelp-revisiondelete-param-show','s:31:\"Qué mostrar en cada revisión.\";'),
+('es','messages:apihelp-revisiondelete-param-suppress','s:63:\"Whether to suppress data from administrators as well as others.\";'),
+('es','messages:apihelp-revisiondelete-param-tags','s:62:\"Etiquetas que aplicar a la entrada en el registro de borrados.\";'),
+('es','messages:apihelp-revisiondelete-param-target','s:94:\"Título de la página para el borrado de la revisión, en caso de ser necesario para ese tipo.\";'),
+('es','messages:apihelp-revisiondelete-param-type','s:42:\"Type of revision deletion being performed.\";'),
+('es','messages:apihelp-revisiondelete-summary','s:31:\"Eliminar y restaurar revisiones\";'),
+('es','messages:apihelp-rollback-example-simple','s:101:\"Revertir las últimas ediciones de la página Main Page por el usuario Example.\";'),
+('es','messages:apihelp-rollback-example-summary','s:228:\"Revertir las últimas ediciones de la página Main Page por el usuario de IP 192.0.2.5 con resumen Reverting vandalism, y marcar esas ediciones y la reversión como ediciones realizadas por bots.\";'),
+('es','messages:apihelp-rollback-extended-description','s:110:\"Si el último usuario que editó la página hizo varias ediciones consecutivas, todas ellas serán revertidas.\";'),
+('es','messages:apihelp-rollback-param-markbot','s:76:\"Marca las ediciones como revertidas y las revierte como ediciones de un bot.\";'),
+('es','messages:apihelp-rollback-param-pageid','s:88:\"Identificador de la página que revertir. No se puede usar junto con $1title.\";'),
+('es','messages:apihelp-rollback-param-summary','s:85:\"Resumen de edición personalizado. Si se deja vacío se utilizará el predeterminado.\";'),
+('es','messages:apihelp-rollback-param-tags','s:38:\"Etiquetas que aplicar a la reversión.\";'),
+('es','messages:apihelp-rollback-param-title','s:83:\"Título de la página que revertir. No se puede usar junto con $1pageid.\";'),
+('es','messages:apihelp-rollback-param-user','s:53:\"Nombre del usuario cuyas ediciones se van a revertir.\";'),
+('es','messages:apihelp-rollback-param-watchlist','s:137:\"Añadir o borrar incondicionalmente la página de la lista de seguimiento del usuario actual, usar preferencias o no cambiar seguimiento.\";'),
+('es','messages:apihelp-rollback-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-rollback-summary','s:43:\"Deshacer la última edición de la página.\";'),
+('es','messages:apihelp-rsd-example-simple','s:24:\"Exportar el esquema RSD.\";'),
+('es','messages:apihelp-rsd-summary','s:77:\"Exportar un esquema RSD (Really Simple Discovery; Descubrimiento Muy Simple).\";'),
+('es','messages:apihelp-setnotificationtimestamp-example-all','s:84:\"Restablecer el estado de notificación para la totalidad de la lista de seguimiento.\";'),
+('es','messages:apihelp-setnotificationtimestamp-example-allpages','s:101:\"Restablecer el estado de notificación de las páginas del espacio de nombres {{ns:user}}.\";'),
+('es','messages:apihelp-setnotificationtimestamp-example-page','s:63:\"Restablecer el estado de notificación de Main page.\";'),
+('es','messages:apihelp-setnotificationtimestamp-example-pagetimestamp','s:164:\"Fijar la marca de tiempo de notificación de Main page para que todas las ediciones posteriores al 1 de enero de 2012 estén consideradas como no vistas.\";'),
+('es','messages:apihelp-setnotificationtimestamp-extended-description','s:203:\"Esto afecta a la función de resaltado de las páginas modificadas en la lista de seguimiento y al envío de correo electrónico cuando la preferencia \"{{int:tog-enotifwatchlistpages}}\" está habilitada.\";'),
+('es','messages:apihelp-setnotificationtimestamp-param-entirewatchlist','s:46:\"Trabajar en todas las páginas en seguimiento.\";'),
+('es','messages:apihelp-setnotificationtimestamp-param-newerthanrevid','s:94:\"Revisión a la que fijar la marca de tiempo de notificación más reciente (una sola página).\";'),
+('es','messages:apihelp-setnotificationtimestamp-param-timestamp','s:76:\"Fecha y hora a las cuales debe fijarse el cronomarcador de la notificación.\";'),
+('es','messages:apihelp-setnotificationtimestamp-param-torevid','s:80:\"Revisión a la que fijar la marca de tiempo de notificación (una sola página).\";'),
+('es','messages:apihelp-setnotificationtimestamp-summary','s:90:\"Actualizar la marca de tiempo de notificación de las páginas en la lista de seguimiento.\";'),
+('es','messages:apihelp-setpagelanguage-example-default','s:108:\"Cambiar el idioma de la página con identificador 123 al idioma predeterminado para el contenido de la wiki.\";'),
+('es','messages:apihelp-setpagelanguage-example-language','s:53:\"Cambiar el idioma de Main Page al euskera.\";'),
+('es','messages:apihelp-setpagelanguage-extended-description-disabled','s:185:\"En esta wiki no se permite modificar el idioma de las páginas.\n\nActiva [[mw:Special:MyLanguage/Manual:$wgPageLanguageUseDB|$wgPageLanguageUseDB]] para utilizar esta acción.\";'),
+('es','messages:apihelp-setpagelanguage-param-lang','s:160:\"Código del idioma al que se desea cambiar la página. Usa default para restablecer la página al idioma predeterminado para el contenido de la wiki.\";'),
+('es','messages:apihelp-setpagelanguage-param-pageid','s:102:\"Identificador de la página cuyo idioma deseas cambiar. No se puede usar junto con $1title.\";'),
+('es','messages:apihelp-setpagelanguage-param-reason','s:18:\"Motivo del cambio.\";'),
+('es','messages:apihelp-setpagelanguage-param-tags','s:86:\"Cambiar las etiquetas que aplicar a la entrada de registro resultante de esta acción.\";'),
+('es','messages:apihelp-setpagelanguage-param-title','s:97:\"Título de la página cuyo idioma deseas cambiar. No se puede usar junto con $1pageid.\";'),
+('es','messages:apihelp-setpagelanguage-summary','s:33:\"Cambiar el idioma de una página.\";'),
+('es','messages:apihelp-stashedit-extended-description','s:100:\"This is intended to be used via AJAX from the edit form to improve the performance of the page save.\";'),
+('es','messages:apihelp-stashedit-param-baserevid','s:38:\"Identificador de la revisión de base.\";'),
+('es','messages:apihelp-stashedit-param-contentformat','s:74:\"Formato de serialización de contenido utilizado para el texto de entrada.\";'),
+('es','messages:apihelp-stashedit-param-contentmodel','s:27:\"Modelo del contenido nuevo.\";'),
+('es','messages:apihelp-stashedit-param-section','s:104:\"Número de la sección. 0 para una sección superior, new para una sección nueva.\";'),
+('es','messages:apihelp-stashedit-param-sectiontitle','s:33:\"El título de una sección nueva.\";'),
+('es','messages:apihelp-stashedit-param-stashedtexthash','s:52:\"Page content hash from a prior stash to use instead.\";'),
+('es','messages:apihelp-stashedit-param-summary','s:19:\"Resumen de cambios.\";'),
+('es','messages:apihelp-stashedit-param-text','s:24:\"Contenido de la página.\";'),
+('es','messages:apihelp-stashedit-param-title','s:44:\"Título de la página que se está editando.\";'),
+('es','messages:apihelp-stashedit-summary','s:32:\"Prepare an edit in shared cache.\";'),
+('es','messages:apihelp-summary','s:0:\"\";'),
+('es','messages:apihelp-tag-example-log','s:126:\"Eliminar la etiqueta spam de la entrada del registro con identificador 123 con el motivo Wrongly applied\";'),
+('es','messages:apihelp-tag-example-rev','s:100:\"Añadir la etiqueta vandalism al identificador de revisión 123 sin especificar un motivo\";'),
+('es','messages:apihelp-tag-param-add','s:78:\"Etiquetas que añadir. Solo se pueden añadir etiquetas definidas manualmente.\";'),
+('es','messages:apihelp-tag-param-logid','s:93:\"Uno o más identificadores de entradas del registro a los que agregar o eliminar la etiqueta.\";'),
+('es','messages:apihelp-tag-param-rcid','s:87:\"Uno o más identificadores de cambios recientes a los que añadir o borrar la etiqueta.\";'),
+('es','messages:apihelp-tag-param-reason','s:18:\"Motivo del cambio.\";'),
+('es','messages:apihelp-tag-param-remove','s:104:\"Etiquetas que borrar. Solo se pueden borrar etiquetas definidas manualmente o completamente indefinidas.\";'),
+('es','messages:apihelp-tag-param-revid','s:79:\"Uno o más identificadores de revisión a los que añadir o borrar la etiqueta.\";'),
+('es','messages:apihelp-tag-param-tags','s:95:\"Etiquetas que aplicar a la entrada de registro que se generará como resultado de esta acción.\";'),
+('es','messages:apihelp-tag-summary','s:94:\"Añadir o borrar etiquetas de modificación de revisiones individuales o entradas de registro.\";'),
+('es','messages:apihelp-unblock-example-id','s:44:\"Desbloquear el bloqueo de ID #105\";'),
+('es','messages:apihelp-unblock-example-user','s:72:\"Desbloquear al usuario Bob con el motivo Sorry Bob\";'),
+('es','messages:apihelp-unblock-param-id','s:167:\"Identificador del bloqueo que se desea desbloquear (obtenido mediante list=blocks). No se puede usar junto con with $1user o $1userid.\";'),
+('es','messages:apihelp-unblock-param-reason','s:22:\"Motivo del desbloqueo.\";'),
+('es','messages:apihelp-unblock-param-tags','s:74:\"Cambiar las etiquetas que aplicar a la entrada en el registro de bloqueos.\";'),
+('es','messages:apihelp-unblock-param-user','s:150:\"Nombre de usuario, dirección IP o intervalo de direcciones IP para desbloquear. No se puede utilizar junto con $1id o $1userid.\";'),
+('es','messages:apihelp-unblock-param-userid','s:98:\"ID de usuario que desbloquear. No se puede utilizar junto con $1id o $1user.\";'),
+('es','messages:apihelp-unblock-summary','s:23:\"Desbloquear un usuario.\";'),
+('es','messages:apihelp-undelete-example-page','s:42:\"Restaurar la página Main page.\";'),
+('es','messages:apihelp-undelete-example-revisions','s:60:\"Restaurar dos revisiones de la página Main Page.\";'),
+('es','messages:apihelp-undelete-extended-description','s:253:\"A list of deleted revisions (including timestamps) can be retrieved through [[Special:ApiHelp/query+deletedrevisions|prop=deletedrevisions]], and a list of deleted file IDs can be retrieved through [[Special:ApiHelp/query+filearchive|list=filearchive]].\";'),
+('es','messages:apihelp-undelete-param-fileids','s:155:\"Identificadores de las revisiones que se desea restaurar. Si tanto $1timestamps como $1fileids están vacíos, se restaurarán todas.\";'),
+('es','messages:apihelp-undelete-param-reason','s:27:\"Motivo de la restauración.\";'),
+('es','messages:apihelp-undelete-param-tags','s:75:\"Cambiar las etiquetas para aplicar a la entrada en el registro de borrados.\";'),
+('es','messages:apihelp-undelete-param-timestamps','s:156:\"Marcas de tiempo de las revisiones que se desea restaurar. Si tanto $1timestamps como $1fileids están vacíos, se restaurarán todas.\";'),
+('es','messages:apihelp-undelete-param-title','s:36:\"Título de la página que restaurar.\";'),
+('es','messages:apihelp-undelete-param-watchlist','s:137:\"Unconditionally add or remove the page from the current user\'s watchlist, use preferences (ignored for bot users) or do not change watch.\";'),
+('es','messages:apihelp-undelete-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-undelete-summary','s:44:\"Restaurar revisiones de una página borrada.\";'),
+('es','messages:apihelp-unlinkaccount-example-simple','s:111:\"Attempt to remove the current user\'s link for the provider associated with FooAuthenticationRequest.\";'),
+('es','messages:apihelp-unlinkaccount-summary','s:58:\"Remove a linked third-party account from the current user.\";'),
+('es','messages:apihelp-upload-example-filekey','s:54:\"Completar una subida que falló debido a advertencias.\";'),
+('es','messages:apihelp-upload-example-url','s:20:\"Subir desde una URL.\";'),
+('es','messages:apihelp-upload-extended-description','s:547:\"Several methods are available:\n* Upload file contents directly, using the $1file parameter.\n* Upload the file in pieces, using the $1filesize, $1chunk, and $1offset parameters.\n* Have the MediaWiki server fetch a file from a URL, using the $1url parameter.\n* Complete an earlier upload that failed due to warnings, using the $1filekey parameter.\nNote that the HTTP POST must be done as a file upload (i.e. using multipart/form-data) when sending the $1file.\";'),
+('es','messages:apihelp-upload-param-async','s:98:\"Realizar de forma asíncrona las operaciones de archivo potencialmente grandes cuando sea posible.\";'),
+('es','messages:apihelp-upload-param-checkstatus','s:52:\"Only fetch the upload status for the given file key.\";'),
+('es','messages:apihelp-upload-param-chunk','s:24:\"Contenido del fragmento.\";'),
+('es','messages:apihelp-upload-param-comment','s:103:\"Upload comment. Also used as the initial page text for new files if $1text is not specified.\";'),
+('es','messages:apihelp-upload-param-file','s:22:\"Contenido del archivo.\";'),
+('es','messages:apihelp-upload-param-filekey','s:82:\"Clave que identifica una carga anterior que se guardó en el almacén provisional.\";'),
+('es','messages:apihelp-upload-param-filename','s:30:\"Nombre del archivo de destino.\";'),
+('es','messages:apihelp-upload-param-filesize','s:37:\"Tamaño de archivo total de la carga.\";'),
+('es','messages:apihelp-upload-param-ignorewarnings','s:25:\"Ignorar las advertencias.\";'),
+('es','messages:apihelp-upload-param-offset','s:33:\"Posición del fragmento en bytes.\";'),
+('es','messages:apihelp-upload-param-sessionkey','s:68:\"Idéntico a $1filekey, mantenido por razones de retrocompatibilidad.\";'),
+('es','messages:apihelp-upload-param-stash','s:90:\"If set, the server will stash the file temporarily instead of adding it to the repository.\";'),
+('es','messages:apihelp-upload-param-tags','s:107:\"Cambiar etiquetas para aplicar a la entrada del registro de subidas y a la revisión de página de archivo.\";'),
+('es','messages:apihelp-upload-param-text','s:46:\"Texto de página inicial para archivos nuevos.\";'),
+('es','messages:apihelp-upload-param-url','s:33:\"URL de la que obtener el archivo.\";'),
+('es','messages:apihelp-upload-param-watch','s:19:\"Vigilar la página.\";'),
+('es','messages:apihelp-upload-param-watchlist','s:158:\"Añadir o borrar incondicionalmente la página de la lista de seguimiento del usuario actual, utilizar las preferencias o no cambiar el estado de seguimiento.\";'),
+('es','messages:apihelp-upload-param-watchlistexpiry','s:95:\"Watchlist expiry timestamp. Omit this parameter entirely to leave the current expiry unchanged.\";'),
+('es','messages:apihelp-upload-summary','s:52:\"Upload a file, or get the status of pending uploads.\";'),
+('es','messages:apihelp-userrights-example-expiry','s:80:\"Añadir al usuario SometimeSysop al grupo sysop por 1 mes.\";'),
+('es','messages:apihelp-userrights-example-user','s:129:\"Agregar al usuario FooBot al grupo bot y eliminarlo de los grupos sysop y bureaucrat.\";'),
+('es','messages:apihelp-userrights-example-userid','s:142:\"Añade el usuario con identificador 123 al grupo bot, y lo borra de los grupos sysop y bureaucrat.\";'),
+('es','messages:apihelp-userrights-param-add','s:121:\"Agregar el usuario a estos grupos, o, si ya es miembro, actualizar la fecha de expiración de su pertenencia a ese grupo.\";'),
+('es','messages:apihelp-userrights-param-expiry','s:444:\"Marcas de tiempo de expiración. Pueden ser relativas (por ejemplo, 5 months o 2 weeks) o absolutas (por ejemplo, 2014-09-18T12:34:56Z). Si sólo se fija una marca de tiempo, se utilizará para todos los grupos que se pasen al parámetro $1añadir. Usa infinite, indefinite, infinity, o never para que la pertenencia al grupo no tenga fecha de expiración.\";'),
+('es','messages:apihelp-userrights-param-reason','s:18:\"Motivo del cambio.\";'),
+('es','messages:apihelp-userrights-param-remove','s:36:\"Eliminar el usuario de estos grupos.\";'),
+('es','messages:apihelp-userrights-param-tags','s:83:\"Cambia las etiquetas que aplicar a la entrada del registro de derechos del usuario.\";'),
+('es','messages:apihelp-userrights-param-user','s:8:\"Usuario.\";'),
+('es','messages:apihelp-userrights-param-userid','s:14:\"ID de usuario.\";'),
+('es','messages:apihelp-userrights-summary','s:46:\"Cambiar la pertenencia a grupos de un usuario.\";'),
+('es','messages:apihelp-validatepassword-example-1','s:64:\"Validar la contraseña foobar para el usuario actual.\";'),
+('es','messages:apihelp-validatepassword-example-2','s:90:\"Validar la contraseña qwerty para la creación del usuario Example.\";'),
+('es','messages:apihelp-validatepassword-extended-description','s:214:\"La validez es Good si la contraseña es aceptable, Change y la contraseña se puede usar para iniciar sesión pero debe cambiarse o Invalid si la contraseña no se puede usar.\";'),
+('es','messages:apihelp-validatepassword-param-email','s:72:\"Dirección de correo electrónico, para pruebas de creación de cuentas.\";'),
+('es','messages:apihelp-validatepassword-param-password','s:25:\"Contraseña para validar.\";'),
+('es','messages:apihelp-validatepassword-param-realname','s:50:\"Nombre real, para pruebas de creación de cuentas.\";'),
+('es','messages:apihelp-validatepassword-param-user','s:93:\"Nombre de usuario, para pruebas de creación de cuentas. El usuario nombrado no debe existir.\";'),
+('es','messages:apihelp-validatepassword-summary','s:72:\"Valida una contraseña contra las políticas de contraseñas de la wiki.\";'),
+('es','messages:apihelp-visualeditor-description','s:58:\"Devuelve HTML5 para una página desde el servicio Parsoid.\";'),
+('es','messages:apihelp-visualeditor-param-badetag','s:87:\"If RESTBase query returned a seemingly invalid ETag, pass it here for logging purposes.\";'),
+('es','messages:apihelp-visualeditor-param-basetimestamp','s:128:\"Al guardar, establece esto a la fecha y hora de la revisión que se ha editado. Se utiliza para detectar conflictos de edición.\";'),
+('es','messages:apihelp-visualeditor-param-cachekey','s:137:\"Para \"serialize\" o \"diff\", utilizar el resultado de una solicitud de \"serializeforcache\" anterior con éste código. Sobreescribe $1html.\";'),
+('es','messages:apihelp-visualeditor-param-editintro','s:41:\"Editar la intro para añadir a los avisos\";'),
+('es','messages:apihelp-visualeditor-param-etag','s:16:\"ETag que enviar.\";'),
+('es','messages:apihelp-visualeditor-param-format','s:24:\"El formato de la salida.\";'),
+('es','messages:apihelp-visualeditor-param-html','s:61:\"HTML que enviar a Parsoid para su conversión en wikicódigo.\";'),
+('es','messages:apihelp-visualeditor-param-oldid','s:72:\"El número de revisión a usar (por defecto la revisión más reciente).\";'),
+('es','messages:apihelp-visualeditor-param-paction','s:21:\"Acción que realizar.\";'),
+('es','messages:apihelp-visualeditor-param-page','s:34:\"La página para realizar acciones.\";'),
+('es','messages:apihelp-visualeditor-param-preload','s:68:\"The page to use content from if the fetched page has no content yet.\";'),
+('es','messages:apihelp-visualeditor-param-preloadparams','s:59:\"Parameters to substitute into the preload page, if present.\";'),
+('es','messages:apihelp-visualeditor-param-pst','s:88:\"Pre-guardar transforma el wikitexto antes de enviarlo a Parsoid (paction=parsefragment).\";'),
+('es','messages:apihelp-visualeditor-param-section','s:25:\"La sección donde actuar.\";'),
+('es','messages:apihelp-visualeditor-param-starttimestamp','s:122:\"Al guardar, establece esto a la fecha y hora en que la página se cargó. Se utiliza para detectar conflictos de edición.\";'),
+('es','messages:apihelp-visualeditor-param-stash','s:63:\"When saving, set this true if you want to use the stashing API.\";'),
+('es','messages:apihelp-visualeditor-param-wikitext','s:76:\"Wikitexto para enviar a Parsoid y convertir en HTML (paction=parsefragment).\";'),
+('es','messages:apihelp-visualeditor-summary','s:72:\"Devuelve el código HTML5 de una página por medio del servicio Parsoid.\";'),
+('es','messages:apihelp-visualeditoredit-description','s:94:\"Guardar una página HTML5 a MediaWiki (convertido a wikitexto a través del servicio Parsoid).\";'),
+('es','messages:apihelp-visualeditoredit-param-basetimestamp','s:128:\"Al guardar, establece esto a la fecha y hora de la revisión que se ha editado. Se utiliza para detectar conflictos de edición.\";'),
+('es','messages:apihelp-visualeditoredit-param-cachekey','s:110:\"Utilizar el resultado de una solicitud de \"serializeforcache\" anterior con éste código. Sobreescribe $1html.\";'),
+('es','messages:apihelp-visualeditoredit-param-captchaid','s:70:\"Captcha ID (al guardar respondiendo un código de imágeen \"captcha\").\";'),
+('es','messages:apihelp-visualeditoredit-param-captchaword','s:90:\"Respuesta al código de imagen (al guardar respondiendo un código de imágeen \"captcha\").\";'),
+('es','messages:apihelp-visualeditoredit-param-data-{plugin}','s:53:\"Arbitrary data sent by a plugin with the API request.\";'),
+('es','messages:apihelp-visualeditoredit-param-etag','s:16:\"ETag que enviar.\";'),
+('es','messages:apihelp-visualeditoredit-param-html','s:50:\"HTML para enviar a Parsoid en lugar del wikitexto.\";'),
+('es','messages:apihelp-visualeditoredit-param-minor','s:24:\"Marca de edición menor.\";'),
+('es','messages:apihelp-visualeditoredit-param-needcheck','s:131:\"Al guardar, establece este parámetro si la revisión puede tener problemas de \"roundtrip\". Esto hará que se etiquete la edición.\";'),
+('es','messages:apihelp-visualeditoredit-param-oldid','s:128:\"El número de revisión que utilizar. De manera predeterminada corresponde a la más reciente. Utiliza 0 para una página nueva.\";'),
+('es','messages:apihelp-visualeditoredit-param-paction','s:21:\"Acción que realizar.\";'),
+('es','messages:apihelp-visualeditoredit-param-page','s:45:\"La página en la que se realizarán acciones.\";'),
+('es','messages:apihelp-visualeditoredit-param-plugins','s:40:\"Plugins associated with the API request.\";'),
+('es','messages:apihelp-visualeditoredit-param-section','s:25:\"La sección donde actuar.\";'),
+('es','messages:apihelp-visualeditoredit-param-sectiontitle','s:29:\"Título de la sección nueva.\";'),
+('es','messages:apihelp-visualeditoredit-param-starttimestamp','s:122:\"Al guardar, establece esto a la fecha y hora en que la página se cargó. Se utiliza para detectar conflictos de edición.\";'),
+('es','messages:apihelp-visualeditoredit-param-summary','s:20:\"Resumen de edición.\";'),
+('es','messages:apihelp-visualeditoredit-param-tags','s:33:\"Change tags to apply to the edit.\";'),
+('es','messages:apihelp-visualeditoredit-param-watchlist','s:36:\"{{int:apihelp-edit-param-watchlist}}\";'),
+('es','messages:apihelp-visualeditoredit-param-wikitext','s:33:\"El wikicódigo que se utilizará.\";'),
+('es','messages:apihelp-visualeditoredit-summary','s:96:\"Guardar una página HTML5 en MediaWiki (convertida en wikicódigo mediante el servicio Parsoid).\";'),
+('es','messages:apihelp-watch-example-generator','s:62:\"Seguir las primeras páginas del espacio de nombres principal.\";'),
+('es','messages:apihelp-watch-example-unwatch','s:41:\"Dejar de vigilar la Main Page.\";'),
+('es','messages:apihelp-watch-example-watch','s:40:\"Vigilar la página Main Page.\";'),
+('es','messages:apihelp-watch-example-watch-expiry','s:87:\"Watch the pages Main Page, Foo, and Bar for one month.\";'),
+('es','messages:apihelp-watch-param-expiry','s:120:\"Expiry timestamp to be applied to all given pages. Omit this parameter entirely to leave any current expiries unchanged.\";'),
+('es','messages:apihelp-watch-param-title','s:77:\"La página que seguir o dejar de seguir. Usa $1titles en su lugar.\";'),
+('es','messages:apihelp-watch-param-unwatch','s:64:\"Si se define, en vez de seguir la página, se dejará de seguir.\";'),
+('es','messages:apihelp-watch-summary','s:72:\"Añadir o borrar páginas de la lista de seguimiento del usuario actual.\";'),
+('es','messages:apihelp-xml-param-includexmlnamespace','s:51:\"Si se especifica, añade un espacio de nombres XML.\";'),
+('es','messages:apihelp-xml-param-xslt','s:178:\"Si se especifica, añade la página nombrada como una hoja de estilo XSL. El valor debe ser un título en el espacio de nombres {{ns:MediaWiki}} que termine en .xsl.\";'),
+('es','messages:apihelp-xml-summary','s:44:\"Producir los datos de salida en formato XML.\";'),
+('es','messages:apihelp-xmlfm-summary','s:80:\"Producir los datos de salida en formato XML (con resaltado sintáctico en HTML).\";'),
+('es','messages:apisandbox','s:25:\"Zona de pruebas de la API\";'),
+('es','messages:apisandbox-add-multi','s:7:\"Añadir\";'),
+('es','messages:apisandbox-alert-field','s:37:\"El valor de este campo no es válido.\";'),
+('es','messages:apisandbox-alert-page','s:43:\"Los campos de esta página no son válidos.\";'),
+('es','messages:apisandbox-continue','s:9:\"Continuar\";'),
+('es','messages:apisandbox-continue-clear','s:6:\"Vaciar\";'),
+('es','messages:apisandbox-continue-help','s:231:\"{{int:apisandbox-continue}} [https://www.mediawiki.org/wiki/Special:MyLanguage/API:Query#Continuing_queries continuará] la última petición; {{int:apisandbox-continue-clear}} borrará los parámetros relativos a la continuación.\";'),
+('es','messages:apisandbox-deprecated-parameters','s:21:\"Parámetros en desuso\";'),
+('es','messages:apisandbox-dynamic-error-exists','s:37:\"Ya existe un parámetro llamado \"$1\".\";'),
+('es','messages:apisandbox-dynamic-parameters','s:23:\"Parámetros adicionales\";'),
+('es','messages:apisandbox-dynamic-parameters-add-label','s:19:\"Añadir parámetro:\";'),
+('es','messages:apisandbox-dynamic-parameters-add-placeholder','s:21:\"Nombre del parámetro\";'),
+('es','messages:apisandbox-examples','s:8:\"Ejemplos\";'),
+('es','messages:apisandbox-fetch-token','s:34:\"Rellenar la ficha automáticamente\";'),
+('es','messages:apisandbox-helpurls','s:16:\"Enlaces de ayuda\";'),
+('es','messages:apisandbox-intro','s:501:\"Usa esta página para experimentar con la API de servicio web de MediaWiki.\nPara más detalles sobre el uso de la API, visita [https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page su documentación]. Ejemplo: [https://www.mediawiki.org/wiki/API#A_simple_example obtener el contenido de una Página principal]. Selecciona una acción para ver más ejemplos.\n\nObserva que, aunque sea una página de pruebas, las acciones que realices en esta página pueden modificar la wiki.\";'),
+('es','messages:apisandbox-jsonly','s:63:\"Se requiere JavaScript para utilizar la zona de pruebas de API.\";'),
+('es','messages:apisandbox-load-error','s:76:\"Ocurrió un error al cargar la información del módulo «$1» de la API: $2\";'),
+('es','messages:apisandbox-loading','s:52:\"Cargando la información para el módulo API \"$1\"...\";'),
+('es','messages:apisandbox-loading-results','s:34:\"Recibiendo resultados de la API...\";'),
+('es','messages:apisandbox-multivalue-all-namespaces','s:34:\"$1 (Todos los espacios de nombres)\";'),
+('es','messages:apisandbox-multivalue-all-values','s:22:\"$1 (Todos los valores)\";'),
+('es','messages:apisandbox-no-parameters','s:38:\"Este módulo API no tiene parámetros.\";'),
+('es','messages:apisandbox-param-limit','s:52:\"Escribe max para usar el límite máximo.\";'),
+('es','messages:apisandbox-request-format-json-label','s:4:\"JSON\";'),
+('es','messages:apisandbox-request-format-php-label','s:9:\"PHP array\";'),
+('es','messages:apisandbox-request-format-url-label','s:28:\"Cadena de consulta de la URL\";'),
+('es','messages:apisandbox-request-json-label','s:15:\"Petición JSON:\";'),
+('es','messages:apisandbox-request-php-label','s:24:\"Solicitud de matriz PHP:\";'),
+('es','messages:apisandbox-request-selectformat-label','s:39:\"Mostrar los datos de la petición como:\";'),
+('es','messages:apisandbox-request-time','s:40:\"Tiempo de solicitud: {{PLURAL:$1|$1 ms}}\";'),
+('es','messages:apisandbox-request-url-label','s:14:\"Petición URL:\";'),
+('es','messages:apisandbox-reset','s:7:\"Limpiar\";'),
+('es','messages:apisandbox-results','s:10:\"Resultados\";'),
+('es','messages:apisandbox-results-error','s:72:\"Ocurrió un error durante la carga de la respuesta a la consulta API: $1\";'),
+('es','messages:apisandbox-results-fixtoken','s:34:\"Corrige el token y vuelve a enviar\";'),
+('es','messages:apisandbox-results-fixtoken-fail','s:39:\"No fue posible recuperar el token \"$1\".\";'),
+('es','messages:apisandbox-results-login-suppressed','s:293:\"Esta petición ha sido procesada como un usuario sin sesión iniciada puesto que se podría usar para circunvenir la seguridad del navegador. Tenga en cuenta que la gestión del token automático del API sandbox no funciona correctamente con tales peticiones, por favor rellenalas manualmente.\";'),
+('es','messages:apisandbox-retry','s:10:\"Reintentar\";'),
+('es','messages:apisandbox-sending-request','s:27:\"Enviando pedido a la API...\";'),
+('es','messages:apisandbox-submit','s:18:\"Realizar solicitud\";'),
+('es','messages:apisandbox-submit-invalid-fields-message','s:52:\"Corrige los campos señalados e inténtalo de nuevo.\";'),
+('es','messages:apisandbox-submit-invalid-fields-title','s:30:\"Algunos campos no son válidos\";'),
+('es','messages:apisandbox-summary','s:0:\"\";'),
+('es','messages:apisandbox-templated-parameter-reason','s:143:\"Esta [[Special:ApiHelp/main#main/templatedparams|plantilla de parámetros]] se ofrece en función {{PLURAL:$1|del valor|de los valores}} de $2.\";'),
+('es','messages:apiwarn-alldeletedrevisions-performance','s:100:\"Para conseguir un mejor rendimiento a la hora de generar títulos, establece $1dir=newer.\";'),
+('es','messages:apiwarn-badurlparam','s:96:\"No se pudo analizar $1urlparam para $2. Se utilizarán solamente la anchura y altura.\";'),
+('es','messages:apiwarn-badutf8','s:222:\"El valor pasado para $1 contiene datos no válidos o no normalizados. Los datos textuales deberían estar en Unicode válido, normalizado en NFC y sin caracteres de control C0 excepto HT (\\t), LF (\\n) y CR (\\r).\";'),
+('es','messages:apiwarn-checktoken-percentencoding','s:84:\"Check that symbols such as \"+\" in the token are properly percent-encoded in the URL.\";'),
+('es','messages:apiwarn-compare-no-next','s:108:\"Revision $2 is the latest revision of $1, there is no revision for torelative=next to compare to.\";'),
+('es','messages:apiwarn-compare-no-prev','s:110:\"Revision $2 is the earliest revision of $1, there is no revision for torelative=prev to compare to.\";'),
+('es','messages:apiwarn-compare-nocontentmodel','s:50:\"No content model could be determined, assuming $1.\";'),
+('es','messages:apiwarn-deprecation-deletedrevs','s:141:\"list=deletedrevs ha quedado obsoleto. En su lugar, utiliza prop=deletedrevisions o list=alldeletedrevisions.\";'),
+('es','messages:apiwarn-deprecation-httpsexpected','s:46:\"Se ha utilizado HTTP cuando se esperaba HTTPS.\";'),
+('es','messages:apiwarn-deprecation-login-botpw','s:356:\"El inicio de sesión con la cuenta principal mediante action=login está en desuso y puede dejar de funcionar sin aviso previo. Para proseguir el inicio de sesión mediante action=login, véase [[Special:BotPasswords]]. Para proseguir el inicio de sesión con la cuenta principal de forma segura, véase action=clientlogin.\";'),
+('es','messages:apiwarn-deprecation-login-nobotpw','s:214:\"El inicio de sesión con la cuenta principal mediante action=login está en desuso y puede dejar de funcionar sin aviso previo. Para iniciar sesión de forma segura, véase action=clientlogin.\";'),
+('es','messages:apiwarn-deprecation-login-token','s:119:\"Fetching a token via action=login is deprecated. Use action=query&meta=tokens&type=login instead.\";'),
+('es','messages:apiwarn-deprecation-missingparam','s:167:\"Because $1 was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used.\";'),
+('es','messages:apiwarn-deprecation-parameter','s:48:\"El parámetro $1 ha quedado obsoleto.\";'),
+('es','messages:apiwarn-deprecation-parse-headitems','s:224:\"prop=headitems está en desuso desde MediaWiki 1.28. Usa prop=headhtml cuando crees nuevos documentos HTML, o prop=módulos|jsconfigvars cuando actualices un documento en el lado del cliente.\";'),
+('es','messages:apiwarn-deprecation-post-without-content-type','s:96:\"A POST request was made without a Content-Type header. This does not work reliably.\";'),
+('es','messages:apiwarn-deprecation-purge-get','s:84:\"El uso de action=purge mediante GET está obsoleto. Usa POST en su lugar.\";'),
+('es','messages:apiwarn-deprecation-withreplacement','s:70:\"$1 ha quedado obsoleto. En su lugar, utiliza $2.\";'),
+('es','messages:apiwarn-difftohidden','s:40:\"Couldn\'t diff to r$1: content is hidden.\";'),
+('es','messages:apiwarn-errorprinterfailed','s:48:\"Error printer failed. Will retry without params.\";'),
+('es','messages:apiwarn-ignoring-invalid-templated-value','s:83:\"Ignoring value $2 in $1 when processing templated parameters.\";'),
+('es','messages:apiwarn-invalidcategory','s:26:\"\"$1\" no es una categoría.\";'),
+('es','messages:apiwarn-invalidtitle','s:32:\"«$1» no es un título válido.\";'),
+('es','messages:apiwarn-invalidxmlstylesheet','s:58:\"La hoja de estilos especificada no es válida o no existe.\";'),
+('es','messages:apiwarn-invalidxmlstylesheetext','s:64:\"Las hojas de estilo deben tener la extensión .xsl.\";'),
+('es','messages:apiwarn-invalidxmlstylesheetns','s:76:\"La hoja de estilos debería estar en el espacio de nombres {{ns:MediaWiki}}.\";'),
+('es','messages:apiwarn-moduleswithoutvars','s:204:\"La propiedad modules está definida, pero no lo está jsconfigvars ni encodedjsconfigvars. Las variables de configuración son necesarias para el correcto uso del módulo.\";'),
+('es','messages:apiwarn-notfile','s:22:\"\"$1\" no es un archivo.\";'),
+('es','messages:apiwarn-nothumb-noimagehandler','s:95:\"No se pudo crear la miniatura porque «$1» no tiene ningún manipulador de imágenes asociado.\";'),
+('es','messages:apiwarn-parse-nocontentmodel','s:76:\"No se proporcionó title ni contentmodel. Se asume $1.\";'),
+('es','messages:apiwarn-parse-revidwithouttext','s:155:\"revid used without text, and parsed page properties were requested. Did you mean to use oldid instead of revid?\";'),
+('es','messages:apiwarn-parse-titlewithouttext','s:154:\"title used without text, and parsed page properties were requested. Did you mean to use page instead of title?\";'),
+('es','messages:apiwarn-redirectsandrevids','s:150:\"Redirect resolution cannot be used together with the revids parameter. Any redirects the revids point to have not been resolved.\";'),
+('es','messages:apiwarn-tokens-origin','s:70:\"Tokens may not be obtained when the same-origin policy is not applied.\";'),
+('es','messages:apiwarn-truncatedresult','s:89:\"Se ha truncado este resultado porque de otra manera sobrepasaría el límite de $1 bytes.\";'),
+('es','messages:apiwarn-unclearnowtimestamp','s:249:\"El paso de «$2» para el parámetro $1 de la marca de tiempo ha quedado obsoleto. Si por alguna razón necesitas especificar de forma explícita la hora actual sin calcularla desde el lado del cliente, utiliza now («ahora»).\";'),
+('es','messages:apiwarn-unrecognizedvalues','s:94:\"{{PLURAL:$3|Valor no reconocido|Valores no reconocidos}} para el parámetro $1: $2.\";'),
+('es','messages:apiwarn-unsupportedarray','s:58:\"Parameter $1 uses unsupported PHP array syntax.\";'),
+('es','messages:apiwarn-urlparamwidth','s:142:\"Ignoring width value set in $1urlparam ($2) in favor of width value derived from $1urlwidth/$1urlheight ($3).\";'),
+('es','messages:apiwarn-validationfailed','s:41:\"Error de validación de $1: $2\";'),
+('es','messages:apiwarn-validationfailed-badchars','s:159:\"caracteres no válidos en la clave (solamente se admiten los caracteres a-z, A-Z, 0-9, _ y -).\";'),
+('es','messages:apiwarn-validationfailed-badpref','s:30:\"no es una preferencia válida.\";'),
+('es','messages:apiwarn-validationfailed-cannotset','s:42:\"no puede ser establecido por este módulo.\";'),
+('es','messages:apiwarn-validationfailed-keytoolong','s:56:\"clave demasiado larga (no puede tener más de $1 bytes).\";'),
+('es','messages:apiwarn-wgdebugapi','s:76:\"Alerta de seguridad: $wgDebugAPI está activado.\";'),
+('es','messages:apr','s:3:\"abr\";'),
+('es','messages:april','s:5:\"abril\";'),
+('es','messages:april-gen','s:5:\"abril\";'),
+('es','messages:article','s:20:\"Página de contenido\";'),
+('es','messages:articleexists','s:92:\"Ya existe una página en [[:$1]], o el nombre que elegiste no es válido.\nElige otro nombre.\";'),
+('es','messages:aug','s:3:\"ago\";'),
+('es','messages:august','s:6:\"agosto\";'),
+('es','messages:august-gen','s:6:\"agosto\";'),
+('es','messages:authenticationdatachange-ignored','s:102:\"El cambio den los datos de autentificacion no fue realizado. ¿Tal vez, no se configuró un proveedor?\";'),
+('es','messages:authform-newtoken','s:15:\"Falta token. $1\";'),
+('es','messages:authform-nosession-login','s:96:\"La autenticación fue exitosa, pero tu navegador no «recuerda» haber accedido a la cuenta.\n\n$1\";'),
+('es','messages:authform-nosession-signup','s:84:\"Se ha creado la cuenta, pero tu navegador no «recuerda» haber accedido a ella.\n\n$1\";'),
+('es','messages:authform-notoken','s:14:\"Falta la ficha\";'),
+('es','messages:authform-wrongtoken','s:16:\"Ficha incorrecta\";'),
+('es','messages:authmanager-account-password-domain','s:5:\"$1@$2\";'),
+('es','messages:authmanager-authn-autocreate-failed','s:55:\"Falló la creación automática de una cuenta local: $1\";'),
+('es','messages:authmanager-authn-no-local-user','s:84:\"Las credenciales suministradas no están asociadas con ningún usuario en esta wiki.\";'),
+('es','messages:authmanager-authn-no-local-user-link','s:231:\"Las credenciales suministradas son válidas, pero no están asociadas con ningún usuario de esta wiki. Inicia sesión con un usuario diferente, o crea un nuevo usuario, para poder vincular tus credenciales anteriores a esa cuenta.\";'),
+('es','messages:authmanager-authn-no-primary','s:62:\"Las credenciales proporcionadas no se han podido autentificar.\";'),
+('es','messages:authmanager-authn-not-in-progress','s:122:\"La autenticación no está en curso o los datos de sesión se han perdido. Por favor, vuelve a empezar desde el principio.\";'),
+('es','messages:authmanager-autocreate-exception','s:95:\"La creación automática de cuentas ha sido temporalmente desactivada debido a errores previos.\";'),
+('es','messages:authmanager-autocreate-noperm','s:55:\"La creación automática de cuentas no está permitida.\";'),
+('es','messages:authmanager-change-not-supported','s:104:\"Las credenciales proporcionadas no se pueden cambiar, ya que no hay nada que fuera a hacer uso de ellas.\";'),
+('es','messages:authmanager-create-disabled','s:42:\"Está desactivada la creación de cuentas.\";'),
+('es','messages:authmanager-create-from-login','s:42:\"Para crear una cuenta, rellena los campos.\";'),
+('es','messages:authmanager-create-no-primary','s:79:\"Las credenciales suministradas no pueden usarse para la creación de la cuenta.\";'),
+('es','messages:authmanager-create-not-in-progress','s:134:\"El proceso de creación de la cuenta no está en progreso o se perdieron los datos de la sesión. Empieza de nuevo desde el principio.\";'),
+('es','messages:authmanager-domain-help','s:39:\"Dominio para la autenticación externa.\";'),
+('es','messages:authmanager-email-help','s:33:\"Dirección de correo electrónico\";'),
+('es','messages:authmanager-email-label','s:19:\"Correo electrónico\";'),
+('es','messages:authmanager-link-no-primary','s:79:\"Las credenciales proporcionadas no se han podido utilizar para enlazar cuentas.\";'),
+('es','messages:authmanager-link-not-in-progress','s:134:\"La vinculación de cuentas no está en curso o los datos de la sesión se han perdido. Por favor, vuelve a empezar desde el principio.\";'),
+('es','messages:authmanager-password-help','s:32:\"Contraseña para autenticación.\";'),
+('es','messages:authmanager-provider-password','s:36:\"Autenticación basada en contraseña\";'),
+('es','messages:authmanager-provider-password-domain','s:46:\"Autenticación basada en contraseña y dominio\";'),
+('es','messages:authmanager-provider-temporarypassword','s:20:\"Contraseña temporal\";'),
+('es','messages:authmanager-realname-help','s:23:\"Nombre real del usuario\";'),
+('es','messages:authmanager-realname-label','s:11:\"Nombre real\";'),
+('es','messages:authmanager-retype-help','s:39:\"La contraseña de nuevo para confirmar.\";'),
+('es','messages:authmanager-userdoesnotexist','s:38:\"El usuario «$1» no está registrado.\";'),
+('es','messages:authmanager-userlogin-remembermypassword-help','s:81:\"Si debe recordarse la contraseña por más tiempo que la duración de la sesión.\";'),
+('es','messages:authmanager-username-help','s:41:\"Nombre de usuario para la autenticación.\";'),
+('es','messages:authpage-cannot-create','s:46:\"No se puede iniciar la creación de la cuenta.\";'),
+('es','messages:authpage-cannot-create-continue','s:102:\"No se puede continuar con la creación de la cuenta. Lo más probable es que tu sesión haya expirado.\";'),
+('es','messages:authpage-cannot-link','s:49:\"No se puede iniciar la vinculación de la cuenta.\";'),
+('es','messages:authpage-cannot-link-continue','s:105:\"No se puede continuar con la vinculación de la cuenta. Lo más probable es que tu sesión haya expirado.\";'),
+('es','messages:authpage-cannot-login','s:31:\"No se puede iniciar la sesión.\";'),
+('es','messages:authpage-cannot-login-continue','s:97:\"No se puede continuar con el inicio de sesión. Lo más probable es que tu sesión haya expirado.\";'),
+('es','messages:authprovider-confirmlink-failed','s:60:\"La vinculación de cuentas no se ha realizado con éxito: $1\";'),
+('es','messages:authprovider-confirmlink-failed-line','s:6:\"$1: $2\";'),
+('es','messages:authprovider-confirmlink-message','s:212:\"Basado en tus últimos intentos para iniciar sesión, las siguientes cuentas pueden vincularse a tu cuenta wiki. Vincularlas permite iniciar sesión a través de esas cuentas. Selecciona cuáles deben vincularse.\";'),
+('es','messages:authprovider-confirmlink-ok-help','s:68:\"Continuar luego de mostrar los mensajes de error en la vinculación.\";'),
+('es','messages:authprovider-confirmlink-option','s:7:\"$1 ($2)\";'),
+('es','messages:authprovider-confirmlink-request-help','s:0:\"\";'),
+('es','messages:authprovider-confirmlink-request-label','s:32:\"Cuentas que deberían vincularse\";'),
+('es','messages:authprovider-confirmlink-success-line','s:27:\"$1: vinculado exitosamente.\";'),
+('es','messages:authprovider-resetpass-skip-help','s:46:\"Saltar el reestablecimiento de la contraseña.\";'),
+('es','messages:authprovider-resetpass-skip-label','s:6:\"Omitir\";'),
+('es','messages:autoblockedtext','s:723:\"Tu dirección IP ha sido bloqueada automáticamente porque fue utilizada por otro usuario, que resultó bloqueado por $1.\nEl motivo dado es el siguiente:\n\n:$2\n\n* Inicio del bloqueo: $8\n* Caducidad del bloqueo: $6\n* Bloqueo destinado a: $7\n\nPuedes contactar con $1 o con otro de los [[{{MediaWiki:Grouppage-sysop}}|administradores]] para discutir el bloqueo.\n\nPuedes utilizar la función «{{int:emailuser}}» si hayas registrado una dirección de correo electrónico válida en tus [[Special:Preferences|preferencias]] y la función no haya sido también bloqueada.\n\nTu dirección IP actual es $3, y el identificador del bloqueo es n.º $5.\nIncluye todos los datos aquí mostrados en cualquier consulta que hagas.\";'),
+('es','messages:autoblocker','s:149:\"Has sido bloqueado automáticamente porque tu dirección IP ha sido usada recientemente por «[[User:$1|$1]]».\nEl motivo del bloqueo a $1 es «$2».\";'),
+('es','messages:autoblockid','s:28:\"Bloqueo automático n.º $1\";'),
+('es','messages:autoblocklist','s:21:\"Bloqueos automáticos\";'),
+('es','messages:autoblocklist-empty','s:47:\"La lista de bloqueos automáticos está vacía.\";'),
+('es','messages:autoblocklist-legend','s:29:\"Mostrar bloqueos automáticos\";'),
+('es','messages:autoblocklist-localblocks','s:69:\"{{PLURAL:$1|Bloqueo automático local|Bloqueos automáticos locales}}\";'),
+('es','messages:autoblocklist-otherblocks','s:66:\"{{PLURAL:$1|Otro bloqueo automático|Otros bloqueos automáticos}}\";'),
+('es','messages:autoblocklist-submit','s:6:\"Buscar\";'),
+('es','messages:autoblocklist-total-autoblocks','s:42:\"Número total de bloqueos automáticos: $1\";'),
+('es','messages:autochange-username','s:31:\"Cambio automático de MediaWiki\";'),
+('es','messages:autocomment-prefix','s:0:\"\";'),
+('es','messages:autoredircomment','s:27:\"Página redirigida a [[$1]]\";'),
+('es','messages:autosumm-blank','s:18:\"Página blanqueada\";'),
+('es','messages:autosumm-changed-redirect-target','s:59:\"Se cambió el destino de la redirección de [[$1]] a [[$2]]\";'),
+('es','messages:autosumm-new','s:25:\"Página creada con «$1»\";'),
+('es','messages:autosumm-newblank','s:27:\"Se creó una página vacía\";'),
+('es','messages:autosumm-removed-redirect','s:40:\"Se eliminó la redirección hacia [[$1]]\";'),
+('es','messages:autosumm-replace','s:30:\"Página reemplazada por «$1»\";'),
+('es','messages:backend-fail-alreadyexists','s:26:\"El archivo \"$1\" ya existe.\";'),
+('es','messages:backend-fail-backup','s:55:\"No se pudo hacer copia de seguridad del archivo «$1».\";'),
+('es','messages:backend-fail-batchsize','s:170:\"Se ha proporcionado al sistema de almacenamiento un lote de $1 {{PLURAL:$1|operación|operaciones}} de archivos; el límite es de $2 {{PLURAL:$2|operación|operaciones}}.\";'),
+('es','messages:backend-fail-closetemp','s:38:\"No se pudo cerrar el archivo temporal.\";'),
+('es','messages:backend-fail-connect','s:60:\"No se pudo conectar con el sistema de almacenamiento «$1».\";'),
+('es','messages:backend-fail-contenttype','s:85:\"No se pudo determinar el tipo de contenido del archivo que se debe guardar en «$1».\";'),
+('es','messages:backend-fail-copy','s:51:\"No se ha podido copiar el archivo «$1» en «$2».\";'),
+('es','messages:backend-fail-create','s:36:\"No se pudo escribir el archivo \"$1\".\";'),
+('es','messages:backend-fail-delete','s:36:\"No se pudo borrar el archivo «$1».\";'),
+('es','messages:backend-fail-describe','s:54:\"No se pudieron cambiar los metadatos del archivo \"$1\".\";'),
+('es','messages:backend-fail-hash','s:67:\"No se pudo determinar el resumen criptográfico del archivo «$1».\";'),
+('es','messages:backend-fail-hashes','s:69:\"No se pudieron obtener los \"hashes\" de los archivos para compararlos.\";'),
+('es','messages:backend-fail-internal','s:76:\"Se ha producido un error desconocido en el sistema de almacenamiento «$1».\";'),
+('es','messages:backend-fail-invalidpath','s:43:\"$1 no es una ruta de almacenamiento válida\";'),
+('es','messages:backend-fail-maxsize','s:89:\"No se pudo escribir el archivo «$1» porque es mayor que {{PLURAL:$2|un byte|$2 bytes}}.\";'),
+('es','messages:backend-fail-move','s:44:\"No se pudo trasladar el archivo \"$1\" a \"$2\".\";'),
+('es','messages:backend-fail-notexists','s:26:\"El archivo $1 no existe.\";'),
+('es','messages:backend-fail-notsame','s:38:\"Ya existe un archivo distinto en \"$1\".\";'),
+('es','messages:backend-fail-opentemp','s:34:\"No se pudo crear archivo temporal.\";'),
+('es','messages:backend-fail-read','s:34:\"No se pudo leer el archivo «$1».\";'),
+('es','messages:backend-fail-readonly','s:112:\"El sistema de almacenamiento «$1» está actualmente en modo de solo lectura. La razón aducida es: $2\";'),
+('es','messages:backend-fail-sizes','s:63:\"No se pudo obtener el tamaño de los archivos para compararlos.\";'),
+('es','messages:backend-fail-stat','s:45:\"No se pudo leer el estado del archivo «$1».\";'),
+('es','messages:backend-fail-store','s:45:\"No se pudo almacenar el archivo \"$1\" en \"$2\".\";'),
+('es','messages:backend-fail-stream','s:40:\"No se pudo transmitir el archivo «$1».\";'),
+('es','messages:backend-fail-synced','s:104:\"El archivo «$1» se encuentra en un estado incoherente dentro de los sistemas de almacenamiento interno\";'),
+('es','messages:backend-fail-usable','s:116:\"No se pudo leer o escribir el archivo \"$1\" debido a permisos insuficientes o directorios/contenedores desaparecidos.\";'),
+('es','messages:backend-fail-writetemp','s:43:\"No se pudo escribir en el archivo temporal.\";'),
+('es','messages:backlinksubtitle','s:6:\"← $1\";'),
+('es','messages:bad-target-model','s:108:\"El destino deseado utiliza un modelo diferente de contenido. No se puede realizar la conversión de $1 a $2.\";'),
+('es','messages:bad_image_list','s:316:\"El formato es el siguiente:\n\nSolo se reconocen elementos de lista (líneas que comienzan con «*»).\nEl primer enlace de cada línea debe ser un enlace al archivo que se quiere bloquear.\nTodos los demás enlaces en la misma línea se tomarán como excepciones (es decir, páginas donde sí se puede usar el archivo).\";'),
+('es','messages:badaccess','s:17:\"Error de permisos\";'),
+('es','messages:badaccess-group0','s:54:\"No estás autorizado a ejecutar la acción solicitada.\";'),
+('es','messages:badaccess-groups','s:117:\"La acción que has solicitado está restringida a los usuarios {{PLURAL:$2|del grupo|de uno de estos $2 grupos}}: $1.\";'),
+('es','messages:badarticleerror','s:55:\"Esta acción no se puede llevar a cabo en esta página.\";'),
+('es','messages:badfilename','s:46:\"Se ha cambiado el nombre del archivo a «$1».\";'),
+('es','messages:badipaddress','s:46:\"La dirección IP no tiene el formato correcto.\";'),
+('es','messages:badretype','s:30:\"Las contraseñas no coinciden.\";'),
+('es','messages:badsig','s:67:\"El código de tu firma no es válido; comprueba las etiquetas HTML.\";'),
+('es','messages:badsightml','s:53:\"Tu firma contiene código HTML inválido o en desuso:\";'),
+('es','messages:badsiglength','s:92:\"Tu firma es muy larga.\nDebe contener un máximo de {{PLURAL:$1|un carácter|$1 caracteres}}.\";'),
+('es','messages:badsiglinebreak','s:60:\"Tu firma no puede exceder de una única línea de wikitexto.\";'),
+('es','messages:badsiglinks','s:155:\"Tu firma debe incluir un enlace bien a tu página de usuario, tu página de discusión o de contribuciones. Añádelo usando, por ejemplo, $1.\";'),
+('es','messages:badsigsubst','s:102:\"Tu firma contiene información anidada (ej. subst: o ~~~~ ).\";'),
+('es','messages:badtitle','s:18:\"Título incorrecto\";'),
+('es','messages:badtitletext','s:213:\"El título de la página solicitada no es válido, está vacío, o es un título entre idiomas o interwiki incorrectamente vinculado.\nPuede que contenga uno o más caracteres que no se pueden usar en los títulos.\";'),
+('es','messages:bitrate-bits','s:6:\"$1 bps\";'),
+('es','messages:bitrate-exabits','s:7:\"$1 Ebps\";'),
+('es','messages:bitrate-gigabits','s:7:\"$1 Gbps\";'),
+('es','messages:bitrate-kilobits','s:7:\"$1 kbps\";'),
+('es','messages:bitrate-megabits','s:7:\"$1 Mbps\";'),
+('es','messages:bitrate-petabits','s:7:\"$1 Pbps\";'),
+('es','messages:bitrate-terabits','s:7:\"$1 Tbps\";'),
+('es','messages:bitrate-yottabits','s:7:\"$1 Ybps\";'),
+('es','messages:bitrate-zettabits','s:7:\"$1 Zbps\";'),
+('es','messages:blankarticle','s:146:\"Atención: estás a punto de crear una página vacía.\nSi pulsas en «$1» de nuevo, se creará la página sin ningún contenido.\";'),
+('es','messages:blanknamespace','s:11:\"(Principal)\";'),
+('es','messages:blankpage','s:14:\"Página vacía\";'),
+('es','messages:block','s:16:\"Bloquear usuario\";'),
+('es','messages:block-actions','s:15:\"Tipo de bloqueo\";'),
+('es','messages:block-autoblock-exemptionlist','s:0:\"\";'),
+('es','messages:block-details','s:20:\"Detalles del bloqueo\";'),
+('es','messages:block-expiry','s:10:\"Caducidad:\";'),
+('es','messages:block-log-flags-angry-autoblock','s:31:\"autobloqueo avanzado habilitado\";'),
+('es','messages:block-log-flags-anononly','s:23:\"solo usuarios anónimos\";'),
+('es','messages:block-log-flags-hiddenname','s:26:\"nombre de usuario ocultado\";'),
+('es','messages:block-log-flags-noautoblock','s:31:\"bloqueo automático desactivado\";'),
+('es','messages:block-log-flags-nocreate','s:35:\"desactivada la creación de cuentas\";'),
+('es','messages:block-log-flags-noemail','s:31:\"correo electrónico desactivado\";'),
+('es','messages:block-log-flags-nousertalk','s:47:\"no puede editar su propia página de discusión\";'),
+('es','messages:block-options','s:21:\"Opciones adicionales:\";'),
+('es','messages:block-reason','s:7:\"Motivo:\";'),
+('es','messages:block-target','s:51:\"Nombre de usuario, dirección IP o intervalo de IP:\";'),
+('es','messages:block-target-placeholder','s:42:\"Nombre de usuario, 1.1.1.42, o 1.1.1.42/16\";'),
+('es','messages:blocked-mailpassword','s:162:\"Tu dirección IP está bloqueada para editar. Para prevenir abusos, no se permite el uso de la función de recuperación de contraseñas desde esta dirección IP.\";'),
+('es','messages:blocked-notice-logextract','s:200:\"{{GENDER:$1|Este usuario|Esta usuaria|Esta cuenta}} se encuentra actualmente bloquead{{GENDER:$1|o|a|a}}.\nA continuación se muestra la última entrada del registro de bloqueos para más información:\";'),
+('es','messages:blockednoreason','s:31:\"no se ha especificado el motivo\";'),
+('es','messages:blockedtext','s:715:\"Se ha bloqueado tu nombre de usuario o dirección IP.\n\nEl bloqueo fue realizado por $1.\nEl motivo dado es el siguiente: $2.\n\n* Inicio del bloqueo: $8\n* Caducidad del bloqueo: $6\n* Bloqueo destinado a: $7\n\nPuedes contactar con $1 o con otro de los [[{{MediaWiki:Grouppage-sysop}}|administradores]] para discutir el bloqueo.\nPuedes utilizar la función «{{int:emailuser}}» si hayas registrado una dirección de correo electrónico válida en tus [[Special:Preferences|preferencias]] y la función no haya sido también bloqueada.\nTu dirección IP actual es $3, y el identificador del bloqueo es el n.º $5.\nPor favor incluye todos los datos aquí mostrados en cualquier consulta que hagas.\";'),
+('es','messages:blockedtext-composite','s:294:\"Tu nombre de usuario o dirección IP han sido bloqueados.\n\nLa razón es:\n\n:$2.\n\n* Inicio del bloqueo: $8\n* Vencimiento del bloqueo más largo: $6\n\n* $5\n\nTu dirección IP actual es $3.\nPor favor, incluye todos los detalles anteriores en cualquier consulta que realices.\";'),
+('es','messages:blockedtext-composite-ids','s:115:\"Identificadores de bloqueo relevantes: $1 (tu dirección IP puede encontrarse también en alguna lista de bloqueos)\";'),
+('es','messages:blockedtext-composite-no-ids','s:52:\"Tu dirección IP figura en varias listas de bloqueos\";'),
+('es','messages:blockedtext-composite-reason','s:56:\"Existen varios bloqueos contra tu cuenta o dirección IP\";'),
+('es','messages:blockedtext-partial','s:402:\"Tu nombre de usuario o dirección IP está bloqueada para hacer esto. Aún puedes editar otros páginas en esta wiki. Puedes ver los detalles completos de bloqueo en [[Special:MyContributions|contribuciones de la cuenta]].\n\nEl bloqueo fue hecho por $1.\n\nLa razón dada es $2.\n\n* Inicio del bloqueo: $8\n* Caducidad del bloqueo: $6\n* Bloqueo destinado a: $7\n* ID del bloqueo: $5\";'),
+('es','messages:blockedtitle','s:26:\"El usuario está bloqueado\";'),
+('es','messages:blockip','s:46:\"Bloquear {{GENDER:$1|al usuario|a la usuaria}}\";'),
+('es','messages:blockipsuccesssub','s:28:\"Bloqueo realizado con éxito\";'),
+('es','messages:blockipsuccesstext','s:124:\"\"[[Special:Contributions/$1|$1]]\" ha sido bloqueado.$1, que difiere del modelo actual de contenido de la página $2.\";'),
+('es','messages:continue-editing','s:23:\"Ir al área de edición\";'),
+('es','messages:contribslink','s:9:\"contribs.\";'),
+('es','messages:contribsub2','s:26:\"Para {{GENDER:$3|$1}} ($2)\";'),
+('es','messages:contributions','s:26:\"Contribuciones del usuario\";'),
+('es','messages:contributions-subtitle','s:21:\"Para {{GENDER:$3|$1}}\";'),
+('es','messages:contributions-summary','s:0:\"\";'),
+('es','messages:contributions-title','s:57:\"Contribuciones {{GENDER:$1|del usuario|de la usuaria}} $1\";'),
+('es','messages:contributions-userdoesnotexist','s:48:\"La cuenta de usuario «$1» no está registrada.\";'),
+('es','messages:converter-manual-rule-error','s:69:\"Se ha detectado un error en una regla manual de conversión de idioma\";'),
+('es','messages:copyright','s:86:\"El contenido está disponible bajo la licencia $1 a menos que se indique lo contrario.\";'),
+('es','messages:copyrightpage','s:32:\"{{ns:project}}:Derechos de autor\";'),
+('es','messages:copyrightwarning','s:437:\"Ten en cuenta que todas las contribuciones a {{SITENAME}} se consideran publicadas bajo la $2 (véase $1 para más información). Si no deseas que las modifiquen sin limitaciones y las distribuyan libremente, no las publiques aquí.$wgDefaultSkin como $1, no está disponible.\n\nLa instalación parece contener {{PLURAL:$4|la siguiente apariencia|las siguientes apariencias}}. Revisa [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration Manual:Configuración de apariencias] para más información sobre cómo {{PLURAL:$4|activarla|activarlas y seleccionar la predeterminada}}.\n\n$2\n\n; Si acabas de instalar MediaWiki:\n: Probablemente la hayas instalado desde git, o directamente desde el código fuente usando algún otro método. Es normal que ocurra esto. Intenta instalar algunas apariencias desde [https://www.mediawiki.org/wiki/Category:All_skins el directorio de apariencias de mediawiki.org] ya sea:\n:* Descargando [https://www.mediawiki.org/wiki/Special:MyLanguage/Download el instalador tarball], el cual contiene varias apariencias y extensiones. Puedes copiar y pegar el directorio skins/ de ahí.\n:* Descargando tarballs individuales de cada apariencia de [https://www.mediawiki.org/wiki/Special:SkinDistributor mediawiki.org].\n:* [https://www.mediawiki.org/wiki/Special:MyLanguage/Download_from_Git#Using_Git_to_download_MediaWiki_skins Usando Git para descargar apariencias].\n: Hacer esto no debería interferir con tu repositorio git si eres un desarrollador de MediaWiki.\n\n; Si acabas de actualizar MediaWiki:\n: A partir de MediaWiki 1.24 ya no se activan automáticamente las apariencias instaladas (revisa [https://www.mediawiki.org/wiki/Manual:Skin_autodiscovery Manual: Skin autodiscovery]). Puedes pegar {{PLURAL:$5|la siguiente línea|las siguientes líneas}} en LocalSettings.php para activar {{PLURAL:$5|la apariencia instalada|todas las apariencias instaladas}}:\n\n$3\n\n; Si acabas de modificar
LocalSettings.php:\n: Comprueba detenidamente posibles errores tipográficos en los nombres de las apariencias.\";'),
+('es','messages:default-skin-not-found-no-skins','s:1423:\"¡Vaya! La apariencia predeterminada de tu wiki, definida en $wgDefaultSkin como $1, no está disponible.\n\nNo tienes apariencias instaladas.\n\n; Si has instalado o actualizado MediaWiki recientemente:\n: Probablemente has instalado desde git, o directamente desde el código fuente usando algún otro método. Esto puede ocurrir en este caso. A partir de MediaWiki 1.24 ya no se incluye ninguna apariencia en el repositorio principal. Trata de instalar algunas apariencias desde el [https://www.mediawiki.org/wiki/Category:All_skins directorio de apariencias de mediawiki.org], ya sea:\n:* Descargando el [https://www.mediawiki.org/wiki/Special:MyLanguage/Download instalador tarball], que viene con varias apariencias y extensiones. Puedes copiar y pegar el directorio skins/ desde ahí.\n:* Descargando tarballs individuales de cada apariencia de [https://www.mediawiki.org/wiki/Special:SkinDistributor mediawiki.org].\n:* [https://www.mediawiki.org/wiki/Special:MyLanguage/Download_from_Git#Using_Git_to_download_MediaWiki_skins Usando Git para descargar apariencias].\n: Hacer esto no debería interferir con tu repositorio de MediaWiki si eres un desarrollador de MediaWiki. Revisa [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration Manual:Configuración de apariencias] para información sobre cómo habilitar las apariencias y seleccionar la predeterminada.\";'),
+('es','messages:default-skin-not-found-row-disabled','s:53:\"* $1 / $2 (desactivada)\";'),
+('es','messages:default-skin-not-found-row-enabled','s:33:\"* $1 / $2 (activada)\";'),
+('es','messages:defaultmessagetext','s:20:\"Texto predeterminado\";'),
+('es','messages:defemailsubject','s:68:\"Correo electrónico enviado por el usuario «$1» desde {{SITENAME}}\";'),
+('es','messages:deflate-invaliddeflate','s:59:\"El contenido proporcionado no esta comprimido correctamente\";'),
+('es','messages:delete','s:6:\"Borrar\";'),
+('es','messages:delete-confirm','s:13:\"Borrar «$1»\";'),
+('es','messages:delete-edit-reasonlist','s:25:\"Editar razones de borrado\";'),
+('es','messages:delete-edit-reasonlist-suppress','s:28:\"Editar motivos de supresión\";'),
+('es','messages:delete-error-associated-alreadytalk','s:84:\"No se puede eliminar la página de discusión asociada de una página de discusión.\";'),
+('es','messages:delete-error-associated-doesnotexist','s:68:\"No se puede eliminar una página de discusión asociada inexistente.\";'),
+('es','messages:delete-hook-aborted','s:83:\"Una extensión ha evitado el borrado de la página. No hay explicación disponible.\";'),
+('es','messages:delete-legend','s:6:\"Borrar\";'),
+('es','messages:delete-scheduled','s:75:\"La página «$1» está programada para su borrado.\nPor favor sé paciente.\";'),
+('es','messages:delete-talk-summary-prefix','s:71:\"Eliminada junto con la página de discusión asociada con la razón: $1\";'),
+('es','messages:delete-toobig','s:193:\"Esta página tiene un historial muy grande, con más de $1 {{PLURAL:$1|revisión|revisiones}}. Borrar este tipo de páginas ha sido restringido para prevenir posibles problemas en {{SITENAME}}.\";'),
+('es','messages:delete-toomanyrevisions','s:178:\"Estás intentando eliminar más de $1 {{PLURAL:$1|revisión|revisiones}} al mismo tiempo. Tal operación ha sido restringida para prevenir una ruptura accidental de {{SITENAME}}.\";'),
+('es','messages:delete-warning-toobig','s:182:\"Esta página tiene un historial de más de $1 {{PLURAL:$1|revisión|revisiones}}.\nEliminarla puede perturbar las operaciones de la base de datos de {{SITENAME}}.\nProcede con cautela.\";'),
+('es','messages:delete_and_move_confirm','s:22:\"Sí, borrar la página\";'),
+('es','messages:delete_and_move_reason','s:45:\"Borrada para permitir el traslado de \"[[$1]]\"\";'),
+('es','messages:delete_and_move_text','s:90:\"La página de destino «[[:$1]]» ya existe.\n¿Quieres borrarla para permitir el traslado?\";'),
+('es','messages:delete_redirect_and_move_text','s:108:\"La página de destino «[[:$1]]» ya existe como redirección.\n¿Quieres borrarla para permitir el traslado?\";'),
+('es','messages:deletecomment','s:7:\"Motivo:\";'),
+('es','messages:deletedarticle','s:16:\"deleted \"[[$1]]\"\";'),
+('es','messages:deletedcontributions','s:34:\"Contribuciones borradas de usuario\";'),
+('es','messages:deletedcontributions-summary','s:0:\"\";'),
+('es','messages:deletedcontributions-title','s:29:\"Contribuciones borradas de $1\";'),
+('es','messages:deletedhist','s:17:\"Historial borrado\";'),
+('es','messages:deletedrevision','s:28:\"Borrada revisión antigua $1\";'),
+('es','messages:deletedtext','s:77:\"«$1» ha sido borrado.\nVéase $2 para un registro de los borrados recientes.\";'),
+('es','messages:deletedwhileediting','s:84:\"Aviso: se borró esta página después de que empezaras a editarla.\";'),
+('es','messages:deleteotherreason','s:12:\"Otro motivo:\";'),
+('es','messages:deletepage','s:14:\"Borrar página\";'),
+('es','messages:deletepage-submit','s:14:\"Borrar página\";'),
+('es','messages:deletepage-summary','s:0:\"\";'),
+('es','messages:deleteprotected','s:57:\"No puedes eliminar esta página porque ha sido protegida.\";'),
+('es','messages:deletereason-dropdown','s:135:\"* Razones comunes de borrado\n** Spam\n** Vandalismo\n** Violación de derechos de autor\n** Petición del autor\n** Redirección incorrecta\";'),
+('es','messages:deletereason-dropdown-suppress','s:0:\"\";'),
+('es','messages:deletereasonotherlist','s:11:\"Otro motivo\";'),
+('es','messages:deleting-backlinks-warning','s:148:\"Atención: [[Special:WhatLinksHere/{{FULLPAGENAME}}|otras páginas]] enlazan o transcluyen la página que estás a punto de borrar.\";'),
+('es','messages:deleting-subpages-warning','s:186:\"Atención: la página que estás a punto de borrar tiene [[Special:PrefixIndex/{{FULLPAGENAME}}/|{{PLURAL:$1|una subpágina|$1 subpáginas|51=más de 50 subpáginas}}]].\";'),
+('es','messages:deletionlog','s:20:\"registro de borrados\";'),
+('es','messages:dellogpage','s:20:\"Registro de borrados\";'),
+('es','messages:dellogpagetext','s:68:\"A continuación se muestra una lista de los borrados más recientes.\";'),
+('es','messages:destfilename','s:30:\"Nombre del archivo de destino:\";'),
+('es','messages:diff','s:5:\"difs.\";'),
+('es','messages:diff-empty','s:17:\"(Sin diferencias)\";'),
+('es','messages:diff-form','s:11:\"Diferencias\";'),
+('es','messages:diff-form-error-revid','s:36:\"Ingrese el ID de revisión numérico\";'),
+('es','messages:diff-form-oldid','s:36:\"Id. de revisión anterior (opcional)\";'),
+('es','messages:diff-form-other-revid','s:16:\"Id. de revisión\";'),
+('es','messages:diff-form-revid','s:45:\"Identificador de revisión de las diferencias\";'),
+('es','messages:diff-form-submit','s:19:\"Mostrar diferencias\";'),
+('es','messages:diff-form-summary','s:0:\"\";'),
+('es','messages:diff-multi-manyusers','s:135:\"(No se {{PLURAL:$1|muestra una edición intermedia|muestran $1 ediciones intermedias}} de más de {{PLURAL:$2|un usuario|$2 usuarios}})\";'),
+('es','messages:diff-multi-otherusers','s:129:\"(No se {{PLURAL:$1|muestra una edición intermedia|muestran $1 ediciones intermedias}} de {{PLURAL:$2|otro usuario|$2 usuarios}})\";'),
+('es','messages:diff-multi-sameuser','s:105:\"(No se {{PLURAL:$1|muestra una edición intermedia|muestran $1 ediciones intermedias}} del mismo usuario)\";'),
+('es','messages:diff-paragraph-moved-tonew','s:66:\"Se trasladó el párrafo. Pulsa para saltar a la ubicación nueva.\";'),
+('es','messages:diff-paragraph-moved-toold','s:69:\"Se trasladó el párrafo. Pulsa para saltar a la ubicación anterior.\";'),
+('es','messages:difference-missing-revision','s:333:\"No se {{PLURAL:$2|ha encontrado una revisión|han encontrado $2 revisiones}} de la comparación solicitada ($1).\n\nLa causa de esto suele ser un enlace obsoleto hacia una edición de una página que ha sido borrada.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} registro de borrados].\";'),
+('es','messages:difference-multipage','s:31:\"(Diferencia entre las páginas)\";'),
+('es','messages:difference-title','s:37:\"Diferencia entre revisiones de «$1»\";'),
+('es','messages:difference-title-multipage','s:45:\"Diferencia entre las páginas «$1» y «$2»\";'),
+('es','messages:directorycreateerror','s:43:\"No se ha podido crear el directorio «$1».\";'),
+('es','messages:directorynotreadableerror','s:50:\"El directorio «$1» no tiene permisos de lectura.\";'),
+('es','messages:directoryreadonlyerror','s:40:\"El directorio «$1» es de solo lectura.\";'),
+('es','messages:disabledspecialpage-disabled','s:66:\"Esta página ha sido desactivada por el administrador del sistema.\";'),
+('es','messages:disclaimerpage','s:24:\"Project:Descargo general\";'),
+('es','messages:disclaimers','s:9:\"Descargos\";'),
+('es','messages:djvu_no_xml','s:42:\"Imposible obtener XML para el archivo DjVu\";'),
+('es','messages:djvu_page_error','s:34:\"Página DjVu fuera de los límites\";'),
+('es','messages:double-redirect-fixed-maintenance','s:100:\"Corrección automática de redirección doble de [[$1]] a [[$2]] mediante una tarea de mantenimiento\";'),
+('es','messages:double-redirect-fixed-move','s:82:\"[[$1]] se ha trasladado.\nSe actualizó automáticamente y ahora redirige a [[$2]].\";'),
+('es','messages:double-redirect-fixer','s:26:\"Corrector de redirecciones\";'),
+('es','messages:doubleredirects','s:20:\"Redirecciones dobles\";'),
+('es','messages:doubleredirects-summary','s:0:\"\";'),
+('es','messages:doubleredirectstext','s:371:\"Esta página contiene una lista de páginas que redirigen a otras páginas de redirección.\nCada fila contiene enlaces a la segunda y tercera redirección, así como la primera línea de la segunda redirección, en la que usualmente se encontrará el artículo «real» al que la primera redirección debería apuntar.\nLas entradas {{foo|bar=1|bar=2}} o {{foo|bar|1=baz}} .\";'),
+('es','messages:duplicate-args-warning','s:142:\"Aviso: [[:$1]] llama a [[:$2]] con más de un valor para el parámetro «$3». Se usará solo el último valor proporcionado.\";'),
+('es','messages:duplicate-defaultsort','s:124:\"Advertencia: la clave de ordenamiento predeterminada «$2» anula la clave de ordenamiento anterior «$1».\";'),
+('es','messages:duplicate-displaytitle','s:88:\"Advertencia: El título visualizado \"$2\" sobreescribe al anterior \"$1\".\";'),
+('es','messages:duplicatesoffile','s:153:\"{{PLURAL:$1|El siguiente archivo es un duplicado|Los siguientes $1 archivos son duplicados}} de éste ([[Special:FileDuplicateSearch/$2|más detalles]]):\";'),
+('es','messages:duration-centuries','s:29:\"$1 {{PLURAL:$1|siglo|siglos}}\";'),
+('es','messages:duration-days','s:27:\"$1 {{PLURAL:$1|día|días}}\";'),
+('es','messages:duration-decades','s:33:\"$1 {{PLURAL:$1|década|décadas}}\";'),
+('es','messages:duration-hours','s:27:\"$1 {{PLURAL:$1|hora|horas}}\";'),
+('es','messages:duration-millennia','s:33:\"$1 {{PLURAL:$1|milenio|milenios}}\";'),
+('es','messages:duration-minutes','s:31:\"$1 {{PLURAL:$1|minuto|minutos}}\";'),
+('es','messages:duration-seconds','s:33:\"$1 {{PLURAL:$1|segundo|segundos}}\";'),
+('es','messages:duration-weeks','s:31:\"$1 {{PLURAL:$1|semana|semanas}}\";'),
+('es','messages:duration-years','s:27:\"$1 {{PLURAL:$1|año|años}}\";'),
+('es','messages:eauthentsent','s:251:\"Se ha enviado un correo electrónico de confirmación a la dirección especificada.\nAntes de que se envíe cualquier otro correo a la cuenta tienes que seguir las instrucciones enviadas en el mensaje para así confirmar que la dirección te pertenece.\";'),
+('es','messages:edit','s:6:\"Editar\";'),
+('es','messages:edit-already-exists','s:46:\"No se pudo crear una página nueva.\nYa existe.\";'),
+('es','messages:edit-conflict','s:22:\"Conflicto de edición.\";'),
+('es','messages:edit-error-long','s:12:\"Errores:\n\n$1\";'),
+('es','messages:edit-error-short','s:9:\"Error: $1\";'),
+('es','messages:edit-gone-missing','s:65:\"No se ha podido actualizar la página.\nParece haber sido borrada.\";'),
+('es','messages:edit-hook-aborted','s:70:\"Una extensión ha evitado la edición.\nNo hay explicación disponible.\";'),
+('es','messages:edit-local','s:25:\"Editar descripción local\";'),
+('es','messages:edit-no-change','s:68:\"Se ignoró tu edición porque no se hizo ningún cambio en el texto.\";'),
+('es','messages:edit-slots-cannot-add','s:82:\"{{PLURAL:$1|El siguiente espacio|Los siguientes espacios}} no son compatibles: $2.\";'),
+('es','messages:edit-slots-cannot-remove','s:137:\"Se {{PLURAL:$1|requiere el siguiente espacio y no puede ser eliminado|requieren los siguientes espacios y no pueden ser eliminados}}: $2.\";'),
+('es','messages:edit-slots-missing','s:75:\"{{PLURAL:$1|Falta el siguiente espacio|Faltan los siguientes espacios}}: $2\";'),
+('es','messages:edit-textarea-aria-label','s:19:\"Editor de wikitexto\";'),
+('es','messages:edit_form_incomplete','s:145:\"Una parte del formulario de edición no ha llegado al servidor. Comprueba que tus cambios están intactos e inténtalo de nuevo.\";'),
+('es','messages:editcomment','s:43:\"El resumen de la edición fue: $1.\";'),
+('es','messages:editconflict','s:25:\"Conflicto de edición: $1\";'),
+('es','messages:editfont-monospace','s:27:\"Tipo de letra monoespaciado\";'),
+('es','messages:editfont-sansserif','s:17:\"Fuente Sans-serif\";'),
+('es','messages:editfont-serif','s:12:\"Fuente Serif\";'),
+('es','messages:editfont-style','s:36:\"Tipo de letra del área de edición:\";'),
+('es','messages:edithelp','s:17:\"Ayuda de edición\";'),
+('es','messages:edithelppage','s:68:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Editing_pages\";'),
+('es','messages:editing','s:18:\"Edición de «$1»\";'),
+('es','messages:editingcomment','s:35:\"Edición de «$1» (sección nueva)\";'),
+('es','messages:editinginterface','s:221:\"Advertencia: estás editando una página usada para proporcionar texto de la interfaz al software. \nLos cambios en esta página afectarán la apariencia de la interfaz de los demás usuarios de esta wiki.\";'),
+('es','messages:editingold','s:171:\"Advertencia: estás editando sobre una revisión antigua de esta página.\nSi la publicas, se perderá cualquier otro cambio realizado desde esa revisión.\";'),
+('es','messages:editingsection','s:22:\"Editando $1 (sección)\";'),
+('es','messages:editinguser','s:74:\"Cambio de usuario de {{GENDER:$1|user}} [[User:$1|$1]] $2\";'),
+('es','messages:editlink','s:6:\"editar\";'),
+('es','messages:editnotice-notext','s:1:\"-\";'),
+('es','messages:editold','s:6:\"editar\";'),
+('es','messages:editpage','s:18:\"Editar una página\";'),
+('es','messages:editpage-cannot-use-custom-model','s:59:\"El modelo de contenido de esta página no se puede cambiar.\";'),
+('es','messages:editpage-head-copy-warn','s:1:\"-\";'),
+('es','messages:editpage-invalidcontentmodel-text','s:43:\"El modelo de contenido «$1» no se admite.\";'),
+('es','messages:editpage-invalidcontentmodel-title','s:31:\"Modelo de contenido no admitido\";'),
+('es','messages:editpage-notsupportedcontentformat-text','s:74:\"El formato de contenido $1 no es compatible con el modelo de contenido $2.\";'),
+('es','messages:editpage-notsupportedcontentformat-title','s:34:\"Formato de contenido no compatible\";'),
+('es','messages:editpage-summary','s:0:\"\";'),
+('es','messages:editpage-tos-summary','s:1:\"-\";'),
+('es','messages:editsection','s:6:\"editar\";'),
+('es','messages:editsectionhint','s:19:\"Editar sección: $1\";'),
+('es','messages:edittools','s:73:\"\";'),
+('es','messages:edittools-upload','s:1:\"-\";'),
+('es','messages:editundo','s:8:\"deshacer\";'),
+('es','messages:editusergroup','s:25:\"Cargar grupos de usuarios\";'),
+('es','messages:editwatchlist-summary','s:0:\"\";'),
+('es','messages:ellipsis','s:3:\"…\";'),
+('es','messages:email','s:19:\"Correo electrónico\";'),
+('es','messages:email-allow-new-users-label','s:46:\"Permitir mensajes de correo de usuarios nuevos\";'),
+('es','messages:email-legend','s:60:\"Enviar un correo electrónico a otro usuario de {{SITENAME}}\";'),
+('es','messages:email-mutelist-label','s:54:\"Prohibir a estos usuarios enviarme mensajes de correo:\";'),
+('es','messages:emailauthenticated','s:67:\"Tu dirección de correo electrónico fue confirmada el $2 a las $3.\";'),
+('es','messages:emailblock','s:29:\"correo electrónico bloqueado\";'),
+('es','messages:emailccme','s:33:\"Enviarme una copia de mi mensaje.\";'),
+('es','messages:emailccsubject','s:28:\"Copia de tu mensaje a $1: $2\";'),
+('es','messages:emailconfirmlink','s:43:\"Confirmar dirección de correo electrónico\";'),
+('es','messages:emaildisabled','s:49:\"Este sitio no puede enviar correos electrónicos.\";'),
+('es','messages:emailfrom','s:3:\"De:\";'),
+('es','messages:emaillink','s:26:\"enviar correo electrónico\";'),
+('es','messages:emailmessage','s:8:\"Mensaje:\";'),
+('es','messages:emailnotarget','s:65:\"Nombre de usuario no existente o no válido para el destinatario.\";'),
+('es','messages:emailnotauthenticated','s:130:\"Aún no has confirmado tu dirección de correo electrónico.\nHasta que lo hagas, las siguientes funciones no estarán disponibles.\";'),
+('es','messages:emailpagetext','s:304:\"Puedes usar el formulario de abajo para enviar un correo electrónico a {{GENDER:$1|este usuario|esta usuaria}}.\nLa dirección de correo electrónico que indicaste en [[Special:Preferences|tus preferencias de usuario]] aparecerá en el campo \"Remitente\" o \"De\" para que el destinatario pueda responderte.\";'),
+('es','messages:emailsend','s:6:\"Enviar\";'),
+('es','messages:emailsender','s:12:\"{{SITENAME}}\";'),
+('es','messages:emailsent','s:27:\"Correo electrónico enviado\";'),
+('es','messages:emailsenttext','s:48:\"Se ha enviado tu mensaje de correo electrónico.\";'),
+('es','messages:emailsubject','s:7:\"Asunto:\";'),
+('es','messages:emailtarget','s:45:\"Escribe el nombre de usuario del destinatario\";'),
+('es','messages:emailto','s:5:\"Para:\";'),
+('es','messages:emailuser','s:83:\"Enviar un mensaje de correo a {{GENDER:{{BASEPAGENAME}}|este usuario|esta usuaria}}\";'),
+('es','messages:emailuser-summary','s:0:\"\";'),
+('es','messages:emailuser-title-notarget','s:40:\"Enviar un correo electrónico al usuario\";'),
+('es','messages:emailuser-title-target','s:59:\"Enviar un mensaje a {{GENDER:$1|este usuario|esta usuaria}}\";'),
+('es','messages:emailuserfooter','s:344:\"Este correo electrónico fue {{GENDER:$1|enviado}} por $1 a {{GENDER:$2|$2}} a través de la función «{{int:emailuser}}» en {{SITENAME}}. Si {{GENDER:$2|respondes}}, tu correo electrónico se enviará directamente {{GENDER:$1|al emisor|a la emisora}} original, y {{GENDER:$1|le}} revelará {{GENDER:$2|tu}} dirección de correo electrónico.\";'),
+('es','messages:emailusername','s:18:\"Nombre de usuario:\";'),
+('es','messages:emailusernamesubmit','s:6:\"Enviar\";'),
+('es','messages:empty-file','s:38:\"El archivo que enviaste estaba vacío.\";'),
+('es','messages:empty-username','s:33:\"(nombre de usuario no disponible)\";'),
+('es','messages:emptyfile','s:132:\"El archivo que has intentado subir parece estar vacío; por favor, verifica que realmente se trate del archivo que intentabas subir.\";'),
+('es','messages:enhancedrc-history','s:9:\"historial\";'),
+('es','messages:enhancedrc-since-last-visit','s:40:\"$1 {{PLURAL:$1|desde la última visita}}\";'),
+('es','messages:enotif_anon_editor','s:19:\"usuario anónimo $1\";'),
+('es','messages:enotif_body','s:773:\"Hola, $WATCHINGUSERNAME:\n\n$PAGEINTRO $NEWPAGE\n\nResumen del editor: $PAGESUMMARY $PAGEMINOREDIT\n\nContacta con el editor:\ncorreo: $PAGEEDITOR_EMAIL\nwiki: $PAGEEDITOR_WIKI\n\nNo enviaremos más notificaciones si ocurre más actividad, a menos que visites esta página con la sesión iniciada. También puedes restablecer los estados de notificación en todas las páginas de tu lista de seguimiento.\n\nAtentamente, el sistema de notificaciones de {{SITENAME}}\n\n--\nPara cambiar tus ajustes de notificación por correo, visita\n{{canonicalurl:{{#special:Preferences}}}}\n\nPara cambiar los ajustes de tu lista de seguimiento, visita\n{{canonicalurl:{{#special:EditWatchlist}}}}\n\nPara quitar la página de tu lista de seguimiento, visita\n$UNWATCHURL\n\nPara ayuda y comentarios:\n$HELPPAGE\";'),
+('es','messages:enotif_body_intro_changed','s:121:\"La página $1 de {{SITENAME}} ha sido cambiada el $PAGEEDITDATE por {{GENDER:$2|$2}}, véase $3 para la revisión actual.\";'),
+('es','messages:enotif_body_intro_created','s:119:\"La página $1 de {{SITENAME}} ha sido creada el $PAGEEDITDATE por {{GENDER:$2|$2}}, véase $3 para la revisión actual.\";'),
+('es','messages:enotif_body_intro_deleted','s:95:\"La página $1 de {{SITENAME}} ha sido borrada el $PAGEEDITDATE por {{GENDER:$2|$2}}, véase $3.\";'),
+('es','messages:enotif_body_intro_moved','s:123:\"La página $1 de {{SITENAME}} ha sido trasladada el $PAGEEDITDATE por {{GENDER:$2|$2}}, véase $3 para la revisión actual.\";'),
+('es','messages:enotif_body_intro_restored','s:123:\"La página $1 de {{SITENAME}} ha sido restaurada el $PAGEEDITDATE por {{GENDER:$2|$2}}, véase $3 para la revisión actual.\";'),
+('es','messages:enotif_impersonal_salutation','s:23:\"usuario de {{SITENAME}}\";'),
+('es','messages:enotif_lastdiff','s:32:\"Consulta $1 para ver este cambio\";'),
+('es','messages:enotif_lastvisited','s:62:\"Consulta $1 para ver todos los cambios desde tu última visita\";'),
+('es','messages:enotif_minoredit','s:26:\"Esta es una edición menor\";'),
+('es','messages:enotif_reset','s:40:\"Marcar todas las páginas como visitadas\";'),
+('es','messages:enotif_subject_changed','s:54:\"$2 {{GENDER:$2|cambió}} la página $1 de {{SITENAME}}\";'),
+('es','messages:enotif_subject_created','s:52:\"$2 {{GENDER:$2|creó}} la página $1 de {{SITENAME}}\";'),
+('es','messages:enotif_subject_deleted','s:53:\"$2 {{GENDER:$2|borró}} la página $1 de {{SITENAME}}\";'),
+('es','messages:enotif_subject_moved','s:56:\"$2 {{GENDER:$2|trasladó}} la página $1 de {{SITENAME}}\";'),
+('es','messages:enotif_subject_restored','s:56:\"$2 {{GENDER:$2|restauró}} la página $1 de {{SITENAME}}\";'),
+('es','messages:enterlockreason','s:99:\"Proporciona el motivo del bloqueo, así como una estimación de cuándo se producirá el desbloqueo\";'),
+('es','messages:error','s:5:\"Error\";'),
+('es','messages:errorpagetitle','s:5:\"Error\";'),
+('es','messages:exbeforeblank','s:43:\"el contenido antes de blanquear era: «$1»\";'),
+('es','messages:exception-nologin','s:15:\"No has accedido\";'),
+('es','messages:exception-nologin-text','s:69:\"Necesitas acceder para ver esta página o llevar a cabo esta acción.\";'),
+('es','messages:exception-nologin-text-manual','s:70:\"Necesitas $1 para poder ver esta página o llevar a cabo esta acción.\";'),
+('es','messages:excontent','s:24:\"el contenido era: «$1»\";'),
+('es','messages:excontentauthor','s:113:\"el contenido era: «$1», y el único autor fue «[[Special:Contributions/$2|$2]]» ([[User talk:$2|discusión]])\";'),
+('es','messages:exif-aperturevalue','s:13:\"Apertura APEX\";'),
+('es','messages:exif-artist','s:5:\"Autor\";'),
+('es','messages:exif-attributionurl','s:50:\"Cuando reutilices este trabajo, por favor enlaza a\";'),
+('es','messages:exif-bitspersample','s:19:\"Bits por componente\";'),
+('es','messages:exif-brightnessvalue','s:11:\"Brillo APEX\";'),
+('es','messages:exif-cameraownername','s:25:\"Propietario de la cámara\";'),
+('es','messages:exif-citycreated','s:35:\"Ciudad en la que se tomó la imagen\";'),
+('es','messages:exif-citydest','s:15:\"Ciudad mostrada\";'),
+('es','messages:exif-colorspace','s:16:\"Espacio de color\";'),
+('es','messages:exif-colorspace-1','s:4:\"sRGB\";'),
+('es','messages:exif-colorspace-65535','s:12:\"Sin calibrar\";'),
+('es','messages:exif-componentsconfiguration','s:30:\"Significado de cada componente\";'),
+('es','messages:exif-componentsconfiguration-0','s:9:\"no existe\";'),
+('es','messages:exif-componentsconfiguration-1','s:1:\"Y\";'),
+('es','messages:exif-componentsconfiguration-2','s:2:\"Cb\";'),
+('es','messages:exif-componentsconfiguration-3','s:2:\"Cr\";'),
+('es','messages:exif-componentsconfiguration-4','s:1:\"R\";'),
+('es','messages:exif-componentsconfiguration-5','s:1:\"G\";'),
+('es','messages:exif-componentsconfiguration-6','s:1:\"B\";'),
+('es','messages:exif-compressedbitsperpixel','s:32:\"Modo de compresión de la imagen\";'),
+('es','messages:exif-compression','s:22:\"Esquema de compresión\";'),
+('es','messages:exif-compression-1','s:13:\"Sin comprimir\";'),
+('es','messages:exif-compression-2','s:64:\"CCITT Group 3 1-Dimensional Modified Huffman run length encoding\";'),
+('es','messages:exif-compression-3','s:34:\"Codificación de fax CCITT grupo 3\";'),
+('es','messages:exif-compression-32773','s:24:\"PackBits (Macintosh RLE)\";'),
+('es','messages:exif-compression-32946','s:15:\"Deflate (PKZIP)\";'),
+('es','messages:exif-compression-34712','s:8:\"JPEG2000\";'),
+('es','messages:exif-compression-4','s:34:\"Codificación de fax CCITT grupo 4\";'),
+('es','messages:exif-compression-5','s:3:\"LZW\";'),
+('es','messages:exif-compression-6','s:14:\"JPEG (antiguo)\";'),
+('es','messages:exif-compression-7','s:4:\"JPEG\";'),
+('es','messages:exif-compression-8','s:15:\"Deflate (Adobe)\";'),
+('es','messages:exif-contact','s:24:\"Información de contacto\";'),
+('es','messages:exif-contact-value','s:52:\"$1\n\n$2\n{{ #language:…}}, y variables como\n{{ CURRENTDAY}}. De hecho, expande casi cualquier cosa que esté entre llaves dobles.\";'),
+('es','messages:expand_templates_ok','s:7:\"Aceptar\";'),
+('es','messages:expand_templates_output','s:9:\"Resultado\";'),
+('es','messages:expand_templates_preview','s:17:\"Previsualización\";'),
+('es','messages:expand_templates_preview_fail_html','s:470:\"Se ha ocultado la previsualización como precaución frente a ataques JavaScript. Esto se debe a que {{SITENAME}} tiene habilitada la característica de código HTML en bruto, y se perdieron los datos de la sesión.\n\nSi se trata de un intento de previsualización legítimo, inténtalo de nuevo.\nSi aun así no funciona, intenta [[Special:UserLogout|cerrar sesión]] y volver a acceder, y verifica que tu navegador acepte cookies de este sitio.\";'),
+('es','messages:expand_templates_preview_fail_html_anon','s:347:\"Se ha ocultado la previsualización como precaución frente a ataques JavaScript. Esto se debe a que {{SITENAME}} tiene habilitada la característica de código HTML en bruto, y no has iniciado sesión.\n\nSi se trata de un intento de previsualización legítimo, [[Special:UserLogin|inicia sesión]] e inténtalo de nuevo.\";'),
+('es','messages:expand_templates_remove_comments','s:35:\"Eliminar comentarios ()\";'),
+('es','messages:expand_templates_remove_nowiki','s:43:\"Suprimir etiquetas #ifexist). Consulta [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgExpensiveParserFunctionLimit Manual:$wgExpensiveParserFunctionLimit].\";'),
+('es','messages:expensive-parserfunction-warning','s:203:\"Advertencia: esta página contiene demasiadas llamadas a funciones sintácticas costosas.\n\nTiene {{PLURAL:$1|una llamada|$1 llamadas}}, pero debería tener menos de {{PLURAL:$2|una|$2}}.\";'),
+('es','messages:explainconflict','s:425:\"Alguien ha realizado cambios en esta página desde que empezaste a editarla.\nEl cuadro de texto superior contiene el texto de la página tal como está guardado en este momento.\nTus cambios sobre la versión que editaste se muestran en el cuadro de texto inferior.\nSi quieres guardar tus cambios, has de trasladarlos al cuadro superior.\nAl pulsar «$1», se publicará solamente el texto del cuadro superior.\";'),
+('es','messages:export','s:17:\"Exportar páginas\";'),
+('es','messages:export-addcat','s:7:\"Añadir\";'),
+('es','messages:export-addcattext','s:37:\"Añadir páginas desde la categoría:\";'),
+('es','messages:export-addns','s:7:\"Agregar\";'),
+('es','messages:export-addnstext','s:45:\"Agregar páginas desde el espacio de nombres:\";'),
+('es','messages:export-download','s:20:\"Guardar como archivo\";'),
+('es','messages:export-manual','s:29:\"Añadir páginas manualmente:\";'),
+('es','messages:export-pagelinks','s:48:\"Incluir páginas enlazadas a una profundidad de:\";'),
+('es','messages:export-submit','s:8:\"Exportar\";'),
+('es','messages:export-summary','s:0:\"\";'),
+('es','messages:export-templates','s:18:\"Incluir plantillas\";'),
+('es','messages:exportall','s:27:\"Exportar todas las páginas\";'),
+('es','messages:exportcuronly','s:77:\"Incluye sólo la revisión actual, no el historial de revisiones al completo.\";'),
+('es','messages:exportlistauthors','s:61:\"Incluir una lista completa de colaboradores para cada página\";'),
+('es','messages:exportnohistory','s:160:\"----\nNota: la exportación del historial completo de páginas a través de este formulario ha sido desactivada debido a razones de rendimiento.\";'),
+('es','messages:exporttext','s:695:\"Puedes exportar el texto y el historial de ediciones de una página en particular o de un conjunto de páginas a un texto XML. En el futuro, este texto podría importarse en otra wiki que ejecutase MediaWiki a través de [[Special:Import|importar página]].\n\nPara exportar páginas, escribe los títulos en la caja de texto de abajo, un título por línea, y selecciona si quieres la versión actual junto a las versiones anteriores, con las líneas del historial, o sólo la versión actual con la información sobre la última edición.\n\nEn el último caso también puedes usar un enlace, por ejemplo [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] para la página \"[[{{MediaWiki:Mainpage}}]]\".\";'),
+('es','messages:external_image_whitelist','s:534:\" #Deja esta línea exactamente como está\n#Colocar fragmentos de expresiones regulares (sólo la parte que va entre los //) debajo\n#Estos coincidirán con los URLs de las imágenes externas (hotlinked)\n#Aquellos que coincidan serán mostrados como imágenes, de lo contrario solamente un vínculo a la imagen será mostrada\n#Las líneas que empiezan por «#» se consideran comentarios\n#Esta es insensible a las mayúsculas\n\n#Colocar todos los fragmentos regex arriba de esta línea. Deja esta línea exactamente como está\";'), +('es','messages:externaldberror','s:118:\"Hubo un error de autenticación en la base de datos, o bien no tienes autorización para actualizar tu cuenta externa.\";'), +('es','messages:faq','s:20:\"Preguntas frecuentes\";'), +('es','messages:feb','s:3:\"feb\";'), +('es','messages:february','s:7:\"febrero\";'), +('es','messages:february-gen','s:7:\"febrero\";'), +('es','messages:feed-atom','s:4:\"Atom\";'), +('es','messages:feed-invalid','s:59:\"La suscripción no es válida para el tipo de sindicación.\";'), +('es','messages:feed-rss','s:3:\"RSS\";'), +('es','messages:feed-unavailable','s:49:\"Los canales de sindicación no están disponibles\";'), +('es','messages:feedback-adding','s:38:\"Añadiendo comentarios a la página...\";'), +('es','messages:feedback-back','s:6:\"Volver\";'), +('es','messages:feedback-bugcheck','s:68:\"¡Perfecto! Únicamente comprueba que no sea un [$1 fallo conocido].\";'), +('es','messages:feedback-bugnew','s:45:\"Lo he comprobado. Informar de un nuevo fallo.\";'), +('es','messages:feedback-bugornote','s:227:\"Si estás preparado para describir en detalle un problema técnico, [$1 informa de un error].\nEn otro caso, puedes usar el siguiente formulario. Tu comentario se añadirá a la página \"[$3 $2]\", junto con tu nombre de usuario.\";'), +('es','messages:feedback-cancel','s:8:\"Cancelar\";'), +('es','messages:feedback-close','s:5:\"Hecho\";'), +('es','messages:feedback-dialog-intro','s:159:\"Puedes usar el sencillo formulario a continuación para enviar tus comentarios. Tu comentario se añadirá a la página «$1», junto con tu nombre de usuario.\";'), +('es','messages:feedback-dialog-title','s:18:\"Enviar comentarios\";'), +('es','messages:feedback-error1','s:38:\"Error: No se reconoce resultado de API\";'), +('es','messages:feedback-error4','s:68:\"Error: no se pudo publicar con el argumento de título proporcionado\";'), +('es','messages:feedback-external-bug-report-button','s:25:\"Enviar una tarea técnica\";'), +('es','messages:feedback-message','s:8:\"Mensaje:\";'), +('es','messages:feedback-subject','s:7:\"Asunto:\";'), +('es','messages:feedback-submit','s:6:\"Enviar\";'), +('es','messages:feedback-terms','s:197:\"Entiendo que la información de mi agente de usuario incluye información sobre la versión exacta de mi navegador y mi sistema operativo y serán compartidos públicamente junto a mis comentarios.\";'), +('es','messages:feedback-termsofuse','s:68:\"Acepto proporcionar comentarios de acuerdo con los Términos de uso.\";'), +('es','messages:feedback-thanks','s:68:\"¡Gracias! Tus comentarios se han publicado en la página \"[$2 $1]\".\";'), +('es','messages:feedback-thanks-title','s:17:\"¡Muchas gracias!\";'), +('es','messages:feedback-useragent','s:18:\"Agente de usuario:\";'), +('es','messages:fewestrevisions','s:43:\"Páginas con el menor número de revisiones\";'), +('es','messages:fewestrevisions-summary','s:0:\"\";'), +('es','messages:file-anchor-link','s:7:\"Archivo\";'), +('es','messages:file-deleted-duplicate','s:149:\"Un archivo idéntico a este ([[:$1]]) ha sido borrado con anterioridad. Debes comprobar el historial de borrado del archivo ante de volver a subirlo.\";'), +('es','messages:file-deleted-duplicate-notitle','s:249:\"Un archivo idéntico a este ha sido borrado con anterioridad y el título ha sido suprimido. Deberías contactar con alguien capaz de ver los datos de archivos borrados para que revise esta situación antes de proceder a subir de nuevo este archivo.\";'), +('es','messages:file-exists-duplicate','s:75:\"Este archivo es un duplicado {{PLURAL:$1|del siguiente|de los siguientes}}:\";'), +('es','messages:file-exists-sharedrepo','s:110:\"El nombre de archivo elegido ya está siendo usado en un repositorio compartido.\nPor favor, elige otro nombre.\";'), +('es','messages:file-info','s:37:\"tamaño de archivo: $1; tipo MIME: $2\";'), +('es','messages:file-info-gif-frames','s:29:\"$1 {{PLURAL:$1|frame|frames}}\";'), +('es','messages:file-info-gif-looped','s:8:\"bucleado\";'), +('es','messages:file-info-png-frames','s:29:\"$1 {{PLURAL:$1|marco|marcos}}\";'), +('es','messages:file-info-png-looped','s:8:\"bucleado\";'), +('es','messages:file-info-png-repeat','s:38:\"reproducido $1 {{PLURAL:$1|vez|veces}}\";'), +('es','messages:file-info-size','s:56:\"$1 × $2 píxeles; tamaño de archivo: $3; tipo MIME: $4\";'), +('es','messages:file-info-size-pages','s:91:\"$1 × $2 píxeles, tamaño de archivo: $3, tipo MIME: $4, $5 {{PLURAL:$5|página|páginas}}\";'), +('es','messages:file-no-thumb-animation','s:108:\"Nota: debido a limitaciones técnicas, las miniaturas de este archivo no estarán animadas.\";'), +('es','messages:file-no-thumb-animation-gif','s:139:\"Nota: debido a limitaciones técnicas, las miniaturas de imágenes GIF de alta resolución como esta no estarán animadas.\";'), +('es','messages:file-nohires','s:34:\"No disponible a mayor resolución.\";'), +('es','messages:file-thumbnail-no','s:210:\"El nombre del archivo comienza con $1.\nParece ser una imagen de tamaño reducido \'\'(thumbnail)\'\'.\nSi tiene esta imagen a toda resolución súbala, si no, por favor cambie el nombre del archivo.\";'), +('es','messages:file-too-large','s:45:\"El archivo que enviaste era demasiado grande.\";'), +('es','messages:filecopyerror','s:51:\"No se ha podido copiar el archivo «$1» en «$2».\";'), +('es','messages:filedelete','s:9:\"Borrar $1\";'), +('es','messages:filedelete-archive-read-only','s:64:\"El servidor web no logra escribir en el directorio archivo \"$1\".\";'), +('es','messages:filedelete-comment','s:7:\"Motivo:\";'), +('es','messages:filedelete-current-unregistered','s:48:\"El archivo «$1» no existe en la base de datos.\";'), +('es','messages:filedelete-edit-reasonlist','s:29:\"Edita los motivos del borrado\";'), +('es','messages:filedelete-edit-reasonlist-suppress','s:28:\"Editar motivos de supresión\";'), +('es','messages:filedelete-intro','s:97:\"Estás a punto de borrar el archivo [[Media:$1|$1]] así como todo su historial.\";'), +('es','messages:filedelete-intro-old','s:85:\"Estás borrando la versión de [[Media:$1|$1]] del [$4 $2 a las $3].\";'), +('es','messages:filedelete-legend','s:14:\"Borrar archivo\";'), +('es','messages:filedelete-maintenance','s:90:\"Borrado y restauración de archivos temporalmente deshabilitados durante el mantenimiento.\";'), +('es','messages:filedelete-maintenance-title','s:31:\"No se puede eliminar el archivo\";'), +('es','messages:filedelete-missing','s:53:\"No se pudo borrar el archivo «$1» porque no existe.\";'), +('es','messages:filedelete-nofile','s:30:\"$1 no existe.\";'), +('es','messages:filedelete-nofile-old','s:87:\"No existe una versión guardada de $1 con los atributos especificados.\";'), +('es','messages:filedelete-old-unregistered','s:67:\"La revisión de archivo «$1» no se encuentra en la base de datos.\";'), +('es','messages:filedelete-otherreason','s:12:\"Otra razón:\";'), +('es','messages:filedelete-reason-dropdown','s:86:\"*Razones habituales de borrado\n** Violación de derechos de autor\n** Archivo duplicado\";'), +('es','messages:filedelete-reason-dropdown-suppress','s:0:\"\";'), +('es','messages:filedelete-reason-otherlist','s:11:\"Otro motivo\";'), +('es','messages:filedelete-submit','s:8:\"Eliminar\";'), +('es','messages:filedelete-success','s:34:\"$1 se ha borrado.\";'), +('es','messages:filedelete-success-old','s:78:\"La versión de [[Media:$1|$1]] del $2 a las $3 se ha borrado.\";'), +('es','messages:filedeleteerror','s:41:\"No se ha podido borrar el archivo «$1».\";'), +('es','messages:filedeleteerror-long','s:60:\"Se han producido errores mientras se borraba el archivo:\n\n$1\";'), +('es','messages:filedeleteerror-short','s:30:\"Error al borrar el archivo: $1\";'), +('es','messages:filedesc','s:7:\"Resumen\";'), +('es','messages:fileduplicatesearch','s:32:\"Búsqueda de archivos duplicados\";'), +('es','messages:fileduplicatesearch-filename','s:18:\"Nombre de archivo:\";'), +('es','messages:fileduplicatesearch-info','s:53:\"$1 × $2 píxeles
\n# La sintaxis de esta página es la siguiente:\n# * Todo texto que se encuentre después del carácter \"#\" hasta el final de la línea se tratará como un comentario y será ignorado\n# * Cualquier línea que no esté en blanco será interpretada como un prefijo típico en nombres de archivo que suelen asignar automáticamente las cámaras digitales\nCIMG # Casio\nDSC_ # Nikon\nDSCF # Fuji\nDSCN # Nikon\nDUW # algunos teléfonos móviles / celulares\nIMG # genérico\nJD # Jenoptik\nMGP # Pentax\nPICT # misc.\n #\";'), +('es','messages:filename-thumb-name','s:226:\"Esto luce como el título de una miniatura. Por favor, no vuelva a subir miniaturas a la misma wiki. Si no es el caso, por favor corrija el nombre del archivo por uno que tenga más sentido, y no tenga el prefijo de miniatura.\";'), +('es','messages:filename-toolong','s:57:\"Los nombres de archivo no pueden tener más de 240 bytes.\";'), +('es','messages:filename-tooshort','s:41:\"El nombre del archivo es demasiado corto.\";'), +('es','messages:filenotfound','s:38:\"No se ha encontrado el archivo «$1».\";'), +('es','messages:filepage-nofile','s:42:\"No existe ningún archivo con este nombre.\";'), +('es','messages:filepage-nofile-link','s:68:\"No existe ningún archivo con este nombre, pero puedes [$1 subirlo].\";'), +('es','messages:filepage.css','s:154:\"/* Los estilos CSS colocados aquí se incluirán en las páginas de descripción de archivos, incluso en las wikis externas que incluyan estas páginas */\";'), +('es','messages:filepageexists','s:295:\"La página de descripción de este archivo ya ha sido creada en [[:$1]], pero no existe actualmente ningún archivo con este nombre.\nEl resumen que has escrito no aparecerá en la página de descripción.\nPara que el resumen aparezca, deberás editarlo manualmente.\n[[$1|thumb]]\";'), +('es','messages:filereadonlyerror','s:184:\"No se puede modificar el archivo «$1» porque el repositorio de archivos «$2» es de solo lectura.\n\nEl administrador del sistema que lo ha bloqueado ofrece esta explicación: «$3».\";'), +('es','messages:filerenameerror','s:57:\"No se pudo cambiar el nombre del archivo «$1» a «$2».\";'), +('es','messages:filereuploadsummary','s:19:\"Cambios de archivo:\";'), +('es','messages:filerevert','s:11:\"Revertir $1\";'), +('es','messages:filerevert-badversion','s:72:\"No existe versión local previa de este archivo con esa marca de tiempo.\";'), +('es','messages:filerevert-comment','s:7:\"Motivo:\";'), +('es','messages:filerevert-defaultcomment','s:44:\"Revertido a la versión del $1 a las $2 ($3)\";'), +('es','messages:filerevert-identical','s:65:\"La versión actual del archivo ya es idéntica a la seleccionada.\";'), +('es','messages:filerevert-intro','s:88:\"Estás por revertir [[Media:$1|$1]] a la [$4 versión del $2 a las $3].\";'), +('es','messages:filerevert-legend','s:22:\"Reversión de archivos\";'), +('es','messages:filerevert-submit','s:8:\"Revertir\";'), +('es','messages:filerevert-success','s:86:\"[[Media:$1|$1]] ha sido revertido a la [$4 versión del $2 a las $3].\";'), +('es','messages:filesource','s:7:\"Fuente:\";'), +('es','messages:filestatus','s:26:\"Información de copyright:\";'), +('es','messages:filetype-bad-ie-mime','s:157:\"No se puede subir este archivo porque Internet Explorer podría considerarlo como «$1», que es un tipo de archivo no autorizado y potencialmente peligroso.\";'), +('es','messages:filetype-badmime','s:49:\"No se permite subir archivos MIME de tipo «$1».\";'), +('es','messages:filetype-banned','s:35:\"El tipo de archivo está prohibido.\";'), +('es','messages:filetype-banned-type','s:222:\"{{PLURAL:$4|El tipo de archivo|Los tipos de archivo}} \".$1\" no {{PLURAL:$4|está permitido|están permitidos}}.\n{{PLURAL:$3|El único tipo de archivo permitido es|Los tipos de archivos permitidos son}} $2.\";'), +('es','messages:filetype-mime-mismatch','s:91:\"La extensión de archivo «.$1» no coincide con el tipo MIME detectado en el archivo ($2).\";'), +('es','messages:filetype-missing','s:47:\"El archivo no tiene extensión (como «.jpg»).\";'), +('es','messages:filetype-unwanted-type','s:146:\"«.$1» no está entre los tipos de archivo aconsejados.\n{{PLURAL:$3|El único tipo aconsejado es|Los tipos aconsejados son}} $2.\";'), +('es','messages:fileuploadsummary','s:8:\"Resumen:\";'), +('es','messages:filewasdeleted','s:138:\"Un archivo con este nombre se subió con anterioridad y posteriormente ha sido borrado. Deberías revisar el $1 antes de subirlo de nuevo.\";'), +('es','messages:fix-double-redirects','s:60:\"Actualizar las redirecciones que apuntan al título original\";'), +('es','messages:formatnum-nan','s:16:\"No es un número\";'), +('es','messages:formerror','s:44:\"Error: no se ha podido enviar el formulario.\";'), +('es','messages:fri','s:3:\"vie\";'), +('es','messages:friday','s:7:\"viernes\";'), +('es','messages:friday-at','s:19:\"el viernes a las $1\";'), +('es','messages:gallery-slideshow-toggle','s:35:\"Activar o desactivar las miniaturas\";'), +('es','messages:gender-female','s:8:\"Femenino\";'), +('es','messages:gender-male','s:9:\"Masculino\";'), +('es','messages:gender-notknown','s:10:\"No binario\";'), +('es','messages:gender-unknown','s:93:\"Al mencionarte, el software usará palabras sin marcación de género siempre que sea posible\";'), +('es','messages:generic-pool-error','s:188:\"Lo sentimos, los servidores están sobrecargados en este momento.\nHay demasiados usuarios tratando de ver este recurso.\nEspera un momento antes de intentar acceder de nuevo a este recurso.\";'), +('es','messages:go','s:2:\"Ir\";'), +('es','messages:googlesearch','s:630:\"\";'), +('es','messages:gotointerwiki','s:21:\"Salir de {{SITENAME}}\";'), +('es','messages:gotointerwiki-external','s:112:\"Estás a punto de abandonar {{SITENAME}} para visitar [[$2]], un sitio web diferente.\n\n\'\'\'[$1 Continuar a $1]\'\'\'\";'), +('es','messages:gotointerwiki-invalid','s:38:\"El título especificado no es válido.\";'), +('es','messages:grant-basic','s:17:\"Permisos básicos\";'), +('es','messages:grant-blockusers','s:31:\"Bloquear y desbloquear usuarios\";'), +('es','messages:grant-createaccount','s:13:\"Crear cuentas\";'), +('es','messages:grant-createeditmovepage','s:34:\"Crear, editar y trasladar páginas\";'), +('es','messages:grant-delete','s:51:\"Borrar páginas, revisiones y entradas del registro\";'), +('es','messages:grant-editinterface','s:101:\"Editar el espacio de nombres MediaWiki y las páginas CSS/JSON/JavaScript del sitio y de los usuarios\";'), +('es','messages:grant-editmycssjs','s:29:\"Editar tu CSS/JSON/JavaScript\";'), +('es','messages:grant-editmyoptions','s:67:\"Editar tus preferencias de usuario y configuración en formato JSON\";'), +('es','messages:grant-editmywatchlist','s:30:\"Editar tu lista de seguimiento\";'), +('es','messages:grant-editpage','s:26:\"Editar páginas existentes\";'), +('es','messages:grant-editprotected','s:26:\"Editar páginas protegidas\";'), +('es','messages:grant-editsiteconfig','s:50:\"Editar páginas de configuración CSS/JS del sitio\";'), +('es','messages:grant-generic','s:24:\"Paquete de permisos \"$1\"\";'), +('es','messages:grant-group-administration','s:33:\"Realizar acciones administrativas\";'), +('es','messages:grant-group-customization','s:31:\"Personalización y preferencias\";'), +('es','messages:grant-group-email','s:26:\"Enviar correo electrónico\";'), +('es','messages:grant-group-file-interaction','s:26:\"Interactuar con multimedia\";'), +('es','messages:grant-group-high-volume','s:34:\"Realizar actividad de volumen alto\";'), +('es','messages:grant-group-other','s:20:\"Actividades diversas\";'), +('es','messages:grant-group-page-interaction','s:24:\"Interactuar con páginas\";'), +('es','messages:grant-group-private-information','s:39:\"Acceder a información privada sobre ti\";'), +('es','messages:grant-group-watchlist-interaction','s:39:\"Interactuar con tu lista de seguimiento\";'), +('es','messages:grant-highvolume','s:26:\"Gran cantidad de ediciones\";'), +('es','messages:grant-import','s:19:\"Importar revisiones\";'), +('es','messages:grant-mergehistory','s:32:\"Combinar historiales de páginas\";'), +('es','messages:grant-oversight','s:48:\"Ocultar a los usuarios y suprimir las revisiones\";'), +('es','messages:grant-patrol','s:29:\"Verificar cambios en páginas\";'), +('es','messages:grant-privateinfo','s:30:\"Acceder a información privada\";'), +('es','messages:grant-protect','s:31:\"Proteger y desproteger páginas\";'), +('es','messages:grant-rollback','s:28:\"Revertir cambios en páginas\";'), +('es','messages:grant-sendemail','s:42:\"Enviar mensajes de correo a otros usuarios\";'), +('es','messages:grant-uploadeditmovefile','s:38:\"Subir, reemplazar y renombrar archivos\";'), +('es','messages:grant-uploadfile','s:21:\"Subir archivos nuevos\";'), +('es','messages:grant-viewdeleted','s:34:\"Ver archivos y páginas eliminados\";'), +('es','messages:grant-viewmywatchlist','s:27:\"Ver tu lista de seguimiento\";'), +('es','messages:grant-viewrestrictedlogs','s:38:\"Ver entradas restringidas del registro\";'), +('es','messages:group','s:6:\"Grupo:\";'), +('es','messages:group-all','s:7:\"(todos)\";'), +('es','messages:group-autoconfirmed','s:15:\"Autoconfirmados\";'), +('es','messages:group-autoconfirmed-member','s:43:\"{{GENDER:$1|autoconfirmado|autoconfirmada}}\";'), +('es','messages:group-autoconfirmed.css','s:110:\"/* Los estilos CSS colocados aquí se aplicarán para todos los usuarios del grupo Usuarios autoconfirmados */\";'), +('es','messages:group-autoconfirmed.js','s:119:\"/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios del grupo Usuarios autoconfirmados */\";'), +('es','messages:group-bot','s:4:\"Bots\";'), +('es','messages:group-bot-member','s:17:\"{{GENDER:$1|bot}}\";'), +('es','messages:group-bot.css','s:92:\"/* Los estilos CSS colocados aquí se aplicarán para todos los usuarios del grupo Robots */\";'), +('es','messages:group-bot.js','s:101:\"/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios del grupo Robots */\";'), +('es','messages:group-bureaucrat','s:11:\"Burócratas\";'), +('es','messages:group-bureaucrat-member','s:24:\"{{GENDER:$1|burócrata}}\";'), +('es','messages:group-bureaucrat.css','s:97:\"/* Los estilos CSS colocados aquí se aplicarán para todos los usuarios del grupo Burócratas */\";'), +('es','messages:group-bureaucrat.js','s:106:\"/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios del grupo Burócratas */\";'), +('es','messages:group-interface-admin','s:27:\"Administradores de interfaz\";'), +('es','messages:group-interface-admin-member','s:54:\"{{GENDER:$1|administrador|administradora}} de interfaz\";'), +('es','messages:group-membership-link-with-expiry','s:13:\"$1 (hasta $2)\";'), +('es','messages:group-suppress','s:10:\"Supresores\";'), +('es','messages:group-suppress-member','s:32:\"{{GENDER:$1|supresor|supresora}}\";'), +('es','messages:group-sysop','s:15:\"Administradores\";'), +('es','messages:group-sysop-member','s:42:\"{{GENDER:$1|administrador|administradora}}\";'), +('es','messages:group-sysop.css','s:101:\"/* Los estilos CSS colocados aquí se aplicarán para todos los usuarios del grupo Administradores */\";'), +('es','messages:group-sysop.js','s:110:\"/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios del grupo Administradores */\";'), +('es','messages:group-user','s:8:\"Usuarios\";'), +('es','messages:group-user-member','s:29:\"{{GENDER:$1|usuario|usuaria}}\";'), +('es','messages:group-user.css','s:87:\"/* Los estilos CSS colocados aquí se aplicarán para todos los usuarios registrados */\";'), +('es','messages:group-user.js','s:96:\"/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios registrados */\";'), +('es','messages:grouppage-autoconfirmed','s:30:\"{{ns:project}}:Autoconfirmados\";'), +('es','messages:grouppage-bot','s:19:\"{{ns:project}}:Bots\";'), +('es','messages:grouppage-bureaucrat','s:26:\"{{ns:project}}:Burócratas\";'), +('es','messages:grouppage-interface-admin','s:42:\"{{ns:project}}:Administradores de interfaz\";'), +('es','messages:grouppage-suppress','s:25:\"{{ns:project}}:Supresores\";'), +('es','messages:grouppage-sysop','s:30:\"{{ns:project}}:Administradores\";'), +('es','messages:grouppage-user','s:23:\"{{ns:project}}:Usuarios\";'), +('es','messages:guesstimezone','s:21:\"Obtener del navegador\";'), +('es','messages:headline-anchor-title','s:22:\"Enlace a esta sección\";'), +('es','messages:hebrew-calendar-m1','s:7:\"Tishrei\";'), +('es','messages:hebrew-calendar-m1-gen','s:7:\"Tishrei\";'), +('es','messages:hebrew-calendar-m10','s:5:\"Tamuz\";'), +('es','messages:hebrew-calendar-m10-gen','s:5:\"Tamuz\";'), +('es','messages:hebrew-calendar-m11','s:2:\"Av\";'), +('es','messages:hebrew-calendar-m11-gen','s:2:\"Av\";'), +('es','messages:hebrew-calendar-m12','s:4:\"Elul\";'), +('es','messages:hebrew-calendar-m12-gen','s:4:\"Elul\";'), +('es','messages:hebrew-calendar-m2','s:8:\"Cheshvan\";'), +('es','messages:hebrew-calendar-m2-gen','s:8:\"Cheshvan\";'), +('es','messages:hebrew-calendar-m3','s:6:\"Kislev\";'), +('es','messages:hebrew-calendar-m3-gen','s:6:\"Kislev\";'), +('es','messages:hebrew-calendar-m4','s:5:\"Tevet\";'), +('es','messages:hebrew-calendar-m4-gen','s:5:\"Tevet\";'), +('es','messages:hebrew-calendar-m5','s:6:\"Shevat\";'), +('es','messages:hebrew-calendar-m5-gen','s:6:\"Shevat\";'), +('es','messages:hebrew-calendar-m6','s:4:\"Adar\";'), +('es','messages:hebrew-calendar-m6-gen','s:4:\"Adar\";'), +('es','messages:hebrew-calendar-m6a','s:6:\"Adar I\";'), +('es','messages:hebrew-calendar-m6a-gen','s:6:\"Adar I\";'), +('es','messages:hebrew-calendar-m6b','s:7:\"Adar II\";'), +('es','messages:hebrew-calendar-m6b-gen','s:7:\"Adar II\";'), +('es','messages:hebrew-calendar-m7','s:5:\"Nisan\";'), +('es','messages:hebrew-calendar-m7-gen','s:5:\"Nisan\";'), +('es','messages:hebrew-calendar-m8','s:4:\"Iyar\";'), +('es','messages:hebrew-calendar-m8-gen','s:4:\"Iyar\";'), +('es','messages:hebrew-calendar-m9','s:5:\"Sivan\";'), +('es','messages:hebrew-calendar-m9-gen','s:5:\"Sivan\";'), +('es','messages:help','s:5:\"Ayuda\";'), +('es','messages:help-mediawiki','s:21:\"Ayuda sobre MediaWiki\";'), +('es','messages:helplogin-url','s:65:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Logging_in\";'), +('es','messages:helppage','s:63:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents\";'), +('es','messages:helppage-top-gethelp','s:5:\"Ayuda\";'), +('es','messages:hidden-categories','s:51:\"{{PLURAL:$1|Categoría oculta|Categorías ocultas}}\";'), +('es','messages:hidden-category-category','s:19:\"Categorías ocultas\";'), +('es','messages:hidden-category-category-desc','s:201:\"La categoría contiene
__HIDDENCAT__ en su página de contenido, lo que evita que aparezca en el cuadro de enlaces de categorías en las páginas, de forma predeterminada.\";'),
+('es','messages:hiddencategories','s:82:\"Esta página pertenece a {{PLURAL:$1|1 categoría oculta|$1 categorías ocultas}}:\";'),
+('es','messages:hide','s:7:\"Ocultar\";'),
+('es','messages:hidetoc','s:7:\"ocultar\";'),
+('es','messages:hijri-calendar-m1','s:8:\"Muharram\";'),
+('es','messages:hijri-calendar-m10','s:7:\"Shawwal\";'),
+('es','messages:hijri-calendar-m11','s:13:\"Dhu al-Qi\'dah\";'),
+('es','messages:hijri-calendar-m12','s:13:\"Dhu al-Hijjah\";'),
+('es','messages:hijri-calendar-m2','s:5:\"Safar\";'),
+('es','messages:hijri-calendar-m3','s:14:\"Rabi\' al-awwal\";'),
+('es','messages:hijri-calendar-m4','s:14:\"Rabi\' al-thani\";'),
+('es','messages:hijri-calendar-m5','s:15:\"Jumada al-awwal\";'),
+('es','messages:hijri-calendar-m6','s:15:\"Jumada al-thani\";'),
+('es','messages:hijri-calendar-m7','s:5:\"Rajab\";'),
+('es','messages:hijri-calendar-m8','s:8:\"Sha\'aban\";'),
+('es','messages:hijri-calendar-m9','s:7:\"Ramadan\";'),
+('es','messages:hist','s:5:\"hist.\";'),
+('es','messages:histfirst','s:8:\"primeras\";'),
+('es','messages:histlast','s:9:\"recientes\";'),
+('es','messages:histlegend','s:339:\"Selección de diferencias: marca los botones correspondientes a las versiones a comparar y pulsa Intro o el botón de abajo.__INDEX__ (y está en un espacio de nombres donde la función está activada); y por ello los robots la indizarán.\";'),
+('es','messages:infiniteblock','s:8:\"infinito\";'),
+('es','messages:intentionallyblankpage','s:52:\"Esta página está en blanco de manera intencionada.\";'),
+('es','messages:interlanguage-link-title','s:7:\"$1 ($2)\";'),
+('es','messages:interlanguage-link-title-langonly','s:2:\"$1\";'),
+('es','messages:interlanguage-link-title-nonlang','s:9:\"$1 – $2\";'),
+('es','messages:interlanguage-link-title-nonlangonly','s:2:\"$1\";'),
+('es','messages:internalerror','s:13:\"Error interno\";'),
+('es','messages:internalerror-fatal-exception','s:29:\"Excepción grave de tipo \"$1\"\";'),
+('es','messages:internalerror_info','s:17:\"Error interno: $1\";'),
+('es','messages:invalid-chunk-offset','s:38:\"Desplazamiento inválido del fragmento\";'),
+('es','messages:invalid-content-data','s:30:\"Datos de contenido incorrectos\";'),
+('es','messages:invalid-indicator-name','s:115:\"Error: el atributo name de los indicadores de estado de página no debe estar vacío.\";'),
+('es','messages:invalid-langconvert-attrs','s:186:\"Error: La etiqueta Langconvert y los artibutos no tienen que estar vacíos, tiene que contener códigos BCP 47 para variantes convertibles del mismo idioma.\";'),
+('es','messages:invalidateemail','s:45:\"Cancelar confirmación de correo electrónico\";'),
+('es','messages:invalidemailaddress','s:176:\"No se puede aceptar la dirección de correo electrónico, pues parece que tiene un formato no válido.\nPor favor, escribe una dirección bien formada o deja el campo en blanco.\";'),
+('es','messages:invalidtitle','s:17:\"Título inválido\";'),
+('es','messages:invalidtitle-knownnamespace','s:75:\"El título con el espacio de nombres «$2» y el texto «$3» no es válido\";'),
+('es','messages:invalidtitle-unknownnamespace','s:90:\"El título con el espacio de nombres desconocido (n.º $1) y el texto «$2» no es válido\";'),
+('es','messages:invert','s:19:\"Invertir selección\";'),
+('es','messages:ip_range_exceeded','s:74:\"El intervalo de IP sobrepasa el límite máximo. Intervalo permitido: /$1.\";'),
+('es','messages:ip_range_invalid','s:33:\"El intervalo de IP no es válido.\";'),
+('es','messages:ip_range_toolarge','s:65:\"Los bloqueos por intervalo superiores a /$1 no están permitidos.\";'),
+('es','messages:ip_range_toolow','s:53:\"En la práctica, no se permiten los intervalos de IP.\";'),
+('es','messages:ipaddressorusername','s:60:\"Dirección IP, nombre de usuario o identificador de bloqueo:\";'),
+('es','messages:ipb-action-create','s:21:\"Crear páginas nuevas\";'),
+('es','messages:ipb-action-move','s:18:\"Trasladar páginas\";'),
+('es','messages:ipb-action-upload','s:14:\"Subir archivos\";'),
+('es','messages:ipb-block-not-found','s:216:\"El bloqueo no pudo efectuarse a pesar de no encontrar bloqueos existentes para \"$1\". Si este problema persiste por favor [https://www.mediawiki.org/wiki/Special:MyLanguage/Help_talk:Blocking_users informa del mismo].\";'),
+('es','messages:ipb-blockingself','s:75:\"¡Estás a punto de bloquearte a ti mismo! ¿Confirmas que quieres hacerlo?\";'),
+('es','messages:ipb-blocklist','s:21:\"Ver bloqueos vigentes\";'),
+('es','messages:ipb-blocklist-contribs','s:34:\"Contribuciones de {{GENDER:$1|$1}}\";'),
+('es','messages:ipb-blocklist-duration-left','s:12:\"$1 restantes\";'),
+('es','messages:ipb-change-block','s:37:\"Rebloquear al usuario con estos datos\";'),
+('es','messages:ipb-confirm','s:17:\"Confirmar bloqueo\";'),
+('es','messages:ipb-confirmaction','s:103:\"Si estás seguro de querer hacerlo, por favor, marca el campo «{{int:ipb-confirm}}» que hay al final.\";'),
+('es','messages:ipb-confirmhideuser','s:197:\"Estás a punto de bloquear un usuario con la opción de supresión activada. Esto suprimirá el nombre de usuario en todas las listas y entradas de registro. ¿Estás seguro de que deseas proceder?\";'),
+('es','messages:ipb-default-expiry','s:0:\"\";'),
+('es','messages:ipb-default-expiry-ip','s:0:\"\";'),
+('es','messages:ipb-disableusertalk','s:43:\"Edición de la propia página de discusión\";'),
+('es','messages:ipb-edit-dropdown','s:25:\"Editar razones de bloqueo\";'),
+('es','messages:ipb-empty-block','s:56:\"El bloqueo que tratas de activar no tiene restricciones.\";'),
+('es','messages:ipb-hardblock','s:69:\"Aplicar el bloqueo a los usuarios conectados desde esta dirección IP\";'),
+('es','messages:ipb-namespaces-label','s:19:\"Espacios de nombres\";'),
+('es','messages:ipb-needreblock','s:52:\"$1 ya está bloqueado. ¿Quieres cambiar el bloqueo?\";'),
+('es','messages:ipb-otherblocks-header','s:41:\"{{PLURAL:$1|Otro bloqueo|Otros bloqueos}}\";'),
+('es','messages:ipb-pages-label','s:8:\"Páginas\";'),
+('es','messages:ipb-partial','s:7:\"Parcial\";'),
+('es','messages:ipb-partial-help','s:167:\"Permite seleccionar páginas y espacios de nombres para bloquear. No bloquea las acciones predeterminadas, pero le permite bloquear determinadas acciones específicas.\";'),
+('es','messages:ipb-prevent-user-talk-edit','s:160:\"Se debe permitir editar la propia página de discusión en un bloqueo parcial, salvo que incluya una restricción en el espacio de nombres \"Usuario discusión\".\";'),
+('es','messages:ipb-sitewide','s:16:\"En todo el sitio\";'),
+('es','messages:ipb-sitewide-help','s:194:\"Bloquea la edición en todas las páginas y espacios de nombres. También bloquea las acciones predeterminadas\n([https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Blocking_users Ver ayuda])\";'),
+('es','messages:ipb-unblock','s:31:\"Desbloquear un usuario o una IP\";'),
+('es','messages:ipb-unblock-addr','s:14:\"Desbloquear $1\";'),
+('es','messages:ipb_already_blocked','s:36:\"La cuenta «$1» ya está bloqueada.\";'),
+('es','messages:ipb_blocked_as_range','s:169:\"Error: la dirección IP $1 no está bloqueada directamente y no puede ser desbloqueada.\nSin embargo, está bloqueada como parte del rango $2, que puede ser desbloqueado.\";'),
+('es','messages:ipb_cant_unblock','s:88:\"Error: no se ha encontrado ningún bloqueo para $1. Puede que ya haya sido desbloqueado.\";'),
+('es','messages:ipb_expiry_invalid','s:37:\"El tiempo de caducidad no es válido.\";'),
+('es','messages:ipb_expiry_old','s:44:\"El tiempo de expiración está en el pasado.\";'),
+('es','messages:ipb_expiry_temp','s:64:\"Los bloqueos a nombres de usuario ocultos deben ser indefinidos.\";'),
+('es','messages:ipb_hide_invalid','s:88:\"No se puede suprimir esta cuenta; tiene más de {{PLURAL:$1|una edición|$1 ediciones}}.\";'),
+('es','messages:ipb_hide_partial','s:68:\"Los bloqueos que ocultan nombres de usuario no pueden ser parciales.\";'),
+('es','messages:ipbblocked','s:73:\"No puedes bloquear o desbloquear a otros usuarios porque estás bloqueado\";'),
+('es','messages:ipbcreateaccount','s:20:\"Creación de cuentas\";'),
+('es','messages:ipbemailban','s:29:\"Envío de correo electrónico\";'),
+('es','messages:ipbenableautoblock','s:149:\"Bloquear automáticamente la última dirección IP usada por este usuario y cualquier IP posterior desde la cual intente editar, por un periodo de $1\";'),
+('es','messages:ipbhidename','s:47:\"Ocultar nombre de usuario de ediciones y listas\";'),
+('es','messages:ipblocklist','s:19:\"Usuarios bloqueados\";'),
+('es','messages:ipblocklist-empty','s:34:\"La lista de bloqueos está vacía.\";'),
+('es','messages:ipblocklist-legend','s:32:\"Encontrar a un usuario bloqueado\";'),
+('es','messages:ipblocklist-localblock','s:13:\"Bloqueo local\";'),
+('es','messages:ipblocklist-no-results','s:47:\"El nombre de usuario o IP indicado no coincide.\";'),
+('es','messages:ipblocklist-otherblocks','s:41:\"{{PLURAL:$1|Otro bloqueo|Otros bloqueos}}\";'),
+('es','messages:ipblocklist-submit','s:6:\"Buscar\";'),
+('es','messages:ipbnounblockself','s:23:\"No puedes desbloquearte\";'),
+('es','messages:ipboptions','s:161:\"2 horas:2 hours,1 día:1 day,3 días:3 days,1 semana:1 week,2 semanas:2 weeks,1 mes:1 month,3 meses:3 months,6 meses:6 months,1 año:1 year,para siempre:infinite\";'),
+('es','messages:ipbother','s:23:\"Otra duración o fecha:\";'),
+('es','messages:ipbreason','s:7:\"Motivo:\";'),
+('es','messages:ipbreason-dropdown','s:277:\"*Motivos comunes de bloqueo\n** Añadir información falsa\n** Eliminar contenido de las páginas\n** Publicitar enlaces a otras páginas web\n** Añadir basura en las páginas\n** Comportamiento intimidatorio u hostil\n** Abuso de múltiples cuentas\n** Nombre de usuario inaceptable\";'),
+('es','messages:ipbsubmit','s:23:\"Bloquear a este usuario\";'),
+('es','messages:ipbwatchuser','s:63:\"Vigilar las páginas de usuario y de discusión de este usuario\";'),
+('es','messages:ipusubmit','s:23:\"Desactivar este bloqueo\";'),
+('es','messages:iranian-calendar-m1','s:9:\"Farvardin\";'),
+('es','messages:iranian-calendar-m10','s:3:\"Dey\";'),
+('es','messages:iranian-calendar-m11','s:6:\"Bahman\";'),
+('es','messages:iranian-calendar-m12','s:6:\"Esfand\";'),
+('es','messages:iranian-calendar-m2','s:11:\"Ordibehesht\";'),
+('es','messages:iranian-calendar-m3','s:7:\"Khordad\";'),
+('es','messages:iranian-calendar-m4','s:3:\"Tir\";'),
+('es','messages:iranian-calendar-m5','s:6:\"Mordad\";'),
+('es','messages:iranian-calendar-m6','s:9:\"Shahrivar\";'),
+('es','messages:iranian-calendar-m7','s:4:\"Mehr\";'),
+('es','messages:iranian-calendar-m8','s:4:\"Aban\";'),
+('es','messages:iranian-calendar-m9','s:4:\"Azar\";'),
+('es','messages:isimage','s:17:\"enlace de archivo\";'),
+('es','messages:isredirect','s:18:\"página redirigida\";'),
+('es','messages:istemplate','s:13:\"transclusión\";'),
+('es','messages:jan','s:3:\"ene\";'),
+('es','messages:january','s:5:\"enero\";'),
+('es','messages:january-gen','s:5:\"enero\";'),
+('es','messages:javascripttest','s:21:\"Pruebas de JavaScript\";'),
+('es','messages:javascripttest-qunit-intro','s:67:\"Consulta la [$1 documentación sobre las pruebas] en mediawiki.org.\";'),
+('es','messages:json-error-ctrl-char','s:70:\"Error de carácter de control, posiblemente codificada incorrectamente\";'),
+('es','messages:json-error-depth','s:48:\"Se ha superado la profundidad máxima de la pila\";'),
+('es','messages:json-error-invalid-property-name','s:49:\"El nombre de propiedad decodificado no es válido\";'),
+('es','messages:json-error-state-mismatch','s:40:\"JSON no válido o con formato incorrecto\";'),
+('es','messages:json-error-syntax','s:17:\"Error de sintaxis\";'),
+('es','messages:json-error-unknown','s:51:\"Ocurrió un problema con el código JSON. Error: $1\";'),
+('es','messages:json-error-utf16','s:94:\"Los caracteres UTF-16 tienen errores de formato; probablemente la codificación es incorrecta.\";'),
+('es','messages:json-error-utf8','s:93:\"Los caracteres UTF-8 tienen errores de formato; probablemente la codificación es incorrecta.\";'),
+('es','messages:json-warn-trailing-comma','s:82:\"Se {{PLURAL:$1|eliminó una coma|eliminaron $1 comas}} al final en el archivo JSON\";'),
+('es','messages:jul','s:3:\"jul\";'),
+('es','messages:july','s:5:\"julio\";'),
+('es','messages:july-gen','s:5:\"julio\";'),
+('es','messages:jumpto','s:9:\"Saltar a:\";'),
+('es','messages:jumptonavigation','s:11:\"navegación\";'),
+('es','messages:jumptosearch','s:6:\"buscar\";'),
+('es','messages:jun','s:3:\"jun\";'),
+('es','messages:june','s:5:\"junio\";'),
+('es','messages:june-gen','s:5:\"junio\";'),
+('es','messages:just-now','s:11:\"ahora mismo\";'),
+('es','messages:lag-warn-high','s:177:\"Debido a una alta latencia el servidor de base de datos, los cambios realizados en {{PLURAL:$1|el último segundo|los últimos $1 segundos}} podrían no mostrarse en esta lista.\";'),
+('es','messages:lag-warn-normal','s:120:\"Los cambios realizados en {{PLURAL:$1|el último segundo|los últimos $1 segundos}} podrían no mostrarse en esta lista.\";'),
+('es','messages:laggedreplicamode','s:98:\"Advertencia: puede que falten las actualizaciones más recientes en esta página.\";'),
+('es','messages:language-converter-depth-warning','s:71:\"Se ha superado el límite de profundidad del convertidor de idioma ($1)\";'),
+('es','messages:large-file','s:76:\"Se recomienda que los archivos no sean mayores de $1; este archivo ocupa $2.\";'),
+('es','messages:largefileserver','s:84:\"El tamaño de este archivo es mayor del que este servidor admite por configuración.\";'),
+('es','messages:last','s:3:\"ant\";'),
+('es','messages:lastmodifiedat','s:54:\"Esta página se editó por última vez el $1 a las $2.\";'),
+('es','messages:lastmodifiedatby','s:54:\"$3 editó por última vez esta página el $1 a las $2.\";'),
+('es','messages:license','s:9:\"Licencia:\";'),
+('es','messages:license-header','s:8:\"Licencia\";'),
+('es','messages:license-nopreview','s:33:\"(Previsualización no disponible)\";'),
+('es','messages:licenses','s:1:\"-\";'),
+('es','messages:licenses-edit','s:31:\"Editar las opciones de licencia\";'),
+('es','messages:limitreport-cputime','s:20:\"Tiempo de uso de CPU\";'),
+('es','messages:limitreport-cputime-value','s:33:\"$1 {{PLURAL:$1|segundo|segundos}}\";'),
+('es','messages:limitreport-expansiondepth','s:33:\"Profundidad máxima de expansión\";'),
+('es','messages:limitreport-expansiondepth-value','s:5:\"$1/$2\";'),
+('es','messages:limitreport-expensivefunctioncount','s:45:\"Contador de funciones costosas del analizador\";'),
+('es','messages:limitreport-expensivefunctioncount-value','s:5:\"$1/$2\";'),
+('es','messages:limitreport-postexpandincludesize','s:35:\"Tamaño de inclusión posexpansión\";'),
+('es','messages:limitreport-postexpandincludesize-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),
+('es','messages:limitreport-ppgeneratednodes','s:44:\"N.º de nodos generados por el preprocesador\";'),
+('es','messages:limitreport-ppgeneratednodes-value','s:5:\"$1/$2\";'),
+('es','messages:limitreport-ppvisitednodes','s:44:\"N.º de nodos visitados por el preprocesador\";'),
+('es','messages:limitreport-ppvisitednodes-value','s:5:\"$1/$2\";'),
+('es','messages:limitreport-templateargumentsize','s:39:\"Tamaño de los parámetros de plantilla\";'),
+('es','messages:limitreport-templateargumentsize-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),
+('es','messages:limitreport-title','s:34:\"Datos de perfilado del analizador:\";'),
+('es','messages:limitreport-unstrip-depth','s:49:\"Profundidad de recursión de función «unstrip»\";'),
+('es','messages:limitreport-unstrip-depth-value','s:5:\"$1/$2\";'),
+('es','messages:limitreport-unstrip-size','s:41:\"Tamaño tras la expansión de «unstrip»\";'),
+('es','messages:limitreport-unstrip-size-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),
+('es','messages:limitreport-walltime','s:18:\"Tiempo real de uso\";'),
+('es','messages:limitreport-walltime-value','s:33:\"$1 {{PLURAL:$1|segundo|segundos}}\";'),
+('es','messages:lineno','s:10:\"Línea $1:\";'),
+('es','messages:linkaccounts','s:16:\"Vincular cuentas\";'),
+('es','messages:linkaccounts-submit','s:16:\"Vincular cuentas\";'),
+('es','messages:linkaccounts-success-text','s:24:\"La cuenta fue vinculada.\";'),
+('es','messages:linksearch','s:29:\"Búsqueda de enlaces externos\";'),
+('es','messages:linksearch-error','s:68:\"Los comodines solo pueden aparecer al principio del nombre de sitio.\";'),
+('es','messages:linksearch-line','s:20:\"$1 enlazado desde $2\";'),
+('es','messages:linksearch-ns','s:19:\"Espacio de nombres:\";'),
+('es','messages:linksearch-ok','s:6:\"Buscar\";'),
+('es','messages:linksearch-pat','s:21:\"Patrón de búsqueda:\";'),
+('es','messages:linksearch-summary','s:0:\"\";'),
+('es','messages:linksearch-text','s:185:\"Se pueden usar caracteres comodín como «*.wikipedia.org».($2)\";'),
+('es','messages:listgrants-rights','s:8:\"Derechos\";'),
+('es','messages:listgrants-summary','s:475:\"La siguiente es una lista de concesiones con sus permisos de usuario asociados. Los usuarios pueden autorizar aplicaciones para que usen sus cuentas, pero con permisos limitados basados en las concesiones que el usuario le dio a la aplicación. De todas formas, una aplicación que actúe en nombre de un usuario no puede hacer uso de permisos que el usuario no posea.\nPuede haber [[{{MediaWiki:Listgrouprights-helppage}}|información adicional]] sobre permisos individuales.\";'),
+('es','messages:listgrouprights','s:34:\"Permisos de los grupos de usuarios\";'),
+('es','messages:listgrouprights-addgroup','s:38:\"Agregar {{PLURAL:$2|grupo|grupos}}: $1\";'),
+('es','messages:listgrouprights-addgroup-all','s:24:\"Agregar todos los grupos\";'),
+('es','messages:listgrouprights-addgroup-self','s:57:\"Agregar {{PLURAL:$2|grupo|grupos}} a su propia cuenta: $1\";'),
+('es','messages:listgrouprights-addgroup-self-all','s:43:\"Agregar todos los grupos a tu propia cuenta\";'),
+('es','messages:listgrouprights-group','s:5:\"Grupo\";'),
+('es','messages:listgrouprights-helppage','s:23:\"Help:Permisos de grupos\";'),
+('es','messages:listgrouprights-key','s:137:\"Leyenda:\n* Derecho concedido\n* Derecho revocado\";'),
+('es','messages:listgrouprights-members','s:19:\"(lista de miembros)\";'),
+('es','messages:listgrouprights-namespaceprotection-header','s:36:\"Restricciones del espacio de nombres\";'),
+('es','messages:listgrouprights-namespaceprotection-namespace','s:18:\"Espacio de nombres\";'),
+('es','messages:listgrouprights-namespaceprotection-restrictedto','s:31:\"Derechos de usuario para editar\";'),
+('es','messages:listgrouprights-removegroup','s:39:\"Eliminar {{PLURAL:$2|grupo|grupos}}: $1\";'),
+('es','messages:listgrouprights-removegroup-all','s:25:\"Eliminar todos los grupos\";'),
+('es','messages:listgrouprights-removegroup-self','s:59:\"Eliminar {{PLURAL:$2|grupo|grupos}} de su propia cuenta: $1\";'),
+('es','messages:listgrouprights-removegroup-self-all','s:45:\"Eliminar todos los grupos de tu propia cuenta\";'),
+('es','messages:listgrouprights-right-display','s:65:\"$1 ($2)\";'),
+('es','messages:listgrouprights-right-revoked','s:65:\"$1 ($2)\";'),
+('es','messages:listgrouprights-rights','s:8:\"Derechos\";'),
+('es','messages:listgrouprights-summary','s:220:\"La siguiente es una lista de los grupos de usuarios definidos en esta wiki y de sus permisos de acceso asociados.\nPuede haber [[{{MediaWiki:Listgrouprights-helppage}}|información adicional]] sobre permisos individuales.\";'),
+('es','messages:listredirects','s:22:\"Lista de redirecciones\";'),
+('es','messages:listredirects-summary','s:0:\"\";'),
+('es','messages:listusers','s:17:\"Lista de usuarios\";'),
+('es','messages:listusers-blocked','s:35:\"({{GENDER:$1|bloqueado|bloqueada}})\";'),
+('es','messages:listusers-creationsort','s:31:\"Ordenado por fecha de creación\";'),
+('es','messages:listusers-desc','s:28:\"Ordenar de forma descendente\";'),
+('es','messages:listusers-editsonly','s:36:\"Muestra sólo usuarios con ediciones\";'),
+('es','messages:listusers-noresult','s:27:\"No se encontró al usuario.\";'),
+('es','messages:listusers-submit','s:7:\"Mostrar\";'),
+('es','messages:listusers-summary','s:0:\"\";'),
+('es','messages:listusers-temporarygroupsonly','s:53:\"Mostrar solo usuarios en grupos de usuario temporales\";'),
+('es','messages:listusersfrom','s:34:\"Mostrar usuarios que empiecen por:\";'),
+('es','messages:localtime','s:11:\"Hora local:\";'),
+('es','messages:lockbtn','s:25:\"Bloquear la base de datos\";'),
+('es','messages:lockconfirm','s:48:\"Sí, realmente quiero bloquear la base de datos.\";'),
+('es','messages:lockdb','s:25:\"Bloquear la base de datos\";'),
+('es','messages:lockdbsuccesssub','s:37:\"El bloqueo se ha realizado con éxito\";'),
+('es','messages:lockdbsuccesstext','s:136:\"La base de datos de {{SITENAME}} ha sido bloqueada.\nimage/jpeg.\";'),
+('es','messages:mimetype','s:10:\"Tipo MIME:\";'),
+('es','messages:minerva-download','s:16:\"Descargar en PDF\";'),
+('es','messages:minerva-last-modified-date','s:31:\"Última edición el $1 a las $2\";'),
+('es','messages:minerva-meta-data-issues-section-header','s:24:\"Problemas de la sección\";'),
+('es','messages:minerva-page-actions-backlinks','s:19:\"Lo que enlaza aquí\";'),
+('es','messages:minerva-page-actions-cite','s:13:\"Citar página\";'),
+('es','messages:minerva-page-actions-delete','s:6:\"Borrar\";'),
+('es','messages:minerva-page-actions-history','s:9:\"Historial\";'),
+('es','messages:minerva-page-actions-info','s:26:\"Información de la página\";'),
+('es','messages:minerva-page-actions-language-switcher','s:7:\"Idiomas\";'),
+('es','messages:minerva-page-actions-logs','s:9:\"Registros\";'),
+('es','messages:minerva-page-actions-move','s:9:\"Trasladar\";'),
+('es','messages:minerva-page-actions-overflow','s:4:\"Más\";'),
+('es','messages:minerva-page-actions-permalink','s:17:\"Enlace permanente\";'),
+('es','messages:minerva-page-actions-protect','s:8:\"Proteger\";'),
+('es','messages:minerva-page-actions-unprotect','s:11:\"Desproteger\";'),
+('es','messages:minerva-page-actions-user-groups','s:18:\"Grupos de usuarios\";'),
+('es','messages:minerva-page-actions-wikibase','s:26:\"Elemento de {{WBREPONAME}}\";'),
+('es','messages:minerva-skin-desc','s:39:\"La primera apariencia móvil responsiva\";'),
+('es','messages:minerva-talk-add-topic','s:12:\"Añadir tema\";'),
+('es','messages:minerva-talk-explained','s:19:\"Discusiones activas\";'),
+('es','messages:minerva-talk-explained-empty','s:35:\"No hay discusiones en esta página.\";'),
+('es','messages:minerva-talk-full-page','s:25:\"Leer como página de wiki\";'),
+('es','messages:minerva-talk-reply-success','s:52:\"Se guardó tu respuesta en la página de discusión.\";'),
+('es','messages:minerva-talk-topic-feedback','s:53:\"Se añadió un nuevo tema a la página de discusión.\";'),
+('es','messages:minerva-user-menu-button','s:16:\"Menú de usuario\";'),
+('es','messages:minerva-user-navigation','s:22:\"Navegación de usuario\";'),
+('es','messages:minerva-watchlist-cta','s:80:\"Mantén esta página en seguimiento y todos los cambios que se realicen en ella.\";'),
+('es','messages:minerva.css','s:67:\"/* All CSS here will be loaded for users of the MinervaNeue skin */\";'),
+('es','messages:minerva.js','s:74:\"/* All JavaScript here will be loaded for users of the MinervaNeue skin */\";'),
+('es','messages:minimum-size','s:15:\"Tamaño mínimo\";'),
+('es','messages:minlength1','s:54:\"Los nombres de archivo deben tener al menos una letra.\";'),
+('es','messages:minoredit','s:26:\"Esta es una edición menor\";'),
+('es','messages:minoreditletter','s:1:\"m\";'),
+('es','messages:minutes','s:34:\"{{PLURAL:$1|un minuto|$1 minutos}}\";'),
+('es','messages:minutes-abbrev','s:3:\"$1m\";'),
+('es','messages:minutes-ago','s:39:\"hace {{PLURAL:$1|un minuto|$1 minutos}}\";'),
+('es','messages:missing-article','s:383:\"La base de datos no ha encontrado el texto de la página «$1» $2, cuando debería haberse hallado.\n\nLa causa de esto suele ser un \'\'diff\'\' anacrónico o un enlace al historial de una página que ha sido borrada.\n\nSi no fuera el caso, puede que hayas encontrado un fallo en el software.\n\nPor favor, informa de esto a [[Special:ListUsers/sysop|administrador]], y anota la URL actual.\";'),
+('es','messages:missing-revision','s:286:\"La revisión n.º $1 de la página «{{FULLPAGENAME}}» no existe.\n\nEsto suele ocurrir cuando se sigue un enlace de historial obsoleto que apunta a una página ya borrada.\nPuedes encontrar detalles en el [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} registro de borrados].\";'),
+('es','messages:missing-revision-content','s:83:\"No se pudo cargar el contenido de la revisión #$1 de la página denominada «$2».\";'),
+('es','messages:missing-revision-permission','s:224:\"La revisión #$1 pertenece a una página borrada. Puedes [{{fullurl:{{#Special:Undelete}}|target=$3×tamp=$2&diff=prev}} verla]. Hay más detalles en el [{{fullurl:{{#Special:Log}}/delete|page=$3}} registro de borrados].\";'),
+('es','messages:missingarticle-diff','s:20:\"(diferencia: $1, $2)\";'),
+('es','messages:missingarticle-rev','s:15:\"(revisión: $1)\";'),
+('es','messages:missingcommentheader','s:140:\"Atención: no has escrito un asunto para este comentario.\nSi haces clic nuevamente en \"$1\" tu edición se grabará sin él.\";'),
+('es','messages:missingcommenttext','s:22:\"Escribe un comentario.\";'),
+('es','messages:missingsummary','s:132:\"Atención: no has escrito un resumen de edición.\nSi haces clic de nuevo en «$1» tu edición se grabará sin él.\";'),
+('es','messages:mobile-frontend-cookies-required','s:101:\"Las «cookies» permiten cambiar entre los modos de visualización. Actívalas e inténtalo de nuevo.\";'),
+('es','messages:mobile-frontend-editor-edit','s:6:\"Editar\";'),
+('es','messages:mobile-frontend-editor-redlink-create','s:13:\"Crear página\";'),
+('es','messages:mobile-frontend-editor-redlink-explain','s:34:\"Esta página no se ha creado aún.\";'),
+('es','messages:mobile-frontend-editor-redlink-leave','s:12:\"No, gracias.\";'),
+('es','messages:mobile-frontend-history','s:46:\"Ver el historial de ediciones de esta página.\";'),
+('es','messages:mobile-frontend-home-button','s:6:\"Inicio\";'),
+('es','messages:mobile-frontend-language-article-heading','s:6:\"Idioma\";'),
+('es','messages:mobile-frontend-languages-not-available','s:50:\"Esta página no está disponible en otros idiomas.\";'),
+('es','messages:mobile-frontend-main-menu-button-tooltip','s:21:\"Abrir menú principal\";'),
+('es','messages:mobile-frontend-main-menu-contributions','s:14:\"Contribuciones\";'),
+('es','messages:mobile-frontend-main-menu-login','s:7:\"Acceder\";'),
+('es','messages:mobile-frontend-main-menu-logout','s:5:\"Salir\";'),
+('es','messages:mobile-frontend-main-menu-nearby','s:8:\"Cercanos\";'),
+('es','messages:mobile-frontend-main-menu-settings','s:14:\"Configuración\";'),
+('es','messages:mobile-frontend-main-menu-watchlist','s:20:\"Lista de seguimiento\";'),
+('es','messages:mobile-frontend-meta-data-issues','s:23:\"Problemas de la página\";'),
+('es','messages:mobile-frontend-meta-data-issues-categories','s:25:\"Acerca de esta categoría\";'),
+('es','messages:mobile-frontend-meta-data-issues-header','s:23:\"Problemas de la página\";'),
+('es','messages:mobile-frontend-meta-data-issues-header-talk','s:22:\"Acerca de esta página\";'),
+('es','messages:mobile-frontend-meta-data-issues-talk','s:36:\"Acerca de esta página de discusión\";'),
+('es','messages:mobile-frontend-notifications-filter','s:6:\"Filtro\";'),
+('es','messages:mobile-frontend-pageaction-edit-tooltip','s:48:\"Editar la sección introductoria de esta página\";'),
+('es','messages:mobile-frontend-placeholder','s:22:\"Buscar en {{SITENAME}}\";'),
+('es','messages:mobile-frontend-random-button','s:7:\"Al azar\";'),
+('es','messages:mobile-frontend-redirected-from','s:24:\"Redirigido de «[[$1]]»\";'),
+('es','messages:mobile-frontend-talk-back-to-filepage','s:25:\"Volver al archivo «$1».\";'),
+('es','messages:mobile-frontend-talk-back-to-page','s:27:\"Volver a la página «$1».\";'),
+('es','messages:mobile-frontend-talk-back-to-projectpage','s:39:\"Volver a la página de proyecto «$1».\";'),
+('es','messages:mobile-frontend-talk-back-to-userpage','s:67:\"Volver a la página {{GENDER:$1|del usuario|de la usuaria}} «$1».\";'),
+('es','messages:mobile-frontend-user-button-tooltip','s:26:\"Mostrar mis notificaciones\";'),
+('es','messages:mobile-frontend-user-newmessages','s:50:\"Tienes mensajes nuevos en tu página de discusión\";'),
+('es','messages:mobile-frontend-user-page-contributions','s:14:\"Contribuciones\";'),
+('es','messages:mobile-frontend-user-page-member-since','s:28:\"{{GENDER:$2|Se unió}} el $1\";'),
+('es','messages:mobile-frontend-user-page-talk','s:10:\"Discusión\";'),
+('es','messages:modeleditnotsupported-text','s:55:\"No se admite la edición en el modelo de contenidos $1.\";'),
+('es','messages:modeleditnotsupported-title','s:24:\"No se admite la edición\";'),
+('es','messages:modifiedarticleprotection','s:45:\"cambió el nivel de protección de «[[$1]]»\";');
+INSERT INTO `twl10n_cache` VALUES
+('es','messages:modifiedarticleprotection-comment','s:68:\"{{GENDER:$2|Cambió}} la configuración de protección de «[[$1]]»\";'),
+('es','messages:mon','s:3:\"lun\";'),
+('es','messages:monday','s:5:\"lunes\";'),
+('es','messages:monday-at','s:17:\"el lunes a las $1\";'),
+('es','messages:monobook-action-addsection','s:1:\"+\";'),
+('es','messages:monobook-action-undelete','s:49:\"Restaurar {{PLURAL:$1|una edición|$1 ediciones}}\";'),
+('es','messages:monobook-cactions-label','s:19:\"Acciones de página\";'),
+('es','messages:monobook-desc','s:118:\"La apariencia clásica de MediaWiki desde 2004, cuyo nombre viene de la foto en blanco y negro de un libro en el fondo\";'),
+('es','messages:monobook-jumptonavigation','s:19:\"Ir a la navegación\";'),
+('es','messages:monobook-jumptopersonal','s:23:\"herramientas de usuario\";'),
+('es','messages:monobook-jumptosearch','s:17:\"Ir a la búsqueda\";'),
+('es','messages:monobook-jumptotop','s:19:\"volver al principio\";'),
+('es','messages:monobook-more-actions','s:4:\"Más\";'),
+('es','messages:monobook-notifications-link','s:19:\"Notificaciones ($1)\";'),
+('es','messages:monobook-notifications-link-none','s:14:\"Notificaciones\";'),
+('es','messages:monobook-view-history','s:9:\"Historial\";'),
+('es','messages:monobook.css','s:96:\"/* El CSS colocado en esta página afectará a los usuarios que usen la apariencia \"MonoBook\" */\";'),
+('es','messages:monobook.js','s:103:\"/* El código JavaScript que se ponga aquí será cargado por los usuarios de la apariencia MonoBook */\";'),
+('es','messages:month','s:28:\"Desde el mes (y anteriores):\";'),
+('es','messages:months','s:29:\"{{PLURAL:$1|$1 mes|$1 meses}}\";'),
+('es','messages:monthsall','s:5:\"todos\";'),
+('es','messages:moredotdotdot','s:7:\"Más…\";'),
+('es','messages:morelinkstoimage','s:62:\"Mira [[Special:WhatLinksHere/$1|más enlaces]] a este archivo.\";'),
+('es','messages:morenotlisted','s:34:\"Esta lista puede estar incompleta.\";'),
+('es','messages:mostcategories','s:29:\"Páginas con más categorías\";'),
+('es','messages:mostcategories-summary','s:0:\"\";'),
+('es','messages:mostimages','s:23:\"Archivos más enlazados\";'),
+('es','messages:mostimages-summary','s:0:\"\";'),
+('es','messages:mostinterwikis','s:28:\"Páginas con más interwikis\";'),
+('es','messages:mostinterwikis-summary','s:0:\"\";'),
+('es','messages:mostlinked','s:23:\"Páginas más enlazadas\";'),
+('es','messages:mostlinked-summary','s:0:\"\";'),
+('es','messages:mostlinkedcategories','s:26:\"Categorías más enlazadas\";'),
+('es','messages:mostlinkedcategories-summary','s:0:\"\";'),
+('es','messages:mostlinkedtemplates','s:26:\"Páginas más transcluidas\";'),
+('es','messages:mostlinkedtemplates-summary','s:0:\"\";'),
+('es','messages:mostrevisions','s:29:\"Artículos con más ediciones\";'),
+('es','messages:mostrevisions-summary','s:0:\"\";'),
+('es','messages:move','s:9:\"Trasladar\";'),
+('es','messages:move-leave-redirect','s:22:\"Dejar una redirección\";'),
+('es','messages:move-over-sharedrepo','s:118:\"[[:$1]] existe en un repositorio compartido. Trasladar el archivo a este título sobrescribirá el archivo compartido.\";'),
+('es','messages:move-page','s:12:\"Trasladar $1\";'),
+('es','messages:move-page-legend','s:20:\"Trasladar la página\";'),
+('es','messages:move-redirect-suppressed','s:19:\"redirect suppressed\";'),
+('es','messages:move-redirect-text','s:0:\"\";'),
+('es','messages:move-subpages','s:45:\"Intentar trasladar las subpáginas (hasta $1)\";'),
+('es','messages:move-talk-subpages','s:59:\"Intentar trasladar las subpáginas de discusión (hasta $1)\";'),
+('es','messages:move-watch','s:36:\"Vigilar páginas de origen y destino\";'),
+('es','messages:movecategorypage-warning','s:220:\"Advertencia: estás a punto de trasladar una página de categoría. Ten en cuenta que se trasladará sólo la página, y las páginas en la antigua categoría no se recategorizarán en la nueva.\";'),
+('es','messages:movedarticleprotection','s:49:\"cambiadas protecciones de «[[$2]]» a «[[$1]]»\";'),
+('es','messages:moveddeleted-notice','s:136:\"Esta página no existe.\nA continuación se muestra como referencia el registro de eliminaciones, protecciones y traslados de la página.\";'),
+('es','messages:moveddeleted-notice-recent','s:194:\"Esta página se ha eliminado recientemente (durante las últimas 24 horas).\nA continuación, se muestra el registro de eliminaciones, protecciones y traslados de la página a modo de referencia.\";'),
+('es','messages:movelogpage','s:21:\"Registro de traslados\";'),
+('es','messages:movelogpagetext','s:53:\"Abajo se encuentra una lista de páginas trasladadas.\";'),
+('es','messages:movenologintext','s:111:\"Es necesario ser usuario registrado y [[Special:UserLogin|haber accedido a tu cuenta]] para trasladar páginas.\";'),
+('es','messages:movenosubpage','s:34:\"Esta página no tiene subpáginas.\";'),
+('es','messages:movenotallowed','s:42:\"No tienes permiso para trasladar páginas.\";'),
+('es','messages:movenotallowedfile','s:42:\"No tienes permiso para trasladar archivos.\";'),
+('es','messages:movepage-delete-first','s:180:\"La página de destino tiene demasiadas revisiones a eliminar como parte de una página trasladada. Primero elimina la página de forma manual y a continuación inténtalo de nuevo.\";'),
+('es','messages:movepage-invalid-target-title','s:35:\"El nombre solicitado no es válido.\";'),
+('es','messages:movepage-max-pages','s:144:\"Se {{PLURAL:$1|ha trasladado un máximo de una página|han trasladado un máximo de $1 páginas}}, y no van a trasladarse más automáticamente.\";'),
+('es','messages:movepage-moved','s:51:\"«$1» ha sido trasladada a «$2»\";'),
+('es','messages:movepage-moved-noredirect','s:48:\"Se ha suprimido la creación de la redirección.\";'),
+('es','messages:movepage-moved-redirect','s:30:\"Se ha creado una redirección.\";'),
+('es','messages:movepage-page-exists','s:85:\"La página $1 ya existe, por lo que no se puede cambiarle el nombre automáticamente.\";'),
+('es','messages:movepage-page-moved','s:38:\"La página $1 ha sido trasladada a $2.\";'),
+('es','messages:movepage-page-unmoved','s:45:\"La página $1 no se ha podido trasladar a $2.\";'),
+('es','messages:movepage-source-doesnt-exist','s:59:\"La página $1 no existe por lo que no puede ser trasladada.\";'),
+('es','messages:movepage-summary','s:0:\"\";'),
+('es','messages:movepagebtn','s:20:\"Trasladar la página\";'),
+('es','messages:movepagetalktext','s:259:\"Si marcas esta casilla, la página de discusión asociada se trasladará automáticamente al título nuevo a menos que ya exista una página de discusión no vacía allí.\n\nEn este caso, deberás trasladar o fusionar manualmente la página si así lo quieres.\";'),
+('es','messages:movepagetext','s:1033:\"Al usar el siguiente formulario, se renombrará una página y se trasladará todo su historial al nuevo nombre.\nEl título anterior se convertirá en una redirección al título nuevo.\nPuedes actualizar automáticamente las redirecciones que apuntan al título original.\nSi eliges no hacerlo, asegúrate de revisar posibles redirecciones [[Special:DoubleRedirects|dobles]] o [[Special:BrokenRedirects|incorrectas]].\nTú eres responsable de asegurarte de que los enlaces sigan apuntando adonde se supone que deberían hacerlo.\n\nRecuerda que la página no se trasladará si ya existe una página con el título nuevo, salvo que sea una redirección y no tenga historial de edición.\nEsto significa que podrás renombrar una página a su título original si has cometido un error, pero que no podrás sobrescribir una página existente.\n\nNota:\nEste puede ser un cambio drástico e inesperado para una página popular; asegúrate de entender las consecuencias del procedimiento antes de seguir adelante.\";'),
+('es','messages:movepagetext-noredirectfixer','s:917:\"Al usar el siguiente formulario, se renombrará una página y se trasladará todo su historial al nuevo nombre.\nEl título anterior se convertirá en una redirección al título nuevo.\nAsegúrate de no dejar [[Special:DoubleRedirects|redirecciones dobles]] o [[Special:BrokenRedirects|incorrectas]].\nTú eres responsable de asegurarte de que los enlaces sigan apuntando adonde se supone que deberían hacerlo.\n\nRecuerda que la página no se trasladará si ya existe una página con el título nuevo, salvo que sea una redirección y no tenga historial de edición.\nEsto significa que podrás renombrar una página a su título original si has cometido un error, pero que no podrás sobrescribir una página existente.\n\nNota:\nEste puede ser un cambio drástico e inesperado para una página popular; asegúrate de entender las consecuencias del procedimiento antes de seguir adelante.\";'),
+('es','messages:movepagetext-noredirectsupport','s:649:\"Al usar el siguiente formulario, se renombrará una página y se trasladará todo su historial al nuevo nombre.\nEres responsable de asegurarte de que todos los enlaces tras el traslado siguen apuntando hacia donde deberían.\n\nRecuerda que la página no se trasladará si ya existe una página con el título nuevo.\nEsto significa que podrás renombrar una página a su título original si has cometido un error, pero que no podrás sobrescribir una página existente.\n\nNota:\nEste puede ser un cambio drástico e inesperado para una página popular;\nasegúrate de entender las consecuencias antes de seguir adelante.\";'),
+('es','messages:movereason','s:7:\"Motivo:\";'),
+('es','messages:movesubpage','s:36:\"{{PLURAL:$1|Subpágina|Subpáginas}}\";'),
+('es','messages:movesubpagetalktext','s:118:\"La página de discusión tiene $1 {{PLURAL:$1|subpágina que se muestra|subpáginas que se muestran}} a continuación.\";'),
+('es','messages:movesubpagetext','s:87:\"Esta página tiene {{PLURAL:$1|la siguiente subpágina|las siguientes $1 subpáginas}}:\";'),
+('es','messages:movetalk','s:43:\"Renombrar la página de discusión asociada\";'),
+('es','messages:movethispage','s:22:\"Trasladar esta página\";'),
+('es','messages:moveuserpage-warning','s:170:\"Advertencia: estás a punto de trasladar una página de usuario. Ten en cuenta que solo se trasladará la página; el usuario no se renombrará.\";'),
+('es','messages:mute-preferences','s:24:\"Preferencias de silencio\";'),
+('es','messages:mw-widgets-abandonedit','s:71:\"¿Seguro que deseas abandonar el modo de edición sin publicar primero?\";'),
+('es','messages:mw-widgets-abandonedit-discard','s:19:\"Descartar ediciones\";'),
+('es','messages:mw-widgets-abandonedit-keep','s:18:\"Continuar editando\";'),
+('es','messages:mw-widgets-abandonedit-title','s:9:\"¿Seguro?\";'),
+('es','messages:mw-widgets-categoryselector-add-category-placeholder','s:25:\"Agregar una categoría...\";'),
+('es','messages:mw-widgets-copytextlayout-copy','s:6:\"Copiar\";'),
+('es','messages:mw-widgets-copytextlayout-copy-fail','s:37:\"No se pudo copiar en el portapapeles.\";'),
+('es','messages:mw-widgets-copytextlayout-copy-success','s:27:\"Copiado en el portapapeles.\";'),
+('es','messages:mw-widgets-dateinput-no-date','s:26:\"Ninguna fecha seleccionada\";'),
+('es','messages:mw-widgets-dateinput-placeholder-day','s:10:\"AAAA-MM-DD\";'),
+('es','messages:mw-widgets-dateinput-placeholder-month','s:7:\"AAAA-MM\";'),
+('es','messages:mw-widgets-mediasearch-input-placeholder','s:17:\"Buscar multimedia\";'),
+('es','messages:mw-widgets-mediasearch-noresults','s:32:\"No se han encontrado resultados.\";'),
+('es','messages:mw-widgets-mediasearch-recent-uploads','s:35:\"{{GENDER:$1|Tus}} subidas recientes\";'),
+('es','messages:mw-widgets-mediasearch-results-aria-label','s:33:\"Resultados de búsqueda de medios\";'),
+('es','messages:mw-widgets-table-row-delete','s:13:\"Eliminar fila\";'),
+('es','messages:mw-widgets-tagmultiselect-placeholder','s:15:\"Añadir más…\";'),
+('es','messages:mw-widgets-titleinput-description-new-page','s:25:\"la página aún no existe\";'),
+('es','messages:mw-widgets-titleinput-description-redirect','s:14:\"redirigir a $1\";'),
+('es','messages:mw-widgets-titlesmultiselect-placeholder','s:15:\"Añadir más...\";'),
+('es','messages:mw-widgets-usersmultiselect-placeholder','s:15:\"Añadir más…\";'),
+('es','messages:mycontris','s:14:\"Contribuciones\";'),
+('es','messages:mycustomcssprotected','s:47:\"No tienes permiso para editar esta página CSS.\";'),
+('es','messages:mycustomjsonprotected','s:48:\"No tienes permiso para editar esta página JSON.\";'),
+('es','messages:mycustomjsprotected','s:54:\"No tienes permiso para editar esta página JavaScript.\";'),
+('es','messages:mycustomjsredirectprotected','s:128:\"No tienes permiso para editar esta página JavaScript porque es una redirección y no apunta hacia tu propio espacio de usuario.\";'),
+('es','messages:mypage','s:7:\"Página\";'),
+('es','messages:mypreferences','s:12:\"Preferencias\";'),
+('es','messages:mypreferencesprotected','s:47:\"No tienes permiso para editar tus preferencias.\";'),
+('es','messages:myprivateinfoprotected','s:54:\"No tienes permiso para editar tu información privada.\";'),
+('es','messages:mytalk','s:10:\"Discusión\";'),
+('es','messages:mywatchlist','s:20:\"Lista de seguimiento\";'),
+('es','messages:namespace','s:19:\"Espacio de nombres:\";'),
+('es','messages:namespace-nosubpages','s:52:\"El espacio de nombres «$1» no permite subpáginas.\";'),
+('es','messages:namespace_association','s:27:\"Espacio de nombres asociado\";'),
+('es','messages:namespaceprotected','s:86:\"No tienes permiso para editar las páginas del espacio de nombres $1.\";'),
+('es','messages:namespaces','s:19:\"Espacios de nombres\";'),
+('es','messages:namespacesall','s:5:\"todos\";'),
+('es','messages:nav-login-createaccount','s:20:\"Acceder/crear cuenta\";'),
+('es','messages:navigation','s:11:\"Navegación\";'),
+('es','messages:navigation-heading','s:20:\"Menú de navegación\";'),
+('es','messages:nbytes','s:27:\"$1 {{PLURAL:$1|byte|bytes}}\";'),
+('es','messages:ncategories','s:39:\"$1 {{PLURAL:$1|categoría|categorías}}\";'),
+('es','messages:nchanges','s:31:\"$1 {{PLURAL:$1|cambio|cambios}}\";'),
+('es','messages:negative-namespace-not-supported','s:66:\"Los espacios de nombres con valores negativos no están permitidos\";'),
+('es','messages:newarticle','s:7:\"(Nuevo)\";'),
+('es','messages:newarticletext','s:248:\"Has seguido un enlace a una página que aún no existe.\nPara crear esta página, escribe en el cuadro que aparece a continuación. Para más información, consulta la [$1 página de ayuda].\nSi llegaste aquí por error, vuelve a la página anterior.\";'),
+('es','messages:newarticletextanon','s:25:\"{{int:newarticletext|$1}}\";'),
+('es','messages:newimages','s:27:\"Galería de archivos nuevos\";'),
+('es','messages:newimages-hidepatrolled','s:31:\"Ocultar las subidas verificadas\";'),
+('es','messages:newimages-legend','s:6:\"Filtro\";'),
+('es','messages:newimages-mediatype','s:14:\"Tipo de medio:\";'),
+('es','messages:newimages-showbots','s:23:\"Mostrar subidas de bots\";'),
+('es','messages:newimages-summary','s:76:\"Esta página especial muestra una galería de los últimos archivos subidos.\";'),
+('es','messages:newimages-user','s:33:\"Dirección IP o nombre de usuario\";'),
+('es','messages:newimagestext','s:1:\"-\";'),
+('es','messages:newmessagesdifflinkplural','s:49:\"{{PLURAL:$1|último cambio|999=últimos cambios}}\";'),
+('es','messages:newmessageslinkplural','s:50:\"{{PLURAL:$1|un mensaje nuevo|999=mensajes nuevos}}\";'),
+('es','messages:newpage','s:13:\"Página nueva\";'),
+('es','messages:newpageletter','s:1:\"N\";'),
+('es','messages:newpages','s:15:\"Páginas nuevas\";'),
+('es','messages:newpages-submit','s:7:\"Mostrar\";'),
+('es','messages:newpages-summary','s:0:\"\";'),
+('es','messages:newpages-username','s:18:\"Nombre de usuario:\";'),
+('es','messages:newpassword','s:18:\"Contraseña nueva:\";'),
+('es','messages:newsection','s:14:\"Sección nueva\";'),
+('es','messages:newsection-page','s:18:\"Página de destino\";'),
+('es','messages:newsection-submit','s:15:\"Ir a la página\";'),
+('es','messages:newsection-summary','s:0:\"\";'),
+('es','messages:newsectionheaderdefaultlevel','s:8:\"== $1 ==\";'),
+('es','messages:newsectionsummary','s:24:\"Sección nueva: /* $1 */\";'),
+('es','messages:newtalkseparator','s:6:\", \";'),
+('es','messages:newtitle','s:14:\"Título nuevo:\";'),
+('es','messages:newuserlog-autocreate-entry','s:29:\"Account created automatically\";'),
+('es','messages:newuserlog-create-entry','s:16:\"New user account\";'),
+('es','messages:newuserlog-create2-entry','s:22:\"created new account $1\";'),
+('es','messages:newuserlogpage','s:33:\"Registro de creación de usuarios\";'),
+('es','messages:newuserlogpagetext','s:45:\"Este es un registro de creación de usuarios.\";'),
+('es','messages:newwindow','s:30:\"(se abre en una ventana nueva)\";'),
+('es','messages:next','s:3:\"sig\";'),
+('es','messages:next-page','s:17:\"página siguiente\";'),
+('es','messages:nextdiff','s:22:\"Edición siguiente →\";'),
+('es','messages:nextn','s:37:\"{{PLURAL:$1|siguiente|$1 siguientes}}\";'),
+('es','messages:nextn-title','s:58:\"$1 {{PLURAL:$1|resultado siguiente|resultados siguientes}}\";'),
+('es','messages:nextpage','s:22:\"Página siguiente ($1)\";'),
+('es','messages:nextrevision','s:23:\"Revisión siguiente →\";'),
+('es','messages:nimagelinks','s:46:\"Usado en {{PLURAL:$1|una página|$1 páginas}}\";'),
+('es','messages:ninterwikis','s:37:\"$1 {{PLURAL:$1|interwiki|interwikis}}\";'),
+('es','messages:nlinks','s:31:\"$1 {{PLURAL:$1|enlace|enlaces}}\";'),
+('es','messages:nmembers','s:37:\"$1 {{PLURAL:$1|artículo|artículos}}\";'),
+('es','messages:nmemberschanged','s:40:\"$1 → $2 {{PLURAL:$2|miembro|miembros}}\";'),
+('es','messages:no-null-revision','s:62:\"No se pudo crear una nueva revisión nula en la página «$1»\";'),
+('es','messages:noarticletext','s:326:\"En este momento no hay texto en esta página.\nPuedes [[Special:Search/{{PAGENAME}}|buscar el título de esta página]] en otras páginas,\n[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} buscar en los registros relacionados],\no [{{fullurl:{{FULLPAGENAME}}|action=edit}} crear esta página].\";'),
+('es','messages:noarticletext-nopermission','s:304:\"Actualmente no hay texto en esta página.\nPuedes [[Special:Search/{{PAGENAME}}|buscar este título de página]] en otras páginas, o [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} buscar en los registros relacionados], pero no tienes permiso para crear esta página.\";'),
+('es','messages:noarticletextanon','s:21:\"{{int:noarticletext}}\";'),
+('es','messages:noautoblockblock','s:31:\"bloqueo automático desactivado\";'),
+('es','messages:nocontribs','s:57:\"No se encontraron cambios que cumplieran estos criterios.\";'),
+('es','messages:nocookiesforlogin','s:22:\"{{int:nocookieslogin}}\";'),
+('es','messages:nocookiesfornew','s:175:\"No se pudo crear la cuenta de usuario, porque no pudimos confirmar su origen.\nAsegúrate de que tienes las cookies activadas, luego recarga esta página e inténtalo de nuevo.\";'),
+('es','messages:nocookieslogin','s:176:\"{{SITENAME}} utiliza cookies para la autenticación de usuarios. Las cookies están desactivadas en tu navegador. Por favor, actívalas e inténtalo de nuevo.\";'),
+('es','messages:nocookiesnew','s:278:\"Se ha creado la cuenta de usuario, pero aún no has iniciado sesión.\n{{SITENAME}} usa cookies para identificar a los usuarios registrados.\nTu navegador tiene desactivadas las cookies.\nPor favor, actívalas e inicia sesión con tu nuevo nombre de usuario y contraseña.\";'),
+('es','messages:nocreate-loggedin','s:45:\"No tienes permiso para crear páginas nuevas.\";'),
+('es','messages:nocreatetext','s:177:\"{{SITENAME}} ha restringido la posibilidad de crear nuevas páginas.\nPuedes volver atrás y editar una página existente, [[Special:UserLogin|identificarte o crear una cuenta]].\";'),
+('es','messages:nocredits','s:49:\"No hay información de créditos en esta página.\";'),
+('es','messages:node-count-exceeded-category','s:44:\"Páginas que sobrepasan la cantidad de nodos\";'),
+('es','messages:node-count-exceeded-category-desc','s:62:\"Esta página sobrepasa la cantidad máxima de nodos permitida.\";'),
+('es','messages:node-count-exceeded-warning','s:40:\"La página sobrepasa el límite de nodos\";'),
+('es','messages:noemail','s:68:\"No hay una dirección de correo electrónico registrada para «$1».\";'),
+('es','messages:noemailcreate','s:69:\"Necesitas proporcionar una dirección de correo electrónico válida.\";'),
+('es','messages:noemailprefs','s:77:\"Especifica una dirección electrónica para habilitar estas características.\";'),
+('es','messages:noemailtext','s:78:\"Este usuario no ha especificado una dirección de correo electrónico válida.\";'),
+('es','messages:noemailtitle','s:40:\"No hay dirección de correo electrónico\";'),
+('es','messages:nohistory','s:46:\"No hay historial de ediciones de esta página.\";'),
+('es','messages:noimages','s:20:\"No hay nada que ver.\";'),
+('es','messages:noindex-category','s:21:\"Páginas no indizadas\";'),
+('es','messages:noindex-category-desc','s:186:\"La página contiene la palabra mágica __NOINDEX__ (y está en un espacio de nombres donde la función está activada); y por ello los robots no la indizan.\";'),
+('es','messages:nolicense','s:20:\"Ninguna seleccionada\";'),
+('es','messages:nolinkshere','s:47:\"Ninguna página enlaza con $2.\";'),
+('es','messages:nolinkshere-ns','s:80:\"Ninguna página enlaza con $2 en el espacio de nombres elegido.\";'),
+('es','messages:nolinkstoimage','s:43:\"No hay páginas que enlacen a este archivo.\";'),
+('es','messages:noname','s:51:\"No se ha especificado un nombre de usuario válido.\";'),
+('es','messages:nonfile-cannot-move-to-file','s:82:\"No es posible trasladar lo que no es un archivo al espacio de nombres de archivos.\";'),
+('es','messages:nonmain-slot-differences-therefore-readonly','s:192:\"No se puede editar el wikitexto en esta revisión, ya que ha habido cambios posteriores en los datos de la página que no están basados en wikitexto. Es posible [$1 restaurar esta revisión.]\";'),
+('es','messages:nonnumeric-formatnum','s:47:\"Páginas con argumentos formatnum no numéricos\";'),
+('es','messages:nonnumeric-formatnum-desc','s:83:\"La página contiene un argumento no numérico en la función sintáctica formatnum.\";'),
+('es','messages:nonwrite-api-promise-error','s:107:\"La cabecera HTTP «Promise-Non-Write-API-Action» se ha enviado pero la petición no era una petición API.\";'),
+('es','messages:nopagetext','s:50:\"La página destino que has especificado no existe.\";'),
+('es','messages:nopagetitle','s:28:\"No existe la página destino\";'),
+('es','messages:noscript.css','s:118:\"/* Los estilos CSS colocados aquí se aplicarán a los usuarios que hayan desactivado el JavaScript en su navegador */\";'),
+('es','messages:nospecialpagetext','s:173:\"Has intentado acceder a una página especial inexistente.\n\nPuedes ver una lista de las páginas especiales en [[Special:SpecialPages|{{int:specialpages}}]].\";'),
+('es','messages:nosuchaction','s:21:\"No existe esa acción\";'),
+('es','messages:nosuchactiontext','s:212:\"La acción especificada en la URL no es válida.\nEs posible que hayas escrito mal la URL o que hayas seguido un enlace incorrecto.\nEsto también podría indicar un error en el software utilizado por {{SITENAME}}.\";'),
+('es','messages:nosuchsectiontext','s:111:\"Has intentado editar una sección que no existe.\nQuizá ha sido movida o borrada mientras visitabas la página.\";'),
+('es','messages:nosuchsectiontitle','s:22:\"Sección no encontrada\";'),
+('es','messages:nosuchspecialpage','s:30:\"No existe esa página especial\";'),
+('es','messages:nosuchuser','s:195:\"No existe ninguna cuenta llamada «$1».\nLos nombres de usuario distinguen mayúsculas y minúsculas.\nComprueba que lo has escrito correctamente o [[Special:CreateAccount|crea una cuenta nueva]].\";'),
+('es','messages:nosuchusershort','s:85:\"No existe ningún usuario llamado «$1». Comprueba que lo has escrito correctamente.\";'),
+('es','messages:notanarticle','s:30:\"No es una página de contenido\";'),
+('es','messages:notargettext','s:73:\"No has especificado sobre qué página deseas llevar a cabo esta acción.\";'),
+('es','messages:notargettitle','s:23:\"No hay página objetivo\";'),
+('es','messages:note','s:22:\"Nota:\";'),
+('es','messages:notextmatches','s:38:\"No hay resultados por texto de página\";'),
+('es','messages:notificationemail_body_changed','s:250:\"Alguien, probablemente usted, desde la dirección IP $1,\nha cambiado la dirección de correo electrónico de la cuenta \"$2\" en {{SITENAME}} a \"$3\".\n\nSi no realizó usted este cambio, póngase en contacto con un administrador del sitio inmediatamente.\";'),
+('es','messages:notificationemail_body_removed','s:251:\"Alguien, probablemente usted, desde la dirección IP $1 ha eliminado la dirección de correo electrónico asociada a la cuenta \"$2\" en {{SITENAME}}.\n\nSi no realizó usted este cambio, póngase en contacto con un administrador del sitio inmediatamente.\";'),
+('es','messages:notificationemail_subject_changed','s:74:\"{{SITENAME}} dirección de correo electrónico registrada ha sido cambiada\";'),
+('es','messages:notificationemail_subject_removed','s:64:\"{{SITENAME}} dirección de correo electrónico ha sido eliminada\";'),
+('es','messages:notloggedin','s:15:\"No has accedido\";'),
+('es','messages:notvisiblerev','s:60:\"La última revisión de un usuario diferente ha sido borrada\";'),
+('es','messages:nouserspecified','s:39:\"Debes especificar un nombre de usuario.\";'),
+('es','messages:nov','s:3:\"nov\";'),
+('es','messages:november','s:9:\"noviembre\";'),
+('es','messages:november-gen','s:9:\"noviembre\";'),
+('es','messages:nowatchlist','s:53:\"No tienes ninguna página en tu lista de seguimiento.\";'),
+('es','messages:nowikiemailtext','s:75:\"Este usuario ha elegido no recibir correos electrónicos de otros usuarios.\";'),
+('es','messages:nrevisions','s:37:\"$1 {{PLURAL:$1|revisión|revisiones}}\";'),
+('es','messages:ns-specialprotected','s:44:\"No se pueden editar las páginas especiales.\";'),
+('es','messages:nstab-category','s:10:\"Categoría\";'),
+('es','messages:nstab-help','s:5:\"Ayuda\";'),
+('es','messages:nstab-image','s:7:\"Archivo\";'),
+('es','messages:nstab-main','s:7:\"Página\";'),
+('es','messages:nstab-mainpage','s:7:\"Portada\";'),
+('es','messages:nstab-media','s:10:\"Multimedia\";'),
+('es','messages:nstab-mediawiki','s:7:\"Mensaje\";'),
+('es','messages:nstab-project','s:20:\"Página del proyecto\";'),
+('es','messages:nstab-special','s:16:\"Página especial\";'),
+('es','messages:nstab-talk','s:0:\"\";'),
+('es','messages:nstab-template','s:9:\"Plantilla\";'),
+('es','messages:nstab-user','s:47:\"Página {{GENDER:$1|del usuario|de la usuaria}}\";'),
+('es','messages:ntimes','s:4:\"$1×\";'),
+('es','messages:ntransclusions','s:46:\"usado en {{PLURAL:$1|una página|$1 páginas}}\";'),
+('es','messages:number-of-watching-users-for-recent-changes','s:4:\"[$1]\";'),
+('es','messages:oct','s:3:\"oct\";'),
+('es','messages:october','s:7:\"octubre\";'),
+('es','messages:october-gen','s:7:\"octubre\";'),
+('es','messages:ok','s:7:\"Aceptar\";'),
+('es','messages:oldpassword','s:20:\"Contraseña antigua:\";'),
+('es','messages:ooui-combobox-button-label','s:14:\"Toggle options\";'),
+('es','messages:ooui-dialog-message-accept','s:7:\"Aceptar\";'),
+('es','messages:ooui-dialog-message-reject','s:8:\"Cancelar\";'),
+('es','messages:ooui-dialog-process-continue','s:9:\"Continuar\";'),
+('es','messages:ooui-dialog-process-dismiss','s:9:\"Descartar\";'),
+('es','messages:ooui-dialog-process-error','s:15:\"Algo salió mal\";'),
+('es','messages:ooui-dialog-process-retry','s:17:\"Intentar de nuevo\";'),
+('es','messages:ooui-field-help','s:5:\"Ayuda\";'),
+('es','messages:ooui-item-remove','s:6:\"Quitar\";'),
+('es','messages:ooui-outline-control-move-down','s:14:\"Bajar elemento\";'),
+('es','messages:ooui-outline-control-move-up','s:14:\"Subir elemento\";'),
+('es','messages:ooui-outline-control-remove','s:17:\"Eliminar elemento\";'),
+('es','messages:ooui-popup-widget-close-button-aria-label','s:6:\"Cerrar\";'),
+('es','messages:ooui-selectfile-button-select','s:21:\"Selecciona un archivo\";'),
+('es','messages:ooui-selectfile-button-select-multiple','s:20:\"Seleccionar archivos\";'),
+('es','messages:ooui-selectfile-dragdrop-placeholder','s:23:\"Suelta el archivo aquí\";'),
+('es','messages:ooui-selectfile-dragdrop-placeholder-multiple','s:21:\"Coloca archivos aquí\";'),
+('es','messages:ooui-selectfile-not-supported','s:38:\"No se admite la selección de archivos\";'),
+('es','messages:ooui-selectfile-placeholder','s:28:\"Ningún archivo seleccionado\";'),
+('es','messages:ooui-toolbar-more','s:4:\"Más\";'),
+('es','messages:ooui-toolgroup-collapse','s:5:\"Menos\";'),
+('es','messages:ooui-toolgroup-expand','s:4:\"Más\";'),
+('es','messages:opensearch-desc','s:34:\"{{SITENAME}} ({{CONTENTLANGUAGE}})\";'),
+('es','messages:othercontribs','s:27:\"Basado en el trabajo de $1.\";'),
+('es','messages:otherlanguages','s:16:\"En otros idiomas\";'),
+('es','messages:others','s:5:\"otros\";'),
+('es','messages:overwrite','s:53:\"No está permitido sobrescribir un archivo existente.\";'),
+('es','messages:overwroteimage','s:34:\"uploaded a new version of \"[[$1]]\"\";'),
+('es','messages:page-atom-feed','s:20:\"Canal Atom de «$1»\";'),
+('es','messages:page-rss-feed','s:19:\"Canal RSS de «$1»\";'),
+('es','messages:page_first','s:8:\"primeras\";'),
+('es','messages:page_last','s:8:\"últimas\";'),
+('es','messages:pagecategories','s:36:\"{{PLURAL:$1|Categoría|Categorías}}\";'),
+('es','messages:pagecategorieslink','s:18:\"Special:Categories\";'),
+('es','messages:pagedata-bad-title','s:32:\"El título «$1» no es válido.\";'),
+('es','messages:pagedata-not-acceptable','s:68:\"No se ha encontrado un formato coincidente. Tipos MIME admitidos: $1\";'),
+('es','messages:pagedata-text','s:329:\"Esta página provee una interfaz de datos a otras páginas. Por favor proporcione el título de la página en la URL usando la sintaxis de subpáginas.\n* La negociación del contenido se aplica en base a la cabecera Accept de su cliente. Esto significa que los datos de la página se proporcionarán en su formato de preferencia.\";'),
+('es','messages:pagedata-title','s:19:\"Datos de la página\";'),
+('es','messages:pagehist','s:23:\"Historial de la página\";'),
+('es','messages:pagehistory','s:23:\"Historial de la página\";'),
+('es','messages:pagehistory-summary','s:0:\"\";'),
+('es','messages:pageid','s:16:\"ID de página $1\";'),
+('es','messages:pageinfo','s:29:\"Información sobre la página\";'),
+('es','messages:pageinfo-article-id','s:27:\"Identificador de la página\";'),
+('es','messages:pageinfo-authors','s:34:\"Número total de autores distintos\";'),
+('es','messages:pageinfo-category-files','s:19:\"Número de archivos\";'),
+('es','messages:pageinfo-category-info','s:29:\"Información de la categoría\";'),
+('es','messages:pageinfo-category-pages','s:19:\"Número de páginas\";'),
+('es','messages:pageinfo-category-subcats','s:25:\"Número de subcategorías\";'),
+('es','messages:pageinfo-category-total','s:25:\"Número total de miembros\";'),
+('es','messages:pageinfo-content-model','s:33:\"Modelo de contenido de la página\";'),
+('es','messages:pageinfo-content-model-change','s:7:\"cambiar\";'),
+('es','messages:pageinfo-contentpage','s:33:\"Contado como página de contenido\";'),
+('es','messages:pageinfo-contentpage-yes','s:3:\"Sí\";'),
+('es','messages:pageinfo-default-sort','s:38:\"Criterio de ordenación predeterminado\";'),
+('es','messages:pageinfo-display-title','s:19:\"Título visualizado\";'),
+('es','messages:pageinfo-edits','s:26:\"Número total de ediciones\";'),
+('es','messages:pageinfo-few-visiting-watchers','s:61:\"Puede o no haber seguidores visitando las ediciones recientes\";'),
+('es','messages:pageinfo-few-watchers','s:46:\"Menos de $1 {{PLURAL:$1|vigilante|vigilantes}}\";'),
+('es','messages:pageinfo-file-hash','s:22:\"Resumen criptográfico\";'),
+('es','messages:pageinfo-firsttime','s:32:\"Fecha de creación de la página\";'),
+('es','messages:pageinfo-firstuser','s:21:\"Creador de la página\";'),
+('es','messages:pageinfo-footer','s:1:\"-\";'),
+('es','messages:pageinfo-header','s:1:\"-\";'),
+('es','messages:pageinfo-header-basic','s:20:\"Información básica\";'),
+('es','messages:pageinfo-header-edits','s:22:\"Historial de ediciones\";'),
+('es','messages:pageinfo-header-properties','s:22:\"Propiedades de página\";'),
+('es','messages:pageinfo-header-restrictions','s:22:\"Protección de página\";'),
+('es','messages:pageinfo-hidden-categories','s:56:\"{{PLURAL:$1|Categoría oculta|Categorías ocultas}} ($1)\";'),
+('es','messages:pageinfo-language','s:20:\"Idioma de la página\";'),
+('es','messages:pageinfo-language-change','s:7:\"cambiar\";'),
+('es','messages:pageinfo-lasttime','s:28:\"Fecha de la última edición\";'),
+('es','messages:pageinfo-lastuser','s:14:\"Último editor\";'),
+('es','messages:pageinfo-length','s:33:\"Longitud de la página (en bytes)\";'),
+('es','messages:pageinfo-magic-words','s:52:\"{{PLURAL:$1|Palabra mágica|Palabras mágicas}} ($1)\";'),
+('es','messages:pageinfo-namespace','s:18:\"Espacio de nombres\";'),
+('es','messages:pageinfo-not-current','s:82:\"Lo sentimos, no es posible mostrar esta información para las revisiones antiguas.\";'),
+('es','messages:pageinfo-protect-cascading','s:31:\"Protecciones en serie activadas\";'),
+('es','messages:pageinfo-protect-cascading-from','s:31:\"Protecciones en serie activadas\";'),
+('es','messages:pageinfo-protect-cascading-yes','s:3:\"Sí\";'),
+('es','messages:pageinfo-recent-authors','s:38:\"Número de autores distintos recientes\";'),
+('es','messages:pageinfo-recent-edits','s:51:\"Número de ediciones recientes (en los últimos $1)\";'),
+('es','messages:pageinfo-redirects-name','s:39:\"Número de redirecciones a esta página\";'),
+('es','messages:pageinfo-redirects-value','s:2:\"$1\";'),
+('es','messages:pageinfo-redirectsto','s:10:\"Redirige a\";'),
+('es','messages:pageinfo-redirectsto-info','s:12:\"Información\";'),
+('es','messages:pageinfo-robot-index','s:9:\"Permitido\";'),
+('es','messages:pageinfo-robot-noindex','s:12:\"No permitido\";'),
+('es','messages:pageinfo-robot-policy','s:22:\"Indización por robots\";'),
+('es','messages:pageinfo-subpages-name','s:27:\"Subpáginas de esta página\";'),
+('es','messages:pageinfo-subpages-value','s:99:\"$1 ($2 {{PLURAL:$2|redirección|redirecciones}}; $3 {{PLURAL:$3|no redirección|no redirecciones}})\";'),
+('es','messages:pageinfo-summary','s:0:\"\";'),
+('es','messages:pageinfo-templates','s:58:\"{{PLURAL:$1|Plantilla incluida|Plantillas incluidas}} ($1)\";'),
+('es','messages:pageinfo-title','s:22:\"Información de «$1»\";'),
+('es','messages:pageinfo-toolboxlink','s:26:\"Información de la página\";'),
+('es','messages:pageinfo-transclusions','s:54:\"{{PLURAL:$1|Página incluida|Páginas incluidas}} ($1)\";'),
+('es','messages:pageinfo-user-id','s:24:\"Identificador de usuario\";'),
+('es','messages:pageinfo-view-protect-log','s:48:\"Ver el registro de protecciones de esta página.\";'),
+('es','messages:pageinfo-visiting-watchers','s:73:\"Número de seguidores de la página que visitaron las ediciones recientes\";'),
+('es','messages:pageinfo-watchers','s:42:\"Número de usuarios que vigilan la página\";'),
+('es','messages:pagelang-db-failed','s:62:\"La base de datos no ha podido cambiar el idioma de la página.\";'),
+('es','messages:pagelang-language','s:6:\"Idioma\";'),
+('es','messages:pagelang-name','s:7:\"Página\";'),
+('es','messages:pagelang-nonexistent-page','s:24:\"La página $1 no existe.\";'),
+('es','messages:pagelang-reason','s:6:\"Motivo\";'),
+('es','messages:pagelang-select-lang','s:18:\"Seleccionar idioma\";'),
+('es','messages:pagelang-submit','s:6:\"Enviar\";'),
+('es','messages:pagelang-unchanged-language','s:41:\"La página $1 ya está configurada en $2.\";'),
+('es','messages:pagelang-unchanged-language-default','s:74:\"La página $1 ya está configurada en el idioma predeterminado de la wiki.\";'),
+('es','messages:pagelang-use-default','s:33:\"Utilizar el idioma predeterminado\";'),
+('es','messages:pagelanguage','s:31:\"Cambiar el idioma de la página\";'),
+('es','messages:pagemerge-logentry','s:46:\"merged [[$1]] into [[$2]] (revisions up to $3)\";'),
+('es','messages:pagemovedsub','s:29:\"Traslado realizado con éxito\";'),
+('es','messages:pager-newer-n','s:47:\"{{PLURAL:$1|1 más reciente|$1 más recientes}}\";'),
+('es','messages:pager-older-n','s:38:\"{{PLURAL:$1|1 anterior|$1 anteriores}}\";'),
+('es','messages:pagesize','s:7:\"(bytes)\";'),
+('es','messages:pageswithprop','s:37:\"Páginas con una propiedad de página\";'),
+('es','messages:pageswithprop-legend','s:37:\"Páginas con una propiedad de página\";'),
+('es','messages:pageswithprop-prop','s:23:\"Nombre de la propiedad:\";'),
+('es','messages:pageswithprop-prophidden-binary','s:41:\"valor de la propiedad binaria oculta ($1)\";'),
+('es','messages:pageswithprop-prophidden-long','s:52:\"hay un largo valor en la propiedad texto oculta ($1)\";'),
+('es','messages:pageswithprop-reverse','s:23:\"Ordenar en modo inverso\";'),
+('es','messages:pageswithprop-sortbyvalue','s:30:\"Ordenar por valor de propiedad\";'),
+('es','messages:pageswithprop-submit','s:2:\"Ir\";'),
+('es','messages:pageswithprop-summary','s:0:\"\";'),
+('es','messages:pageswithprop-text','s:80:\"Esta página muestra las páginas que usan una determinada propiedad de página.\";'),
+('es','messages:pagetitle','s:17:\"$1 - {{SITENAME}}\";'),
+('es','messages:pagetitle-view-mainpage','s:12:\"{{SITENAME}}\";'),
+('es','messages:paramvalidator-badbool','s:81:\"Invalid value \"$2\" for boolean parameter \"$1\". Pass $3 for true, or $5 for false.\";'),
+('es','messages:paramvalidator-badexpiry','s:45:\"Invalid value \"$2\" for expiry parameter \"$1\".\";'),
+('es','messages:paramvalidator-badexpiry-duration','s:73:\"Given value \"$2\" for parameter $1 exceeds the maximum of \"$3\".\";'),
+('es','messages:paramvalidator-badexpiry-duration-max','s:96:\"Given value \"$2\" for parameter $1 exceeds the maximum of \"$3\". Using maximum instead.\";'),
+('es','messages:paramvalidator-badexpiry-past','s:52:\"Value \"$2\" for expiry parameter \"$1\" is in the past.\";'),
+('es','messages:paramvalidator-badfloat','s:44:\"Invalid value \"$2\" for float parameter \"$1\".\";'),
+('es','messages:paramvalidator-badfloat-notfinite','s:68:\"Value \"$2\" for float parameter \"$1\" is too large or is not a number.\";'),
+('es','messages:paramvalidator-badinteger','s:46:\"Invalid value \"$2\" for integer parameter \"$1\".\";'),
+('es','messages:paramvalidator-badtimestamp','s:48:\"Invalid value \"$2\" for timestamp parameter \"$1\".\";'),
+('es','messages:paramvalidator-badtitle','s:102:\"Valor \"$2\" inválido para el parámetro de título $1: no es una cadena de título válida.\";'),
+('es','messages:paramvalidator-badupload-cantwrite','s:101:\"The file for \"$1\" could not be stored for processing due to a server misconfiguration (write failed).\";'),
+('es','messages:paramvalidator-badupload-formsize','s:64:\"The uploaded file for \"$1\" exceeds the client-specified maximum.\";'),
+('es','messages:paramvalidator-badupload-inisize','s:62:\"The uploaded file for \"$1\" exceeds the server\'s maximum of $3.\";'),
+('es','messages:paramvalidator-badupload-nofile','s:47:\"No file was provided for upload parameter \"$1\".\";'),
+('es','messages:paramvalidator-badupload-notmpdir','s:111:\"The file for \"$1\" could not be stored for processing due to a server misconfiguration (no temporary directory).\";'),
+('es','messages:paramvalidator-badupload-notupload','s:155:\"File upload parameter \"$1\" is not a file upload; be sure to use multipart/form-data for your POST and include a filename in the Content-Disposition header.\";'),
+('es','messages:paramvalidator-badupload-partial','s:46:\"The file for \"$1\" was only partially uploaded.\";'),
+('es','messages:paramvalidator-badupload-phpext','s:58:\"A PHP extension prevented the upload of the file for \"$1\".\";'),
+('es','messages:paramvalidator-baduser','s:74:\"El valor «$2» no es válido para el parámetro de usuario $1.\";'),
+('es','messages:paramvalidator-badvalue-enummulti','s:97:\"Invalid value \"$2\" for parameter \"$1\". {{PLURAL:$4|Only \"$3\" is allowed.|Allowed values are $3.}}\";'),
+('es','messages:paramvalidator-badvalue-enumnotmulti','s:42:\"Unrecognized value for parameter \"$1\": $2.\";'),
+('es','messages:paramvalidator-deprecated-value','s:53:\"The value \"$2\" to parameter \"$1\" has been deprecated.\";'),
+('es','messages:paramvalidator-emptystring','s:16:\"la cadena vacía\";'),
+('es','messages:paramvalidator-help-default','s:18:\"Predeterminado: $1\";'),
+('es','messages:paramvalidator-help-default-empty','s:24:\"Predeterminado: (vacío)\";'),
+('es','messages:paramvalidator-help-deprecated','s:29:\"This parameter is deprecated.\";'),
+('es','messages:paramvalidator-help-multi-all','s:41:\"To specify all values, use $1.\";'),
+('es','messages:paramvalidator-help-multi-max','s:98:\"Maximum number of values is {{PLURAL:$1|$1}} ({{PLURAL:$2|$2}} for clients allowed higher limits).\";'),
+('es','messages:paramvalidator-help-multi-max-simple','s:45:\"Maximum number of values is {{PLURAL:$1|$1}}.\";'),
+('es','messages:paramvalidator-help-multi-separate','s:82:\"Separate values with \"|\", or prefix the list with U+001F and separate with U+001F.\";'),
+('es','messages:paramvalidator-help-required','s:31:\"Este parámetro es obligatorio.\";'),
+('es','messages:paramvalidator-help-type-boolean','s:51:\"Tipo: {{PLURAL:$1|1=booleano|2=lista de booleanos}}\";'),
+('es','messages:paramvalidator-help-type-enum','s:143:\"{{PLURAL:$1|1=One of the following values|2=Values (separate with U+007C (pipe), or prefix the list with U+001F and separate with U+001F)}}: $2\";'),
+('es','messages:paramvalidator-help-type-enum-can-be-empty','s:49:\"{{PLURAL:$2|0=Must be empty|Can be empty, or $1}}\";'),
+('es','messages:paramvalidator-help-type-expiry','s:189:\"Type: {{PLURAL:$1|1=expiry|2=list of expiries}}.\n\nMay be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). For no expiry, use $2.\";'),
+('es','messages:paramvalidator-help-type-float','s:51:\"Tipo: {{PLURAL:$1|1=flotante|2=lista de flotantes}}\";'),
+('es','messages:paramvalidator-help-type-integer','s:47:\"Tipo: {{PLURAL:$1|1=entero|2=lista de enteros}}\";'),
+('es','messages:paramvalidator-help-type-limit','s:22:\"Type: integer or \"max\"\";'),
+('es','messages:paramvalidator-help-type-number-max','s:62:\"The {{PLURAL:$1|1=value|2=values}} must be no greater than $3.\";'),
+('es','messages:paramvalidator-help-type-number-min','s:59:\"The {{PLURAL:$1|1=value|2=values}} must be no less than $2.\";'),
+('es','messages:paramvalidator-help-type-number-minmax','s:61:\"The {{PLURAL:$1|1=value|2=values}} must be between $2 and $3.\";'),
+('es','messages:paramvalidator-help-type-presenceboolean','s:14:\"Tipo: booleano\";'),
+('es','messages:paramvalidator-help-type-string-maxbytes','s:50:\"Cannot be longer than $1 {{PLURAL:$1|byte|bytes}}.\";'),
+('es','messages:paramvalidator-help-type-string-maxchars','s:60:\"Cannot be longer than $1 {{PLURAL:$1|character|characters}}.\";'),
+('es','messages:paramvalidator-help-type-timestamp','s:62:\"Tipo: {{PLURAL:$1|1=cronomarcador|2=lista de cronomarcadores}}\";'),
+('es','messages:paramvalidator-help-type-title','s:24:\"Tipo: título de página\";'),
+('es','messages:paramvalidator-help-type-title-must-exist','s:34:\"Sólo acepta páginas que existen.\";'),
+('es','messages:paramvalidator-help-type-title-no-must-exist','s:29:\"Acepta páginas inexistentes.\";'),
+('es','messages:paramvalidator-help-type-upload','s:58:\"Must be posted as a file upload using multipart/form-data.\";'),
+('es','messages:paramvalidator-help-type-user','s:89:\"Tipo: {{PLURAL:$1|1=usuario|2=lista de usuarios}}, {{PLURAL:$3|por|por cualquiera de}} $2\";'),
+('es','messages:paramvalidator-help-type-user-subtype-cidr','s:15:\"Intervalo de IP\";'),
+('es','messages:paramvalidator-help-type-user-subtype-id','s:46:\"identificador de usuario (p. ej., «#12345»)\";'),
+('es','messages:paramvalidator-help-type-user-subtype-interwiki','s:51:\"nombre interwiki (p. ej. \"prefijo>NombreDeEjemplo\")\";'),
+('es','messages:paramvalidator-help-type-user-subtype-ip','s:2:\"IP\";'),
+('es','messages:paramvalidator-help-type-user-subtype-name','s:17:\"nombre de usuario\";'),
+('es','messages:paramvalidator-maxbytes','s:88:\"The value for parameter \"$1\" cannot be longer than $3 {{PLURAL:$3|byte|bytes}} (was $4).\";'),
+('es','messages:paramvalidator-maxchars','s:98:\"The value for parameter \"$1\" cannot be longer than $3 {{PLURAL:$3|character|characters}} (was $4).\";'),
+('es','messages:paramvalidator-missingparam','s:31:\"The \"$1\" parameter must be set.\";'),
+('es','messages:paramvalidator-missingtitle','s:87:\"Valor \"$2\" inválido para el parámetro de título $1: la página no existe.\";'),
+('es','messages:paramvalidator-notmulti','s:119:\"Parameter \"$1\" accepts only a single value. U+001F multi-value separation may only be used for multi-valued parameters.\";'),
+('es','messages:paramvalidator-outofrange-max','s:61:\"The value \"$2\" for parameter \"$1\" must be no greater than $4.\";'),
+('es','messages:paramvalidator-outofrange-min','s:58:\"The value \"$2\" for parameter \"$1\" must be no less than $3.\";'),
+('es','messages:paramvalidator-outofrange-minmax','s:60:\"The value \"$2\" for parameter \"$1\" must be between $3 and $4.\";'),
+('es','messages:paramvalidator-param-deprecated','s:39:\"The parameter \"$1\" has been deprecated.\";'),
+('es','messages:paramvalidator-param-sensitive','s:0:\"\";'),
+('es','messages:paramvalidator-toomanyvalues','s:61:\"Too many values supplied for parameter \"$1\". The limit is $2.\";'),
+('es','messages:paramvalidator-unclearnowtimestamp','s:176:\"Passing \"$2\" for timestamp parameter \"$1\" has been deprecated. If for some reason you need to explicitly specify the current time without calculating it client-side, use \"now\".\";'),
+('es','messages:paramvalidator-unrecognizedvalues','s:62:\"Unrecognized {{PLURAL:$4|value|values}} for parameter \"$1\": $3\";'),
+('es','messages:parentheses','s:4:\"($1)\";'),
+('es','messages:parentheses-end','s:1:\")\";'),
+('es','messages:parentheses-start','s:1:\"(\";'),
+('es','messages:parser-template-loop-warning','s:45:\"Se ha detectado un bucle de plantilla: [[$1]]\";'),
+('es','messages:parser-template-recursion-depth-warning','s:78:\"Se ha superado el límite de profundidad de la recursividad de plantillas ($1)\";'),
+('es','messages:parser-unstrip-loop-warning','s:51:\"Se ha detectado un bucle en la función «unstrip»\";'),
+('es','messages:password-change-forbidden','s:48:\"No puedes cambiar las contraseñas en esta wiki.\";'),
+('es','messages:password-login-forbidden','s:67:\"El uso de este nombre de usuario y contraseña han sido prohibidos.\";'),
+('es','messages:password-name-match','s:58:\"Tu contraseña debe ser diferente de tu nombre de usuario.\";'),
+('es','messages:password-substring-username-match','s:63:\"Tu contraseña no debe aparecer dentro de tu nombre de usuario.\";'),
+('es','messages:passwordincommonlist','s:112:\"La contraseña usada está en la lista de contraseñas más usadas. Por favor selecciona una contraseña única.\";'),
+('es','messages:passwordpolicies','s:28:\"Normativas para contraseñas\";'),
+('es','messages:passwordpolicies-group','s:5:\"Grupo\";'),
+('es','messages:passwordpolicies-policies','s:10:\"Normativas\";'),
+('es','messages:passwordpolicies-policy-display','s:65:\"$1 ($2)\";'),
+('es','messages:passwordpolicies-policy-displaywithflags','s:121:\"$1 ($2) ($3)\";'),
+('es','messages:passwordpolicies-policy-maximalpasswordlength','s:74:\"La contraseña no puede tener más de $1 {{PLURAL:$1|caracter|caracteres}}\";'),
+('es','messages:passwordpolicies-policy-minimalpasswordlength','s:72:\"La contraseña debe tener al menos $1 {{PLURAL:$1|carácter|caracteres}}\";'),
+('es','messages:passwordpolicies-policy-minimumpasswordlengthtologin','s:99:\"La contraseña debe tener al menos $1 {{PLURAL:$1|carácter|caracteres}} para poder iniciar sesión\";'),
+('es','messages:passwordpolicies-policy-passwordcannotbesubstringinusername','s:55:\"La contraseña no puede ser parte del nombre de usuario\";'),
+('es','messages:passwordpolicies-policy-passwordcannotmatchdefaults','s:88:\"La contraseña no puede coincidir con una lista concreta de contraseñas predeterminadas\";'),
+('es','messages:passwordpolicies-policy-passwordnotincommonlist','s:82:\"La contraseña no puede estar en la lista de las 100 000 contraseñas más usadas.\";'),
+('es','messages:passwordpolicies-policyflag-forcechange','s:35:\"debe cambiar al acceder a la cuenta\";'),
+('es','messages:passwordpolicies-policyflag-suggestchangeonlogin','s:37:\"sugerir cambio al acceder a la cuenta\";'),
+('es','messages:passwordpolicies-summary','s:109:\"Esta es una lista de políticas de contraseñas efectivas para cada grupo de usuarios definidos en esta wiki.\";'),
+('es','messages:passwordremindertext','s:523:\"Alguien (desde la dirección IP $1) solicitó el envío de una nueva contraseña para tu cuenta en {{SITENAME}} ($4). Se ha creado la siguiente contraseña temporal para el usuario «$2»: «$3». Si esto era tu intención, ahora puedes iniciar sesión y cambiar tu contraseña. Tu contraseña temporal caducará en {{PLURAL:$5|un día|$5 días}}.\n\nSi esta solicitud fue realizada por otra persona, o has recordado tu contraseña y ya no deseas cambiarla, puedes ignorar este mensaje y seguir usando tu contraseña antigua.\";'),
+('es','messages:passwordremindertitle','s:44:\"Nueva contraseña temporal para {{SITENAME}}\";'),
+('es','messages:passwordreset','s:23:\"Restablecer contraseña\";'),
+('es','messages:passwordreset-disabled','s:67:\"Se ha desactivado el restablecimiento de contraseñas en esta wiki.\";'),
+('es','messages:passwordreset-domain','s:8:\"Dominio:\";'),
+('es','messages:passwordreset-email','s:34:\"Dirección de correo electrónico:\";'),
+('es','messages:passwordreset-emaildisabled','s:69:\"Se han desactivado las funciones de correo electrónico en esta wiki.\";'),
+('es','messages:passwordreset-emailelement','s:71:\"Nombre de {{GENDER:$1|usuario|usuaria}}: \n$1\n\nContraseña temporal: \n$2\";'),
+('es','messages:passwordreset-emailtext-ip','s:663:\"Alguien (probablemente tú, desde la dirección IP $1) ha solicitado el restablecimiento de tu contraseña en {{SITENAME}} ($4). {{PLURAL:$3|La siguiente cuenta está asociada|Las siguientes cuentas están asociadas}}\na esta dirección de correo electrónico:\n\n$2\n\n{{PLURAL:$3|Esta contraseña temporal caducará|Estas contraseñas temporales caducarán}} dentro de {{PLURAL:$5|un día|$5 días}}.\nAhora puedes iniciar sesión y establecer una nueva contraseña. Si fue otra persona la que realizó esta solicitud, o si ya recuerdas tu contraseña original y, por tanto, no deseas cambiarla, puedes ignorar este mensaje y continuar usando tu contraseña anterior.\";'),
+('es','messages:passwordreset-emailtext-require-email','s:391:\"Sin embargo, si no generaste esta solicitud y deseas evitar\nlos correos electrónicos no solicitados, es posible que\ndesees actualizar las opciones de correo electrónico en $1.\nPuedes requerir tanto el nombre de usuario como la dirección\nde correo electrónico para generar correos electrónicos de\nrestablecimiento de contraseña. Esto puede reducir el número\nde incidentes de este tipo.\";'),
+('es','messages:passwordreset-emailtext-user','s:634:\"El usuario $1 de {{SITENAME}} solicitó el restablecimiento de tu contraseña en {{SITENAME}}\n($4). {{PLURAL:$3|La siguiente cuenta está asociada|Las siguientes cuentas están asociadas}} a esta dirección de correo electrónico:\n\n$2\n\n{{PLURAL:$3|Esta contraseña temporal caducará|Estas contraseñas temporales caducarán}} dentro de {{PLURAL:$5|un día|$5 días}}.\nAhora puedes iniciar sesión y establecer una nueva contraseña. Si fue otra persona la que realizó esta solicitud, o si ya recuerdas tu contraseña original y, por tanto, no deseas cambiarla, puedes ignorar este mensaje y continuar usando tu contraseña anterior.\";'),
+('es','messages:passwordreset-emailtitle','s:37:\"Detalles de la cuenta en {{SITENAME}}\";'),
+('es','messages:passwordreset-ignored','s:93:\"No se logró el reestablecimiento de la contraseña. ¿Tal vez no se configuró un proveedor?\";'),
+('es','messages:passwordreset-nocaller','s:34:\"Debes proporcionar un interlocutor\";'),
+('es','messages:passwordreset-nodata','s:87:\"No se ha proporcionado ni un nombre de usuario ni una dirección de correo electrónico\";'),
+('es','messages:passwordreset-nosuchcaller','s:29:\"El interlocutor no existe: $1\";'),
+('es','messages:passwordreset-success','s:50:\"Has solicitado un restablecimiento de contraseña.\";'),
+('es','messages:passwordreset-success-details-generic','s:561:\"Si la información remitida es válida, se enviará un mensaje de restablecimiento de la contraseña. En caso de no recibir este mensaje, recomendamos visitar la [[mw:Special:MyLanguage/Help:Reset_password|página de ayuda sobre el restablecimiento de contraseñas]] o puedes intentarlo de nuevo más tarde. Solo puedes pedir un número limitado de restablecimientos de contraseña dentro de un corto período de tiempo. Únicamente se envía un mensaje de restablecimiento por cuenta válida durante un lapso de {{PLURAL:$1|$1 hora|$1 horas}}.\";'),
+('es','messages:passwordreset-success-info','s:33:\"Los detalles que enviaste son: $1\";'),
+('es','messages:passwordreset-text-many','s:102:\"{{PLURAL:$1|Rellena uno de los campos para recibir una contraseña temporal por correo electrónico.}}\";'),
+('es','messages:passwordreset-text-one','s:87:\"Completa este formulario para recibir una contraseña temporal por correo electrónico.\";'),
+('es','messages:passwordreset-username','s:18:\"Nombre de usuario:\";'),
+('es','messages:passwordsent','s:119:\"Se ha enviado una nueva contraseña al correo electrónico de «$1».\nPor favor, identifícate de nuevo tras recibirla.\";'),
+('es','messages:passwordtoolong','s:80:\"Las contraseñas no deben tener más de {{PLURAL:$1|1 carácter|$1 caracteres}}.\";'),
+('es','messages:passwordtooshort','s:78:\"Las contraseñas deben tener al menos {{PLURAL:$1|1 carácter|$1 caracteres}}.\";'),
+('es','messages:patrol-log-auto','s:11:\"(automatic)\";'),
+('es','messages:patrol-log-diff','s:11:\"revision $1\";'),
+('es','messages:patrol-log-header','s:46:\"Este es un registro de revisiones verificadas.\";'),
+('es','messages:patrol-log-line','s:28:\"marked $1 of $2 patrolled $3\";'),
+('es','messages:patrol-log-page','s:22:\"Registro de revisiones\";'),
+('es','messages:pear-mail-error','s:2:\"$1\";'),
+('es','messages:percent','s:4:\"$1 %\";'),
+('es','messages:perfcached','s:155:\"Los siguientes datos provienen de la caché y pueden no estar actualizados. La caché puede contener {{PLURAL:$1|un resultado|$1 resultados}} como máximo.\";'),
+('es','messages:perfcachedts','s:172:\"Los siguientes datos provienen de la caché, y fueron actualizados por última vez a fecha de: $1. La caché contiene {{PLURAL:$4|un resultado|$4 resultados}} como máximo.\";'),
+('es','messages:period-am','s:6:\"a. m.\";'),
+('es','messages:period-pm','s:6:\"p. m.\";'),
+('es','messages:permalink','s:17:\"Enlace permanente\";'),
+('es','messages:permanentlink','s:17:\"Enlace permanente\";'),
+('es','messages:permanentlink-revid','s:16:\"Id. de revisión\";'),
+('es','messages:permanentlink-submit','s:17:\"Ir a la revisión\";'),
+('es','messages:permanentlink-summary','s:0:\"\";'),
+('es','messages:permissionserrors','s:17:\"Error de permisos\";'),
+('es','messages:permissionserrorstext','s:95:\"No tienes permiso para hacer eso, por {{PLURAL:$1|el siguiente motivo|los siguientes motivos}}:\";'),
+('es','messages:permissionserrorstext-withaction','s:88:\"No tienes permiso para $2, por {{PLURAL:$1|el siguiente motivo|los siguientes motivos}}:\";'),
+('es','messages:personaltools','s:23:\"Herramientas personales\";'),
+('es','messages:php-mail-error','s:2:\"$1\";'),
+('es','messages:php-mail-error-unknown','s:47:\"Error desconocido en la función mail() de PHP.\";'),
+('es','messages:php-uploaddisabledtext','s:97:\"La subida de archivos está deshabilitada en PHP.\nComprueba la opción file_uploads.\";'),
+('es','messages:pipe-separator','s:11:\" | \";'),
+('es','messages:policy-url','s:18:\"Project:Políticas\";'),
+('es','messages:pool-errorunknown','s:17:\"Error desconocido\";'),
+('es','messages:pool-queuefull','s:30:\"La cola de trabajo está llena\";'),
+('es','messages:pool-servererror','s:71:\"El servicio de gestión de procesos agrupados no está disponible ($1).\";'),
+('es','messages:pool-timeout','s:45:\"Se agotó el tiempo de espera para el bloqueo\";'),
+('es','messages:poolcounter-usage-error','s:16:\"Error de uso: $1\";'),
+('es','messages:portal','s:22:\"Portal de la comunidad\";'),
+('es','messages:portal-url','s:30:\"Project:Portal de la comunidad\";'),
+('es','messages:post-expand-template-argument-category','s:61:\"Páginas que contienen plantillas con parámetros descartados\";'),
+('es','messages:post-expand-template-argument-category-desc','s:180:\"Después de expandir un argumento de plantilla (cualquier cosa encerrada en tres llaves, como {{{Foo}}}), la página es más grande que $wgMaxArticleSize.\";'),
+('es','messages:post-expand-template-argument-warning','s:147:\"Aviso: Esta página contiene al menos un parámetro de plantilla con un tamaño de expansión demasiado grande.\nSe han descartado esos parámetros.\";'),
+('es','messages:post-expand-template-inclusion-category','s:37:\"Páginas con sobrecarga de plantillas\";'),
+('es','messages:post-expand-template-inclusion-category-desc','s:165:\"Después de expandir todas las plantillas, el tamaño de la página es más grande que $wgMaxArticleSize, así que algunas plantillas no se expandieron.\";'),
+('es','messages:post-expand-template-inclusion-warning','s:112:\"Aviso: El tamaño de las plantillas incluidas es muy grande.\nAlgunas de ellas no se incluirán.\";'),
+('es','messages:postedit-confirmation-created','s:24:\"Se ha creado la página.\";'),
+('es','messages:postedit-confirmation-published','s:24:\"Se publicó tu edición.\";'),
+('es','messages:postedit-confirmation-restored','s:28:\"Se ha restaurado la página.\";'),
+('es','messages:postedit-confirmation-saved','s:27:\"Se ha guardado tu edición.\";'),
+('es','messages:powersearch-legend','s:18:\"Búsqueda avanzada\";'),
+('es','messages:powersearch-ns','s:34:\"Buscar en los espacios de nombres:\";'),
+('es','messages:powersearch-remember','s:44:\"Recordar la selección en búsquedas futuras\";'),
+('es','messages:powersearch-toggleall','s:5:\"Todos\";'),
+('es','messages:powersearch-togglelabel','s:12:\"Seleccionar:\";'),
+('es','messages:powersearch-togglenone','s:7:\"Ninguno\";'),
+('es','messages:preferences','s:12:\"Preferencias\";'),
+('es','messages:preferences-summary','s:0:\"\";'),
+('es','messages:prefixindex','s:30:\"Todas las páginas con prefijo\";'),
+('es','messages:prefixindex-namespace','s:57:\"Todas las páginas con el prefijo (espacio de nombres $1)\";'),
+('es','messages:prefixindex-strip','s:36:\"Ocultar el prefijo en los resultados\";'),
+('es','messages:prefixindex-submit','s:7:\"Mostrar\";'),
+('es','messages:prefixindex-summary','s:0:\"\";'),
+('es','messages:prefs-advancedediting','s:18:\"Opciones generales\";'),
+('es','messages:prefs-advancedrc','s:18:\"Opciones avanzadas\";'),
+('es','messages:prefs-advancedrendering','s:18:\"Opciones avanzadas\";'),
+('es','messages:prefs-advancedsearchoptions','s:18:\"Opciones avanzadas\";'),
+('es','messages:prefs-advancedwatchlist','s:18:\"Opciones avanzadas\";'),
+('es','messages:prefs-changeemail','s:55:\"Cambiar o eliminar la dirección de correo electrónico\";'),
+('es','messages:prefs-changesrc','s:17:\"Cambios mostrados\";'),
+('es','messages:prefs-changeswatchlist','s:17:\"Cambios mostrados\";'),
+('es','messages:prefs-common-config','s:58:\"CSS/JSON/JavaScript compartido para todas las apariencias:\";'),
+('es','messages:prefs-custom-css','s:17:\"CSS personalizado\";'),
+('es','messages:prefs-custom-js','s:24:\"JavaScript personalizado\";'),
+('es','messages:prefs-custom-json','s:18:\"JSON personalizado\";'),
+('es','messages:prefs-dateformat','s:16:\"Formato de fecha\";'),
+('es','messages:prefs-developertools','s:26:\"Herramientas de desarrollo\";'),
+('es','messages:prefs-diffs','s:11:\"Diferencias\";'),
+('es','messages:prefs-discussion','s:22:\"Páginas de discusión\";'),
+('es','messages:prefs-displayrc','s:26:\"Opciones de visualización\";'),
+('es','messages:prefs-displaywatchlist','s:26:\"Opciones de visualización\";'),
+('es','messages:prefs-editing','s:8:\"Edición\";'),
+('es','messages:prefs-editor','s:6:\"Editor\";'),
+('es','messages:prefs-edits','s:22:\"Cantidad de ediciones:\";'),
+('es','messages:prefs-editwatchlist','s:27:\"Editar lista de seguimiento\";'),
+('es','messages:prefs-editwatchlist-clear','s:30:\"Vaciar tu lista de seguimiento\";'),
+('es','messages:prefs-editwatchlist-edit','s:52:\"Ver y quitar los títulos de tu lista de seguimiento\";'),
+('es','messages:prefs-editwatchlist-label','s:43:\"Editar entradas de tu lista de seguimiento:\";'),
+('es','messages:prefs-editwatchlist-raw','s:44:\"Editar tu lista de seguimiento en modo texto\";'),
+('es','messages:prefs-email','s:31:\"Opciones de correo electrónico\";'),
+('es','messages:prefs-emailconfirm-label','s:37:\"Confirmación de correo electrónico:\";'),
+('es','messages:prefs-files','s:8:\"Archivos\";'),
+('es','messages:prefs-help-email','s:138:\"La dirección de correo electrónico es opcional, pero es necesaria para el restablecimiento de tu contraseña, en caso de que la olvides.\";'),
+('es','messages:prefs-help-email-others','s:240:\"También puedes permitir que otros usuarios contacten contigo por correo electrónico a través de un enlace en tu página de usuario o de discusión.\nTu dirección de correo no se muestra cuando otros usuarios se ponen en contacto contigo.\";'),
+('es','messages:prefs-help-email-required','s:64:\"Es necesario proporcionar una dirección de correo electrónico.\";'),
+('es','messages:prefs-help-gender','s:137:\"Este campo es opcional. El software lo utiliza para dirigirse a ti con el género gramatical apropiado. Esta información será pública.\";'),
+('es','messages:prefs-help-prefershttps','s:62:\"Los cambios surtirán efecto en tu próximo inicio de sesión.\";'),
+('es','messages:prefs-help-realname','s:92:\"El nombre real es opcional.\nSi lo proporcionas, se usará para dar atribución a tu trabajo.\";'),
+('es','messages:prefs-help-recentchangescount','s:21:\"Número máximo: 1000\";'),
+('es','messages:prefs-help-requireemail','s:84:\"Esto mejora la privacidad y ayuda a evitar los correos electrónicos no solicitados.\";'),
+('es','messages:prefs-help-signature','s:152:\"Deberías firmar tus comentarios en páginas de discusión con «{{DISPLAYTITLE}} ignorada porque no es equivalente al título verdadero de la página.\";'),
+('es','messages:restriction-blank','s:0:\"\";'),
+('es','messages:restriction-create','s:5:\"Crear\";'),
+('es','messages:restriction-edit','s:6:\"Editar\";'),
+('es','messages:restriction-level','s:22:\"Nivel de restricción:\";'),
+('es','messages:restriction-level-all','s:15:\"cualquier nivel\";'),
+('es','messages:restriction-level-autoconfirmed','s:15:\"semiprotección\";'),
+('es','messages:restriction-level-sysop','s:20:\"protección completa\";'),
+('es','messages:restriction-move','s:9:\"Trasladar\";'),
+('es','messages:restriction-type','s:8:\"Permiso:\";'),
+('es','messages:restriction-upload','s:5:\"Subir\";'),
+('es','messages:restrictionsfield-badip','s:41:\"Dirección o intervalo IP no válidos: $1\";'),
+('es','messages:restrictionsfield-help','s:106:\"Una dirección IP o intervalo de CIDR por renglón. Para activarlo todo, utiliza 0.0.0.0/0\n::/0\";'), +('es','messages:restrictionsfield-label','s:28:\"Intervalos de IP permitidos:\";'), +('es','messages:retrievedfrom','s:18:\"Obtenido de «$1»\";'), +('es','messages:returnto','s:12:\"Volver a $1.\";'), +('es','messages:retypenew','s:31:\"Confirmar la contraseña nueva:\";'), +('es','messages:reuploaddesc','s:38:\"Cancelar subida y volver al formulario\";'), +('es','messages:rev-deleted-comment','s:31:\"(resumen de edición eliminado)\";'), +('es','messages:rev-deleted-diff-view','s:213:\"Una de las revisiones ha sido eliminada.\nAún tienes la posibilidad de verla. Para más información, consulta el [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} registro de borrados].\";'), +('es','messages:rev-deleted-event','s:34:\"(detalles del registro eliminados)\";'), +('es','messages:rev-deleted-no-diff','s:212:\"No puedes ver la diferencia porque una de las revisiones ha sido eliminada.\nPuedes encontrar más detalles en el [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} registro de borrados].\";'), +('es','messages:rev-deleted-text-permission','s:154:\"Esta revisión ha sido eliminada.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/delete|page=$1}} registro de borrados].\";'), +('es','messages:rev-deleted-text-unhide','s:239:\"Esta revisión ha sido eliminada.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} registro de borrados].\nComo administrador, aún puedes [$1 ver esta revisión] si lo deseas.\";'), +('es','messages:rev-deleted-text-view','s:191:\"Esta revisión ha sido eliminada.\nAún tienes la posibilidad de verla. Para más información, consulta el [{{fullurl:{{#Special:Log}}/delete|page=$1}} registro de borrados].\";'), +('es','messages:rev-deleted-unhide-diff','s:225:\"Una de las revisiones ha sido eliminada.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} registro de borrados].\nAún puedes [$1 ver la diferencia] si lo deseas.\";'), +('es','messages:rev-deleted-user','s:29:\"(nombre de usuario eliminado)\";'), +('es','messages:rev-deleted-user-contribs','s:94:\"[nombre de usuario o dirección IP eliminada, edición ocultada de la lista de contribuciones]\";'), +('es','messages:rev-delundel','s:19:\"cambiar visibilidad\";'), +('es','messages:rev-showdeleted','s:7:\"mostrar\";'), +('es','messages:rev-suppressed-diff-view','s:218:\"Una de las revisiones ha sido suprimida.\nAún tienes la posibilidad de verla. Para más información, consulta el [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} registro de supresiones].\";'), +('es','messages:rev-suppressed-no-diff','s:92:\"No puedes ver la diferencia porque una de las revisiones ha sido suprimida.\";'), +('es','messages:rev-suppressed-text','s:61:\"Esta revisión de página ha sido suprimida.\";'), +('es','messages:rev-suppressed-text-permission','s:159:\"Esta revisión ha sido suprimida.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/suppress|page=$1}} registro de supresiones].\";'), +('es','messages:rev-suppressed-text-unhide','s:239:\"Esta revisión ha sido suprimida.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} registro de supresiones].\nComo supresor, aún puedes [$1 ver esta revisión] si lo deseas.\";'), +('es','messages:rev-suppressed-text-view','s:196:\"Esta revisión ha sido suprimida.\nAún tienes la posibilidad de verla. Para más información, consulta el [{{fullurl:{{#Special:Log}}/suppress|page=$1}} registro de supresiones].\";'), +('es','messages:rev-suppressed-unhide-diff','s:230:\"Una de las revisiones ha sido suprimida.\nPara más información, consulta el [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} registro de supresiones].\nAún puedes [$1 ver la diferencia] si lo deseas.\";'), +('es','messages:revdel-restore','s:19:\"cambiar visibilidad\";'), +('es','messages:revdelete-concurrent-change','s:154:\"Error al modificar el elemento del $1 a las $2: parece que otro usuario cambió su estado mientras tratabas de modificarlo. Por favor, revisa el registro.\";'), +('es','messages:revdelete-confirm','s:168:\"Por favor confirma que deseas realizar la operación, que entiendes sus consecuencias y que realizas esta acción siguiendo [[{{MediaWiki:Policy-url}}|las políticas]].\";'), +('es','messages:revdelete-content-hid','s:18:\"contenido ocultado\";'), +('es','messages:revdelete-content-unhid','s:18:\"contenido mostrado\";'), +('es','messages:revdelete-edit-reasonlist','s:25:\"Editar motivos de borrado\";'), +('es','messages:revdelete-edit-reasonlist-suppress','s:28:\"Editar motivos de supresión\";'), +('es','messages:revdelete-failure','s:60:\"No se ha podido cambiar la visibilidad de las revisiones:\n$1\";'), +('es','messages:revdelete-hide-comment','s:19:\"Resumen de edición\";'), +('es','messages:revdelete-hide-current','s:92:\"Error al ocultar la revisión del $1 a las $2: es la revisión actual y no se puede ocultar.\";'), +('es','messages:revdelete-hide-image','s:32:\"Ocultar el contenido del archivo\";'), +('es','messages:revdelete-hide-name','s:39:\"Ocultar la selección y sus parámetros\";'), +('es','messages:revdelete-hide-restricted','s:59:\"Suprimir para todos los usuarios, incluidos administradores\";'), +('es','messages:revdelete-hide-text','s:21:\"Texto de la revisión\";'), +('es','messages:revdelete-hide-user','s:20:\"Nombre/IP del editor\";'), +('es','messages:revdelete-legend','s:39:\"Establecer restricciones de visibilidad\";'), +('es','messages:revdelete-log','s:7:\"Motivo:\";'), +('es','messages:revdelete-modify-missing','s:82:\"Error al modificar el elemento con ID $1: no se ha encontrado en la base de datos.\";'), +('es','messages:revdelete-modify-no-access','s:131:\"Error al modificar el elemento del $1 a las $2: este elemento ha sido marcado como \"restringido\", por tanto no tienes acceso a él.\";'), +('es','messages:revdelete-no-change','s:113:\"Atención: la revisión del $1 a las $2 ya tiene las restricciones de visibilidad seleccionadas.\";'), +('es','messages:revdelete-no-file','s:34:\"El archivo especificado no existe.\";'), +('es','messages:revdelete-nooldid-text','s:185:\"O bien no se ha especificado una revisión destino sobre la que realizar esta función, o bien la revisión especificada no existe, o bien estás intentando ocultar la revisión actual.\";'), +('es','messages:revdelete-nooldid-title','s:34:\"La revisión destino es incorrecta\";'), +('es','messages:revdelete-offender','s:22:\"Autor de la revisión:\";'), +('es','messages:revdelete-only-restricted','s:173:\"Error al ocultar el elemento del $1 a las $2: no puedes suprimir elementos de cara a los administradores sin seleccionar al mismo tiempo otra de las opciones de visibilidad.\";'), +('es','messages:revdelete-otherreason','s:12:\"Otro motivo:\";'), +('es','messages:revdelete-radio-same','s:12:\"(no cambiar)\";'), +('es','messages:revdelete-radio-set','s:6:\"Oculta\";'), +('es','messages:revdelete-radio-unset','s:7:\"Visible\";'), +('es','messages:revdelete-reason-dropdown','s:175:\"*Razones de borrado más comunes\n** Violación de los derechos de autor\n** Comentarios inapropiados\n** Nombre de usuario inapropiado\n** Información potencialmente difamatoria\";'), +('es','messages:revdelete-reason-dropdown-suppress','s:72:\"*Razones de supresión más comunes\n** Información personal inapropiada\";'), +('es','messages:revdelete-reasonotherlist','s:11:\"Otro motivo\";'), +('es','messages:revdelete-restricted','s:44:\"restricciones para administradores aplicadas\";'), +('es','messages:revdelete-selected-file','s:71:\"{{PLURAL:$1|Versión seleccionada|Versiones seleccionadas}} de [[:$2]]:\";'), +('es','messages:revdelete-selected-text','s:73:\"{{PLURAL:$1|Revisión seleccionada|Revisiones seleccionadas}} de [[:$2]]:\";'), +('es','messages:revdelete-show-file-confirm','s:98:\"¿Seguro que quieres ver la revisión borrada del archivo «
\n# Títulos que serán ignorados por la búsqueda.\n# Los cambios estarán en vigor tan pronto como la página con el título esté indexada.\n# Puedes forzar la reindexación de una página haciendo una edición nula.\n# La sintaxis es la siguiente:\n# * Todo lo que sigue a un carácter \"#\" hasta el final de la línea, es un comentario.\n# * Todas las líneas que no están en blanco son los títulos exactos que se ignorarán (diferenciando mayúsculas de minúsculas).\nReferencias\nEnlaces externos\nVéase también\n #\";'), +('es','messages:search-interwiki-caption','s:32:\"Resultados de proyectos hermanos\";'), +('es','messages:search-interwiki-custom','s:0:\"\";'), +('es','messages:search-interwiki-default','s:17:\"Resultados de $1:\";'), +('es','messages:search-interwiki-more','s:6:\"(más)\";'), +('es','messages:search-interwiki-more-results','s:15:\"más resultados\";'), +('es','messages:search-invalid-sort-order','s:114:\"La ordenación $1 no está reconocida, se aplicará la ordenación por defecto. Las ordenaciones válidas sonː $2\";'), +('es','messages:search-match-redirect-help','s:122:\"Selecciona esta opción para que se te redirija a una página cuando el título de la página coincida con lo que buscaste\";'), +('es','messages:search-match-redirect-label','s:43:\"Redirigir a coincidencias exactas al buscar\";'), +('es','messages:search-nonefound','s:57:\"No hay resultados que cumplan los criterios de búsqueda.\";'), +('es','messages:search-nonefound-thiswiki','s:71:\"No hay resultados que cumplan los criterios de búsqueda en este sitio.\";'), +('es','messages:search-redirect','s:23:\"(redirección desde $1)\";'), +('es','messages:search-relatedarticle','s:11:\"Relacionado\";'), +('es','messages:search-result-category-size','s:122:\"{{PLURAL:$1|1 miembro|$1 miembros}} ({{PLURAL:$2|1 subcategoría|$2 subcategorías}}, {{PLURAL:$3|1 archivo|$3 archivos}})\";'), +('es','messages:search-result-size','s:40:\"$1 ({{PLURAL:$2|1 palabra|$2 palabras}})\";'), +('es','messages:search-rewritten','s:73:\"Se muestran los resultados de $1. No se han encontrado resultados por $2.\";'), +('es','messages:search-section','s:13:\"(sección $1)\";'), +('es','messages:search-showingresults','s:125:\"{{PLURAL:$4|Resultado $1 de $3|Resultados $1 - $2 de $3}}\";'), +('es','messages:search-suggest','s:26:\"Quizás quieres buscar: $1\";'), +('es','messages:search-summary','s:0:\"\";'), +('es','messages:search-unknown-profile','s:80:\"No se reconoce el perfil de búsqueda $1; se aplicará el perfil predeterminado.\";'), +('es','messages:search-warning','s:50:\"Se ha producido un aviso al hacer la búsqueda: $1\";'), +('es','messages:searchall','s:5:\"todos\";'), +('es','messages:searcharticle','s:2:\"Ir\";'), +('es','messages:searchbutton','s:6:\"Buscar\";'), +('es','messages:searchdisabled','s:188:\"Las búsquedas en {{SITENAME}} están desactivadas.\nMientras tanto puedes buscar mediante Google, pero ten en cuenta que sus índices relativos a {{SITENAME}} pueden estar desactualizados.\";'), +('es','messages:searchlimit-help','s:20:\"Número máximo: 500\";'), +('es','messages:searchlimit-label','s:61:\"Número de resultados de búsqueda a mostrar en cada página:\";'), +('es','messages:searchmenu-exists','s:139:\"Hay una página llamada «[[:$1]]» en esta wiki. {{PLURAL:$2|0=|Véanse también los demás resultados de la búsqueda.}}\";'), +('es','messages:searchmenu-new','s:164:\"Crear la página «[[:$1]]» en esta wiki. {{PLURAL:$2|0=|Véase también la página encontrada.|Véanse también los resultados de la búsqueda.}}\";'), +('es','messages:searchmenu-new-nocreate','s:0:\"\";'), +('es','messages:searchprofile-advanced','s:8:\"Avanzado\";'), +('es','messages:searchprofile-advanced-tooltip','s:44:\"Buscar en espacios de nombres personalizados\";'), +('es','messages:searchprofile-articles','s:21:\"Páginas de contenido\";'), +('es','messages:searchprofile-articles-tooltip','s:12:\"Buscar en $1\";'), +('es','messages:searchprofile-everything','s:4:\"Todo\";'), +('es','messages:searchprofile-everything-tooltip','s:66:\"Buscar en todo el contenido (incluidas las páginas de discusión)\";'), +('es','messages:searchprofile-images','s:10:\"Multimedia\";'), +('es','messages:searchprofile-images-tooltip','s:15:\"Buscar archivos\";'), +('es','messages:searchrelated','s:11:\"relacionado\";'), +('es','messages:searchresults','s:26:\"Resultados de la búsqueda\";'), +('es','messages:searchresults-title','s:36:\"Resultados de la búsqueda de «$1»\";'), +('es','messages:searchresultshead','s:10:\"Búsquedas\";'), +('es','messages:searchsuggest-containing','s:36:\"Buscar en las páginas que contengan\";'), +('es','messages:searchsuggest-search','s:22:\"Buscar en {{SITENAME}}\";'), +('es','messages:seconds','s:36:\"{{PLURAL:$1|un segundo|$1 segundos}}\";'), +('es','messages:seconds-abbrev','s:3:\"$1s\";'), +('es','messages:seconds-ago','s:38:\"hace $1 {{PLURAL:$1|segundo|segundos}}\";'), +('es','messages:sectioneditnotsupported-text','s:89:\"No se admite la edición de secciones en esta página, o está desactivada en esta vista.\";'), +('es','messages:sectioneditnotsupported-title','s:32:\"Edición de sección no admitida\";'), +('es','messages:selfmove','s:74:\"El título es el mismo;\nno se puede trasladar una página sobre sí misma.\";'), +('es','messages:selfredirect','s:276:\"Advertencia: estás redirigiendo esta página a sí misma.\nPuede que hayas especificado erróneamente el destino de la redirección, o quizá estés editando la página equivocada. En cualquier caso, si haces clic de nuevo en \"$1\", se creará la redirección.\";'), +('es','messages:semicolon-separator','s:6:\"; \";'), +('es','messages:semiprotectedpagemovewarning','s:187:\"Nota: esta página ha sido protegida para que solo usuarios autoconfirmados puedan trasladarla.\nA continuación se muestra la última entrada de registro como referencia:\";'), +('es','messages:semiprotectedpagewarning','s:191:\"Nota: Esta página ha sido protegida para que solo puedan editarla usuarios autoconfirmados.\nA continuación se muestra la última entrada de registro para más información:\";'), +('es','messages:sep','s:3:\"sep\";'), +('es','messages:september','s:10:\"septiembre\";'), +('es','messages:september-gen','s:10:\"septiembre\";'), +('es','messages:servertime','s:18:\"Hora del servidor:\";'), +('es','messages:session_fail_preview','s:359:\"Lo sentimos, no hemos podido procesar tu edición debido a una pérdida de los datos de sesión.\n\nPuede que se haya cerrado tu sesión. Verifica que hayas accedido e inténtalo de nuevo.\nSi el problema persiste, prueba a [[Special:UserLogout|cerrar sesión]] y volver a acceder. Y verifica que tu navegador permita las cookies de este sitio.\";'), +('es','messages:session_fail_preview_html','s:483:\"Lo sentimos, no hemos podido procesar tu edición debido a una pérdida de datos de sesión.\n\nLa previsualización está oculta como prevención frente a ataques JavaScript, puesto que esta wiki tiene habilitado el HTML en bruto.\n\nSi se trata de un intento legítimo de modificación, inténtalo de nuevo.\nSi aún así no funcionase, prueba a [[Special:UserLogout|cerrar sesión]] y volver a acceder y verifica que tu navegador acepte cookies de este sitio.\";'), +('es','messages:sessionfailure','s:157:\"Parece que hay un problema con tu sesión;\nse ha cancelado esta acción como medida de precaución contra el robo de sesiones.\nEnvía el formulario otra vez.\";'), +('es','messages:sessionfailure-title','s:16:\"Error de sesión\";'), +('es','messages:sessionmanager-tie','s:76:\"No se pueden combinar múltiples tipos de autenticación de solicitudes: $1.\";'), +('es','messages:sessionprovider-generic','s:11:\"sesiones $1\";'), +('es','messages:sessionprovider-mediawiki-session-cookiesessionprovider','s:27:\"sesiones basadas en cookies\";'), +('es','messages:sessionprovider-nocookies','s:74:\"Puede que las cookies estén desactivadas. Actívalas y comienza de nuevo.\";'), +('es','messages:shared-repo','s:25:\"un repositorio compartido\";'), +('es','messages:shared-repo-from','s:5:\"de $1\";'), +('es','messages:shared-repo-name-wikimediacommons','s:17:\"Wikimedia Commons\";'), +('es','messages:shareddescriptionfollows','s:1:\"-\";'), +('es','messages:sharedupload','s:60:\"Este archivo es de $1 y puede ser usado por otros proyectos.\";'), +('es','messages:sharedupload-desc-create','s:155:\"Este archivo es de $1 y puede ser utilizado por otros proyectos.\nTal vez desee editar la descripción de su [$2 página de descripción del archivo] allí.\";'), +('es','messages:sharedupload-desc-edit','s:156:\"Este archivo es de $1 y puede ser utilizado por otros proyectos.\nTal vez desee editar la descripción de su [$2 página de descripción del archivo] allí.\";'), +('es','messages:sharedupload-desc-here','s:138:\"Este archivo es de $1 y puede usarse en otros proyectos.\nLa descripción en su [$2 página de descripción del archivo] se muestra debajo.\";'), +('es','messages:sharedupload-desc-there','s:148:\"Este archivo es de $1 y puede ser usado por otros proyectos.\nPor favor mira la [$2 página de descripción del archivo] para información adicional.\";'), +('es','messages:shortpages','s:15:\"Páginas cortas\";'), +('es','messages:shortpages-summary','s:0:\"\";'), +('es','messages:show','s:7:\"Mostrar\";'), +('es','messages:show-big-image','s:16:\"Archivo original\";'), +('es','messages:show-big-image-other','s:54:\"{{PLURAL:$2|Otra resolución|Otras resoluciones}}: $1.\";'), +('es','messages:show-big-image-preview','s:38:\"Tamaño de esta previsualización: $1.\";'), +('es','messages:show-big-image-preview-differ','s:56:\"Tamaño de esta previsualización $3 del archivo $2: $1.\";'), +('es','messages:show-big-image-size','s:17:\"$1 × $2 píxeles\";'), +('es','messages:showdiff','s:19:\"Mostrar los cambios\";'), +('es','messages:showhideselectedlogentries','s:65:\"Cambiar la visibilidad de las entradas del registro seleccionadas\";'), +('es','messages:showhideselectedversions','s:40:\"Mostrar/ocultar revisiones seleccionadas\";'), +('es','messages:showingresults','s:149:\"Abajo se {{PLURAL:$1|muestra 1 resultado|muestran hasta $1 resultados}} comenzando por el n.º $2.\";'), +('es','messages:showingresultsinrange','s:162:\"Abajo se muestran hasta {{PLURAL:$1|1 resultado|$1 resultados}} entre el n.º $2 y el n.º $3.\";'), +('es','messages:shown-title','s:57:\"Mostrar $1 {{PLURAL:$1|resultado|resultados}} por página\";'), +('es','messages:showpreview','s:25:\"Mostrar previsualización\";'), +('es','messages:showtoc','s:7:\"mostrar\";'), +('es','messages:sidebar','s:168:\"\n* navigation\n** mainpage|mainpage-description\n** recentchanges-url|recentchanges\n** randompage-url|randompage\n** helppage|help-mediawiki\n* SEARCH\n* TOOLBOX\n* LANGUAGES\";'), +('es','messages:sig-text','s:4:\"--$1\";'), +('es','messages:signature','s:58:\"[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|discusión]])\";'), +('es','messages:signature-anon','s:36:\"[[{{#special:Contributions}}/$1|$2]]\";'), +('es','messages:signupend','s:0:\"\";'), +('es','messages:signupend-https','s:0:\"\";'), +('es','messages:signupstart','s:0:\"\";'), +('es','messages:simpleantispam-label','s:60:\"Comprobación antispam.\n¡No rellenes esto!\";'), +('es','messages:site-atom-feed','s:16:\"Canal Atom de $1\";'), +('es','messages:site-rss-feed','s:20:\"Suministro RSS de $1\";'), +('es','messages:sitecsspreview','s:92:\"Recuerda que solo estás previsualizando este CSS.\n¡Aún no se ha grabado!\";'), +('es','messages:sitecssprotected','s:91:\"No tienes permiso para editar esta página CSS porque puede afectar a todos los visitantes.\";'), +('es','messages:sitejsonpreview','s:107:\"Recuerda que solo estas previsualizando esta configuración JSON. ¡Aún no se ha grabado!\";'), +('es','messages:sitejsonprotected','s:92:\"No tienes permiso para editar esta página JSON porque puede afectar a todos los visitantes.\";'), +('es','messages:sitejspreview','s:107:\"Recuerda que solo estás previsualizando este código JavaScript.\n¡Aún no se ha grabado!\";'), +('es','messages:sitejsprotected','s:101:\"No tienes permiso para editar esta página de JavaScript porque puede afectar a todos los visitantes.\";'), +('es','messages:sitenotice','s:1:\"-\";'), +('es','messages:siterawhtmlprotected','s:102:\"No tienes permiso para editar esta página porque tiene HTML que puede afectar a todos los visitantes.\";'), +('es','messages:sitesubtitle','s:0:\"\";'), +('es','messages:sitetitle','s:12:\"{{SITENAME}}\";'), +('es','messages:siteuser','s:54:\"{{GENDER:$1|el usuario|la usuaria}} $1 de {{SITENAME}}\";'), +('es','messages:siteusers','s:81:\"{{PLURAL:$2|{{GENDER:$1|el usuario|la usuaria}}|los usuarios}} $1 de {{SITENAME}}\";'), +('es','messages:size-bytes','s:27:\"$1 {{PLURAL:$1|byte|bytes}}\";'), +('es','messages:size-exabytes','s:5:\"$1 EB\";'), +('es','messages:size-exapixel','s:5:\"$1 EP\";'), +('es','messages:size-gigabytes','s:5:\"$1 GB\";'), +('es','messages:size-gigapixel','s:5:\"$1 GP\";'), +('es','messages:size-kilobytes','s:6:\"$1 kB\";'), +('es','messages:size-kilopixel','s:5:\"$1 KP\";'), +('es','messages:size-megabytes','s:5:\"$1 MB\";'), +('es','messages:size-megapixel','s:5:\"$1 MP\";'), +('es','messages:size-petabytes','s:5:\"$1 PB\";'), +('es','messages:size-petapixel','s:5:\"$1 PP\";'), +('es','messages:size-pixel','s:32:\"$1 {{PLURAL:$1|píxel|píxeles}}\";'), +('es','messages:size-terabytes','s:5:\"$1 TB\";'), +('es','messages:size-terapixel','s:5:\"$1 TP\";'), +('es','messages:size-yottabytes','s:5:\"$1 YB\";'), +('es','messages:size-yottapixel','s:5:\"$1 YP\";'), +('es','messages:size-zettabytes','s:5:\"$1 ZB\";'), +('es','messages:size-zettapixel','s:5:\"$1 ZP\";'), +('es','messages:skin-action-delete','s:6:\"Borrar\";'), +('es','messages:skin-action-move','s:9:\"Trasladar\";'), +('es','messages:skin-action-protect','s:8:\"Proteger\";'), +('es','messages:skin-action-undelete','s:9:\"Restaurar\";'), +('es','messages:skin-minerva-issue-learn-more','s:17:\"Más información\";'), +('es','messages:skin-minerva-mobile-option-MinervaPageIssuesNewTreatment','s:48:\"Tratamiento de problemas de la página mejorados\";'), +('es','messages:skin-minerva-mobile-option-MinervaPageIssuesNewTreatment-description','s:71:\"Problemas de la página (Plantilla:Aviso) se alineará en el artículo.\";'), +('es','messages:skin-minerva-mobile-option-MinervaShowCategories','s:11:\"Categorías\";'), +('es','messages:skin-minerva-mobile-option-MinervaShowCategories-description','s:27:\"Ver categorías de páginas\";'), +('es','messages:skin-minerva-recentchanges-warning-enhanced-not-supported','s:219:\"Desafortunadamente, la agrupación de resultados por página no se encuentra disponible en dispositivos móviles. Si te gustaría utilizar el grupo por característica de página por favor visita el sitio de escritorio.\";'), +('es','messages:skin-preview','s:13:\"Previsualizar\";'), +('es','messages:skinname-minerva','s:11:\"MinervaNeue\";'), +('es','messages:skinname-monobook','s:8:\"MonoBook\";'), +('es','messages:skinname-timeless','s:8:\"Timeless\";'), +('es','messages:skinname-vector','s:34:\"Versión heredada de Vector (2010)\";'), +('es','messages:skinname-vector-2022','s:13:\"Vector (2022)\";'), +('es','messages:slot-name-main','s:9:\"Principal\";'), +('es','messages:softblockrangesreason','s:105:\"Las contribuciones anónimas desde tu dirección IP ($1) no están permitidas. Por favor, inicia sesión.\";'), +('es','messages:sorbs','s:5:\"DNSBL\";'), +('es','messages:sorbs_create_account_reason','s:129:\"Tu dirección IP está catalogada como proxy abierto en la DNSBL que utiliza {{SITENAME}}. No se puede crear una cuenta.\";'), +('es','messages:sorbsreason','s:99:\"Tu dirección IP está catalogada como proxy abierto en la DNSBL que utiliza {{SITENAME}}.\";'), +('es','messages:sort-ascending','s:16:\"Orden ascendente\";'), +('es','messages:sort-descending','s:17:\"Orden descendente\";'), +('es','messages:sort-initial','s:15:\"Ordenar inicial\";'), +('es','messages:sort-rowspan-error','s:153:\"Esta página contiene una tabla con un atributo de rowspan que abarca más filas que la tabla realmente tiene. Puedes arreglar esto al editar la página.\";'), +('es','messages:sourcefilename','s:29:\"Nombre del archivo de origen:\";'), +('es','messages:sourceurl','s:14:\"URL de origen:\";'), +('es','messages:sp-contributions-blocked-notice','s:200:\"{{GENDER:$1|Este usuario|Esta usuaria|Esta cuenta}} se encuentra actualmente bloquead{{GENDER:$1|o|a|a}}.\nA continuación se muestra la última entrada del registro de bloqueos para más información:\";'), +('es','messages:sp-contributions-blocked-notice-anon','s:148:\"Esta dirección IP se encuentra actualmente bloqueada.\nA continuación se muestra la última entrada del registro de bloqueos para mayor referencia.\";'), +('es','messages:sp-contributions-blocked-notice-anon-partial','s:149:\"Esta dirección IP se encuentra parcialmente bloqueada.\nA continuación se muestra la última entrada del registro de bloqueos para mayor referencia.\";'), +('es','messages:sp-contributions-blocked-notice-partial','s:144:\"Este usuario se encuentra parcialmente bloqueado.\nA continuación se muestra la última entrada del registro de bloqueos para más información:\";'), +('es','messages:sp-contributions-blocklog','s:20:\"registro de bloqueos\";'), +('es','messages:sp-contributions-concurrency-ip','s:102:\"Disculpa, hay muchas solicitudes desde tu dirección IP en este momento. Por favor intenta más tarde.\";'), +('es','messages:sp-contributions-concurrency-user','s:119:\"Disculpa, hay muchas solicitudes que se están haciendo desde tu usuario en este momento. Por favor intenta más tarde.\";'), +('es','messages:sp-contributions-deleted','s:63:\"contribuciones {{GENDER:$1|del usuario|de la usuaria}} borradas\";'), +('es','messages:sp-contributions-explain','s:0:\"\";'), +('es','messages:sp-contributions-footer','s:1:\"-\";'), +('es','messages:sp-contributions-footer-anon','s:1:\"-\";'), +('es','messages:sp-contributions-footer-anon-range','s:1:\"-\";'), +('es','messages:sp-contributions-hideminor','s:25:\"Ocultar ediciones menores\";'), +('es','messages:sp-contributions-logs','s:9:\"registros\";'), +('es','messages:sp-contributions-newonly','s:53:\"Mostrar solo ediciones que son creaciones de páginas\";'), +('es','messages:sp-contributions-outofrange','s:109:\"No se pudo mostrar ningún resultado. El intervalo de IP seleccionado es mayor que el límite de CIDR de /$1.\";'), +('es','messages:sp-contributions-search','s:21:\"Buscar contribuciones\";'), +('es','messages:sp-contributions-submit','s:6:\"Buscar\";'), +('es','messages:sp-contributions-suppresslog','s:65:\"contribuciones {{GENDER:$1|del usuario|de la usuaria}} suprimidas\";'), +('es','messages:sp-contributions-talk','s:10:\"discusión\";'), +('es','messages:sp-contributions-toponly','s:42:\"Mostrar solo últimas ediciones de página\";'), +('es','messages:sp-contributions-uploads','s:7:\"subidas\";'), +('es','messages:sp-contributions-username','s:34:\"Dirección IP o nombre de usuario:\";'), +('es','messages:sp-contributions-userrights','s:60:\"gestión de permisos {{GENDER:$1|del usuario|de la usuaria}}\";'), +('es','messages:sp-deletedcontributions-contribs','s:14:\"contribuciones\";'), +('es','messages:sp-newimages-showfrom','s:46:\"Mostrar archivos nuevos empezando desde $2, $1\";'), +('es','messages:spam_blanking','s:56:\"Todas las revisiones contienen enlaces a $1, blanqueando\";'), +('es','messages:spam_deleting','s:75:\"Todas las revisiones que contienen enlaces a $1, en proceso de eliminación\";'), +('es','messages:spam_reverting','s:62:\"Revirtiendo a la última versión que no contenga enlaces a $1\";'), +('es','messages:spambot_username','s:29:\"Limpieza de spam de MediaWiki\";'), +('es','messages:spamprotectionmatch','s:63:\"El siguiente texto es el que activó nuestro filtro de spam: $1\";'), +('es','messages:spamprotectiontext','s:144:\"La página que quería publicar fue bloqueada por el filtro de spam.\nEsto esta causado probablemente por un enlace a un sitio externo prohibido.\";'), +('es','messages:spamprotectiontitle','s:33:\"Filtro de protección contra spam\";'), +('es','messages:special-characters-group-arabic','s:6:\"Árabe\";'), +('es','messages:special-characters-group-arabicextended','s:15:\"Árabe ampliado\";'), +('es','messages:special-characters-group-bangla','s:8:\"Bengalí\";'), +('es','messages:special-characters-group-canadianaboriginal','s:29:\"Silabario aborigen canadiense\";'), +('es','messages:special-characters-group-cyrillic','s:9:\"Cirílico\";'), +('es','messages:special-characters-group-devanagari','s:10:\"Devanagari\";'), +('es','messages:special-characters-group-greek','s:6:\"Griego\";'), +('es','messages:special-characters-group-greekextended','s:15:\"Griego ampliado\";'), +('es','messages:special-characters-group-gujarati','s:9:\"Guyaratí\";'), +('es','messages:special-characters-group-hebrew','s:6:\"Hebreo\";'), +('es','messages:special-characters-group-ipa','s:3:\"AFI\";'), +('es','messages:special-characters-group-khmer','s:9:\"Camboyano\";'), +('es','messages:special-characters-group-lao','s:8:\"Laosiano\";'), +('es','messages:special-characters-group-latin','s:6:\"Latino\";'), +('es','messages:special-characters-group-latinextended','s:15:\"Latino ampliado\";'), +('es','messages:special-characters-group-persian','s:5:\"Persa\";'), +('es','messages:special-characters-group-runes','s:5:\"Runas\";'), +('es','messages:special-characters-group-sinhala','s:9:\"Cingalés\";'), +('es','messages:special-characters-group-symbols','s:9:\"Símbolos\";'), +('es','messages:special-characters-group-tamil','s:5:\"Tamil\";'), +('es','messages:special-characters-group-telugu','s:7:\"Telugú\";'), +('es','messages:special-characters-group-thai','s:10:\"Tailandés\";'), +('es','messages:special-characters-title-emdash','s:4:\"raya\";'), +('es','messages:special-characters-title-endash','s:9:\"semirraya\";'), +('es','messages:special-characters-title-minus','s:14:\"signo de resta\";'), +('es','messages:specialdeletepage-page','s:18:\"Página de destino\";'), +('es','messages:specialdeletepage-submit','s:15:\"Ir a la página\";'), +('es','messages:specialeditpage-page','s:18:\"Página de destino\";'), +('es','messages:specialeditpage-submit','s:15:\"Ir a la página\";'), +('es','messages:speciallogtitlelabel','s:51:\"Objetivo (título o {{ns:user}}:nombre de usuario):\";'), +('es','messages:specialloguserlabel','s:8:\"Usuario:\";'), +('es','messages:specialmute','s:9:\"Silenciar\";'), +('es','messages:specialmute-email-footer','s:95:\"Para gestionar las preferencias de correo electrónico para el usuario {{BIDI:$2}} visita <$1>.\";'), +('es','messages:specialmute-error-invalid-user','s:48:\"No se encontró el nombre de usuario solicitado.\";'), +('es','messages:specialmute-error-no-options','s:285:\"Las funciones de silencio no están disponibles. Esto podría deberse a que no ha confirmado su dirección de correo electrónico, o porque el administrador de la wiki ha deshabilitado las funciones de correo electrónico y/o la lista de silencio de correo electrónico para esta wiki.\";'), +('es','messages:specialmute-header','s:76:\"Selecciona tus preferencias de silencio para {{BIDI:[[User:$1|$1]]}}.\";'), +('es','messages:specialmute-label-mute-email','s:78:\"Silenciar los correos electrónicos de {{GENDER:$1|este usuario|esta usuaria}}\";'), +('es','messages:specialmute-login-required','s:67:\"Accede a tu cuenta para cambiar tus preferencias de silenciamiento.\";'), +('es','messages:specialmute-submit','s:9:\"Confirmar\";'), +('es','messages:specialmute-success','s:132:\"Tus preferencias de silencio han sido actualizadas. Mira todos los usuarios silenciados en [[Special:Preferences|tus preferencias]].\";'), +('es','messages:specialpage','s:16:\"Página especial\";'), +('es','messages:specialpage-empty','s:36:\"No hay resultados para este informe.\";'), +('es','messages:specialpage-securitylevel-not-allowed','s:73:\"No puedes utilizar esta página porque no se pudo verificar tu identidad.\";'), +('es','messages:specialpage-securitylevel-not-allowed-title','s:18:\"No está permitido\";'), +('es','messages:specialpagehistory-page','s:18:\"Página de destino\";'), +('es','messages:specialpagehistory-submit','s:15:\"Ir a la página\";'), +('es','messages:specialpageinfo-page','s:18:\"Página de destino\";'), +('es','messages:specialpageinfo-submit','s:15:\"Ir a la página\";'), +('es','messages:specialpages','s:19:\"Páginas especiales\";'), +('es','messages:specialpages-group-changes','s:29:\"Cambios recientes y registros\";'), +('es','messages:specialpages-group-developer','s:33:\"Herramientas para desarrolladores\";'), +('es','messages:specialpages-group-highuse','s:19:\"Páginas sobre usos\";'), +('es','messages:specialpages-group-login','s:20:\"Acceder/crear cuenta\";'), +('es','messages:specialpages-group-maintenance','s:25:\"Informes de mantenimiento\";'), +('es','messages:specialpages-group-media','s:23:\"Páginas sobre archivos\";'), +('es','messages:specialpages-group-other','s:25:\"Otras páginas especiales\";'), +('es','messages:specialpages-group-pages','s:18:\"Listas de páginas\";'), +('es','messages:specialpages-group-pagetools','s:24:\"Herramientas de páginas\";'), +('es','messages:specialpages-group-redirects','s:26:\"Búsquedas y redirecciones\";'), +('es','messages:specialpages-group-spam','s:22:\"Herramientas anti-SPAM\";'), +('es','messages:specialpages-group-users','s:19:\"Usuarios y permisos\";'), +('es','messages:specialpages-group-wiki','s:20:\"Herramientas y datos\";'), +('es','messages:specialpages-note-cached','s:1:\"-\";'), +('es','messages:specialpages-note-restricted','s:115:\"* Páginas especiales ordinarias.\n* Páginas especiales restringidas.\";'), +('es','messages:specialpages-note-top','s:7:\"Leyenda\";'), +('es','messages:specialpages-summary','s:0:\"\";'), +('es','messages:specialprotectpage-page','s:18:\"Página de destino\";'), +('es','messages:specialprotectpage-submit','s:15:\"Ir a la página\";'), +('es','messages:specialpurge-page','s:18:\"Página de destino\";'), +('es','messages:specialpurge-submit','s:15:\"Ir a la página\";'), +('es','messages:statistics','s:13:\"Estadísticas\";'), +('es','messages:statistics-articles','s:21:\"Páginas de contenido\";'), +('es','messages:statistics-articles-desc','s:0:\"\";'), +('es','messages:statistics-edits','s:58:\"Ediciones en páginas desde que {{SITENAME}} fue instalado\";'), +('es','messages:statistics-edits-average','s:33:\"Promedio de ediciones por página\";'), +('es','messages:statistics-files','s:16:\"Archivos subidos\";'), +('es','messages:statistics-files-desc','s:0:\"\";'), +('es','messages:statistics-footer','s:0:\"\";'), +('es','messages:statistics-header-edits','s:26:\"Estadísticas de ediciones\";'), +('es','messages:statistics-header-hooks','s:19:\"Otras estadísticas\";'), +('es','messages:statistics-header-pages','s:25:\"Estadísticas de páginas\";'), +('es','messages:statistics-header-users','s:25:\"Estadísticas de usuarios\";'), +('es','messages:statistics-pages','s:8:\"Páginas\";'), +('es','messages:statistics-pages-desc','s:88:\"Todas las páginas de la wiki, incluidas las páginas de discusión, redirecciones, etc.\";'), +('es','messages:statistics-summary','s:0:\"\";'), +('es','messages:statistics-users','s:20:\"Usuarios registrados\";'), +('es','messages:statistics-users-active','s:16:\"Usuarios activos\";'), +('es','messages:statistics-users-active-desc','s:93:\"Usuarios que han ejecutado una acción en {{PLURAL:$1|el último día|los últimos $1 días}}\";'), +('es','messages:storedversion','s:17:\"Versión guardada\";'), +('es','messages:subcategories','s:14:\"Subcategorías\";'), +('es','messages:subject','s:7:\"Asunto:\";'), +('es','messages:subject-preview','s:29:\"Previsualización del asunto:\";'), +('es','messages:summary','s:8:\"Resumen:\";'), +('es','messages:summary-preview','s:42:\"Previsualización del resumen de edición:\";'), +('es','messages:sun','s:3:\"dom\";'), +('es','messages:sunday','s:7:\"domingo\";'), +('es','messages:sunday-at','s:19:\"el domingo a las $1\";'), +('es','messages:suppress','s:8:\"Supresor\";'), +('es','messages:suppressedarticle','s:19:\"suppressed \"[[$1]]\"\";'), +('es','messages:suppressionlog','s:23:\"Registro de supresiones\";'), +('es','messages:suppressionlogtext','s:232:\"A continuación se muestra una lista de borrados y bloqueos relacionados con contenido oculto para los administradores.\nVéase la [[Special:BlockList|lista de bloqueos]], que incluye las prohibiciones y bloqueos actualmente activos.\";'), +('es','messages:suspicious-userlogout','s:126:\"Tu solicitud de desconexión ha sido denegada, pues parece haber sido enviada desde un navegador defectuoso o un proxy caché.\";'), +('es','messages:svg-long-desc','s:67:\"archivo SVG, nominalmente $1 × $2 píxeles, tamaño de archivo: $3\";'), +('es','messages:svg-long-desc-animated','s:79:\"Archivo SVG animado, nominalmente de $1 × $2 píxeles, tamaño del archivo: $3\";'), +('es','messages:svg-long-error','s:26:\"Archivo SVG no válido: $1\";'), +('es','messages:systemblockedtext','s:331:\"Tu nombre de usuario o dirección IP ha sido bloqueado automáticamente por el software MediaWiki.\nLa razón dada es:\n\n:$2\n\n* Inicio del bloqueo: $8\n* Caducidad de bloqueo: $6\n* Destinatario del bloqueo: $7\n\nTu dirección IP actual es $3.\nPor favor, incluye todos los datos aquí mostrados en cualquier consulta que hagas.\";'), +('es','messages:table_pager_empty','s:17:\"No hay resultados\";'), +('es','messages:table_pager_first','s:15:\"Primera página\";'), +('es','messages:table_pager_last','s:15:\"Última página\";'), +('es','messages:table_pager_limit','s:32:\"Mostrar $1 elementos por página\";'), +('es','messages:table_pager_limit_label','s:22:\"Elementos por página:\";'), +('es','messages:table_pager_limit_submit','s:2:\"Ir\";'), +('es','messages:table_pager_next','s:17:\"Página siguiente\";'), +('es','messages:table_pager_prev','s:16:\"Página anterior\";'), +('es','messages:tag-filter','s:37:\"Filtro de [[Special:Tags|etiquetas]]:\";'), +('es','messages:tag-filter-submit','s:6:\"Filtro\";'), +('es','messages:tag-hidden','s:20:\"$1 (etiqueta oculta)\";'), +('es','messages:tag-list-wrapper','s:53:\"[[Special:Tags|{{PLURAL:$1|Etiqueta|Etiquetas}}]]: $2\";'), +('es','messages:tag-mw-blank','s:7:\"Vaciado\";'), +('es','messages:tag-mw-blank-description','s:35:\"Ediciones que blanquean una página\";'), +('es','messages:tag-mw-changed-redirect-target','s:34:\"Destino de redirección modificado\";'), +('es','messages:tag-mw-changed-redirect-target-description','s:54:\"Ediciones que modifican el destino de una redirección\";'), +('es','messages:tag-mw-contentmodelchange','s:29:\"cambio de modelo de contenido\";'), +('es','messages:tag-mw-contentmodelchange-description','s:135:\"Ediciones que [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:ChangeContentModel cambian el modelo de contenido] de una página\";'), +('es','messages:tag-mw-manual-revert','s:17:\"Reversión manual\";'), +('es','messages:tag-mw-manual-revert-description','s:73:\"Ediciones que restauran manualmente una página a un exacto estado previo\";'), +('es','messages:tag-mw-new-redirect','s:18:\"Redirección nueva\";'), +('es','messages:tag-mw-new-redirect-description','s:86:\"Ediciones que crean una redirección nueva o convierten la página en una redirección\";'), +('es','messages:tag-mw-removed-redirect','s:22:\"Redirección eliminada\";'), +('es','messages:tag-mw-removed-redirect-description','s:86:\"Ediciones que convierten una página de redirección existente en una sin redirección\";'), +('es','messages:tag-mw-replace','s:9:\"Reemplazo\";'), +('es','messages:tag-mw-replace-description','s:66:\"Ediciones que eliminan más del 90 % del contenido de una página\";'), +('es','messages:tag-mw-reverted','s:9:\"Revertido\";'), +('es','messages:tag-mw-reverted-description','s:87:\"Ediciones que posteriormente han sido deshechas o revertidas por una edición diferente\";'), +('es','messages:tag-mw-rollback','s:10:\"Reversión\";'), +('es','messages:tag-mw-rollback-description','s:79:\"Ediciones que deshacen modificaciones previas usando la herramienta de reversor\";'), +('es','messages:tag-mw-server-side-upload','s:27:\"Carga del lado del servidor\";'), +('es','messages:tag-mw-server-side-upload-description','s:70:\"Los archivos multimedia fueron cargados via un script de mantenimiento\";'), +('es','messages:tag-mw-undo','s:8:\"Deshacer\";'), +('es','messages:tag-mw-undo-description','s:80:\"Ediciones que deshacen modificaciones anteriores mediante el enlace «Deshacer»\";'), +('es','messages:tag-visualeditor','s:66:\"[[{{MediaWiki:visualeditor-descriptionpagelink}}|Edición visual]]\";'), +('es','messages:tag-visualeditor-description','s:91:\"Modificación hecha con el [[{{MediaWiki:visualeditor-descriptionpagelink}}|Editor visual]]\";'), +('es','messages:tag-visualeditor-needcheck','s:77:\"[[{{MediaWiki:visualeditor-descriptionpagelink}}|Edición visual: comprobar]]\";'), +('es','messages:tag-visualeditor-needcheck-description','s:171:\"Edición realizada con el [[{{MediaWiki:visualeditor-descriptionpagelink}}|editor visual]] en la que el sistema detectó posibles cambios no intencionales en el wikitexto.\";'), +('es','messages:tag-visualeditor-switched','s:76:\"[[{{MediaWiki:visualeditor-descriptionpagelink}}|Edición visual: cambiado]]\";'), +('es','messages:tag-visualeditor-switched-description','s:96:\"El usuario comenzó a editar utilizando el editor visual y luego cambió al editor de wikitexto.\";'), +('es','messages:tag-visualeditor-wikitext','s:22:\"editor de código 2017\";'), +('es','messages:tag-visualeditor-wikitext-description','s:53:\"Modificación realizada con el editor de código 2017\";'), +('es','messages:tagline','s:15:\"De {{SITENAME}}\";'), +('es','messages:tags','s:20:\"Etiquetas de cambios\";'), +('es','messages:tags-actions-header','s:8:\"Acciones\";'), +('es','messages:tags-activate','s:7:\"activar\";'), +('es','messages:tags-activate-not-allowed','s:41:\"No es posible activar la etiqueta «$1».\";'), +('es','messages:tags-activate-not-found','s:29:\"La etiqueta «$1» no existe.\";'), +('es','messages:tags-activate-question','s:45:\"Estás a punto de activar la etiqueta «$1».\";'), +('es','messages:tags-activate-reason','s:7:\"Motivo:\";'), +('es','messages:tags-activate-submit','s:7:\"Activar\";'), +('es','messages:tags-activate-title','s:16:\"Activar etiqueta\";'), +('es','messages:tags-active-header','s:9:\"¿Activo?\";'), +('es','messages:tags-active-no','s:2:\"No\";'), +('es','messages:tags-active-yes','s:3:\"Sí\";'), +('es','messages:tags-apply-blocked','s:108:\"No puedes aplicar etiquetas de cambio junto a tus cambios mientras estés {{GENDER:$1|bloqueado|bloqueada}}.\";'), +('es','messages:tags-apply-no-permission','s:75:\"No tienes permiso para aplicar etiquetas de cambios, junto con tus cambios.\";'), +('es','messages:tags-apply-not-allowed-multi','s:109:\"{{PLURAL:$2|La siguiente etiqueta no se puede|Las siguientes etiquetas no se pueden}} aplicar manualmente: $1\";'), +('es','messages:tags-apply-not-allowed-one','s:53:\"No se permite aplicar manualmente la etiqueta «$1».\";'), +('es','messages:tags-create-already-exists','s:29:\"La etiqueta «$1» ya existe.\";'), +('es','messages:tags-create-explanation','s:100:\"De manera predeterminada, las etiquetas nuevas estarán disponibles para su uso por usuarios y bots.\";'), +('es','messages:tags-create-heading','s:18:\"Crear una etiqueta\";'), +('es','messages:tags-create-invalid-chars','s:97:\"Los nombres de las etiquetas no deben contener comas (
,) ni barras (/).\";'),
+('es','messages:tags-create-invalid-title-chars','s:111:\"Los nombres de las etiquetas no deben contener caracteres que no puedan usarse en los títulos de las páginas.\";'),
+('es','messages:tags-create-no-name','s:50:\"Es necesario especificar el nombre de la etiqueta.\";'),
+('es','messages:tags-create-reason','s:7:\"Motivo:\";'),
+('es','messages:tags-create-submit','s:5:\"Crear\";'),
+('es','messages:tags-create-tag-name','s:22:\"Nombre de la etiqueta:\";'),
+('es','messages:tags-create-warnings-above','s:114:\"Se {{PLURAL:$2|produjo el aviso siguiente|produjeron los avisos siguientes}} al intentar crear la etiqueta «$1»:\";'),
+('es','messages:tags-create-warnings-below','s:44:\"¿Continuar con la creación de la etiqueta?\";'),
+('es','messages:tags-deactivate','s:10:\"desactivar\";'),
+('es','messages:tags-deactivate-not-allowed','s:44:\"No es posible desactivar la etiqueta «$1».\";'),
+('es','messages:tags-deactivate-question','s:48:\"Estás a punto de desactivar la etiqueta «$1».\";'),
+('es','messages:tags-deactivate-reason','s:7:\"Motivo:\";'),
+('es','messages:tags-deactivate-submit','s:10:\"Desactivar\";'),
+('es','messages:tags-deactivate-title','s:19:\"Desactivar etiqueta\";'),
+('es','messages:tags-delete','s:8:\"eliminar\";'),
+('es','messages:tags-delete-explanation-active','s:186:\"La etiqueta \"$1\" aún está activa y se seguirá utilizándo en el futuro. Para que esto no ocurra, deshabilítala desde el lugar donde se configuró para ser utilizada.\";'),
+('es','messages:tags-delete-explanation-in-use','s:143:\"Se eliminará de {{PLURAL:$2|$2 revisión o entrada de registro|todas las $2 revisiones y/o entradas de registro}} donde actualmente se aplica.\";'),
+('es','messages:tags-delete-explanation-initial','s:66:\"Estás a punto de eliminar la etiqueta «$1» de la base de datos.\";'),
+('es','messages:tags-delete-explanation-warning','s:171:\"Esta acción es irreversible y ni siquiera los administradores de la base de datos podrán deshacerla. Confirma que esta es la etiqueta que se eliminará.\";'),
+('es','messages:tags-delete-no-permission','s:57:\"No tienes permiso para eliminar las etiquetas de cambios.\";'),
+('es','messages:tags-delete-not-allowed','s:107:\"No se pueden eliminar las etiquetas definidas por una extensión, a menos que esta lo permita expresamente.\";'),
+('es','messages:tags-delete-not-found','s:29:\"La etiqueta «$1» no existe.\";'),
+('es','messages:tags-delete-reason','s:7:\"Motivo:\";'),
+('es','messages:tags-delete-submit','s:40:\"Eliminar esta etiqueta irreversiblemente\";'),
+('es','messages:tags-delete-title','s:17:\"Eliminar etiqueta\";'),
+('es','messages:tags-delete-too-many-uses','s:110:\"No se puede borrar la etiqueta \"$1\" porque se ha aplicado a más de {{PLURAL:$2|una revisión|$2 revisiones}}.\";'),
+('es','messages:tags-delete-warnings-after-delete','s:104:\"La etiqueta \"$1\" se borró, pero con {{PLURAL:$2|la siguiente advertencia|las siguientes advertencias}}:\";'),
+('es','messages:tags-description-header','s:36:\"Descripción completa de significado\";'),
+('es','messages:tags-display-header','s:33:\"Apariencia de la lista de cambios\";'),
+('es','messages:tags-edit','s:6:\"editar\";'),
+('es','messages:tags-edit-add','s:24:\"Agregar estas etiquetas:\";'),
+('es','messages:tags-edit-chosen-no-results','s:45:\"No se encontraron etiquetas que coincidan con\";'),
+('es','messages:tags-edit-chosen-placeholder','s:28:\"Selecciona algunas etiquetas\";'),
+('es','messages:tags-edit-existing-tags','s:21:\"Etiquetas existentes:\";'),
+('es','messages:tags-edit-existing-tags-none','s:11:\"\'\'Ninguna\'\'\";'),
+('es','messages:tags-edit-failure','s:38:\"No se pudieron aplicar los cambios:\n$1\";'),
+('es','messages:tags-edit-logentry-explanation','s:0:\"\";'),
+('es','messages:tags-edit-logentry-legend','s:104:\"Agregar o quitar etiquetas de {{PLURAL:$1|esta entrada del registro|todas las $1 entradas del registro}}\";'),
+('es','messages:tags-edit-logentry-selected','s:82:\"{{PLURAL:$1|Evento del registro seleccionado|Eventos del registro seleccionados}}:\";'),
+('es','messages:tags-edit-logentry-submit','s:86:\"Aplicar los cambios a {{PLURAL:$1|esta entrada del registro|$1 entradas del registro}}\";'),
+('es','messages:tags-edit-manage-link','s:21:\"Administrar etiquetas\";'),
+('es','messages:tags-edit-new-tags','s:17:\"Etiquetas nuevas:\";'),
+('es','messages:tags-edit-none-selected','s:54:\"Selecciona al menos una etiqueta que añadir o quitar.\";'),
+('es','messages:tags-edit-nooldid-text','s:110:\"No se especificó ninguna revisión en que realizar esta acción, o bien, la revisión especificada no existe.\";'),
+('es','messages:tags-edit-nooldid-title','s:31:\"Revisión de página no válida\";'),
+('es','messages:tags-edit-reason','s:7:\"Motivo:\";'),
+('es','messages:tags-edit-remove','s:25:\"Eliminar estas etiquetas:\";'),
+('es','messages:tags-edit-remove-all-tags','s:30:\"(eliminar todas las etiquetas)\";'),
+('es','messages:tags-edit-revision-explanation','s:0:\"\";'),
+('es','messages:tags-edit-revision-legend','s:82:\"Agregar o quitar etiquetas de {{PLURAL:$1|esta revisión|todas las $1 revisiones}}\";'),
+('es','messages:tags-edit-revision-selected','s:73:\"{{PLURAL:$1|Revisión seleccionada|Revisiones seleccionadas}} de [[:$2]]:\";'),
+('es','messages:tags-edit-revision-submit','s:64:\"Aplicar los cambios a {{PLURAL:$1|esta revisión|$1 revisiones}}\";'),
+('es','messages:tags-edit-success','s:25:\"Se aplicaron los cambios.\";'),
+('es','messages:tags-edit-title','s:16:\"Editar etiquetas\";'),
+('es','messages:tags-hidden','s:8:\"(oculto)\";'),
+('es','messages:tags-hitcount','s:31:\"$1 {{PLURAL:$1|cambio|cambios}}\";'),
+('es','messages:tags-hitcount-header','s:19:\"Cambios etiquetados\";'),
+('es','messages:tags-intro','s:111:\"Esta página enumera las etiquetas con las que el software puede marcar una edición, así como su significado.\";'),
+('es','messages:tags-manage-blocked','s:90:\"No puedes gestionar etiquetas de cambio mientras estés {{GENDER:$1|bloqueado|bloqueada}}.\";'),
+('es','messages:tags-manage-no-permission','s:58:\"No tienes permiso para gestionar las etiquetas de cambios.\";'),
+('es','messages:tags-source-extension','s:24:\"Definida por el software\";'),
+('es','messages:tags-source-header','s:6:\"Fuente\";'),
+('es','messages:tags-source-manual','s:40:\"Aplicada manualmente por usuarios y bots\";'),
+('es','messages:tags-source-none','s:18:\"No se utiliza más\";'),
+('es','messages:tags-summary','s:0:\"\";'),
+('es','messages:tags-tag','s:18:\"Nombre de etiqueta\";'),
+('es','messages:tags-title','s:9:\"Etiquetas\";'),
+('es','messages:tags-update-add-not-allowed-multi','s:109:\"{{PLURAL:$2|La siguiente etiqueta no se puede|Las siguientes etiquetas no se pueden}} agregar manualmente: $1\";'),
+('es','messages:tags-update-add-not-allowed-one','s:55:\"No se permite la adición manual de la etiqueta «$1».\";'),
+('es','messages:tags-update-blocked','s:99:\"No puedes añadir o eliminar etiquetas de cambio mientras estés {{GENDER:$1|bloqueado|bloqueada}}.\";'),
+('es','messages:tags-update-no-permission','s:119:\"No tienes permiso para agregar o quitar etiquetas de cambio de las revisiones individuales o las entradas del registro.\";'),
+('es','messages:tags-update-remove-not-allowed-multi','s:110:\"{{PLURAL:$2|La siguiente etiqueta no se puede|Las siguientes etiquetas no se pueden}} eliminar manualmente: $1\";'),
+('es','messages:tags-update-remove-not-allowed-one','s:42:\"No se permite eliminar la etiqueta «$1».\";'),
+('es','messages:talk','s:10:\"Discusión\";'),
+('es','messages:talkpageheader','s:1:\"-\";'),
+('es','messages:talkpagelinktext','s:10:\"discusión\";'),
+('es','messages:talkpagetext','s:31:\"\";'),
+('es','messages:template-equals-category','s:34:\"Páginas que usan = como plantilla\";'),
+('es','messages:template-equals-category-desc','s:248:\"La página contiene {{=}} pero en esta wiki esto no expande a =. Este uso está obsoleto; en una futura versión de MediaWiki implementará {{=}} como una función \'\'parser\'\'.\";'),
+('es','messages:template-equals-warning','s:276:\"Advertencia:: Esta página usa {{=}} pero en esta wiki esto no expande a =. Este uso está obsoleto; en una futura versión de MediaWiki implementará {{=}} como una función \'\'parser\'\'.\";'),
+('es','messages:template-loop-category','s:33:\"Páginas con bucles de plantillas\";'),
+('es','messages:template-loop-category-desc','s:110:\"Esta página contiene un bucle de plantillas, es decir, una plantilla que se llama a sí misma recursivamente.\";'),
+('es','messages:template-loop-warning','s:134:\"Atención: esta página llama a [[:$1]], lo que provoca un bucle en las plantillas (una llamada recurrente infinita).\";'),
+('es','messages:template-protected','s:11:\"(protegida)\";'),
+('es','messages:template-semiprotected','s:15:\"(semiprotegida)\";'),
+('es','messages:templatepage','s:24:\"Ver página de plantilla\";'),
+('es','messages:templatesused','s:64:\"{{PLURAL:$1|Plantilla usada|Plantillas usadas}} en esta página:\";'),
+('es','messages:templatesusedpreview','s:74:\"{{PLURAL:$1|Plantilla usada|Plantillas usadas}} en esta previsualización:\";'),
+('es','messages:templatesusedsection','s:65:\"{{PLURAL:$1|Plantilla usada|Plantillas usadas}} en esta sección:\";'),
+('es','messages:textmatches','s:31:\"Resultados por texto de página\";'),
+('es','messages:thisisdeleted','s:21:\"¿Ver o restaurar $1?\";'),
+('es','messages:throttled-mailpassword','s:209:\"Ya se ha enviado un recordatorio de contraseña en {{PLURAL:$1|la última hora|las últimas $1 horas}}.\nPara evitar los abusos, solo se enviará un recordatorio de contraseña cada {{PLURAL:$1|hora|$1 horas}}.\";'),
+('es','messages:thu','s:3:\"jue\";'),
+('es','messages:thumbnail-dest-create','s:36:\"No se ha podido guardar la miniatura\";'),
+('es','messages:thumbnail-more','s:8:\"Aumentar\";'),
+('es','messages:thumbnail-temp-create','s:57:\"No se ha podido crear el archivo temporal de la miniatura\";'),
+('es','messages:thumbnail_dest_directory','s:41:\"Incapaz de crear el directorio de destino\";'),
+('es','messages:thumbnail_error','s:28:\"Error al crear miniatura: $1\";'),
+('es','messages:thumbnail_error_remote','s:26:\"Mensaje de error de $1:\n$2\";'),
+('es','messages:thumbnail_gd-library','s:67:\"Configuración de la biblioteca GD incompleta: falta la función $1\";'),
+('es','messages:thumbnail_image-failure-limit','s:112:\"Ha habido muchos intentos recientes ($1 o más) para representar esta miniatura. Inténtalo de nuevo más tarde.\";'),
+('es','messages:thumbnail_image-missing','s:32:\"El archivo parece no existir: $1\";'),
+('es','messages:thumbnail_image-size-zero','s:51:\"El tamaño del archivo de imagen aparenta ser cero.\";'),
+('es','messages:thumbnail_image-type','s:29:\"Tipo de imagen no contemplado\";'),
+('es','messages:thumbnail_invalid_params','s:37:\"Parámetros del thumbnail no válidos\";'),
+('es','messages:thumbnail_toobigimagearea','s:26:\"Archivo más grande que $1\";'),
+('es','messages:thumbsize','s:35:\"Tamaño de las vistas en miniatura:\";'),
+('es','messages:thursday','s:6:\"jueves\";'),
+('es','messages:thursday-at','s:18:\"el jueves a las $1\";'),
+('es','messages:timeless-action-addsection','s:10:\"Tema nuevo\";'),
+('es','messages:timeless-action-undelete','s:49:\"Restaurar {{PLURAL:$1|una edición|$1 ediciones}}\";'),
+('es','messages:timeless-anonymous','s:8:\"Anónimo\";'),
+('es','messages:timeless-desc','s:129:\"Una apariencia atemporal, diseñada por Brandon Harris en base al prototipo Winter y a varios estilos de la Fundación Wikimedia.\";'),
+('es','messages:timeless-languages','s:7:\"Idiomas\";'),
+('es','messages:timeless-loggedinas','s:30:\"Sesión iniciada como \'\'\'$1\'\'\'\";'),
+('es','messages:timeless-more','s:4:\"Más\";'),
+('es','messages:timeless-namespaces','s:19:\"Espacios de nombres\";'),
+('es','messages:timeless-notloggedin','s:15:\"No has accedido\";'),
+('es','messages:timeless-pageactions','s:23:\"Herramientas de página\";'),
+('es','messages:timeless-pagelog','s:20:\"Registros de página\";'),
+('es','messages:timeless-pagemisc','s:4:\"Más\";'),
+('es','messages:timeless-pagetools','s:19:\"Acciones de página\";'),
+('es','messages:timeless-projects','s:15:\"Otros proyectos\";'),
+('es','messages:timeless-sitetitle','s:17:\"{{int:Sitetitle}}\";'),
+('es','messages:timeless-sitetools','s:17:\"Herramientas wiki\";'),
+('es','messages:timeless-talkpage','s:43:\"Discusión de {{GENDER:$1|usuario|usuaria}}\";'),
+('es','messages:timeless-userpage','s:40:\"Página de {{GENDER:$1|usuario|usuaria}}\";'),
+('es','messages:timeless-userpagetools','s:34:\"Herramientas de página de usuario\";'),
+('es','messages:timeless-view-history','s:9:\"Historial\";'),
+('es','messages:timeless-view-view','s:4:\"Leer\";'),
+('es','messages:timeless.css','s:64:\"/* All CSS here will be loaded for users of the Timeless skin */\";'),
+('es','messages:timeless.js','s:116:\"/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios que usen la apariencia Timeless */\";'),
+('es','messages:timeouterror','s:42:\"Se agotó el tiempo de espera del servidor\";'),
+('es','messages:timeouterror-text','s:81:\"El tiempo de petición máximo de $1 {{PLURAL:$1|segundo|segundos}} fue excedido.\";'),
+('es','messages:timezone-local','s:5:\"Local\";'),
+('es','messages:timezone-useoffset-placeholder','s:38:\"Valores de ejemplo: \"-07:00\" o \"01:00\"\";'),
+('es','messages:timezone-utc','s:3:\"UTC\";'),
+('es','messages:timezonelegend','s:13:\"Huso horario:\";'),
+('es','messages:timezoneregion-africa','s:7:\"África\";'),
+('es','messages:timezoneregion-america','s:8:\"América\";'),
+('es','messages:timezoneregion-antarctica','s:10:\"Antártida\";'),
+('es','messages:timezoneregion-arctic','s:7:\"Ártico\";'),
+('es','messages:timezoneregion-asia','s:4:\"Asia\";'),
+('es','messages:timezoneregion-atlantic','s:18:\"Océano Atlántico\";'),
+('es','messages:timezoneregion-australia','s:9:\"Australia\";'),
+('es','messages:timezoneregion-europe','s:6:\"Europa\";'),
+('es','messages:timezoneregion-indian','s:15:\"Océano Índico\";'),
+('es','messages:timezoneregion-pacific','s:17:\"Océano Pacífico\";'),
+('es','messages:timezoneuseoffset','s:37:\"Otro (la diferencia de tiempo de UTC)\";'),
+('es','messages:timezoneuseserverdefault','s:30:\"Usar la hora del servidor ($1)\";'),
+('es','messages:title-invalid','s:49:\"El título de la página solicitado no es válido\";'),
+('es','messages:title-invalid-characters','s:77:\"El título de la página solicitada contiene caracteres no válidos: «$1».\";'),
+('es','messages:title-invalid-empty','s:100:\"El título de la página solicitada está vacío o contiene solo el nombre de un espacio de nombres.\";'),
+('es','messages:title-invalid-interwiki','s:99:\"El título de página solicitado contiene un enlace interwiki que no se puede usar en los títulos.\";'),
+('es','messages:title-invalid-leading-colon','s:88:\"El título de la página solicitada contiene un caracater (:) no válido en el comienzo.\";'),
+('es','messages:title-invalid-magic-tilde','s:108:\"El título de la página solicitada contiene una secuencia de virgulillas no válida (rev_id ya se estaba|sus rev_id ya se estaban}} utilizando.\";'),
+('es','messages:undeleterevision-missing','s:135:\"Revisión no válida o perdida.\nPuede deberse a un enlace incorrecto o a que la revisión haya sido restaurada o eliminada del archivo.\";'),
+('es','messages:undeleterevisions','s:58:\"$1 {{PLURAL:$1|revisión eliminada|revisiones eliminadas}}\";'),
+('es','messages:undeleteviewlink','s:3:\"ver\";'),
+('es','messages:underline-always','s:7:\"Siempre\";'),
+('es','messages:underline-default','s:61:\"Configuración predeterminada de la apariencia o el navegador\";'),
+('es','messages:underline-never','s:5:\"Nunca\";'),
+('es','messages:undo-failure','s:94:\"No se ha podido deshacer la edición ya que otro usuario ha realizado una edición intermedia.\";'),
+('es','messages:undo-main-slot-only','s:86:\"No se ha podido desacer el cámbio porque contiene contenido fuera del slot principal.\";'),
+('es','messages:undo-nochange','s:45:\"Parece que ya se había deshecho la edición.\";'),
+('es','messages:undo-norev','s:72:\"No se ha podido deshacer la edición porque no existe o ha sido borrada.\";'),
+('es','messages:undo-success','s:214:\"Puedes deshacer la edición.\nAntes de deshacer la edición, comprueba la siguiente comparación para verificar que realmente es lo que quieres hacer, y entonces publica los cambios para así efectuar la reversión.\";'),
+('es','messages:undo-summary','s:90:\"Se ha deshecho la revisión $1 de [[Special:Contributions/$2|$2]] ([[User talk:$2|disc.]])\";'),
+('es','messages:undo-summary-anon','s:63:\"Deshacer la modificación $1 de [[Special:Contributions/$2|$2]]\";'),
+('es','messages:undo-summary-import','s:54:\"Se ha deshecho la revisión importada $1 de [[:$2|$3]]\";'),
+('es','messages:undo-summary-import2','s:46:\"Se ha deshecho la revisión importada $1 de $2\";'),
+('es','messages:undo-summary-username-hidden','s:51:\"Se ha deshecho la revisión $1 de un usuario oculto\";'),
+('es','messages:unexpected','s:32:\"Valor inesperado: «$1»=«$2».\";'),
+('es','messages:unicode-support-fail','s:143:\"Parece que su navegador no es compatible con Unicode. Como esta codificación es necesaria para editar las páginas, no se guardó tu edición.\";'),
+('es','messages:unit-pixel','s:2:\"px\";'),
+('es','messages:unknown-error','s:30:\"Ocurrió un error desconocido.\";'),
+('es','messages:unlinkaccounts','s:19:\"Desvincular cuentas\";'),
+('es','messages:unlinkaccounts-success','s:29:\"Se ha desvinculado la cuenta.\";'),
+('es','messages:unlockbtn','s:28:\"Desbloquear la base de datos\";'),
+('es','messages:unlockconfirm','s:51:\"Sí, realmente quiero desbloquear la base de datos.\";'),
+('es','messages:unlockdb','s:28:\"Desbloquear la base de datos\";'),
+('es','messages:unlockdbsuccesssub','s:40:\"El desbloqueo se ha realizado con éxito\";'),
+('es','messages:unlockdbsuccesstext','s:54:\"La base de datos de {{SITENAME}} ha sido desbloqueada.\";'),
+('es','messages:unlockdbtext','s:283:\"El desbloqueo de la base de datos permitirá a todos los usuarios editar páginas, cambiar sus preferencias, modificar sus listas de seguimiento y cualesquiera otras funciones que impliquen modificar la base de datos. Por favor, confirme que esto es precisamente lo que quiere hacer.\";'),
+('es','messages:unpatrolledletter','s:1:\"!\";'),
+('es','messages:unprotect','s:19:\"Cambiar protección\";'),
+('es','messages:unprotected-js','s:168:\"Por razones de seguridad, JavaScript no se puede cargar desde páginas desprotegidas. Crea javascript solo en MediaWiki: espacio de nombres o como subpágina de usuario\";'),
+('es','messages:unprotectedarticle','s:34:\"desprotegió la página «[[$1]]»\";'),
+('es','messages:unprotectedarticle-comment','s:51:\"{{GENDER:$2|Eliminó la protección}} de «[[$1]]»\";'),
+('es','messages:unregistered-user-config','s:136:\"Por razones de seguridad, no se pueden cargar los códigos JavaScript, CSS o JSON localizados en subpáginas de usuarios no registrados.\";'),
+('es','messages:unstrip-depth-category','s:78:\"Páginas en que se excede el límite de profundidad de la función «unstrip»\";'),
+('es','messages:unstrip-depth-category-desc','s:59:\"La página supera el límite de profundidad de extracción.\";'),
+('es','messages:unstrip-depth-warning','s:73:\"Se ha superado el límite de recursividad de la función «unstrip» ($1)\";'),
+('es','messages:unstrip-size-category','s:74:\"Páginas en que se excede el límite de tamaño de la función «unstrip»\";'),
+('es','messages:unstrip-size-category-desc','s:55:\"La página supera el límite de tamaño de extracción.\";'),
+('es','messages:unstrip-size-warning','s:65:\"Se excedió el límite de tamaño de la función «unstrip» ($1)\";'),
+('es','messages:unsupported-content-diff','s:60:\"No se admiten las diferencias en el modelo de contenidos $1.\";'),
+('es','messages:unsupported-content-diff2','s:83:\"En esta wiki no se admiten las diferencias entre los modelos de contenidos $1 y $2.\";'),
+('es','messages:unsupported-content-model','s:90:\"Atención: en esta wiki no se admite el modelo de contenidos $1.\";'),
+('es','messages:unusedcategories','s:25:\"Categorías no utilizadas\";'),
+('es','messages:unusedcategories-summary','s:0:\"\";'),
+('es','messages:unusedcategoriestext','s:93:\"Las siguientes categorías han sido creadas, pero ningún artículo o categoría las utiliza.\";'),
+('es','messages:unusedimages','s:22:\"Archivos no utilizados\";'),
+('es','messages:unusedimages-summary','s:0:\"\";'),
+('es','messages:unusedimagestext','s:251:\"Los siguientes archivos existen pero no están insertados en ninguna página.\nTen en cuenta que otros sitios web pueden enlazar un archivo directamente por la URL, y por tanto pueden estar listados aquí a pesar de estar siendo usados de forma activa.\";'),
+('es','messages:unusedimagestext-categorizedimgisused','s:360:\"Los siguientes archivos existen, pero no están integrados en ninguna página. Las imágenes categorizadas son consideradas como utilizadas, a pesar de que no están incrustadas en ninguna página. Por favor tómese en cuenta que otros sitios pueden enlazarse a un archivo con una URL directa, y todavía pueden enlistarse aquí a pesar de estar en uso activo.\";'),
+('es','messages:unusedtemplates','s:24:\"Plantillas no utilizadas\";'),
+('es','messages:unusedtemplates-summary','s:0:\"\";'),
+('es','messages:unusedtemplatestext','s:186:\"Aquí se enumeran todas las páginas en el espacio de nombres {{ns:template}} que no están incluidas en otras páginas. Recuerda mirar lo que enlaza a las plantillas antes de borrarlas.\";'),
+('es','messages:unusedtemplateswlh','s:13:\"otros enlaces\";'),
+('es','messages:unwatch','s:16:\"Dejar de vigilar\";'),
+('es','messages:unwatchedpages','s:21:\"Páginas no vigiladas\";'),
+('es','messages:unwatchedpages-summary','s:0:\"\";'),
+('es','messages:unwatching','s:40:\"Eliminando de la lista de seguimiento...\";'),
+('es','messages:unwatchthispage','s:16:\"Dejar de vigilar\";'),
+('es','messages:updated','s:13:\"(Actualizado)\";'),
+('es','messages:updatedmarker','s:41:\"actualizada después de tu última visita\";'),
+('es','messages:updatewatchlist','s:31:\"Actualizar lista de seguimiento\";'),
+('es','messages:upload','s:13:\"Subir archivo\";'),
+('es','messages:upload-copy-upload-invalid-domain','s:57:\"No se pueden realizar subidas remotas desde este dominio.\";'),
+('es','messages:upload-curl-error28','s:25:\"Tiempo de espera excedido\";'),
+('es','messages:upload-curl-error28-text','s:193:\"La página tardó demasiado en responder. Por favor, comprueba que el servidor está funcionando, espera un poco y vuelva a intentarlo. Quizás desees intentarlo en otro momento de menos carga.\";'),
+('es','messages:upload-curl-error6','s:26:\"No se pudo alcanzar la URL\";'),
+('es','messages:upload-curl-error6-text','s:106:\"La URL no pudo ser alcanzada. Por favor comprueba que la URL es correcta y el sitio web está funcionando.\";'),
+('es','messages:upload-default-description','s:1:\"-\";'),
+('es','messages:upload-description','s:23:\"Descripción de archivo\";'),
+('es','messages:upload-dialog-button-back','s:6:\"Volver\";'),
+('es','messages:upload-dialog-button-cancel','s:8:\"Cancelar\";'),
+('es','messages:upload-dialog-button-done','s:5:\"Hecho\";'),
+('es','messages:upload-dialog-button-save','s:7:\"Guardar\";'),
+('es','messages:upload-dialog-button-upload','s:5:\"Subir\";'),
+('es','messages:upload-dialog-disabled','s:90:\"En esta wiki están desactivadas las subidas de archivos mediante este cuadro de diálogo.\";'),
+('es','messages:upload-dialog-title','s:13:\"Subir archivo\";'),
+('es','messages:upload-disallowed-here','s:36:\"No puedes sobrescribir este archivo.\";'),
+('es','messages:upload-file-error','s:13:\"Error interno\";'),
+('es','messages:upload-file-error-text','s:151:\"Ha ocurrido un error interno mientras se intentaba crear un archivo temporal en el servidor. Contacta con un [[Special:ListUsers/sysop|administrador]].\";'),
+('es','messages:upload-foreign-cant-load-config','s:90:\"Falló la carga de la configuración para subir archivos al depósito de archivos externo.\";'),
+('es','messages:upload-foreign-cant-upload','s:97:\"Esta wiki no está configurado para subir archivos al repositorio de archivos externo solicitado.\";'),
+('es','messages:upload-form-label-infoform-categories','s:11:\"Categorías\";'),
+('es','messages:upload-form-label-infoform-date','s:5:\"Fecha\";'),
+('es','messages:upload-form-label-infoform-description','s:12:\"Descripción\";'),
+('es','messages:upload-form-label-infoform-description-tooltip','s:148:\"Describe brevemente todo lo destacable acerca del trabajo.\nPara una foto, menciona las cosas principales que se representan, la ocasión o el lugar.\";'),
+('es','messages:upload-form-label-infoform-name','s:6:\"Nombre\";'),
+('es','messages:upload-form-label-infoform-name-tooltip','s:169:\"Un título único descriptivo para el archivo, que servirá como un nombre de archivo. Puedes usar un lenguaje claro con espacios. No incluyas la extensión del archivo.\";'),
+('es','messages:upload-form-label-infoform-title','s:8:\"Detalles\";'),
+('es','messages:upload-form-label-not-own-work-local-generic-foreign','s:141:\"Puede que también quieras usar [[Special:Upload|la página de subidas en {{SITENAME}}]], si se puede subir este archivo bajo sus políticas.\";'),
+('es','messages:upload-form-label-not-own-work-local-generic-local','s:88:\"Quizás también quieras probar [[Special:Upload|la página predeterminada de subidas]].\";'),
+('es','messages:upload-form-label-not-own-work-message-generic-foreign','s:167:\"Si usted no es capaz de cargar este archivo en virtud de las políticas del repositorio compartido, por favor cierre este cuadro de diálogo y probar con otro método.\";'),
+('es','messages:upload-form-label-not-own-work-message-generic-local','s:138:\"Si no es capaz de subir este archivo bajo las políticas de {{SITENAME}}, por favor cierre este cuadro de diálogo e intente otro método.\";'),
+('es','messages:upload-form-label-own-work','s:25:\"Esto es mi trabajo propio\";'),
+('es','messages:upload-form-label-own-work-message-generic-foreign','s:178:\"Entiendo que voy a subir este archivo a un repositorio compartido. Confirmo que estoy haciéndolo que siguiendo los términos de servicio y políticas de licenciamiento de allí.\";'),
+('es','messages:upload-form-label-own-work-message-generic-local','s:138:\"Confirmo que estoy subiendo este archivo siguiendo los términos del servicio y las políticas de concesión de licencias en {{SITENAME}}.\";'),
+('es','messages:upload-form-label-usage-filename','s:18:\"Nombre del archivo\";'),
+('es','messages:upload-form-label-usage-title','s:3:\"Uso\";'),
+('es','messages:upload-http-error','s:29:\"Ha ocurrido un error HTTP: $1\";'),
+('es','messages:upload-maxfilesize','s:31:\"Tamaño máximo del archivo: $1\";'),
+('es','messages:upload-misc-error','s:30:\"Error desconocido en la subida\";'),
+('es','messages:upload-misc-error-text','s:189:\"Ha ocurrido un error durante la subida.\nVerifica que la URL es válida y accesible e inténtalo de nuevo.\nSi el problema persiste, contacta con un [[Special:ListUsers/sysop|administrador]].\";'),
+('es','messages:upload-options','s:18:\"Opciones de subida\";'),
+('es','messages:upload-permitted','s:72:\"{{PLURAL:$2|Tipo de archivo permitido|Tipos de archivo permitidos}}: $1.\";'),
+('es','messages:upload-preferred','s:72:\"{{PLURAL:$2|Tipo de archivo preferido|Tipos de archivo preferidos}}: $1.\";'),
+('es','messages:upload-prohibited','s:72:\"{{PLURAL:$2|Tipo de archivo prohibido|Tipos de archivo prohibidos}}: $1.\";'),
+('es','messages:upload-proto-error','s:20:\"Protocolo incorrecto\";'),
+('es','messages:upload-proto-error-text','s:107:\"Para subir archivos desde otra página la URL debe comenzar por http:// o ftp://.\";'),
+('es','messages:upload-recreate-warning','s:173:\"Atención: se ha borrado o cambiado el nombre de un archivo con ese nombre.\n\nA continuación se muestra el registro de borrados y traslados de esta página:\";'),
+('es','messages:upload-scripted-dtd','s:81:\"No se pueden cargar archivos SVG que contengan una declaración DTD no estándar.\";'),
+('es','messages:upload-scripted-pi-callback','s:106:\"No se pueden cargar archivos que contengan instrucciones de procesamiento en forma de hojas de estilo XML.\";'),
+('es','messages:upload-source','s:17:\"Archivo de origen\";'),
+('es','messages:upload-summary','s:0:\"\";'),
+('es','messages:upload-too-many-redirects','s:41:\"La URL contenía demasiadas redirecciones\";'),
+('es','messages:upload-tryagain','s:45:\"Enviar la descripción modificada del archivo\";'),
+('es','messages:upload-tryagain-nostash','s:63:\"Enviar el archivo cargado de nuevo y la descripción modificada\";'),
+('es','messages:upload_directory_missing','s:87:\"El directorio de subida de archivos ($1) no existe, y el servidor no ha podido crearlo.\";'),
+('es','messages:upload_directory_read_only','s:78:\"El servidor web no puede escribir en el directorio de subida de archivos ($1).\";'),
+('es','messages:upload_source_file','s:41:\"(un archivo elegido desde tu computadora)\";'),
+('es','messages:upload_source_url','s:65:\"(un archivo elegido de una URL válida y accesible públicamente)\";'),
+('es','messages:uploadbtn','s:16:\"Subir un archivo\";'),
+('es','messages:uploaddisabled','s:36:\"Se desactivó la subida de archivos.\";'),
+('es','messages:uploaddisabledtext','s:36:\"Se desactivó la subida de archivos.\";'),
+('es','messages:uploaded-animate-svg','s:155:\"Se encontró un etiqueta \"animate\" que puede estar cambiando \"href\", mediante el atributo \"from\" <$1 $2=\"$3\"> en el archivo SVG cargado.\";'),
+('es','messages:uploaded-event-handler-on-svg','s:106:\"No está permitido configurar atributos controladores de eventos $1=\"$2\" en los archivos SVG.\";'),
+('es','messages:uploaded-hostile-svg','s:84:\"Se encontró código CSS no seguro en el elemento de estilo del archivo SVG cargado.\";'),
+('es','messages:uploaded-href-attribute-svg','s:268:\"Los elementos solo tienen permitido enlazar (href) con objetivos «data:» (archivo incrustado), «http://», «https://» o de fragmento («#», «same-document»). Prueba a incrustar las imágenes al exportar el SVG. Se encontró <$1 $2=\"$3\">.\";'),
+('es','messages:uploaded-href-unsafe-target-svg','s:112:\"Se encontró un href hacia un destino inseguro <$1 $2=\"$3\"> en el archivo SVG cargado.\";'),
+('es','messages:uploaded-image-filter-svg','s:100:\"Se encontró un filtro de imagen con URL: <$1 $2=\"$3\"> en el archivo SVG cargado.\";'),
+('es','messages:uploaded-remote-url-svg','s:111:\"Se bloquean los SVG que contienen URL de estilo externas. El archivo SVG cargado contiene $1=\"$2\".\";'),
+('es','messages:uploaded-script-svg','s:97:\"Se encontró el elemento habilitado para secuencias de órdenes «$1» en el archivo SVG cargado.\";'),
+('es','messages:uploaded-setting-event-handler-svg','s:144:\"Está bloqueada la configuración de atributos controladores de eventos. Se encontró <$1 $2=\"$3\"> en el archivo SVG cargado.\";'),
+('es','messages:uploaded-setting-handler-svg','s:156:\"Están bloqueados los archivos SVG que configuran el atributo \"handler\" con remote/data/script. Se encontró $1=\"$2\" en el archivo SVG cargado.\";'),
+('es','messages:uploaded-setting-href-svg','s:94:\"Está bloqueado el uso de la etiqueta \"set\" para añadir un atributo \"href\" al elemento padre.\";'),
+('es','messages:uploaded-wrong-setting-svg','s:181:\"Está bloqueado el uso de la etiqueta \"set\" para añadir un destino remote/data/script a cualquier atributo. Se encontró <set to=\"$1\"> en el archivo SVG cargado.\";'),
+('es','messages:uploadedimage','s:17:\"uploaded \"[[$1]]\"\";'),
+('es','messages:uploaderror','s:23:\"Error al intentar subir\";'),
+('es','messages:uploadfooter','s:1:\"-\";'),
+('es','messages:uploadinvalidxml','s:47:\"No se pudo analizar el XML del archivo cargado.\";'),
+('es','messages:uploadjava','s:165:\"El archivo es un ZIP que contiene un archivo .class de Java.\nNo se permite subir archivos Java, porque pueden causar que se puedan saltar restricciones de seguridad.\";'),
+('es','messages:uploadlogpage','s:19:\"Registro de subidas\";'),
+('es','messages:uploadlogpagetext','s:158:\"Debajo se muestra una lista de los últimos archivos subidos.\nConsulta la [[Special:NewFiles|galería de archivos nuevos]] para una presentación más visual.\";'),
+('es','messages:uploadnewversion-linktext','s:40:\"Subir una nueva versión de este archivo\";'),
+('es','messages:uploadnologin','s:15:\"No has accedido\";'),
+('es','messages:uploadnologintext','s:34:\"Tienes que $1 para subir archivos.\";'),
+('es','messages:uploadscripted','s:106:\"Este archivo contiene script o código HTML que puede ser interpretado erróneamente por un navegador web.\";'),
+('es','messages:uploadscriptednamespace','s:86:\"Este archivo SVG contiene un espacio de nombres no permitido: «[[ {{ns:file}}:File.jpg]] para usar la versión a tamaño completo del archivo.\n* [[ {{ns:file}}:File.png|200px|thumb|left|texto alternativo]] para una versión de 200 píxeles de ancho situada en una caja en el margen izquierdo con \"texto alternativo\" como descripción.\n* [[ {{ns:media}}:File.ogg]] para enlazar directamente al archivo sin mostrarlo.\";'),
+('es','messages:uploadvirus','s:44:\"¡El archivo contiene un virus!\nDetalles: $1\";'),
+('es','messages:uploadwarning','s:15:\"Alerta de carga\";'),
+('es','messages:uploadwarning-text','s:74:\"Modifica la descripción del archivo abajo indicada e inténtalo de nuevo.\";'),
+('es','messages:uploadwarning-text-nostash','s:88:\"Carga el archivo una vez más, modifica la descripción siguiente e inténtalo de nuevo.\";'),
+('es','messages:user-mail-no-addy','s:99:\"Se ha intentado enviar un mensaje de correo electrónico sin una dirección de correo electrónico.\";'),
+('es','messages:user-mail-no-body','s:87:\"Trató de enviar un mensaje de correo electrónico sin contenido o excesivamente corto.\";'),
+('es','messages:usercreated','s:50:\"{{GENDER:$3|Registrado|Registrada}} el $1 a las $2\";'),
+('es','messages:usercssispublic','s:107:\"Recuerda: las subpáginas CSS no deben contener datos confidenciales, pues otros usuarios los podrían ver.\";'),
+('es','messages:usercsspreview','s:101:\"Recuerda que solo estás previsualizando tu CSS de usuario.\n¡Aún no se ha grabado!\";'),
+('es','messages:usercssyoucanpreview','s:116:\"Consejo: usa el botón «{{int:showpreview}}» para probar su código CSS nuevo antes de guardarlo.\";'),
+('es','messages:usereditcount','s:35:\"$1 {{PLURAL:$1|edición|ediciones}}\";'),
+('es','messages:userexists','s:73:\"El nombre de usuario indicado ya está en uso.\nElige un nombre diferente.\";'),
+('es','messages:userinvalidconfigtitle','s:240:\"Atención: no existe la apariencia «$1».\nLas páginas de archivos .css, .json y .js personalizados comienzan por minúscula; p. ej., se usa «{{ns:user}}:Ejemplo/vector.css» en vez de «{{ns:user}}:Ejemplo/Vector.css».\";'),
+('es','messages:userjsdangerous','s:253:\"Por favor ten en cuenta que scripts incluidos en esta página serán ejecutados cada vez que cargues una página. Código malicioso añadido aquí podría comprometer tu cuenta. El código será ejecutado cuando previsualices tus cambios a esta página.\";'),
+('es','messages:userjsispublic','s:114:\"Recuerda: las subpáginas JavaScript no deben contener datos confidenciales, pues otros usuarios los podrían ver.\";'),
+('es','messages:userjsonispublic','s:108:\"Recuerda: las subpáginas JSON no deben contener datos confidenciales, pues otros usuarios los podrían ver.\";'),
+('es','messages:userjsonpreview','s:116:\"Recuerda que solo estas previsualizando tu configuración JSON de usuario. ¡Aún no se ha grabado!\";'),
+('es','messages:userjsonyoucanpreview','s:117:\"Consejo: usa el botón «{{int:showpreview}}» para probar el código JSON nuevo antes de guardarlo.\";'),
+('es','messages:userjspreview','s:110:\"¡Recuerda que solo estás previsualizando tu JavaScript de usuario.\n¡Aún no se ha grabado!\";'),
+('es','messages:userjsyoucanpreview','s:123:\"Consejo: Usa el botón «{{int:showpreview}}» para probar el código JavaScript nuevo antes de guardarlo.\";'),
+('es','messages:userlogin-createanother','s:17:\"Crear otra cuenta\";'),
+('es','messages:userlogin-helplink2','s:19:\"Ayuda con el acceso\";'),
+('es','messages:userlogin-joinproject','s:21:\"Únete a {{SITENAME}}\";'),
+('es','messages:userlogin-loggedin','s:119:\"Ya estás {{GENDER:$1|conectado|conectada}} como $1.\nUsa el formulario de abajo para iniciar sesión como otro usuario.\";'),
+('es','messages:userlogin-noaccount','s:23:\"¿No tienes una cuenta?\";'),
+('es','messages:userlogin-reauth','s:72:\"Debes iniciar sesión de nuevo para verificar que eres {{GENDER:$1|$1}}.\";'),
+('es','messages:userlogin-remembermypassword','s:28:\"Mantener mi sesión iniciada\";'),
+('es','messages:userlogin-resetpassword-link','s:30:\"¿Has olvidado tu contraseña?\";'),
+('es','messages:userlogin-signwithsecure','s:21:\"Usar conexión segura\";'),
+('es','messages:userlogin-yourname','s:7:\"Usuario\";'),
+('es','messages:userlogin-yourname-ph','s:28:\"Escribe tu nombre de usuario\";'),
+('es','messages:userlogin-yourpassword','s:11:\"Contraseña\";'),
+('es','messages:userlogin-yourpassword-ph','s:22:\"Escribe tu contraseña\";'),
+('es','messages:userlogout','s:5:\"Salir\";'),
+('es','messages:userlogout-continue','s:31:\"¿Quieres finalizar la sesión?\";'),
+('es','messages:userlogout-summary','s:0:\"\";'),
+('es','messages:usermaildisabled','s:43:\"Correo electrónico del usuario desactivado\";'),
+('es','messages:usermaildisabledtext','s:68:\"No puedes enviar correos electrónicos a otros usuarios en esta wiki\";'),
+('es','messages:usermessage-editor','s:22:\"Sistema de mensajería\";'),
+('es','messages:usermessage-summary','s:30:\"Dejando un mensaje de sistema.\";'),
+('es','messages:usermessage-template','s:21:\"MediaWiki:UserMessage\";'),
+('es','messages:username','s:50:\"{{GENDER:$1|Nombre de usuario|Nombre de usuaria}}:\";'),
+('es','messages:usernameinprogress','s:82:\"Ya está en marcha la creación de una cuenta para este nombre de usuario.\nEspera.\";'),
+('es','messages:userpage-userdoesnotexist','s:103:\"El usuario «$1» no está registrado. Asegúrate de que realmente quieres crear o editar esta página.\";'),
+('es','messages:userpage-userdoesnotexist-view','s:38:\"El usuario «$1» no está registrado.\";'),
+('es','messages:userrights','s:19:\"Permisos de usuario\";'),
+('es','messages:userrights-cannot-shorten-expiry','s:152:\"No puedes acortar la caducidad de las membresías del grupo «$1». Únicamente los usuarios con permisos para añadir y quitar el grupo pueden hacerlo.\";'),
+('es','messages:userrights-changeable-col','s:25:\"Grupos que puedes cambiar\";'),
+('es','messages:userrights-conflict','s:91:\"¡Conflicto de cambio de los permisos de usuario! Por favor, revisa y confirma tus cambios.\";'),
+('es','messages:userrights-editusergroup','s:56:\"Modificar grupos {{GENDER:$1|del usuario|de la usuaria}}\";'),
+('es','messages:userrights-expiry','s:7:\"Caduca:\";'),
+('es','messages:userrights-expiry-current','s:12:\"Caduca el $1\";'),
+('es','messages:userrights-expiry-existing','s:38:\"Fecha de caducidad actual: $2 a las $3\";'),
+('es','messages:userrights-expiry-in-past','s:57:\"El tiempo de caducidad del grupo \"$1\" está en el pasado.\";'),
+('es','messages:userrights-expiry-none','s:9:\"No caduca\";'),
+('es','messages:userrights-expiry-options','s:90:\"1 día:1 day,1 semana:1 week,1 mes:1 month,3 meses:3 months,6 meses:6 months,1 año:1 year\";'),
+('es','messages:userrights-expiry-othertime','s:16:\"En otro momento:\";'),
+('es','messages:userrights-groups-help','s:479:\"Puedes modificar los grupos a los que pertenece {{GENDER:$1|este usuario|esta usuaria}}:\n* Una casilla marcada significa que {{GENDER:$1|el usuario|la usuaria}} está en ese grupo.\n* Una casilla sin marcar significa que {{GENDER:$1|el usuario|la usuaria}} no está en ese grupo.\n* Un * indica que no podrás eliminar el grupo una vez que lo añadas, o viceversa.\n* Un # indica que puedes únicamente postergar, y no adelantar, la fecha de caducidad de la membresía a este grupo.\";'),
+('es','messages:userrights-groupsmember','s:11:\"Miembro de:\";'),
+('es','messages:userrights-groupsmember-auto','s:22:\"Miembro implícito de:\";'),
+('es','messages:userrights-groupsmember-type','s:2:\"$1\";'),
+('es','messages:userrights-invalid-expiry','s:52:\"El tiempo de caducidad del grupo \"$1\" no es válido.\";'),
+('es','messages:userrights-irreversible-marker','s:3:\"$1*\";'),
+('es','messages:userrights-lookup-user','s:32:\"Selecciona una cuenta de usuario\";'),
+('es','messages:userrights-no-interwiki','s:65:\"No tienes permiso para editar permisos de usuario en otros wikis.\";'),
+('es','messages:userrights-no-shorten-expiry-marker','s:3:\"$1#\";'),
+('es','messages:userrights-nodatabase','s:44:\"La base de datos $1 no existe o no es local.\";'),
+('es','messages:userrights-reason','s:7:\"Motivo:\";'),
+('es','messages:userrights-summary','s:0:\"\";'),
+('es','messages:userrights-systemuser','s:64:\"{{GENDER:$1|Este es un usuario|Esta es una usuaria}} del sistema\";'),
+('es','messages:userrights-unchangeable-col','s:28:\"Grupos que no puedes cambiar\";'),
+('es','messages:userrights-user-editname','s:29:\"Escribe un nombre de usuario:\";'),
+('es','messages:userrights-viewusergroup','s:50:\"Ver grupos {{GENDER:$1|del usuario|de la usuaria}}\";'),
+('es','messages:variantname-crh','s:3:\"crh\";'),
+('es','messages:variantname-crh-cyrl','s:8:\"crh-Cyrl\";'),
+('es','messages:variantname-crh-latn','s:8:\"crh-Latn\";'),
+('es','messages:variantname-gan','s:3:\"gan\";'),
+('es','messages:variantname-gan-hans','s:4:\"Hans\";'),
+('es','messages:variantname-gan-hant','s:4:\"Hant\";'),
+('es','messages:variantname-ike-cans','s:8:\"ike-Cans\";'),
+('es','messages:variantname-ike-latn','s:8:\"ike-Latn\";'),
+('es','messages:variantname-iu','s:2:\"iu\";'),
+('es','messages:variantname-kk','s:2:\"kk\";'),
+('es','messages:variantname-kk-arab','s:7:\"kk-Arab\";'),
+('es','messages:variantname-kk-cn','s:5:\"kk-CN\";'),
+('es','messages:variantname-kk-cyrl','s:7:\"kk-Cyrl\";'),
+('es','messages:variantname-kk-kz','s:5:\"kk-KZ\";'),
+('es','messages:variantname-kk-latn','s:7:\"kk-Latn\";'),
+('es','messages:variantname-kk-tr','s:5:\"kk-TR\";'),
+('es','messages:variantname-ku','s:2:\"ku\";'),
+('es','messages:variantname-ku-arab','s:7:\"ku-Arab\";'),
+('es','messages:variantname-ku-latn','s:7:\"ku-Latn\";'),
+('es','messages:variantname-shi','s:3:\"shi\";'),
+('es','messages:variantname-shi-latn','s:8:\"shi-Latn\";'),
+('es','messages:variantname-shi-tfng','s:8:\"shi-Tfng\";'),
+('es','messages:variantname-sr','s:2:\"sr\";'),
+('es','messages:variantname-sr-ec','s:7:\"sr-Cyrl\";'),
+('es','messages:variantname-sr-el','s:7:\"sr-Latn\";'),
+('es','messages:variantname-tg','s:2:\"tg\";'),
+('es','messages:variantname-tg-cyrl','s:7:\"tg-Cyrl\";'),
+('es','messages:variantname-tg-latn','s:7:\"tg-Latn\";'),
+('es','messages:variantname-tly','s:3:\"tly\";'),
+('es','messages:variantname-tly-cyrl','s:8:\"tly-Cyrl\";'),
+('es','messages:variantname-uz','s:2:\"uz\";'),
+('es','messages:variantname-uz-cyrl','s:7:\"uz-Cyrl\";'),
+('es','messages:variantname-uz-latn','s:7:\"uz-Latn\";'),
+('es','messages:variantname-zh','s:2:\"zh\";'),
+('es','messages:variantname-zh-cn','s:2:\"CN\";'),
+('es','messages:variantname-zh-hans','s:4:\"Hans\";'),
+('es','messages:variantname-zh-hant','s:4:\"Hant\";'),
+('es','messages:variantname-zh-hk','s:2:\"HK\";'),
+('es','messages:variantname-zh-mo','s:2:\"MO\";'),
+('es','messages:variantname-zh-my','s:2:\"MY\";'),
+('es','messages:variantname-zh-sg','s:2:\"SG\";'),
+('es','messages:variantname-zh-tw','s:2:\"TW\";'),
+('es','messages:variants','s:9:\"Variantes\";'),
+('es','messages:vector-action-addsection','s:12:\"Añadir tema\";'),
+('es','messages:vector-action-delete','s:6:\"Borrar\";'),
+('es','messages:vector-action-move','s:9:\"Trasladar\";'),
+('es','messages:vector-action-protect','s:8:\"Proteger\";'),
+('es','messages:vector-action-toggle-sidebar','s:34:\"Mostrar u ocultar la barra lateral\";'),
+('es','messages:vector-action-undelete','s:9:\"Restaurar\";'),
+('es','messages:vector-action-unprotect','s:19:\"Cambiar protección\";'),
+('es','messages:vector-anon-user-menu-pages','s:36:\"Páginas para editores desconectados\";'),
+('es','messages:vector-anon-user-menu-pages-label','s:38:\"Obtenga más información sobre editar\";'),
+('es','messages:vector-anon-user-menu-pages-learn','s:17:\"más información\";'),
+('es','messages:vector-intro-page','s:18:\"Help:Introducción\";'),
+('es','messages:vector-jumptocontent','s:15:\"Ir al contenido\";'),
+('es','messages:vector-jumptonavigation','s:19:\"Ir a la navegación\";'),
+('es','messages:vector-jumptosearch','s:17:\"Ir a la búsqueda\";'),
+('es','messages:vector-language-button-aria-label','s:82:\"Ir a un artículo en otro idioma. Disponible en {{PLURAL:$1|$1 idioma|$1 idiomas}}\";'),
+('es','messages:vector-language-button-label','s:34:\"{{PLURAL:$1|$1 idioma|$1 idiomas}}\";'),
+('es','messages:vector-language-redirect-to-top','s:153:\"En este {{SITENAME}} los enlaces interlingüísticos están situados en la parte superior de la página, a la derecha del título. [[#p-lang-btn|Subir]].\";'),
+('es','messages:vector-language-variant-switcher-label','s:26:\"Cambiar variante de idioma\";'),
+('es','messages:vector-languages','s:7:\"Idiomas\";'),
+('es','messages:vector-main-menu-tooltip','s:15:\"Menú principal\";'),
+('es','messages:vector-menu-checkbox-collapsed','s:10:\"contraído\";'),
+('es','messages:vector-menu-checkbox-expanded','s:9:\"expandido\";'),
+('es','messages:vector-more-actions','s:4:\"Más\";'),
+('es','messages:vector-opt-out','s:32:\"Cambiar a la apariencia anterior\";'),
+('es','messages:vector-opt-out-tooltip','s:89:\"Cambie su configuración para volver al aspecto anterior de la máscara (Vector heredado)\";'),
+('es','messages:vector-personal-more-label','s:18:\"Enlaces de usuario\";'),
+('es','messages:vector-search-loader','s:33:\"Cargando sugerencias de búsqueda\";'),
+('es','messages:vector-searchsuggest-containing','s:113:\"Buscar páginas que contengan $1\";'),
+('es','messages:vector-skin-desc','s:272:\"Proporciona dos apariencias de Vector:\n* 2011 - Versión moderna de MonoBook, con un aspecto actualizado y muchas mejoras de usabilidad\n* 2022 - Vector construido como parte del proyecto [[mw:Desktop Improvements|Mejoras a la IU de escritorio]] de la Fundación Wikimedia.\";'),
+('es','messages:vector-specialversion-name','s:6:\"Vector\";'),
+('es','messages:vector-view-create','s:5:\"Crear\";'),
+('es','messages:vector-view-edit','s:6:\"Editar\";'),
+('es','messages:vector-view-history','s:13:\"Ver historial\";'),
+('es','messages:vector-view-view','s:4:\"Leer\";'),
+('es','messages:vector-view-viewsource','s:11:\"Ver código\";'),
+('es','messages:vector.css','s:103:\"/* Todo CSS colocado en esta página será cargado para los usuarios que usen la apariencia \"Vector\" */\";'),
+('es','messages:vector.js','s:103:\"/* Todo código JavaScript escrito aquí se cargará para todos los usuarios de la apariencia Vector */\";'),
+('es','messages:verification-error','s:53:\"Este archivo no superó la verificación de archivos.\";'),
+('es','messages:version','s:8:\"Versión\";'),
+('es','messages:version-antispam','s:19:\"Prevención de spam\";'),
+('es','messages:version-api','s:3:\"API\";'),
+('es','messages:version-credits-not-found','s:82:\"No se ha encontrado información detallada de reconocimiento para esta extensión.\";'),
+('es','messages:version-credits-summary','s:98:\"Queremos reconocer a las siguientes personas por su contribución a [[Special:Version|MediaWiki]].\";'),
+('es','messages:version-credits-title','s:22:\"Reconocimiento para $1\";'),
+('es','messages:version-db-mariadb-url','s:20:\"https://mariadb.org/\";'),
+('es','messages:version-db-mysql-url','s:22:\"https://www.mysql.com/\";'),
+('es','messages:version-db-percona-url','s:46:\"http://www.percona.com/software/percona-server\";'),
+('es','messages:version-db-postgres-url','s:26:\"http://www.postgresql.org/\";'),
+('es','messages:version-db-sqlite-url','s:23:\"https://www.sqlite.org/\";'),
+('es','messages:version-editors','s:8:\"Editores\";'),
+('es','messages:version-entrypoints','s:24:\"URL del punto de entrada\";'),
+('es','messages:version-entrypoints-api-php','s:74:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:api.php api.php]\";'),
+('es','messages:version-entrypoints-articlepath','s:92:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgArticlePath Ruta del artículo]\";'),
+('es','messages:version-entrypoints-header-entrypoint','s:16:\"Punto de entrada\";'),
+('es','messages:version-entrypoints-header-url','s:3:\"URL\";'),
+('es','messages:version-entrypoints-index-php','s:78:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:index.php index.php]\";'),
+('es','messages:version-entrypoints-rest-php','s:76:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:rest.php rest.php]\";'),
+('es','messages:version-entrypoints-scriptpath','s:105:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgScriptPath Ruta de la secuencia de órdenes]\";'),
+('es','messages:version-ext-colheader-credits','s:7:\"Autores\";'),
+('es','messages:version-ext-colheader-description','s:12:\"Descripción\";'),
+('es','messages:version-ext-colheader-license','s:8:\"Licencia\";'),
+('es','messages:version-ext-colheader-name','s:10:\"Extensión\";'),
+('es','messages:version-ext-colheader-version','s:8:\"Versión\";'),
+('es','messages:version-ext-license','s:8:\"Licencia\";'),
+('es','messages:version-extensions','s:22:\"Extensiones instaladas\";'),
+('es','messages:version-hook-name','s:23:\"Nombre de la extensión\";'),
+('es','messages:version-hook-subscribedby','s:12:\"Suscrito por\";'),
+('es','messages:version-hooks','s:11:\"Extensiones\";'),
+('es','messages:version-libraries','s:22:\"Bibliotecas instaladas\";'),
+('es','messages:version-libraries-authors','s:7:\"Autores\";'),
+('es','messages:version-libraries-description','s:12:\"Descripción\";'),
+('es','messages:version-libraries-library','s:10:\"Biblioteca\";'),
+('es','messages:version-libraries-license','s:8:\"Licencia\";'),
+('es','messages:version-libraries-version','s:8:\"Versión\";'),
+('es','messages:version-license','s:21:\"Licencia de MediaWiki\";'),
+('es','messages:version-license-info','s:863:\"MediaWiki es software libre; puedes redistribuirlo o modificarlo según los términos de la Licencia General Pública de GNU tal como la publica la Free Software Foundation; ya sea la versión 2 de la licencia o (a tu elección) cualquier versión posterior.\n\nMediaWiki se distribuye con la esperanza de que sea útil, pero SIN NINGUNA GARANTÍA; sin siquiera con la garantía implícita de COMERCIABILIDAD o de IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Consulta la Licencia Pública General de GNU para más detalles.\n\nHas recibido [{{SERVER}}{{SCRIPTPATH}}/COPYING una copia de la Licencia Pública General de GNU] junto a este programa; si no es así, escríbele a la Free Software Foundation, Inc., Calle Franklin 51, quinto piso, Boston, MA 02110-1301, EE. UU. o [//www.gnu.org/licenses/old-licenses/gpl-2.0.html léela en línea].\";'),
+('es','messages:version-license-not-found','s:77:\"No se han encontrado información detallada de licencia para esta extensión.\";'),
+('es','messages:version-license-title','s:16:\"Licencia para $1\";'),
+('es','messages:version-mediahandlers','s:21:\"Manejadores de medios\";'),
+('es','messages:version-no-ext-name','s:12:\"[sin nombre]\";'),
+('es','messages:version-other','s:4:\"Otro\";'),
+('es','messages:version-parser-extensiontags','s:37:\"Etiquetas de extensiones sintácticas\";'),
+('es','messages:version-parser-function-hooks','s:37:\"Extensiones de funciones sintácticas\";'),
+('es','messages:version-parserhooks','s:38:\"Extensiones del analizador sintáctico\";'),
+('es','messages:version-poweredby-credits','s:110:\"Esta wiki funciona gracias a [https://www.mediawiki.org/ MediaWiki], copyright © 2001-$1 $2.\";'),
+('es','messages:version-poweredby-others','s:5:\"otros\";'),
+('es','messages:version-poweredby-translators','s:32:\"Traductores de translatewiki.net\";'),
+('es','messages:version-poweredby-various','s:14:\"Varios autores\";'),
+('es','messages:version-skin-colheader-name','s:10:\"Apariencia\";'),
+('es','messages:version-skins','s:22:\"Apariencias instaladas\";'),
+('es','messages:version-software','s:18:\"Software instalado\";'),
+('es','messages:version-software-product','s:8:\"Producto\";'),
+('es','messages:version-software-version','s:8:\"Versión\";'),
+('es','messages:version-specialpages','s:19:\"Páginas especiales\";'),
+('es','messages:version-summary','s:0:\"\";'),
+('es','messages:version-variables','s:9:\"Variables\";'),
+('es','messages:version-version','s:4:\"($1)\";'),
+('es','messages:versionrequired','s:39:\"Se requiere la versión $1 de MediaWiki\";'),
+('es','messages:versionrequiredtext','s:144:\"Se necesita la versión $1 de MediaWiki para utilizar esta página. Para más información, consulta [[Special:Version|la página de versión]].\";'),
+('es','messages:video-dims','s:12:\"$1, $2 × $3\";'),
+('es','messages:view','s:3:\"Ver\";'),
+('es','messages:view-create','s:5:\"Crear\";'),
+('es','messages:view-create-local','s:26:\"Añadir descripción local\";'),
+('es','messages:view-edit','s:6:\"Editar\";'),
+('es','messages:view-edit-local','s:25:\"Editar descripción local\";'),
+('es','messages:view-foreign','s:9:\"Ver en $1\";'),
+('es','messages:view-history','s:13:\"Ver historial\";'),
+('es','messages:view-pool-contention','s:15:\"pool contention\";'),
+('es','messages:view-pool-dirty-output','s:23:\"parser cache is expired\";'),
+('es','messages:view-pool-error','s:192:\"Lo sentimos, los servidores están sobrecargados en este momento.\nHay demasiados usuarios tratando de ver esta página.\nEspera un momento antes de intentar acceder de nuevo a esta página.\n\n$1\";'),
+('es','messages:view-pool-timeout','s:13:\"pool overload\";'),
+('es','messages:view-view','s:4:\"Leer\";'),
+('es','messages:viewcount','s:61:\"Esta página ha recibido {{PLURAL:$1|una visita|$1 visitas}}.\";'),
+('es','messages:viewdeleted','s:17:\"¿Quieres ver $1?\";'),
+('es','messages:viewdeleted_short','s:60:\"Ver {{PLURAL:$1|una edición borrada|$1 ediciones borradas}}\";'),
+('es','messages:viewdeletedpage','s:21:\"Ver páginas borradas\";'),
+('es','messages:viewhelppage','s:20:\"Ver página de ayuda\";'),
+('es','messages:viewinguserrights','s:96:\"Visualizar los grupos {{GENDER:$1|del usuario|de la usuaria}} [[User:$1|$1]] $2\";'),
+('es','messages:viewpagelogs','s:33:\"Ver los registros de esta página\";'),
+('es','messages:viewpagelogs-lowercase','s:33:\"ver los registros de esta página\";'),
+('es','messages:viewprevnext','s:40:\"Ver ($1 {{int:pipe-separator}} $2) ($3).\";'),
+('es','messages:views','s:6:\"Vistas\";'),
+('es','messages:viewsource','s:11:\"Ver código\";'),
+('es','messages:viewsource-title','s:24:\"Ver el código de «$1»\";'),
+('es','messages:viewsourcelink','s:11:\"ver código\";'),
+('es','messages:viewsourceold','s:11:\"ver código\";'),
+('es','messages:viewsourcetext','s:54:\"Puedes ver y copiar el código fuente de esta página.\";'),
+('es','messages:viewtalkpage','s:14:\"Ver discusión\";'),
+('es','messages:viewyourtext','s:81:\"Puedes ver y copiar el código de tus ediciones en esta página.\";'),
+('es','messages:virus-badscanner','s:61:\"Configuración incorrecta: antivirus desconocido: $1\";'),
+('es','messages:virus-scanfailed','s:36:\"ha fallado el análisis (código $1)\";'),
+('es','messages:virus-unknownscanner','s:22:\"antivirus desconocido:\";'),
+('es','messages:visualeditor','s:13:\"Editor visual\";'),
+('es','messages:visualeditor-advancedsettings-tool','s:25:\"Configuraciones avanzadas\";'),
+('es','messages:visualeditor-aliencontextitem-title','s:8:\"Elemento\";'),
+('es','messages:visualeditor-aliennode-tooltip','s:66:\"Este elemento puede editarse solo en el modo de código por ahora.\";'),
+('es','messages:visualeditor-align-desc-center','s:6:\"centro\";'),
+('es','messages:visualeditor-align-desc-default','s:14:\"predeterminada\";'),
+('es','messages:visualeditor-align-desc-left','s:9:\"izquierda\";'),
+('es','messages:visualeditor-align-desc-none','s:7:\"ninguna\";'),
+('es','messages:visualeditor-align-desc-right','s:7:\"derecha\";'),
+('es','messages:visualeditor-align-widget-center','s:7:\"Centrar\";'),
+('es','messages:visualeditor-align-widget-default','s:14:\"Predeterminado\";'),
+('es','messages:visualeditor-align-widget-left','s:22:\"Alinear a la izquierda\";'),
+('es','messages:visualeditor-align-widget-right','s:20:\"Alinear a la derecha\";'),
+('es','messages:visualeditor-alignablecontextitem-title','s:11:\"Alineación\";'),
+('es','messages:visualeditor-annotationbutton-big-tooltip','s:6:\"Grande\";'),
+('es','messages:visualeditor-annotationbutton-bold-tooltip','s:7:\"Negrita\";'),
+('es','messages:visualeditor-annotationbutton-code-tooltip','s:20:\"Código informático\";'),
+('es','messages:visualeditor-annotationbutton-italic-tooltip','s:7:\"Cursiva\";'),
+('es','messages:visualeditor-annotationbutton-language-tooltip','s:6:\"Idioma\";'),
+('es','messages:visualeditor-annotationbutton-link-tooltip','s:6:\"Enlace\";'),
+('es','messages:visualeditor-annotationbutton-small-tooltip','s:8:\"Pequeño\";'),
+('es','messages:visualeditor-annotationbutton-strikethrough-tooltip','s:6:\"Tachar\";'),
+('es','messages:visualeditor-annotationbutton-subscript-tooltip','s:10:\"Subíndice\";'),
+('es','messages:visualeditor-annotationbutton-superscript-tooltip','s:12:\"Superíndice\";'),
+('es','messages:visualeditor-annotationbutton-underline-tooltip','s:8:\"Subrayar\";'),
+('es','messages:visualeditor-annotations-default-description','s:61:\"Esta parte de la página es parte de un rango de anotaciones.\";'),
+('es','messages:visualeditor-annotations-default-end','s:21:\"Fin del rango anotado\";'),
+('es','messages:visualeditor-annotations-default-start','s:24:\"Inicio del rango anotado\";'),
+('es','messages:visualeditor-annotations-extended-documentation','s:251:\"Este rango de anotaciones se ha ampliado porque el contenido que incluía no estaba bien anidado. Se recomienda asegurarse de que el contenido anotado esté bien anidado antes de editarlo; de lo contrario, se podría anotar un rango mayor al esperado.\";'),
+('es','messages:visualeditor-autosave-modified-prompt-accept','s:17:\"Reanudar edición\";'),
+('es','messages:visualeditor-autosave-modified-prompt-message','s:209:\"Esta página se editó desde la última vez que la cargaste. ¿{{GENDER:|Quieres}} reanudar {{GENDER:|tu}} edición de la revisión anterior o comenzar una edición nueva a partir de la versión más reciente?\";'),
+('es','messages:visualeditor-autosave-modified-prompt-reject','s:27:\"Comenzar una edición nueva\";'),
+('es','messages:visualeditor-autosave-modified-prompt-title','s:43:\"¿Quieres reanudar {{GENDER:|tu}} edición?\";'),
+('es','messages:visualeditor-autosave-not-recovered-text','s:50:\"No se pudieron recuperar tus cambios no guardados.\";'),
+('es','messages:visualeditor-autosave-not-recovered-title','s:34:\"Falló la recuperación de cambios\";'),
+('es','messages:visualeditor-autosave-recovered-text','s:57:\"Se recuperaron automáticamente tus cambios no guardados.\";'),
+('es','messages:visualeditor-autosave-recovered-title','s:19:\"Cambios recuperados\";'),
+('es','messages:visualeditor-backbutton-tooltip','s:8:\"Regresar\";'),
+('es','messages:visualeditor-beta-warning','s:72:\"Si encuentras algún problema técnico mientras editas, informa de ello.\";'),
+('es','messages:visualeditor-browserwarning','s:81:\"Estás utilizando un navegador que no es oficialmente compatible con este editor.\";'),
+('es','messages:visualeditor-ca-createlocaldescriptionsource','s:36:\"Añadir fuente de descripción local\";'),
+('es','messages:visualeditor-ca-createsource','s:12:\"Crear fuente\";'),
+('es','messages:visualeditor-ca-editlocaldescriptionsource','s:36:\"Editar código de descripción local\";'),
+('es','messages:visualeditor-ca-editsource','s:14:\"Editar código\";'),
+('es','messages:visualeditor-ca-editsource-section','s:14:\"editar código\";'),
+('es','messages:visualeditor-ca-ve-create','s:13:\"Editor visual\";'),
+('es','messages:visualeditor-ca-ve-edit','s:13:\"Editor visual\";'),
+('es','messages:visualeditor-ca-ve-edit-section','s:13:\"Editor visual\";'),
+('es','messages:visualeditor-categories-tool','s:11:\"Categorías\";'),
+('es','messages:visualeditor-changedesc-align','s:30:\"Alineación cambió de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-changed','s:21:\"$1 cambió de $2 a $3\";'),
+('es','messages:visualeditor-changedesc-changed-diff','s:15:\"$1 cambió a $2\";'),
+('es','messages:visualeditor-changedesc-comment','s:35:\"Se cambió el comentario de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-comment-diff','s:28:\"Se cambió el comentario: $1\";'),
+('es','messages:visualeditor-changedesc-direction','s:50:\"El control manual de dirección cambió de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-image-size','s:29:\"El tamaño cambió de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-language','s:28:\"El idioma cambió de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-link-added','s:19:\"Enlace añadido: $1\";'),
+('es','messages:visualeditor-changedesc-link-href','s:36:\"Destino de enlace cambió de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-link-href-diff','s:31:\"Destino del enlace cambiado: $1\";'),
+('es','messages:visualeditor-changedesc-link-removed','s:18:\"Enlace quitado: $1\";'),
+('es','messages:visualeditor-changedesc-list-indent','s:31:\"List item indentation increased\";'),
+('es','messages:visualeditor-changedesc-list-outdent','s:31:\"List item indentation decreased\";'),
+('es','messages:visualeditor-changedesc-mwlanguagevariant','s:46:\"Se cambió el marcado de la variante de idioma\";'),
+('es','messages:visualeditor-changedesc-mwredirect','s:48:\"El destino de la redirección cambió de $1 a $2\";'),
+('es','messages:visualeditor-changedesc-mwtransclusion','s:34:\"Parámetros de plantilla cambiados\";'),
+('es','messages:visualeditor-changedesc-no-key','s:15:\"$1 cambió a $2\";'),
+('es','messages:visualeditor-changedesc-set','s:22:\"$1 configurado como $2\";'),
+('es','messages:visualeditor-changedesc-textstyle-added','s:28:\"Estilo de texto añadido: $1\";'),
+('es','messages:visualeditor-changedesc-textstyle-removed','s:29:\"Estilo de texto eliminado: $1\";'),
+('es','messages:visualeditor-changedesc-unknown','s:10:\"cambió $1\";'),
+('es','messages:visualeditor-changedesc-unset','s:14:\"$1 ya no es $2\";'),
+('es','messages:visualeditor-changedir','s:25:\"Cambio de direccionalidad\";'),
+('es','messages:visualeditor-changedir-tool-ltr','s:26:\"Ver de izquierda a derecha\";'),
+('es','messages:visualeditor-changedir-tool-rtl','s:26:\"Ver de derecha a izquierda\";'),
+('es','messages:visualeditor-clearbutton-tooltip','s:6:\"Quitar\";'),
+('es','messages:visualeditor-clipboard-copy','s:6:\"Copiar\";'),
+('es','messages:visualeditor-clipboard-copy-fail','s:28:\"Failed to copy to clipboard.\";'),
+('es','messages:visualeditor-clipboard-copy-success','s:20:\"Copied to clipboard.\";'),
+('es','messages:visualeditor-clipboard-cut','s:6:\"Cortar\";'),
+('es','messages:visualeditor-clipboard-paste','s:5:\"Pegar\";'),
+('es','messages:visualeditor-clipboard-paste-special','s:28:\"Pegar como texto sin formato\";'),
+('es','messages:visualeditor-command-dialog-cancel','s:23:\"Cerrar/cancelar cambios\";'),
+('es','messages:visualeditor-command-dialog-confirm','s:17:\"Confirmar cambios\";'),
+('es','messages:visualeditor-command-dialog-focus-context','s:45:\"Mover foco a una ventana emergente contextual\";'),
+('es','messages:visualeditor-commentannotationcontextitem-comment','s:8:\"Comentar\";'),
+('es','messages:visualeditor-commentinspector-edit','s:17:\"Editar comentario\";'),
+('es','messages:visualeditor-commentinspector-title','s:10:\"Comentario\";'),
+('es','messages:visualeditor-commentinspector-tooltip','s:10:\"Comentario\";'),
+('es','messages:visualeditor-content-select-all','s:16:\"Seleccionar todo\";'),
+('es','messages:visualeditor-contextitemwidget-label-close','s:6:\"Cerrar\";'),
+('es','messages:visualeditor-contextitemwidget-label-remove','s:6:\"Borrar\";'),
+('es','messages:visualeditor-contextitemwidget-label-secondary','s:6:\"Editar\";'),
+('es','messages:visualeditor-contextitemwidget-label-view','s:3:\"Ver\";'),
+('es','messages:visualeditor-debugbar-close','s:6:\"Cerrar\";'),
+('es','messages:visualeditor-debugbar-inputdebug','s:22:\"Depuración de entrada\";'),
+('es','messages:visualeditor-debugbar-logrange','s:21:\"Registro seleccionado\";'),
+('es','messages:visualeditor-debugbar-showmodel','s:14:\"Mostrar modelo\";'),
+('es','messages:visualeditor-debugbar-showtransactions','s:21:\"Mostrar transacciones\";'),
+('es','messages:visualeditor-debugbar-startfilibuster','s:11:\"Filibustero\";'),
+('es','messages:visualeditor-debugbar-stopfilibuster','s:22:\"Detener al filibustero\";'),
+('es','messages:visualeditor-debugbar-testsquasher','s:20:\"Probar el combinador\";'),
+('es','messages:visualeditor-debugbar-updatemodel','s:32:\"Actualización sobre los cambios\";'),
+('es','messages:visualeditor-desc','s:28:\"Editor visual para MediaWiki\";'),
+('es','messages:visualeditor-descriptionpagelink','s:21:\"Project:Editor visual\";'),
+('es','messages:visualeditor-dialog-action-apply','s:15:\"Aplicar cambios\";'),
+('es','messages:visualeditor-dialog-action-cancel','s:8:\"Cancelar\";'),
+('es','messages:visualeditor-dialog-action-done','s:5:\"Hecho\";'),
+('es','messages:visualeditor-dialog-action-goback','s:8:\"Regresar\";'),
+('es','messages:visualeditor-dialog-action-insert','s:8:\"Insertar\";'),
+('es','messages:visualeditor-dialog-command-help-title','s:17:\"Atajos de teclado\";'),
+('es','messages:visualeditor-dialog-error','s:18:\"Algo salió mal...\";'),
+('es','messages:visualeditor-dialog-error-dismiss','s:8:\"Regresar\";'),
+('es','messages:visualeditor-dialog-language-auto-direction','s:11:\"Automático\";'),
+('es','messages:visualeditor-dialog-language-search-title','s:18:\"Seleccionar idioma\";'),
+('es','messages:visualeditor-dialog-media-alttext-section','s:17:\"Texto alternativo\";'),
+('es','messages:visualeditor-dialog-media-alttext-section-help','s:358:\"Puedes usar esto para escribir una descripción de texto para la gente que no puede ver el elemento. La descripción debe ser lo suficientemente buena para que ellos entiendan el propósito y la información dada por el elemento multimedia. Esto es vital para los usuarios ciegos y otras personas con software lector de pantalla o navegadores de sólo texto.\";'),
+('es','messages:visualeditor-dialog-media-change-image','s:14:\"Cambiar imagen\";'),
+('es','messages:visualeditor-dialog-media-choose-image','s:16:\"Usar esta imagen\";'),
+('es','messages:visualeditor-dialog-media-content-description-link','s:25:\"(página de descripción)\";'),
+('es','messages:visualeditor-dialog-media-content-filename','s:18:\"Nombre del archivo\";'),
+('es','messages:visualeditor-dialog-media-content-section','s:7:\"Leyenda\";'),
+('es','messages:visualeditor-dialog-media-content-section-help','s:244:\"Puedes usar esto para mostrar una etiqueta que se muestra junto al elemento para todos los lectores. Esto se utiliza a menudo para explicar por qué el elemento es relevante para el contexto en el que se muestra. Debe ser conciso e informativo.\";'),
+('es','messages:visualeditor-dialog-media-goback','s:8:\"Regresar\";'),
+('es','messages:visualeditor-dialog-media-info-artist','s:13:\"Subido por $1\";'),
+('es','messages:visualeditor-dialog-media-info-audiofile','s:16:\"Archivo de audio\";'),
+('es','messages:visualeditor-dialog-media-info-created','s:13:\"Creado el: $1\";'),
+('es','messages:visualeditor-dialog-media-info-credit','s:9:\"Créditos\";'),
+('es','messages:visualeditor-dialog-media-info-dateformat','s:14:\"$2 de $1 de $3\";'),
+('es','messages:visualeditor-dialog-media-info-ellipsis','s:3:\"…\";'),
+('es','messages:visualeditor-dialog-media-info-imagedescription','s:21:\"Descripción completa\";'),
+('es','messages:visualeditor-dialog-media-info-licenseshortname','s:8:\"Licencia\";'),
+('es','messages:visualeditor-dialog-media-info-meta-artist','s:11:\"Artista: $1\";'),
+('es','messages:visualeditor-dialog-media-info-moreinfo','s:17:\"Más información\";'),
+('es','messages:visualeditor-dialog-media-info-readmore','s:17:\"Más información\";'),
+('es','messages:visualeditor-dialog-media-info-separator','s:2:\"·\";'),
+('es','messages:visualeditor-dialog-media-info-uploaded','s:13:\"Subido el: $1\";'),
+('es','messages:visualeditor-dialog-media-page-advanced','s:8:\"Avanzado\";'),
+('es','messages:visualeditor-dialog-media-page-general','s:7:\"General\";'),
+('es','messages:visualeditor-dialog-media-position-center','s:7:\"Centrar\";'),
+('es','messages:visualeditor-dialog-media-position-checkbox','s:40:\"Ajustar texto alrededor de este elemento\";'),
+('es','messages:visualeditor-dialog-media-position-checkbox-help','s:196:\"Puedes hacer que el elemento multimedia aparezca en línea con el texto de la página en lugar de flotar. Raramente debes hacer esto, ya que se rompe el flujo del texto si desactivas esta casilla.\";'),
+('es','messages:visualeditor-dialog-media-position-left','s:9:\"Izquierda\";'),
+('es','messages:visualeditor-dialog-media-position-none','s:11:\"Sin alinear\";'),
+('es','messages:visualeditor-dialog-media-position-right','s:7:\"Derecha\";'),
+('es','messages:visualeditor-dialog-media-position-section','s:9:\"Posición\";'),
+('es','messages:visualeditor-dialog-media-position-section-help','s:170:\"Puedes establecer en qué lugar de la página aparece este elemento multimedia. Esto se utiliza a veces para separar una larga fila de imágenes en un lado de la página.\";'),
+('es','messages:visualeditor-dialog-media-save','s:7:\"Guardar\";'),
+('es','messages:visualeditor-dialog-media-search-tab-search','s:6:\"Buscar\";'),
+('es','messages:visualeditor-dialog-media-search-tab-upload','s:5:\"Subir\";'),
+('es','messages:visualeditor-dialog-media-searchselect','s:11:\"Seleccionar\";'),
+('es','messages:visualeditor-dialog-media-size-choosecustom','s:32:\"Establecer tamaño personalizado\";'),
+('es','messages:visualeditor-dialog-media-size-choosedefault','s:33:\"Establecer tamaño predeterminado\";'),
+('es','messages:visualeditor-dialog-media-size-choosefull','s:26:\"Ajustar a tamaño completo\";'),
+('es','messages:visualeditor-dialog-media-size-section','s:20:\"Tamaño de la imagen\";'),
+('es','messages:visualeditor-dialog-media-size-section-help','s:249:\"Puedes establecer qué tan grande aparece el elemento multimedia en la página. Este debería ser casi siempre el tamaño normal, ya que un tamaño personalizado interferirá con el diseño de la página para los lectores y los hará inconsistentes.\";'),
+('es','messages:visualeditor-dialog-media-thumbdimensions','s:27:\"Dimensiones de la miniatura\";'),
+('es','messages:visualeditor-dialog-media-title','s:25:\"Configuración multimedia\";'),
+('es','messages:visualeditor-dialog-media-type-border','s:5:\"Borde\";'),
+('es','messages:visualeditor-dialog-media-type-frame','s:5:\"Marco\";'),
+('es','messages:visualeditor-dialog-media-type-frameless','s:9:\"Sin marco\";'),
+('es','messages:visualeditor-dialog-media-type-none','s:7:\"Básica\";'),
+('es','messages:visualeditor-dialog-media-type-section','s:14:\"Tipo de imagen\";'),
+('es','messages:visualeditor-dialog-media-type-section-help','s:172:\"Puedes establecer cómo aparece el elemento multimedia en la página. Este debe ser el formato de miniatura para ser consistente con otras páginas en casi todos los casos.\";'),
+('es','messages:visualeditor-dialog-media-type-thumb','s:9:\"Miniatura\";'),
+('es','messages:visualeditor-dialog-media-upload','s:5:\"Subir\";'),
+('es','messages:visualeditor-dialog-meta-advancedsettings-label','s:25:\"Configuraciones avanzadas\";'),
+('es','messages:visualeditor-dialog-meta-advancedsettings-section','s:25:\"Configuraciones avanzadas\";'),
+('es','messages:visualeditor-dialog-meta-categories-addcategory-label','s:37:\"Añadir una categoría a esta página\";'),
+('es','messages:visualeditor-dialog-meta-categories-category','s:10:\"Categoría\";'),
+('es','messages:visualeditor-dialog-meta-categories-data-label','s:11:\"Categorías\";'),
+('es','messages:visualeditor-dialog-meta-categories-defaultsort-help','s:271:\"Cambia el orden en que la página aparece cuando se muestra en una categoría, estableciendo un índice diferente en su lugar. Esto se utiliza por lo general para que las páginas sobre personas se muestren por el apellido, y se nombren utilizando antes el primer nombre.\";'),
+('es','messages:visualeditor-dialog-meta-categories-defaultsort-label','s:37:\"Ordenar esta página por defecto como\";'),
+('es','messages:visualeditor-dialog-meta-categories-hidden','s:86:\"Esta categoría está configurada para no mostrarse en páginas a las que es agregada.\";'),
+('es','messages:visualeditor-dialog-meta-categories-input-hiddencategorieslabel','s:19:\"Categorías ocultas\";'),
+('es','messages:visualeditor-dialog-meta-categories-input-matchingcategorieslabel','s:21:\"Categorías similares\";'),
+('es','messages:visualeditor-dialog-meta-categories-input-movecategorylabel','s:31:\"Trasladar esta categoría aquí\";'),
+('es','messages:visualeditor-dialog-meta-categories-input-newcategorylabel','s:16:\"Categoría nueva\";'),
+('es','messages:visualeditor-dialog-meta-categories-input-placeholder','s:18:\"Añadir categoría\";'),
+('es','messages:visualeditor-dialog-meta-categories-missing','s:54:\"Esta categoría carece de una página de descripción.\";'),
+('es','messages:visualeditor-dialog-meta-categories-options','s:8:\"Opciones\";'),
+('es','messages:visualeditor-dialog-meta-categories-section','s:11:\"Categorías\";'),
+('es','messages:visualeditor-dialog-meta-categories-sortkey-label','s:39:\"Ordenar esta página como si se llamara\";'),
+('es','messages:visualeditor-dialog-meta-languages-code-label','s:17:\"Código de idioma\";'),
+('es','messages:visualeditor-dialog-meta-languages-label','s:7:\"Idiomas\";'),
+('es','messages:visualeditor-dialog-meta-languages-link-label','s:16:\"Página enlazada\";'),
+('es','messages:visualeditor-dialog-meta-languages-name-label','s:6:\"Idioma\";'),
+('es','messages:visualeditor-dialog-meta-languages-readonlynote','s:137:\"Esta es una lista de páginas en otros idiomas enlazadas a esta. Por ahora, solo se puede editar en modo de código fuente o en Wikidata.\";'),
+('es','messages:visualeditor-dialog-meta-languages-section','s:7:\"Idiomas\";'),
+('es','messages:visualeditor-dialog-meta-settings-displaytitle','s:15:\"Mostrar título\";'),
+('es','messages:visualeditor-dialog-meta-settings-displaytitle-enable','s:37:\"Activar la visualización del título\";'),
+('es','messages:visualeditor-dialog-meta-settings-displaytitle-help','s:140:\"Se puede invalidar la forma en la que se muestra el título de la página al establecer una etiqueta diferente que se mostrará en su lugar.\";'),
+('es','messages:visualeditor-dialog-meta-settings-hiddencat-help','s:234:\"Evita que esta categoría se muestre en la lista de páginas de una categoría. Esto es útil para aquellas categorías de interés para los editores, pero no para la mayoría de lectores, como páginas que requieren una ilustración.\";'),
+('es','messages:visualeditor-dialog-meta-settings-hiddencat-label','s:17:\"Categoría oculta\";'),
+('es','messages:visualeditor-dialog-meta-settings-index-default','s:14:\"Predeterminado\";'),
+('es','messages:visualeditor-dialog-meta-settings-index-disable','s:2:\"No\";'),
+('es','messages:visualeditor-dialog-meta-settings-index-force','s:3:\"Sí\";'),
+('es','messages:visualeditor-dialog-meta-settings-index-help','s:175:\"Puedes forzar a los motores de búsqueda a incluir esta página en su página de resultados, o forzarlos a no hacerlo. Esta opción no afecta a la búsqueda interna del sitio.\";'),
+('es','messages:visualeditor-dialog-meta-settings-index-label','s:48:\"Permitir que los buscadores indicen esta página\";'),
+('es','messages:visualeditor-dialog-meta-settings-label','s:25:\"Configuración de página\";'),
+('es','messages:visualeditor-dialog-meta-settings-newsectioneditlink-default','s:14:\"Predeterminado\";'),
+('es','messages:visualeditor-dialog-meta-settings-newsectioneditlink-disable','s:2:\"No\";'),
+('es','messages:visualeditor-dialog-meta-settings-newsectioneditlink-force','s:3:\"Sí\";'),
+('es','messages:visualeditor-dialog-meta-settings-newsectioneditlink-help','s:196:\"Fuerza la visualización de una pestaña adicional junto a la pestaña \"$1\" en la página para facilitar añadir una nueva sección, o para que no aparezca en caso de que de otra manera lo haría.\";'),
+('es','messages:visualeditor-dialog-meta-settings-newsectioneditlink-label','s:68:\"Mostrar una pestaña en esta página para agregar una nueva sección\";'),
+('es','messages:visualeditor-dialog-meta-settings-nocontentconvert-help','s:86:\"Evita que el contenido de esta página se convierta automáticamente en otros scripts.\";'),
+('es','messages:visualeditor-dialog-meta-settings-nocontentconvert-label','s:51:\"No convertir el contenido entre variantes de idioma\";'),
+('es','messages:visualeditor-dialog-meta-settings-noeditsection-help','s:106:\"Evita que aparezca el enlace \"editar\" junto a cada sección, en el caso inusual de que esto sea apropiado.\";'),
+('es','messages:visualeditor-dialog-meta-settings-noeditsection-label','s:67:\"Desactivar los enlaces de edición en los títulos de esta página.\";'),
+('es','messages:visualeditor-dialog-meta-settings-nogallery-help','s:127:\"Puedes evitar que esta categoría muestre los archivos que contiene como una galería, en el caso de que esto no sea apropiado.\";'),
+('es','messages:visualeditor-dialog-meta-settings-nogallery-label','s:21:\"Deshabilitar galería\";'),
+('es','messages:visualeditor-dialog-meta-settings-notitleconvert-help','s:82:\"Evita que el título de la página se convierta automáticamente en otros scripts.\";'),
+('es','messages:visualeditor-dialog-meta-settings-notitleconvert-label','s:46:\"No convertir título entre variantes de idioma\";'),
+('es','messages:visualeditor-dialog-meta-settings-redirect-help','s:291:\"Puedes convertir esta página en una redirección (una página que lleva automáticamente a los lectores a otra página de la wiki). Esto es útil para faltas de ortografía habituales y para nombres o conceptos alternativos. Si lo haces, los lectores no verán el contenido de esta página.\";'),
+('es','messages:visualeditor-dialog-meta-settings-redirect-label','s:24:\"Redirigir esta página a\";'),
+('es','messages:visualeditor-dialog-meta-settings-redirect-placeholder','s:37:\"Página de destino de la redirección\";'),
+('es','messages:visualeditor-dialog-meta-settings-redirect-statichelp','s:157:\"Puedes evitar que esta redirección se actualice automáticamente cuando la página a la que redirige se traslade, en el raro caso de que esto sea necesario.\";'),
+('es','messages:visualeditor-dialog-meta-settings-redirect-staticlabel','s:80:\"Evitar actualizar esta redirección cuando la página de destino sea trasladada.\";'),
+('es','messages:visualeditor-dialog-meta-settings-section','s:25:\"Configuración de página\";'),
+('es','messages:visualeditor-dialog-meta-settings-toc-default','s:15:\"Si es necesario\";'),
+('es','messages:visualeditor-dialog-meta-settings-toc-disable','s:5:\"Nunca\";'),
+('es','messages:visualeditor-dialog-meta-settings-toc-force','s:7:\"Siempre\";'),
+('es','messages:visualeditor-dialog-meta-settings-toc-help','s:240:\"Es posible forzar la aparición de un sumario en las páginas con menos de cuatro títulos de sección, o bien, que este no aparezca en absoluto. De manera predeterminada, el sumario aparecerá si la página contiene cuatro o más títulos.\";'),
+('es','messages:visualeditor-dialog-meta-settings-toc-label','s:18:\"Mostrar el sumario\";'),
+('es','messages:visualeditor-dialog-meta-templatesused-noresults','s:29:\"No se encontraron plantillas.\";'),
+('es','messages:visualeditor-dialog-meta-title','s:8:\"Opciones\";'),
+('es','messages:visualeditor-dialog-table-caption','s:7:\"Leyenda\";'),
+('es','messages:visualeditor-dialog-table-collapsed','s:20:\"Inicialmente plegado\";'),
+('es','messages:visualeditor-dialog-table-collapsible','s:8:\"Plegable\";'),
+('es','messages:visualeditor-dialog-table-sortable','s:9:\"Ordenable\";'),
+('es','messages:visualeditor-dialog-table-title','s:23:\"Propiedades de la tabla\";'),
+('es','messages:visualeditor-dialog-table-wikitable','s:21:\"De estilo (wikitable)\";'),
+('es','messages:visualeditor-dialog-template-insert','s:22:\"Insertar una plantilla\";'),
+('es','messages:visualeditor-dialog-template-title','s:9:\"Plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-absent-template','s:35:\"Aún no existe la plantilla «$1».\";'),
+('es','messages:visualeditor-dialog-transclusion-action-save','s:7:\"Guardar\";'),
+('es','messages:visualeditor-dialog-transclusion-add-content','s:17:\"Añadir contenido\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param','s:25:\"Añadir más información\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-error-alias','s:265:\"\"$1\" is already added as \"$2\". Please check the options in the sidebar. This is due to either the use of [//www.mediawiki.org/wiki/Special:MyLanguage/Help:TemplateData#aliases aliases] or [//www.mediawiki.org/wiki/Special:MyLanguage/Help:TemplateData#label labels].\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-error-deprecated','s:148:\"\"$1\" cannot be added because the parameter has been marked as [//www.mediawiki.org/wiki/Special:MyLanguage/Help:TemplateData#deprecated deprecated].\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-error-exists-selected','s:49:\"No se puede añadir el parámetro \"$2\" dos veces.\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-error-exists-unselected','s:107:\"Este parámetro \"$2\" ya está disponible para su uso. Por favor comprueba las opciones en la barra lateral.\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-error-forbidden-char','s:67:\"$1 is a forbidden character. Please remove it to add the parameter.\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-help','s:302:\"If known, enter [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Adding_undocumented_parameters undocumented parameter] names. Note that only parameters known by the template will have an effect. You may find information about existing parameters on the [[$1|template\'s page]].\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-placeholder','s:21:\"Nombre del parámetro\";'),
+('es','messages:visualeditor-dialog-transclusion-add-param-save','s:18:\"Añadir parámetro\";'),
+('es','messages:visualeditor-dialog-transclusion-add-template','s:21:\"Añadir una plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-add-undocumented-param','s:33:\"Añadir parámetro sin documentar\";'),
+('es','messages:visualeditor-dialog-transclusion-add-wikitext','s:17:\"Añadir wikitexto\";'),
+('es','messages:visualeditor-dialog-transclusion-back-confirmation-prompt','s:59:\"Go back to search? Edits will be lost and cannot be undone.\";'),
+('es','messages:visualeditor-dialog-transclusion-close-confirmation-prompt','s:65:\"Close template editor? Changes will be lost and cannot be undone.\";'),
+('es','messages:visualeditor-dialog-transclusion-collapse-options','s:16:\"Ocultar opciones\";'),
+('es','messages:visualeditor-dialog-transclusion-confirmation-discard','s:13:\"Discard edits\";'),
+('es','messages:visualeditor-dialog-transclusion-confirmation-reject','s:15:\"Seguir editando\";'),
+('es','messages:visualeditor-dialog-transclusion-content','s:9:\"Contenido\";'),
+('es','messages:visualeditor-dialog-transclusion-contextitem-description','s:25:\"Generados a partir de: $1\";'),
+('es','messages:visualeditor-dialog-transclusion-contextitem-loading','s:10:\"Loading…\";'),
+('es','messages:visualeditor-dialog-transclusion-deprecated-parameter','s:14:\"Campo obsoleto\";'),
+('es','messages:visualeditor-dialog-transclusion-deprecated-parameter-description','s:24:\"El campo es obsoleto. $1\";'),
+('es','messages:visualeditor-dialog-transclusion-expand-options','s:16:\"Mostrar opciones\";'),
+('es','messages:visualeditor-dialog-transclusion-feedback-message','s:279:\"El trabajo reciente completado mejoró resultados de búsqueda de la plantilla. Para aprender más sobre los cambios o dar comentario, va al [//meta.wikimedia.org/wiki/special:MyLanguage/WMDE_los_deseos Técnicos/que Encuentran_y_insertando_la página de proyecto de plantillas].\";'),
+('es','messages:visualeditor-dialog-transclusion-filter-hide-unused','s:18:\"Hide unused fields\";'),
+('es','messages:visualeditor-dialog-transclusion-filter-no-match','s:31:\"No se encontraron coincidencias\";'),
+('es','messages:visualeditor-dialog-transclusion-filter-placeholder','s:15:\"Encontrar campo\";'),
+('es','messages:visualeditor-dialog-transclusion-filter-show-all','s:15:\"Show all fields\";'),
+('es','messages:visualeditor-dialog-transclusion-filter-title','s:32:\"Búsqueda de parámetros para $1\";'),
+('es','messages:visualeditor-dialog-transclusion-help-message','s:164:\"Templates provide formatting for content. This editor shows what options a template provides on the left and values can then be added to those options on the right.\";'),
+('es','messages:visualeditor-dialog-transclusion-help-page-feedback','s:130:\"[//meta.wikimedia.org/wiki/Special:MyLanguage/Talk:WMDE_Technical_Wishes/VisualEditor_template_dialog_improvements Leave feedback]\";'),
+('es','messages:visualeditor-dialog-transclusion-help-page-help','s:119:\"[//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Editing_templates Help for editing templates]\";'),
+('es','messages:visualeditor-dialog-transclusion-help-page-shortcuts','s:162:\"[//www.mediawiki.org/wiki/Special:MyLanguage/VisualEditor/Portal/Keyboard_shortcuts#Template_editor_dialog_shortcuts_and_keyboard_interactions Keyboard shortcuts]\";'),
+('es','messages:visualeditor-dialog-transclusion-help-title','s:24:\"Template editing support\";'),
+('es','messages:visualeditor-dialog-transclusion-loading','s:11:\"Cargando…\";'),
+('es','messages:visualeditor-dialog-transclusion-more-template-description','s:85:\"Puede que haya información adicional sobre la plantilla «$1» en [[$2|su página]].\";'),
+('es','messages:visualeditor-dialog-transclusion-multipart-message','s:231:\"You are currently editing a template and one or more pieces of [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Editing_multi-part_template_content connected content] (wikitext and/or additional templates).\";'),
+('es','messages:visualeditor-dialog-transclusion-no-parameters-description','s:297:\"Puede que esta plantilla haya sido destinada para usarse sin [https://es.wikipedia.org/wiki/Ayuda:Plantillas#Parámetros]. Si esta plantilla sí contiene parámetros, se encuentran en [//https://es.wikipedia.org/wiki/Wikipedia:EditorVisual/Guía_del_usuario#Plantillas_parámetros indocumentados].\";'),
+('es','messages:visualeditor-dialog-transclusion-no-template-data-description','s:413:\"Esta plantilla falta [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Template_parameters TemplateData], y sus parámetros han sido [//www.mediawiki.org/wiki/Special:MyLanguage/Help:VisualEditor/User_guide#Autogenerated_parameters autogenerados]. Como resultado la plantilla y sus parámetros carecen de descripciones. Puede haber información adicional en la [[$1|página de plantilla]].\";'),
+('es','messages:visualeditor-dialog-transclusion-no-template-description','s:126:\"La plantilla \"$1\" aún no tiene una descripción, pero podría haber alguna información en la [[$2|página de la plantilla]].\";'),
+('es','messages:visualeditor-dialog-transclusion-options','s:8:\"Opciones\";'),
+('es','messages:visualeditor-dialog-transclusion-param-default','s:18:\"Predeterminado: $1\";'),
+('es','messages:visualeditor-dialog-transclusion-param-example','s:15:\"por ejemplo, $1\";'),
+('es','messages:visualeditor-dialog-transclusion-param-example-long','s:11:\"Ejemplo: $1\";'),
+('es','messages:visualeditor-dialog-transclusion-param-info','s:22:\"Descripción del campo\";'),
+('es','messages:visualeditor-dialog-transclusion-param-info-missing','s:38:\"El campo no tiene ninguna descripción\";'),
+('es','messages:visualeditor-dialog-transclusion-param-selection-aria-description','s:210:\"Presiona Space para agregar o quitar los parámetros. Presiona Enter para agregar un parámetro e inmediatamente editar su valor. Cuando un parámetro ya está seleccionado, presiona Enter para editar el valor.\";'),
+('es','messages:visualeditor-dialog-transclusion-param-selection-aria-label','s:17:\"Parámetros en $1\";'),
+('es','messages:visualeditor-dialog-transclusion-param-undocumented','s:31:\"(Parámetro sin documentación)\";'),
+('es','messages:visualeditor-dialog-transclusion-placeholder','s:21:\"Añadir una plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-placeholder-input-placeholder','s:16:\"Buscar plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-raw-fallback','s:31:\"Caer de nuevo a wikitexto plano\";'),
+('es','messages:visualeditor-dialog-transclusion-remove-content','s:21:\"Eliminar el contenido\";'),
+('es','messages:visualeditor-dialog-transclusion-remove-param','s:17:\"Eliminar el campo\";'),
+('es','messages:visualeditor-dialog-transclusion-remove-template','s:21:\"Eliminar la plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-required-parameter','s:17:\"Campo obligatorio\";'),
+('es','messages:visualeditor-dialog-transclusion-required-parameter-description','s:24:\"El campo es obligatorio.\";'),
+('es','messages:visualeditor-dialog-transclusion-required-parameter-dialog-cancel','s:6:\"Volver\";'),
+('es','messages:visualeditor-dialog-transclusion-required-parameter-dialog-ok','s:24:\"Continuar de todos modos\";'),
+('es','messages:visualeditor-dialog-transclusion-required-parameter-dialog-title','s:66:\"{{PLURAL:$1|Campo necesario faltante|Campos necesarios faltantes}}\";'),
+('es','messages:visualeditor-dialog-transclusion-required-parameter-is-blank','s:91:\"¿Estás seguro de que quieres continuar sin rellenar {{PLURAL:$2|el campo|los campos}} $1?\";'),
+('es','messages:visualeditor-dialog-transclusion-see-template','s:160:\"Las plantillas son generadas por usarios y pueden carecer de descripciones completas. Puede que haya información adicional en este [[$2|página de plantilla]].\";'),
+('es','messages:visualeditor-dialog-transclusion-template-search','s:23:\"Búsqueda de plantillas\";'),
+('es','messages:visualeditor-dialog-transclusion-template-search-help','s:172:\"Find the template you want to insert by searching for an identifying keyword. Templates that have descriptions are more likely to work well with this editor (VisualEditor).\";'),
+('es','messages:visualeditor-dialog-transclusion-template-title-modifier','s:286:\"Template documentation and [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Glossary#Parameter parameter] names (if existing) are not available when editing templates utilizing nested syntax or modifiers, such as [//www.mediawiki.org/wiki/Special:MyLanguage/Help:Substitution subst].\";'),
+('es','messages:visualeditor-dialog-transclusion-template-title-nonexistent','s:25:\"Esta plantilla no existe.\";'),
+('es','messages:visualeditor-dialog-transclusion-template-widget-aria','s:60:\"Presione la barra espaciadora para seleccionar la plantilla.\";'),
+('es','messages:visualeditor-dialog-transclusion-template-widget-aria-selected','s:128:\"Press Ctrl+Del to delete the template, its parameters and their values. Press Ctrl+Shift+Arrows to move the template up or down.\";'),
+('es','messages:visualeditor-dialog-transclusion-template-widget-aria-selected-single','s:71:\"Press Ctrl+Del to delete the template, its parameters and their values.\";'),
+('es','messages:visualeditor-dialog-transclusion-templates-menu-aria-label','s:53:\"Menú de la configuración de los campos de plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-title-edit-known-template','s:10:\"Editar: $1\";'),
+('es','messages:visualeditor-dialog-transclusion-title-edit-transclusion','s:25:\"Contenido de la plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-title-insert-known-template','s:12:\"Insertar: $1\";'),
+('es','messages:visualeditor-dialog-transclusion-title-insert-template','s:22:\"Insertar una plantilla\";'),
+('es','messages:visualeditor-dialog-transclusion-wikitext','s:7:\"Código\";'),
+('es','messages:visualeditor-dialog-transclusion-wikitext-widget-aria','s:128:\"Presione la barra espaciadora para seleccionar el elemento de wikitexto. Presione Entrar para seleccionar y editar el wikitexto.\";'),
+('es','messages:visualeditor-dialog-transclusion-wikitext-widget-aria-selected','s:135:\"Presione Ctrl+Del para eliminar el elemento de wikitexto. Presione Ctrl+Shift+Arrows para mover el elemento hacia arriba o hacia abajo.\";'),
+('es','messages:visualeditor-dialog-transclusion-wikitext-widget-aria-selected-single','s:54:\"Prensa Control+Del para borrar el elemento de código.\";'),
+('es','messages:visualeditor-dialogbutton-media-tooltip','s:22:\"Imágenes y multimedia\";'),
+('es','messages:visualeditor-dialogbutton-meta-tooltip','s:25:\"Configuración de página\";'),
+('es','messages:visualeditor-dialogbutton-template-tooltip','s:9:\"Plantilla\";'),
+('es','messages:visualeditor-diff-moved-down','s:15:\"Se movió abajo\";'),
+('es','messages:visualeditor-diff-moved-up','s:16:\"Se movió arriba\";'),
+('es','messages:visualeditor-diff-no-changes','s:11:\"Sin cambios\";'),
+('es','messages:visualeditor-diff-timed-out','s:106:\"La descripción siguiente puede no ser la mejor debido a que el cómputo de los cambios demoró demasiado.\";'),
+('es','messages:visualeditor-dimensionswidget-px','s:2:\"px\";'),
+('es','messages:visualeditor-dimensionswidget-times','s:2:\"×\";'),
+('es','messages:visualeditor-dismissible-message-close','s:35:\"Close message and do not show again\";'),
+('es','messages:visualeditor-donebutton-tooltip','s:19:\"Edición finalizada\";'),
+('es','messages:visualeditor-editconflict','s:125:\"No se pudieron guardar tus cambios debido a un conflicto de edición. {{GENDER:|¿Deseas}} resolver el conflicto manualmente?\";'),
+('es','messages:visualeditor-editingtabdialog-body','s:166:\"{{SITENAME}} ahora recuerda qué editor prefieres. Puedes cambiar entre los modos de edición mientras realizas modificaciones y cambiar tu preferencia más adelante.\";'),
+('es','messages:visualeditor-editingtabdialog-ok','s:50:\"Utilizar el editor que usé en mi última edición\";'),
+('es','messages:visualeditor-editingtabdialog-title','s:21:\"Pestañas de edición\";'),
+('es','messages:visualeditor-editnotices-tool','s:29:\"$1 {{PLURAL:$1|aviso|avisos}}\";'),
+('es','messages:visualeditor-editnotices-tooltip','s:18:\"Avisos de edición\";'),
+('es','messages:visualeditor-editsummary','s:28:\"Describe lo que has cambiado\";'),
+('es','messages:visualeditor-editsummary-characters-remaining','s:34:\"El número de caracteres restantes\";'),
+('es','messages:visualeditor-educationpopup-dismiss','s:9:\"Entendido\";'),
+('es','messages:visualeditor-expandable-less','s:5:\"Menos\";'),
+('es','messages:visualeditor-expandable-more','s:4:\"Más\";'),
+('es','messages:visualeditor-feedback-defaultmessage','s:7:\"URL: $1\";'),
+('es','messages:visualeditor-feedback-link','s:33:\"Project:Editor visual/Comentarios\";'),
+('es','messages:visualeditor-feedback-source-link','s:34:\"{{int:visualeditor-feedback-link}}\";'),
+('es','messages:visualeditor-feedback-tool','s:44:\"Deja tus comentarios acerca de este software\";'),
+('es','messages:visualeditor-find-and-replace-diacritic','s:31:\"Sin distinción de diacríticos\";'),
+('es','messages:visualeditor-find-and-replace-diacritic-unavailable','s:82:\"La búsqueda sin distinción de diacríticos no está disponible en este navegador\";'),
+('es','messages:visualeditor-find-and-replace-done','s:5:\"Hecho\";'),
+('es','messages:visualeditor-find-and-replace-find-text','s:6:\"Buscar\";'),
+('es','messages:visualeditor-find-and-replace-invalid-regex','s:29:\"Expresión regular no válida\";'),
+('es','messages:visualeditor-find-and-replace-match-case','s:36:\"Distinguir mayúsculas y minúsculas\";'),
+('es','messages:visualeditor-find-and-replace-next-button','s:16:\"Buscar siguiente\";'),
+('es','messages:visualeditor-find-and-replace-previous-button','s:15:\"Buscar anterior\";'),
+('es','messages:visualeditor-find-and-replace-regular-expression','s:18:\"Expresión regular\";'),
+('es','messages:visualeditor-find-and-replace-replace-all-button','s:15:\"Reemplazar todo\";'),
+('es','messages:visualeditor-find-and-replace-replace-button','s:10:\"Reemplazar\";'),
+('es','messages:visualeditor-find-and-replace-replace-text','s:10:\"Reemplazar\";'),
+('es','messages:visualeditor-find-and-replace-results','s:8:\"$1 de $2\";'),
+('es','messages:visualeditor-find-and-replace-title','s:19:\"Buscar y reemplazar\";'),
+('es','messages:visualeditor-find-and-replace-word','s:15:\"Toda la palabra\";'),
+('es','messages:visualeditor-formatdropdown-format-blockquote','s:14:\"Bloque de cita\";'),
+('es','messages:visualeditor-formatdropdown-format-heading-label','s:13:\"Título (1-6)\";'),
+('es','messages:visualeditor-formatdropdown-format-heading1','s:9:\"Título 1\";'),
+('es','messages:visualeditor-formatdropdown-format-heading2','s:9:\"Título 2\";'),
+('es','messages:visualeditor-formatdropdown-format-heading3','s:9:\"Título 3\";'),
+('es','messages:visualeditor-formatdropdown-format-heading4','s:9:\"Título 4\";'),
+('es','messages:visualeditor-formatdropdown-format-heading5','s:9:\"Título 5\";'),
+('es','messages:visualeditor-formatdropdown-format-heading6','s:9:\"Título 6\";'),
+('es','messages:visualeditor-formatdropdown-format-mw-heading1','s:18:\"Título de página\";'),
+('es','messages:visualeditor-formatdropdown-format-mw-heading2','s:7:\"Título\";'),
+('es','messages:visualeditor-formatdropdown-format-mw-heading3','s:12:\"Subtítulo 1\";'),
+('es','messages:visualeditor-formatdropdown-format-mw-heading4','s:12:\"Subtítulo 2\";'),
+('es','messages:visualeditor-formatdropdown-format-mw-heading5','s:12:\"Subtítulo 3\";'),
+('es','messages:visualeditor-formatdropdown-format-mw-heading6','s:12:\"Subtítulo 4\";'),
+('es','messages:visualeditor-formatdropdown-format-paragraph','s:8:\"Párrafo\";'),
+('es','messages:visualeditor-formatdropdown-format-preformatted','s:13:\"Preformateado\";'),
+('es','messages:visualeditor-formatdropdown-title','s:15:\"Cambiar formato\";'),
+('es','messages:visualeditor-generating-wikitext-progress','s:19:\"Generando wikitexto\";'),
+('es','messages:visualeditor-help-label','s:24:\"Leer la guía de usuario\";'),
+('es','messages:visualeditor-help-link','s:34:\"mw:Help:VisualEditor/User guide/es\";'),
+('es','messages:visualeditor-help-title','s:29:\"Guía para utilizar el editor\";'),
+('es','messages:visualeditor-help-tool','s:5:\"Ayuda\";'),
+('es','messages:visualeditor-historybutton-redo-tooltip','s:7:\"Rehacer\";'),
+('es','messages:visualeditor-historybutton-undo-tooltip','s:8:\"Deshacer\";'),
+('es','messages:visualeditor-horizontalrule-tooltip','s:17:\"Línea horizontal\";'),
+('es','messages:visualeditor-includes-documentation','s:117:\"[//www.mediawiki.org/wiki/Special:MyLanguage/Transclusion#Partial_transclusion Learn more about partial transclusion]\";'),
+('es','messages:visualeditor-includes-includeonly','s:25:\"Content for excerpts only\";'),
+('es','messages:visualeditor-includes-includeonly-description','s:108:\"When content from this page is used by another page, the following additional content will be included here:\";'),
+('es','messages:visualeditor-includes-noinclude-description','s:225:\"When content from this page is used by another page, content from here until the matching end marker will not be included. Be careful when editing the content outside these markers, as other pages may use it.\";'),
+('es','messages:visualeditor-includes-noinclude-end','s:44:\"Término del contenido excluido de extractos\";'),
+('es','messages:visualeditor-includes-noinclude-start','s:44:\"Comienzo del contenido excluido de extractos\";'),
+('es','messages:visualeditor-includes-onlyinclude-description','s:230:\"When content from this page is used by another page, only the content from here until the matching end marker will be included. Be careful when editing the content between these markers, as other pages may use it.\";'),
+('es','messages:visualeditor-includes-onlyinclude-end','s:34:\"End of content allowed in excerpts\";'),
+('es','messages:visualeditor-includes-onlyinclude-start','s:36:\"Start of content allowed in excerpts\";'),
+('es','messages:visualeditor-indentationbutton-indent-tooltip','s:17:\"Aumentar sangría\";'),
+('es','messages:visualeditor-indentationbutton-outdent-tooltip','s:18:\"Disminuir sangría\";'),
+('es','messages:visualeditor-inspector-close-tooltip','s:6:\"Cerrar\";'),
+('es','messages:visualeditor-inspector-remove-tooltip','s:8:\"Eliminar\";'),
+('es','messages:visualeditor-key-alt','s:3:\"Alt\";'),
+('es','messages:visualeditor-key-backspace','s:9:\"Retroceso\";'),
+('es','messages:visualeditor-key-ctrl','s:4:\"Ctrl\";'),
+('es','messages:visualeditor-key-delete','s:4:\"Supr\";'),
+('es','messages:visualeditor-key-down','s:3:\"↓\";'),
+('es','messages:visualeditor-key-end','s:3:\"Fin\";'),
+('es','messages:visualeditor-key-enter','s:5:\"Intro\";'),
+('es','messages:visualeditor-key-escape','s:3:\"Esc\";'),
+('es','messages:visualeditor-key-home','s:6:\"Inicio\";'),
+('es','messages:visualeditor-key-insert','s:3:\"Ins\";'),
+('es','messages:visualeditor-key-left','s:3:\"←\";'),
+('es','messages:visualeditor-key-meta','s:4:\"Meta\";'),
+('es','messages:visualeditor-key-page-down','s:9:\"Av Pág\";'),
+('es','messages:visualeditor-key-page-up','s:9:\"Re Pág\";'),
+('es','messages:visualeditor-key-right','s:3:\"→\";'),
+('es','messages:visualeditor-key-shift','s:6:\"Mayús\";'),
+('es','messages:visualeditor-key-space','s:7:\"Espacio\";'),
+('es','messages:visualeditor-key-tab','s:3:\"Tab\";'),
+('es','messages:visualeditor-key-up','s:3:\"↑\";'),
+('es','messages:visualeditor-language-search-input-placeholder','s:38:\"Buscar por nombre del idioma o código\";'),
+('es','messages:visualeditor-languageannotation-description','s:2:\"$1\";'),
+('es','messages:visualeditor-languageannotation-description-with-dir','s:7:\"$1 ($2)\";'),
+('es','messages:visualeditor-languagecontext-remove','s:13:\"Quitar idioma\";'),
+('es','messages:visualeditor-languageinspector-title','s:6:\"Idioma\";'),
+('es','messages:visualeditor-languageinspector-widget-changelang','s:18:\"Seleccionar idioma\";'),
+('es','messages:visualeditor-languageinspector-widget-label-direction','s:10:\"Dirección\";'),
+('es','messages:visualeditor-languageinspector-widget-label-langcode','s:17:\"Código de idioma\";'),
+('es','messages:visualeditor-languageinspector-widget-label-language','s:6:\"Idioma\";'),
+('es','messages:visualeditor-languages-tool','s:7:\"Idiomas\";'),
+('es','messages:visualeditor-linkcontext-label-change','s:13:\"Cambiar texto\";'),
+('es','messages:visualeditor-linkcontext-label-fallback','s:21:\"Sin previsualización\";'),
+('es','messages:visualeditor-linkcontext-label-label','s:5:\"Texto\";'),
+('es','messages:visualeditor-linkcontext-remove','s:13:\"Quitar enlace\";'),
+('es','messages:visualeditor-linkinspector-button-link-external','s:13:\"Sitio externo\";'),
+('es','messages:visualeditor-linkinspector-button-link-internal','s:24:\"Buscar páginas internas\";'),
+('es','messages:visualeditor-linkinspector-convert-link-isbn','s:27:\"Convertir en enlace de ISBN\";'),
+('es','messages:visualeditor-linkinspector-convert-link-pmid','s:27:\"Convertir en enlace de PMID\";'),
+('es','messages:visualeditor-linkinspector-convert-link-rfc','s:23:\"Convertir en enlace RFC\";'),
+('es','messages:visualeditor-linkinspector-educationpopup-text','s:140:\"Enlaza palabras importantes a otros artículos de la wiki o incluso a otros sitios web. Esto ayudará a los lectores a entender el contexto.\";'),
+('es','messages:visualeditor-linkinspector-educationpopup-title','s:7:\"Enlaces\";'),
+('es','messages:visualeditor-linkinspector-illegal-title','s:38:\"El título de la página no es válido\";'),
+('es','messages:visualeditor-linkinspector-invalid-external','s:53:\"Escribe un URL completo; p. ej., https://ejemplo.org\";'),
+('es','messages:visualeditor-linkinspector-title','s:6:\"Enlace\";'),
+('es','messages:visualeditor-linkinspector-title-add','s:14:\"Añadir enlace\";'),
+('es','messages:visualeditor-linkinspector-title-edit','s:13:\"Editar enlace\";'),
+('es','messages:visualeditor-linknodeinspector-add-label','s:16:\"Añadir etiqueta\";'),
+('es','messages:visualeditor-linknodeinspector-title','s:13:\"Enlace simple\";'),
+('es','messages:visualeditor-listbutton-bullet-tooltip','s:18:\"Lista con viñetas\";'),
+('es','messages:visualeditor-listbutton-check-tooltip','s:22:\"Lista de comprobación\";'),
+('es','messages:visualeditor-listbutton-number-tooltip','s:14:\"Lista numerada\";'),
+('es','messages:visualeditor-loaderror-revidconflict','s:78:\"Revision IDs returned by the server do not match (document: $1, metadata: $2).\";'),
+('es','messages:visualeditor-loaderror-wrongmode','s:76:\"Tried to load the editor in wrong mode (data type: \"$1\", editor mode: \"$2\").\";'),
+('es','messages:visualeditor-magiclinknodeinspector-convert-link','s:26:\"Convertir en enlace simple\";'),
+('es','messages:visualeditor-magiclinknodeinspector-title-isbn','s:11:\"Enlace ISBN\";'),
+('es','messages:visualeditor-magiclinknodeinspector-title-pmid','s:11:\"Enlace PMID\";'),
+('es','messages:visualeditor-magiclinknodeinspector-title-rfc','s:10:\"Enlace RFC\";'),
+('es','messages:visualeditor-mainnamespacepagelink','s:36:\"Project:Espacio de nombres principal\";'),
+('es','messages:visualeditor-media-title-audio','s:5:\"Audio\";'),
+('es','messages:visualeditor-media-title-image','s:6:\"Imagen\";'),
+('es','messages:visualeditor-media-title-video','s:6:\"Vídeo\";'),
+('es','messages:visualeditor-mediasizewidget-label-defaulterror','s:39:\"Los valores de tamaño no son válidos.\";'),
+('es','messages:visualeditor-mediasizewidget-label-scale','s:6:\"Escala\";'),
+('es','messages:visualeditor-mediasizewidget-label-scale-percent','s:31:\"% del tamaño de las miniaturas\";'),
+('es','messages:visualeditor-mediasizewidget-sizeoptions-custom','s:12:\"Personalizar\";'),
+('es','messages:visualeditor-mediasizewidget-sizeoptions-default','s:14:\"Predeterminado\";'),
+('es','messages:visualeditor-mediasizewidget-sizeoptions-scale','s:6:\"Escala\";'),
+('es','messages:visualeditor-meta-tool','s:8:\"Opciones\";'),
+('es','messages:visualeditor-mweditmode-tooltip','s:17:\"Cambiar de editor\";'),
+('es','messages:visualeditor-mweditmodesource-progress','s:38:\"Cambiando a la edición del código...\";'),
+('es','messages:visualeditor-mweditmodesource-tool-current','s:19:\"Edición de código\";'),
+('es','messages:visualeditor-mweditmodesource-tool-unavailable','s:48:\"La edición de código no está disponible aquí\";'),
+('es','messages:visualeditor-mweditmodesource-warning-cancel','s:8:\"Cancelar\";'),
+('es','messages:visualeditor-mweditmodesource-warning-switch-discard','s:38:\"Descartar mis modificaciones y cambiar\";'),
+('es','messages:visualeditor-mweditmodeve-popup-body','s:84:\"Puedes volver a la edición visual en cualquier momento haciendo clic en este icono.\";'),
+('es','messages:visualeditor-mweditmodeve-popup-title','s:37:\"Has cambiado a la edición de código\";'),
+('es','messages:visualeditor-mweditmodeve-progress','s:33:\"Cambiando a la edición visual...\";'),
+('es','messages:visualeditor-mweditmodeve-showagain','s:32:\"No volver a mostrar este mensaje\";'),
+('es','messages:visualeditor-mweditmodeve-title','s:27:\"¿Cambiar al editor visual?\";'),
+('es','messages:visualeditor-mweditmodeve-tool-current','s:15:\"Edición visual\";'),
+('es','messages:visualeditor-mweditmodeve-tool-unavailable','s:44:\"La edición visual no está disponible aquí\";'),
+('es','messages:visualeditor-mweditmodeve-warning','s:61:\"Estás por cambiar a la edición visual.\n¿Quieres continuar?\";'),
+('es','messages:visualeditor-mweditmodewt-popup-body','s:88:\"Puedes volver a la edición de código en cualquier momento haciendo clic en este icono.\";'),
+('es','messages:visualeditor-mweditmodewt-popup-title','s:33:\"Has cambiado a la edición visual\";'),
+('es','messages:visualeditor-mwgallerycontext-description','s:33:\"$1 {{PLURAL:$1|imagen|imágenes}}\";'),
+('es','messages:visualeditor-mwgallerydialog-caption-field-label','s:22:\"Leyenda de la galería\";'),
+('es','messages:visualeditor-mwgallerydialog-caption-input-placeholder','s:29:\"Leyenda para toda la galería\";'),
+('es','messages:visualeditor-mwgallerydialog-card-images','s:9:\"Imágenes\";'),
+('es','messages:visualeditor-mwgallerydialog-card-options','s:8:\"Opciones\";'),
+('es','messages:visualeditor-mwgallerydialog-classes-field-label','s:10:\"Clases CSS\";'),
+('es','messages:visualeditor-mwgallerydialog-classes-input-placeholder','s:40:\"Nombres de clase, separados por espacios\";'),
+('es','messages:visualeditor-mwgallerydialog-empty-gallery-message','s:25:\"La galería está vacía.\";'),
+('es','messages:visualeditor-mwgallerydialog-heights-field-label','s:19:\"Altura de la imagen\";'),
+('es','messages:visualeditor-mwgallerydialog-heights-input-placeholder','s:28:\"Altura predeterminada: $1 px\";'),
+('es','messages:visualeditor-mwgallerydialog-image-caption-placeholder','s:20:\"Leyenda de la imagen\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-dropdown-label-nolines','s:25:\"Tradicional sin contornos\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-dropdown-label-packed','s:6:\"Packed\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-dropdown-label-packed-hover','s:29:\"Packed with captions on hover\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-dropdown-label-packed-overlay','s:29:\"Packed with overlaid captions\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-dropdown-label-slideshow','s:29:\"Presentación de diapositivas\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-dropdown-label-traditional','s:11:\"Tradicional\";'),
+('es','messages:visualeditor-mwgallerydialog-mode-field-label','s:22:\"Modo de visualización\";'),
+('es','messages:visualeditor-mwgallerydialog-perrow-field-label','s:18:\"Imágenes por fila\";'),
+('es','messages:visualeditor-mwgallerydialog-remove-button-label','s:15:\"Eliminar imagen\";'),
+('es','messages:visualeditor-mwgallerydialog-search-button-label','s:20:\"Añadir imagen nueva\";'),
+('es','messages:visualeditor-mwgallerydialog-show-filename-field-label','s:30:\"Mostrar los nombres de archivo\";'),
+('es','messages:visualeditor-mwgallerydialog-styles-field-label','s:11:\"Estilos CSS\";'),
+('es','messages:visualeditor-mwgallerydialog-styles-input-placeholder','s:38:\"Reglas CSS, separadas por punto y coma\";'),
+('es','messages:visualeditor-mwgallerydialog-title','s:8:\"Galería\";'),
+('es','messages:visualeditor-mwgallerydialog-widths-field-label','s:20:\"Anchura de la imagen\";'),
+('es','messages:visualeditor-mwgallerydialog-widths-input-placeholder','s:29:\"Anchura predeterminada: $1 px\";'),
+('es','messages:visualeditor-mwlanguagevariant-disabled','s:27:\"Variant conversion disabled\";'),
+('es','messages:visualeditor-mwlanguagevariant-filter','s:23:\"Variants filtered to $1\";'),
+('es','messages:visualeditor-mwlanguagevariant-name','s:20:\"Nombre de idioma: $1\";'),
+('es','messages:visualeditor-mwlanguagevariant-oneway','s:30:\"Conversión unidireccional: $1\";'),
+('es','messages:visualeditor-mwlanguagevariant-twoway','s:29:\"Conversión lingüística: $1\";'),
+('es','messages:visualeditor-mwlanguagevariant-unknown','s:22:\"Variante lingüística\";'),
+('es','messages:visualeditor-mwlanguagevariantcontextitem-flag-describe','s:27:\"Esta es una regla descrita.\";'),
+('es','messages:visualeditor-mwlanguagevariantcontextitem-flag-hidden','s:25:\"Esta es una regla oculta.\";'),
+('es','messages:visualeditor-mwlanguagevariantcontextitem-flag-title','s:43:\"Esta regla afecta el título de la página.\";'),
+('es','messages:visualeditor-mwlanguagevariantcontextitem-rule-code-label','s:17:\"Código de idioma\";'),
+('es','messages:visualeditor-mwlanguagevariantcontextitem-rule-invalid-language-label','s:12:\"