Файл: adultscript-2.0.3-pro/files/install/sqls/asp-1.0beta2-to-asp-1.0beta3.sql
Строк: 3638
ALTER TABLE `adv_groups` ADD KEY `adv_group_slug`
(`adv_group_slug`);
--
-- Table structure for table `language`
--
DROP
TABLE IF EXISTS `language`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `language` (
`code` varchar(12) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`flag` varchar(3) NOT NULL
DEFAULT '',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY
(`code`),
KEY `name` (`name`),
KEY `status` (`status`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `language`
--
LOCK TABLES `language`
WRITE;
/*!40000 ALTER TABLE `language` DISABLE KEYS */;
INSERT INTO
`language` VALUES ('en-US','English (United
States)','us','1'),('en-UK','English (United Kingdom)','gb','1');
/*!40000
ALTER TABLE `language` ENABLE KEYS */;
UNLOCK TABLES;
ALTER TABLE
`menu_links` ADD `lang` varchar(99) NOT NULL DEFAULT '';
--
-- Table
structure for table `package`
--
DROP TABLE IF EXISTS `package`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `package` (
`package_id`
int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT
'',
`description` text NOT NULL,
`period` int(11) NOT NULL DEFAULT
'0',
`price` float NOT NULL DEFAULT '0',
`status` enum('0','1') NOT
NULL DEFAULT '1',
`checked` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`package_id`),
KEY `period` (`period`),
KEY `price`
(`price`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `package`
--
LOCK TABLES `package` WRITE;
/*!40000 ALTER TABLE
`package` DISABLE KEYS */;
INSERT INTO `package` VALUES (1,'Premium Trial
Period','Premium Trial Period',1,1,'1','1'),(2,'1 Month Period','1 Month
Period',30,29.95,'1','0'),(3,'3 Months Period','3 Months
Period',90,59.95,'1','0'),(4,'12 Months Period','12 Months
Period',360,119.95,'1','0');
/*!40000 ALTER TABLE `package` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment`
--
DROP TABLE
IF EXISTS `payment`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `payment` (
`payment_id` int(11) NOT NULL
AUTO_INCREMENT,
`package_id` int(11) NOT NULL DEFAULT '0',
`gateway_id`
int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
`method` enum('subscription','ppv') NOT NULL DEFAULT 'subscription',
`amount` float NOT NULL DEFAULT '0',
`currency` varchar(3) NOT NULL
DEFAULT 'USD',
`ip` int(10) unsigned NOT NULL DEFAULT '0',
`add_date`
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`code` varchar(60) NOT
NULL DEFAULT '',
`txn_id` varchar(60) NOT NULL DEFAULT '',
`status`
enum('0','1','2','3') NOT NULL DEFAULT '0',
`parent`
enum('register','renew','credit','upgrade') NOT NULL DEFAULT 'register',
`reason` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`payment_id`),
KEY `package_id` (`package_id`),
KEY `gateway_id` (`gateway_id`),
KEY
`method` (`method`),
KEY `user_id` (`user_id`),
KEY `txn_id`
(`txn_id`),
KEY `code` (`code`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `payment`
--
LOCK TABLES `payment`
WRITE;
/*!40000 ALTER TABLE `payment` DISABLE KEYS */;
/*!40000 ALTER TABLE
`payment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`payment_gateways`
--
DROP TABLE IF EXISTS `payment_gateways`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `payment_gateways` (
`gateway_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL
DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`url`
varchar(255) NOT NULL DEFAULT '',
`slug` varchar(50) NOT NULL DEFAULT
'',
`config` text NOT NULL,
`status` enum('0','1') NOT NULL DEFAULT
'0',
PRIMARY KEY (`gateway_id`),
UNIQUE KEY `slug` (`slug`),
KEY
`status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT
CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `payment_gateways`
--
LOCK TABLES
`payment_gateways` WRITE;
/*!40000 ALTER TABLE `payment_gateways` DISABLE
KEYS */;
INSERT INTO `payment_gateways` VALUES (1,'Paypal','Credit card,
paypal
account','http://www.paypal.com','paypal','a:2:{s:5:\"email\";s:31:\"avsmod_1286697003_biz@gmail.com\";s:10:\"enviroment\";s:7:\"sandbox\";}','1'),(2,'CCBill','Credit
card, online check, telephone bill
payments','http://www.ccbill.com','ccbill','a:4:{s:7:\"account\";s:6:\"941931\";s:10:\"subaccount\";s:4:\"0000\";s:9:\"form_name\";s:5:\"146cc\";s:4:\"salt\";s:24:\"iB3dReb7OkeOi3KdLh8Yd9Nq\";}','0'),(3,'Epoch','Credit
card, online
check','http://www.epoch.com','epoch','','0'),(4,'Zombaio','Credit
card','http://www.zombaio.com','zombaio','','0');
/*!40000 ALTER TABLE
`payment_gateways` ENABLE KEYS */;
UNLOCK TABLES;
ALTER TABLE `photo` ADD
`add_time` int(10) unsigned NOT NULL DEFAULT '0';
ALTER TABLE
`photo_albums` ADD `add_time` int(10) unsigned NOT NULL DEFAULT '0';
--
--
Table structure for table `session`
--
DROP TABLE IF EXISTS
`session`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `session` (
`session_id` varchar(64) NOT NULL DEFAULT '',
`data` text NOT NULL,
`expire` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`session_id`),
KEY
`expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`session`
--
LOCK TABLES `session` WRITE;
/*!40000 ALTER TABLE `session`
DISABLE KEYS */;
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_premium`
--
DROP TABLE IF
EXISTS `user_premium`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_premium` (
`user_id` int(11) NOT NULL DEFAULT
'0',
`credit` float NOT NULL DEFAULT '0',
`start_date` date NOT NULL
DEFAULT '0000-00-00',
`end_date` date NOT NULL DEFAULT '0000-00-00',
`status` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `user_premium`
--
LOCK
TABLES `user_premium` WRITE;
/*!40000 ALTER TABLE `user_premium` DISABLE
KEYS */;
/*!40000 ALTER TABLE `user_premium` ENABLE KEYS */;
UNLOCK
TABLES;
ALTER TABLE `video` ADD `premium` enum('0','1') NOT NULL DEFAULT
'0';
ALTER TABLE `video` ADD `price` float NOT NULL DEFAULT '0';
ALTER
TABLE `video` ADD `slug` varchar(100) NOT NULL DEFAULT '';
ALTER TABLE
`video` ADD `add_time` int(11) unsigned NOT NULL DEFAULT '0';
--
-- Table
structure for table `video_premium`
--
DROP TABLE IF EXISTS
`video_premium`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE
`video_premium` (
`video_id` int(11) NOT NULL DEFAULT '0',
`user_id`
int(11) NOT NULL DEFAULT '0',
`expire` int(11) NOT NULL DEFAULT '0',
KEY `vue` (`video_id`,`user_id`,`expire`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_premium`
--
LOCK TABLES
`video_premium` WRITE;
/*!40000 ALTER TABLE `video_premium` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_premium` ENABLE KEYS */;
UNLOCK
TABLES;
ALTER TABLE `video_tags` DROP KEY `video_name`;
--
-- Table
structure for table `language_files`
--
DROP TABLE IF EXISTS
`language_files`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `language_files` (
`file_id` int(11) NOT NULL
AUTO_INCREMENT,
`code` varchar(12) NOT NULL DEFAULT '',
`name`
varchar(100) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL
DEFAULT '',
`type` enum('frontend','backend','profile','plugin') NOT NULL
DEFAULT 'frontend',
`file` text NOT NULL,
PRIMARY KEY (`file_id`),
KEY `code` (`code`),
KEY `name` (`name`),
KEY `type` (`type`)
)
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`language_files`
--
LOCK TABLES `language_files` WRITE;
/*!40000 ALTER
TABLE `language_files` DISABLE KEYS */;
INSERT INTO `language_files` VALUES
(2,'en-US','video','Frontend Video Module Language
File','frontend','a:74:{s:13:\"download-link\";s:37:\"Click
to download video in %s
format!\";s:21:\"favorite-remove-login\";s:55:\"Please
login to remove videos from your favorites
list!\";s:16:\"favorite-invalid\";s:56:\"Invalid video
favorite! Are you sure this video
exists!?\";s:23:\"favorite-remove-success\";s:39:\"Video
removed from your favorites
list!\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate videos!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:12:\"favorite-own\";s:43:\"You cannot add
your own video to
favorites!\";s:16:\"favorite-success\";s:39:\"Video
added to your %sFavorites%s
list!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:57:\"Invalid
video comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:29:\"Your comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:16:\"comment-allow-no\";s:51:\"You are not
allowed to post comments on this
video!\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:15:\"submenu-related\";s:14:\"RELATED
VIDEOS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:17:\"video-not-playing\";s:18:\"Video
not
playing!\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:13:\"favorite-help\";s:38:\"Add
this video to your favorites
list!\";s:10:\"embed-help\";s:30:\"Embed this video on
your site!\";s:9:\"flag-help\";s:16:\"Flag this
video!\";s:13:\"video-private\";s:74:\"This video is
private! You need to be friends with %s to watch this
video!\";s:9:\"uploading\";s:24:\"UPLOADING...PLEASE
WAIT!\";s:6:\"no-tag\";s:38:\"No videos tagged
'%s'
found!\";s:9:\"tag-title\";s:38:\"FREE PORN VIDEOS
TAGGED
'%s'\";s:14:\"tag-meta-title\";s:32:\"Free
Porn Videos Tagged %s at
%s\";s:12:\"search-title\";s:39:\"VIDEO SEARCH RESULTS
FOR
'%s'\";s:9:\"no-search\";s:51:\"No
videos found while searching for
'%s'!\";s:17:\"search-meta-title\";s:21:\"Search
Results for %s\";s:15:\"edit-guidelines\";s:15:\"EDIT
GUIDELINES\";s:11:\"edit-button\";s:12:\"UPDATE
VIDEO\";s:5:\"thumb\";s:5:\"Thumb\";s:14:\"allow-download\";s:14:\"Allow
Download\";s:13:\"allow-comment\";s:13:\"Allow
Comment\";s:12:\"allow-rating\";s:12:\"Allow
Rating\";s:11:\"allow-embed\";s:11:\"Allow
Embed\";s:10:\"edit-title\";s:13:\"EDITING
VIDEO\";s:12:\"edit-success\";s:14:\"Video
updated!\";s:13:\"video-invalid\";s:47:\"Invalid video!
Are you sure this video
exists!?\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:17:\"browse-meta-title\";s:25:\"%s Free Porn
Videos at %s\";s:12:\"browse-title\";s:19:\"%s FREE
PORN VIDEOS\";s:12:\"post-comment\";s:12:\"POST
COMMENT\";s:17:\"no-related-videos\";s:24:\"No related
videos
found!\";s:5:\"embed\";s:5:\"Embed\";s:17:\"upload-guidelines\";s:17:\"UPLOAD
GUIDELINES\";s:14:\"upload-approve\";s:63:\"Uploaded!
You will receive a email once your video is
approved!\";s:12:\"upload-queue\";s:84:\"Uploaded! You
will receive a email once your video has been processed and
published!\";s:14:\"upload-success\";s:70:\"Uploaded!
Your video will be processed and published in a few
minutes!\";s:12:\"tags-invalid\";s:79:\"Tags can
contain only letters, numbers, spaces and must be separated by
commas!\";s:16:\"category-invalid\";s:52:\"Invalid
video category! What exactly did you
check!?\";s:11:\"upload-perm\";s:38:\"Please login as a
%s to upload
videos!\";s:15:\"upload-disabled\";s:61:\"Video uploads
are currently disabled! Please try again
later!\";s:12:\"upload-video\";s:12:\"Upload
Video\";s:12:\"file-invalid\";s:44:\"Invalid file
format! Allowed extensions:
%s!\";s:10:\"file-empty\";s:41:\"Please select a video
file for uploading!\";s:10:\"tags-empty\";s:33:\"Please
enter tags for this
video!\";s:14:\"category-empty\";s:62:\"Please check at
least one and no more than 3 video
categories!\";s:12:\"title-length\";s:58:\"Video title
field cannot contain more than 100
characters!\";s:11:\"title-empty\";s:39:\"Video title
field cannot be left
blank!\";s:17:\"video-information\";s:17:\"VIDEO
INFORMATION\";s:10:\"video-file\";s:10:\"VIDEO
FILE\";}'),(3,'en-US','global','Global Frontend Language
File','frontend','a:175:{s:8:\"add-link\";s:8:\"Add
Link\";i:2257;s:4:\"2257\";s:4:\"DMCA\";s:4:\"DMCA\";s:3:\"faq\";s:3:\"FAQ\";s:6:\"policy\";s:14:\"Privacy
Policy\";s:5:\"terms\";s:16:\"Terms of
Service\";s:4:\"date\";s:4:\"Date\";s:13:\"message-empty\";s:26:\"Please
enter your
message!\";s:8:\"december\";s:8:\"December\";s:8:\"november\";s:8:\"November\";s:7:\"october\";s:7:\"October\";s:9:\"september\";s:9:\"September\";s:6:\"august\";s:6:\"August\";s:4:\"july\";s:4:\"July\";s:4:\"june\";s:4:\"June\";s:3:\"may\";s:3:\"May\";s:5:\"april\";s:5:\"April\";s:5:\"march\";s:5:\"March\";s:8:\"february\";s:8:\"February\";s:7:\"january\";s:7:\"January\";s:10:\"spam-login\";s:38:\"Please
login to mark comments as
spam!\";s:12:\"spam-success\";s:27:\"Comment was marked
as spam!\";s:14:\"report-already\";s:16:\"Already
flagged!\";s:14:\"reason-invalid\";s:15:\"Invalid
reason!\";s:14:\"report-success\";s:12:\"Report
sent!\";s:9:\"very-good\";s:9:\"Very
Good\";s:4:\"good\";s:4:\"Good\";s:2:\"ok\";s:2:\"OK\";s:3:\"hmm\";s:3:\"Hmm\";s:5:\"works\";s:5:\"Works\";s:7:\"average\";s:7:\"Average\";s:4:\"poor\";s:4:\"Poor\";s:9:\"very-poor\";s:9:\"Very
poor\";s:8:\"whatever\";s:8:\"Whatever\";s:6:\"bleaks\";s:6:\"Bleaks\";s:13:\"no-categories\";s:18:\"No
categories
yet!\";s:4:\"next\";s:4:\"Next\";s:4:\"prev\";s:4:\"Prev\";s:13:\"being-watched\";s:13:\"Being
Watched\";s:7:\"longest\";s:7:\"Longest\";s:15:\"most-downloaded\";s:15:\"Most
Downloaded\";s:9:\"uploading\";s:23:\"UPLOADING...PLEASE
WAIT\";s:13:\"image-invalid\";s:44:\"Invalid file
format! Allowed extensions:
%s!\";s:11:\"image-empty\";s:48:\"Please upload at
least one image for this
album!\";s:8:\"optional\";s:8:\"optional\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:7:\"private\";s:7:\"Private\";s:6:\"public\";s:6:\"Public\";s:4:\"type\";s:4:\"Type\";s:4:\"link\";s:4:\"Link\";s:4:\"vids\";s:6:\"videos\";s:12:\"most-popular\";s:12:\"Most
Popular\";s:14:\"most-favorites\";s:14:\"Most
Favorites\";s:3:\"all\";s:3:\"All\";s:4:\"coms\";s:8:\"comments\";s:4:\"pics\";s:6:\"photos\";s:3:\"pic\";s:5:\"photo\";s:4:\"less\";s:4:\"less\";s:4:\"more\";s:4:\"more\";s:6:\"photos\";s:6:\"Photos\";s:6:\"albums\";s:6:\"Albums\";s:2:\"on\";s:2:\"on\";s:2:\"by\";s:2:\"by\";s:6:\"reason\";s:6:\"Reason\";s:7:\"content\";s:7:\"Content\";s:6:\"search\";s:6:\"Search\";s:7:\"404-msg\";s:57:\"We're
sorry, the page you requested cannot be
found!\";s:14:\"404-meta-title\";s:13:\"404 Not
Found\";s:6:\"remove\";s:6:\"Remove\";s:6:\"delete\";s:6:\"Delete\";s:4:\"edit\";s:4:\"Edit\";s:4:\"spam\";s:4:\"Spam\";s:13:\"login-already\";s:26:\"You
are already logged
in!\";s:8:\"password\";s:8:\"Password\";s:4:\"deny\";s:4:\"Deny\";s:6:\"accept\";s:6:\"Accept\";s:18:\"preferences-update\";s:18:\"UPDATE
PREFERENCES\";s:4:\"auto\";s:4:\"Auto\";s:7:\"approve\";s:7:\"Approve\";s:6:\"friend\";s:6:\"Friend\";s:7:\"friends\";s:7:\"Friends\";s:2:\"no\";s:2:\"No\";s:3:\"yes\";s:3:\"Yes\";s:4:\"city\";s:4:\"City\";s:3:\"age\";s:3:\"Age\";s:7:\"country\";s:7:\"Country\";s:7:\"website\";s:7:\"Website\";s:10:\"boys-girls\";s:14:\"Boys
and
Girls\";s:5:\"girls\";s:5:\"Girls\";s:4:\"boys\";s:4:\"Boys\";s:4:\"open\";s:4:\"Open\";s:5:\"taken\";s:5:\"Taken\";s:6:\"single\";s:6:\"Single\";s:6:\"hidden\";s:6:\"Hidden\";s:6:\"female\";s:6:\"Female\";s:4:\"male\";s:4:\"Male\";s:10:\"interested\";s:13:\"Interested
In\";s:8:\"relation\";s:8:\"Relation\";s:6:\"gender\";s:6:\"Gender\";s:8:\"username\";s:8:\"Username\";s:7:\"message\";s:7:\"Message\";s:5:\"email\";s:5:\"Email\";s:4:\"name\";s:4:\"Name\";s:5:\"added\";s:5:\"Added\";s:4:\"from\";s:4:\"From\";s:8:\"favorite\";s:8:\"Favorite\";s:5:\"share\";s:5:\"Share\";s:4:\"flag\";s:4:\"Flag\";s:5:\"votes\";s:5:\"votes\";s:4:\"vote\";s:4:\"vote\";s:5:\"views\";s:5:\"views\";s:4:\"view\";s:4:\"view\";s:2:\"of\";s:2:\"of\";s:2:\"to\";s:2:\"to\";s:7:\"showing\";s:7:\"Showing\";s:11:\"most-recent\";s:11:\"Most
Recent\";s:2:\"at\";s:2:\"at\";s:10:\"this-years\";s:16:\"This
Year's\";s:11:\"this-months\";s:17:\"This
Month's\";s:10:\"this-weeks\";s:16:\"This
Week's\";s:10:\"yesterdays\";s:16:\"Yesterday's\";s:6:\"todays\";s:12:\"Today's\";s:14:\"database-error\";s:52:\"Failed
to create database entry! Application
Error!?\";s:10:\"file-error\";s:49:\"Failed to move
uploaded file! Application
Error!?\";s:6:\"cancel\";s:6:\"Cancel\";s:4:\"tags\";s:4:\"Tags\";s:8:\"category\";s:8:\"Category\";s:11:\"description\";s:11:\"Description\";s:5:\"title\";s:5:\"Title\";s:4:\"file\";s:4:\"File\";s:4:\"NEXT\";s:4:\"NEXT\";s:4:\"PREV\";s:4:\"PREV\";s:5:\"LINKS\";s:5:\"LINKS\";s:4:\"help\";s:4:\"Help\";s:5:\"login\";s:5:\"Login\";s:6:\"signup\";s:6:\"Signup\";s:7:\"log-out\";s:7:\"Log
Out\";s:7:\"profile\";s:7:\"Profile\";s:9:\"dashboard\";s:9:\"Dashboard\";s:7:\"welcome\";s:7:\"Welcome\";s:10:\"no-watched\";s:22:\"No
watched videos yet!\";s:9:\"no-videos\";s:14:\"No
videos
yet!\";s:10:\"CATEGORIES\";s:10:\"CATEGORIES\";s:2:\"go\";s:2:\"Go\";s:5:\"users\";s:5:\"Users\";s:7:\"premium\";s:7:\"Premium\";s:5:\"forum\";s:5:\"Forum\";s:6:\"upload\";s:6:\"Upload\";s:9:\"community\";s:9:\"Community\";s:9:\"pornstars\";s:9:\"Pornstars\";s:5:\"years\";s:5:\"years\";s:4:\"year\";s:4:\"year\";s:5:\"weeks\";s:5:\"weeks\";s:4:\"week\";s:4:\"week\";s:6:\"months\";s:6:\"months\";s:5:\"month\";s:5:\"month\";s:7:\"minutes\";s:7:\"minutes\";s:8:\"from-now\";s:8:\"from
now\";s:3:\"ago\";s:3:\"ago\";s:6:\"minute\";s:6:\"minute\";s:7:\"seconds\";s:7:\"seconds\";s:6:\"second\";s:6:\"second\";s:5:\"hours\";s:5:\"hours\";s:4:\"hour\";s:4:\"hour\";s:14:\"most-discussed\";s:14:\"Most
Discussed\";s:9:\"top-rated\";s:9:\"Top
Rated\";s:7:\"popular\";s:7:\"Popular\";s:6:\"recent\";s:6:\"Recent\";s:10:\"categories\";s:10:\"Categories\";s:6:\"videos\";s:6:\"Videos\";s:4:\"home\";s:4:\"Home\";}'),(5,'en-US','frontpage','Frontpage
Frontend Language
File','frontend','a:5:{s:10:\"no-watched\";s:22:\"No watched
videos
yet!\";s:7:\"refresh\";s:7:\"Refresh\";s:10:\"meta-title\";s:69:\"Free
Porn Movies, Sex Clips, Porno, Porn Tube, XXX and Porn Videos
at\";s:13:\"watched-title\";s:30:\"BEING WATCHED FREE
PORN VIDEOS\";s:12:\"recent-title\";s:28:\"MOST RECENT
FREE PORN VIDEOS\";}'),(9,'en-US','upload','Upload Library Error
Codes/Messages','frontend','a:12:{s:10:\"file-valid\";s:43:\"Uploaded
file is not a valid uploaded
file!\";s:11:\"file-select\";s:31:\"Please select a
file to upload!\";s:12:\"file-invalid\";s:56:\"Uploaded
file format is invalid! Allowed extensions:
%s!\";s:10:\"file-limit\";s:66:\"Uploaded file exceeds
the maximum allowed filesize of %s
MB!'\";s:13:\"error-unknown\";s:44:\"No error
code available! Application
error!?\";s:7:\"error-8\";s:33:\"File upload stopped by
extension!\";s:7:\"error-7\";s:29:\"Failed to write
file to disk!\";s:7:\"error-5\";s:27:\"Missing a
temporary folder!\";s:7:\"error-4\";s:21:\"No file was
uploaded!\";s:7:\"error-3\";s:46:\"The uploaded file
was only partially
uploaded!\";s:7:\"error-2\";s:69:\"The uploaded file
exceeds the MAX_FILE_SIZE defined in the html
form!\";s:7:\"error-1\";s:73:\"The uploaded file
exceeds the maximum upload_filesize defined in
php.ini!\";}'),(10,'en-US','feedback','Feedback Frontent Language
File','frontend','a:11:{s:14:\"submit-success\";s:92:\"Your
message was sent! We will respond as soon as possible! Thank you for your
contribution!\";s:14:\"message-length\";s:55:\"Message
field cannot contain more than 1000
characters!\";s:13:\"message-empty\";s:26:\"Please
enter your message!\";s:11:\"name-length\";s:51:\"Name
field cannot contain more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";s:13:\"email-invalid\";s:35:\"Email is not
a valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email
address!\";s:15:\"submit-feedback\";s:15:\"SUBMIT
FEEDBACK\";s:4:\"name\";s:4:\"Name\";s:5:\"title\";s:18:\"SUPPORT
/
FEEDBACK\";s:10:\"meta-title\";s:8:\"Feedback\";}'),(11,'en-US','user','User
Frontend Language
File','frontend','a:283:{s:21:\"delete-video-question\";s:43:\"Are
you sure you want to delete this
video?\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:15:\"my-videos-title\";s:13:\"MANAGE
VIDEOS\";s:17:\"delete-video-help\";s:27:\"Click to
delete this
video!\";s:15:\"edit-video-help\";s:25:\"Click to edit
this video!\";s:7:\"no-spam\";s:27:\"No messages marked
as
spam!\";s:10:\"spam-title\";s:4:\"SPAM\";s:15:\"spam-meta-title\";s:28:\"View
messages marked as
spam\";s:9:\"msg-block\";s:11:\"Block
user!\";s:8:\"msg-mark\";s:13:\"Mark as
spam!\";s:5:\"reply\";s:5:\"Reply\";s:8:\"msg-spam\";s:87:\"This
message is marked as spam! If you want to read this message please click
%shere%s!\";s:10:\"read-title\";s:7:\"READING\";s:15:\"read-meta-title\";s:12:\"Read
Message\";s:16:\"msg-spam-success\";s:23:\"Message
marked as spam!\";s:12:\"user-blocked\";s:69:\"User
blocked! You will not receive any other messages from this
user!\";s:9:\"no-outbox\";s:17:\"No sent
messages!\";s:12:\"outbox-title\";s:6:\"OUTBOX\";s:17:\"outbox-meta-title\";s:13:\"Sent
Messages\";s:8:\"no-inbox\";s:16:\"No new
messages!\";s:11:\"inbox-title\";s:5:\"INBOX\";s:16:\"inbox-meta-title\";s:13:\"Read
Messages\";s:10:\"msgs-empty\";s:35:\"Please select at
least one
message!\";s:19:\"msgs-delete-success\";s:26:\"Selected
messages deleted!\";s:11:\"msg-invalid\";s:51:\"Invalid
message! Are you sure this message
exists!?\";s:14:\"action-invalid\";s:44:\"Invalid
action! What exactly did you
click!?\";s:18:\"msg-delete-success\";s:16:\"Message
deleted!\";s:14:\"compose-button\";s:12:\"SEND
MESSAGE\";s:7:\"send-to\";s:2:\"To\";s:7:\"subject\";s:7:\"Subject\";s:12:\"compose-help\";s:28:\"Write
a new private
message!\";s:13:\"compose-title\";s:15:\"COMPOSE
MESSAGE\";s:18:\"compose-meta-title\";s:23:\"Manage
Private
Messages\";s:15:\"compose-success\";s:13:\"Message
sent!\";s:14:\"subject-length\";s:48:\"Subject cannot
contain more than 255
characters!\";s:13:\"subject-empty\";s:29:\"Subject
cannot be left
blank!\";s:16:\"receiver-invalid\";s:53:\"Invalid
receiver! Are you sure this username
exists!?\";s:15:\"receiver-friend\";s:65:\"You must be
friends with '%s' to send him/her
messages!\";s:11:\"receiver-no\";s:48:\"Recipient does
not want to receive any
messages!\";s:16:\"receiver-blocked\";s:48:\"You cannot
send messages to %s! You are
blocked!\";s:14:\"receiver-empty\";s:37:\"Please
specify at least one
receiver!\";s:13:\"request-login\";s:48:\"Please login
to approve/deny friendship
request!\";s:15:\"request-invalid\";s:44:\"Invalid
action! What exactly did you
click!?\";s:12:\"request-deny\";s:18:\"Friendship
denied!\";s:15:\"request-approve\";s:20:\"Friendship
accepted!\";s:25:\"subscription-remove-login\";s:37:\"Please
login to cancel
subscriptions!\";s:20:\"subscription-invalid\";s:53:\"Invalid
subscription! Are you sure this user
exists!?\";s:27:\"subscription-remove-success\";s:22:\"Subscription
canceled!\";s:18:\"subscriber-invalid\";s:51:\"Invalid
subscriber! Are you sure this user
exists!?\";s:23:\"subscriber-remove-login\";s:35:\"Please
login to remove
subscribers!\";s:25:\"subscriber-remove-success\";s:19:\"Subscriber
removed!\";s:14:\"friend-invalid\";s:47:\"Invalid
friend! Are you sure this user
exists!?\";s:19:\"friend-remove-login\";s:31:\"Please
login to remove
friends!\";s:21:\"friend-remove-success\";s:19:\"Friendship
removed!\";s:16:\"no-subscriptions\";s:39:\"You did not
subscribe to any users
yet!\";s:27:\"subscription-delete-confirm\";s:52:\"Are
you sure you want to unsubscribe from this
user!\";s:24:\"subscription-delete-help\";s:36:\"Click
to unsubscribe from this
user!\";s:22:\"my-subscriptions-title\";s:25:\"MANAGE
YOUR
SUBSCRIPTIONS\";s:22:\"subscriber-delete-help\";s:32:\"Click
to delete this
subscriber!\";s:25:\"subscriber-delete-confirm\";s:48:\"Are
you sure you want to remove this
subscriber?\";s:14:\"no-subscribers\";s:34:\"You dont
have any subscribers
yet!\";s:20:\"my-subscribers-title\";s:23:\"MANAGE YOUR
SUBSCRIBERS\";s:33:\"my-favorite-photos-delete-confirm\";s:68:\"Are
you sure you want to delete this photo from your favorites
list?\";s:30:\"my-favorite-photos-delete-help\";s:51:\"Click
to remove this photo from your favorite
list!\";s:18:\"no-favorite-photos\";s:53:\"You did not
add any photos to your favorite list
yet!\";s:24:\"my-favorite-photos-title\";s:27:\"MANAGE
YOUR FAVORITE PHOTOS\";s:12:\"lost-success\";s:85:\"A
email containing your username and/or password has been sent to your email
address!\";s:10:\"lost-title\";s:21:\"RECOVER YOUR
PASSWORD\";s:15:\"lost-meta-title\";s:38:\"Recover your
username and/or
password!\";s:16:\"no-videos-viewed\";s:33:\"You did
not watch any videos
yet!\";s:27:\"my-view-history-delete-help\";s:47:\"Click
to remove this video from your view
list!\";s:30:\"my-view-history-delete-confirm\";s:63:\"Are
you sure you want to remove this video from your view
list?\";s:21:\"my-view-history-title\";s:36:\"MANAGE
YOUR PREVIOUSLY VIEWED
VIDEOS\";s:21:\"friend-remove-confirm\";s:44:\"Are you
sure you want to remove this
friend?\";s:10:\"no-friends\";s:33:\"You dont have any
friends yet
:-(\";s:16:\"my-friends-title\";s:19:\"MANAGE YOUR
FRIENDS\";s:23:\"favorite-delete-confirm\";s:67:\"Are
you sure you want to remove this video from your favorite
list?\";s:12:\"no-favorites\";s:53:\"You did not add
any videos to your favorite list
yet!\";s:20:\"favorite-delete-help\";s:52:\"Click to
remove this video from your favorites
list!\";s:18:\"my-favorites-title\";s:27:\"MANAGE YOUR
FAVORITE VIDEOS\";s:12:\"my-favorites\";s:18:\"My
Favorite Videos\";s:12:\"confirm-sent\";s:72:\"A email
with your verification link has been sent to your email
address!\";s:15:\"confirm-missing\";s:53:\"There is no
user registered with this email
address!?\";s:12:\"user-invalid\";s:45:\"Invalid user!
Are you sure this user
exists!?\";s:15:\"confirm-success\";s:24:\"Your email
was verified!\";s:14:\"confirm-expire\";s:41:\"This
email verification code has
expired!\";s:16:\"account-verified\";s:41:\"You already
confirmed your email
address!\";s:14:\"confirm-button\";s:10:\"SEND
EMAIL\";s:13:\"confirm-title\";s:35:\"DID NOT RECEIVE
CONFIRMATION
EMAIL?\";s:18:\"confirm-meta-title\";s:27:\"Confirm
your email address!\";s:9:\"no-albums\";s:40:\"You did
not upload any photo ulbums
yet!\";s:17:\"album-delete-help\";s:43:\"Click to
completly delete this photo
album!\";s:15:\"album-edit-help\";s:31:\"Click to edit
this photo
album!\";s:15:\"my-albums-title\";s:19:\"MANAGE PHOTO
ALBUMS\";s:18:\"my-favorite-photos\";s:18:\"My Favorite
Photos\";s:9:\"my-albums\";s:9:\"My
Albums\";s:9:\"spam-help\";s:42:\"View your private
messages marked as
spam!\";s:11:\"outbox-help\";s:32:\"View your sent
private messages!\";s:10:\"inbox-help\";s:31:\"View
your new private
messages!\";s:16:\"my-comments-help\";s:29:\"Manage
your profile
comments!\";s:21:\"my-subscriptions-help\";s:26:\"Manage
your
subscriptions!\";s:19:\"my-subscribers-help\";s:24:\"Manage
your
subscribers!\";s:15:\"my-friends-help\";s:20:\"Manage
your
friends!\";s:23:\"my-favorite-photos-help\";s:28:\"Manage
your favorite
photos!\";s:14:\"my-albums-help\";s:42:\"Upload, Manage
and Edit your photo
albums!\";s:17:\"my-playlists-help\";s:42:\"Add, Manage
and Edit your video
playlists!\";s:12:\"my-playlists\";s:12:\"My
Playlists\";s:17:\"my-favorites-gelp\";s:28:\"Manage
your favorite
Videos!\";s:20:\"my-view-history-help\";s:44:\"Manage
you previously viewed videos
history!\";s:14:\"my-videos-help\";s:36:\"Upload,
Manage and Edit your
Videos!\";s:21:\"edit-advertising-help\";s:33:\"Add/Edit
your Advertising
Banner!\";s:23:\"edit-notifications-help\";s:32:\"Edit
your Notification
Settings!\";s:21:\"edit-preferences-help\";s:30:\"Edit
your Account
Preferences!\";s:17:\"edit-profile-help\";s:30:\"Edit
your Profile
Information!\";s:17:\"edit-account-help\";s:27:\"Edit
your Account
Settings!\";s:13:\"menu-messages\";s:8:\"MESSAGES\";s:11:\"menu-manage\";s:6:\"MANAGE\";s:16:\"menu-advertising\";s:11:\"ADVERTISING\";s:12:\"menu-profile\";s:7:\"PROFILE\";s:12:\"edit-picture\";s:20:\"Edit
Profile
Picture\";s:7:\"compose\";s:7:\"Compose\";s:6:\"outbox\";s:6:\"Outbox\";s:5:\"inbox\";s:5:\"Inbox\";s:11:\"my-comments\";s:11:\"My
Comments\";s:14:\"my-subscribers\";s:14:\"My
Subscribers\";s:16:\"my-subscriptions\";s:16:\"My
Subscriptions\";s:10:\"my-friends\";s:10:\"My
Friends\";s:15:\"my-view-history\";s:15:\"My View
History\";s:9:\"my-videos\";s:9:\"My
Videos\";s:16:\"edit-advertising\";s:16:\"Edit
Advertising\";s:18:\"edit-notifications\";s:18:\"Edit
Notifications\";s:16:\"edit-preferences\";s:16:\"Edit
Preferences\";s:12:\"edit-profile\";s:12:\"Edit
Profile\";s:12:\"edit-account\";s:12:\"Edit
Account\";s:14:\"signup-confirm\";s:76:\"Your account
was created! Please check your email for the verification
link!\";s:14:\"signup-approve\";s:81:\"Your account was
created! You will receive a email once your account is
approved!\";s:14:\"signup-success\";s:49:\"Your account
was successfuly created! Welcome
%s!\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:11:\"terms-empty\";s:78:\"You must agree to
our Terms of Service and Privacy Policy to create a
account!\";s:9:\"age-empty\";s:72:\"You must confirm
that you are at least %s years old to create a
account!\";s:10:\"city-empty\";s:23:\"Please enter your
city!\";s:15:\"country-invalid\";s:46:\"Invalid
country! What exactly did you
select!?\";s:13:\"country-empty\";s:27:\"Please select
your country!\";s:15:\"birthdate-empty\";s:51:\"Please
enter your complete birth date
(mm-dd-yyyy)!\";s:11:\"name-length\";s:61:\"Name must
contain at least 3 and no more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";s:12:\"gender-empty\";s:26:\"Please select
your gender!\";s:15:\"password-length\";s:65:\"Password
must contain at least %s and no more than %s
characters!\";s:14:\"password-empty\";s:36:\"Password
field cannot be left
blank!\";s:15:\"signup-disabled\";s:64:\"User
registration is currently disabled! Please try again
later!\";s:11:\"age-confirm\";s:42:\"I certify that i
am at least %s years
old!\";s:13:\"terms-confirm\";s:25:\"I agree to the %s
and %s!\";s:13:\"signup-button\";s:14:\"CREATE
ACCOUNT\";s:12:\"captcha-help\";s:36:\"Enter the code
from the above image!\";s:13:\"terms_confirm\";s:25:\"I
agree to the %s and %s!\";s:11:\"age_confirm\";s:42:\"I
certify that i am at least %s years
old!\";s:9:\"cant-read\";s:16:\"Can't
read?\";s:12:\"verification\";s:12:\"Verification\";s:12:\"signup-title\";s:23:\"CREATE
YOUR %s
ACCOUNT!\";s:12:\"login-failed\";s:35:\"Incorrect
username and/or
password!\";s:15:\"account-confirm\";s:52:\"You need to
verify your email before you can log
in!\";s:15:\"account-approve\";s:76:\"Your account is
valid, but the site administrator needs to approve it
first!\";s:17:\"account-suspended\";s:18:\"Account
Suspended!\";s:11:\"login-empty\";s:43:\"Please enter
your username and/or
password!\";s:12:\"login-button\";s:5:\"LOGIN\";s:8:\"remember\";s:12:\"Remember
me?\";s:16:\"confirm-question\";s:35:\"Did not receive
confirmation
email?\";s:13:\"lost-question\";s:35:\"Lost your
username and/or
password?\";s:11:\"login-title\";s:12:\"MEMBER
LOGIN\";s:8:\"deny-all\";s:46:\"Click to deny all
pending friendship
requests!\";s:10:\"accept-all\";s:48:\"Click to accept
all pending friendship
requests!\";s:14:\"requests-title\";s:38:\"FRIENDSHIP
REQUESTS THAT NEED
APPROVAL\";s:11:\"no-requests\";s:23:\"No friendship
requests!\";s:12:\"welcome-back\";s:12:\"Welcome
back\";s:14:\"dashboard-help\";s:83:\"You can easily
view, manage and control all your content and profile settings
here!\";s:16:\"recommended-none\";s:28:\"No recommended
videos
found!\";s:17:\"recommended-title\";s:19:\"RECOMMENDED
FOR YOU\";s:15:\"dashboard-title\";s:12:\"MY
DASHBOARD\";s:20:\"dashboard-meta-title\";s:12:\"My
Dashboard\";s:11:\"banner-help\";s:38:\"Add or update
your advertising
banner!\";s:12:\"banner-title\";s:30:\"EDIT OR ADD
ADVERTISING
BANNER\";s:17:\"banner-meta-title\";s:23:\"Edit
Advertising
Banner\";s:12:\"banner-added\";s:95:\"Advertising
added! Your advertising will appear on the site once the administrator
approves
it!\";s:14:\"banner-updated\";s:53:\"Advertising
updated! Awaiting administrator
approval!\";s:18:\"banner-url-invalid\";s:50:\"Advertising
banner URL is not a valid URL
address!\";s:16:\"banner-url-empty\";s:44:\"Advertising
banner URL cannot be left
blank!\";s:19:\"banner-type-invalid\";s:55:\"Invalid
advertising type! What exactly did you
select!?\";s:25:\"banner-image-type-invalid\";s:61:\"Invalid
advertising image type! What exactly did you
select!?\";s:19:\"banner-image-select\";s:39:\"Please
upload a image advertising
file!\";s:17:\"banner-image-file\";s:52:\"Advertising
image file is not a valid uploaded
file!\";s:19:\"banner-image-upload\";s:80:\"Invalid
advertising image file! File is not a valid image (renders
incorrectly)!\";s:19:\"banner-image-format\";s:90:\"Invalid
advertising image file! Format not supported! Supported formats: jpg, png
and
gif!\";s:20:\"banner-image-invalid\";s:56:\"Advertising
banner image URL is not a valid URL
address!\";s:18:\"banner-image-empty\";s:50:\"Advertising
banner image URL cannot be left
blank!\";s:17:\"banner-code-empty\";s:57:\"Please enter
the advertising banner html/javascript
code!\";s:18:\"banner-title-empty\";s:63:\"Please enter
the advertising banner title (used for the a
tag)!\";s:20:\"notifications-update\";s:20:\"UPDATE
NOTIFICATIONS\";s:28:\"notification-profile-comment\";s:23:\"Comments
on my
profile!\";s:20:\"notification-message\";s:26:\"Receive
a private
message!\";s:19:\"notification-friend\";s:38:\"Approve
or deny my friendship
request!\";s:27:\"notification-friend-request\";s:19:\"Friendship
request!\";s:23:\"notification-subscribes\";s:34:\"Someone
subscribers to my
profile!\";s:25:\"notification-video-rating\";s:24:\"Someone
rates my
videos!\";s:26:\"notification-video-comment\";s:30:\"Someone
comments on my
videos!\";s:26:\"notification-video-approve\";s:32:\"Videos
are approved or
rejected!\";s:18:\"notifications-help\";s:74:\"Edit
your notifications! When do you want to receive emails from the
site!\";s:19:\"notifications-title\";s:18:\"EDIT
NOTIFICATIONS\";s:24:\"notifications-meta-title\";s:18:\"Edit
Notifications\";s:21:\"notifications-success\";s:21:\"Notifications
Updated\";s:22:\"allow-private-messages\";s:22:\"Allow
Private
Messages\";s:21:\"allow-friend-requests\";s:25:\"Allow
Friendship
Requests\";s:22:\"allow-profile-comments\";s:22:\"Allow
Profile
Comments\";s:18:\"show-my-activities\";s:18:\"Show My
Activities\";s:21:\"show-my-subscriptions\";s:21:\"Show
My
Subscriptions\";s:19:\"show-my-subscribers\";s:19:\"Show
My Subscribers\";s:15:\"show-my-friends\";s:15:\"Show
My
Friends\";s:23:\"show-my-favorite-photos\";s:23:\"Show
My Favorite
Photos\";s:20:\"show-my-photo-albums\";s:20:\"Show My
Photo
Albums\";s:20:\"show-my-rated-videos\";s:20:\"Show My
Rated
Videos\";s:23:\"show-my-video-playlists\";s:23:\"Show
My Video
Playlists\";s:23:\"show-my-favorite-videos\";s:23:\"Show
My Favorite
Videos\";s:21:\"show-my-video-history\";s:26:\"Show My
Video View
History\";s:14:\"show-my-videos\";s:14:\"Show My
Videos\";s:21:\"show-profile-comments\";s:21:\"Show
Profile Comments\";s:12:\"show-profile\";s:12:\"Show
Profile\";s:16:\"preferences-help\";s:64:\"Edit profile
preferences, profile parts and privacy
preferences!\";s:17:\"preferences-title\";s:24:\"EDIT
PROFILE
PREFERENCES\";s:22:\"preferences-meta-title\";s:24:\"Edit
Profile
Preferences\";s:19:\"preferences-success\";s:20:\"Preferences
Updated!\";s:14:\"profile-update\";s:14:\"UPDATE
PROFILE\";s:9:\"turn-offs\";s:9:\"Turn
Offs\";s:8:\"turn-ons\";s:8:\"Turn
Ons\";s:5:\"books\";s:5:\"Books\";s:5:\"music\";s:5:\"Music\";s:6:\"movies\";s:6:\"Movies\";s:9:\"interests\";s:21:\"Interests
and
Hobbies\";s:7:\"company\";s:7:\"Company\";s:6:\"school\";s:6:\"School\";s:10:\"occupation\";s:10:\"Occupation\";s:5:\"about\";s:5:\"About\";s:3:\"zip\";s:3:\"Zip\";s:9:\"birthdate\";s:10:\"Birth
Date\";s:18:\"random-information\";s:18:\"Random
Information\";s:20:\"location-information\";s:20:\"Location
Information\";s:20:\"personal-information\";s:20:\"Personal
Information\";s:12:\"profile-help\";s:110:\"You can
edit your profile information, location information, personal information
and random information
here!\";s:13:\"profile-title\";s:12:\"EDIT
PROFILE\";s:18:\"profile-meta-title\";s:12:\"Edit
Profile\";s:15:\"profile-success\";s:16:\"Profile
updated!\";s:18:\"interested-invalid\";s:49:\"Invalid
interested! What exactly did you
select!?\";s:16:\"relation-invalid\";s:47:\"Invalid
relation! What exactly did you
select!?\";s:14:\"gender-invalid\";s:45:\"Invalid
gender! What exactly did you
select!?\";s:15:\"website-invalid\";s:48:\"Personal
website URL is not a valid URL
address!\";s:17:\"birthdate-invalid\";s:39:\"Selected
birthdate is not a valid
date!\";s:20:\"birthdate-incomplete\";s:37:\"Please
select your complete
birthday!\";s:11:\"avatar-crop\";s:11:\"CROP
AVATAR\";s:13:\"avatar-upload\";s:13:\"UPLOAD
AVATAR\";s:14:\"avatar-current\";s:14:\"Current
Avatar\";s:11:\"avatar-help\";s:41:\"You can change
your profile picture
here!\";s:17:\"avatar-meta-title\";s:20:\"Edit Profile
Picture\";s:12:\"avatar-title\";s:20:\"EDIT PROFILE
PICTURE\";s:13:\"avatar-failed\";s:54:\"Failed to
update profile avatar! Invalid
permissions!?\";s:14:\"avatar-success\";s:32:\"Your
profile avatar was
updated!\";s:15:\"account-success\";s:25:\"Account
settings
updated!\";s:18:\"password-incorrect\";s:95:\"Invalid
account password! You need to provide yout old password to update the
account
settings!\";s:17:\"password-mismatch\";s:52:\"Password
and confirmation password are not the
same!\";s:10:\"email-used\";s:38:\"Email is already
used by another
user!\";s:13:\"email-invalid\";s:35:\"Email is not a
valid email
address!\";s:11:\"email-empty\";s:33:\"Email field
cannot be left
blank!\";s:16:\"username-changed\";s:44:\"You are not
allowed to change your
username!\";s:13:\"username-used\";s:54:\"Username is
already used by another user on this
site!\";s:16:\"username-invalid\";s:67:\"Username can
contain only letters, numbers, dashes and
underscores!\";s:15:\"username-length\";s:43:\"Username
can contain maximum %s
characters!\";s:14:\"username-empty\";s:37:\"Username
field cannot be left
blank!\";s:14:\"account-locked\";s:119:\"Account is
locked! You cannot edit your account settings! Please contact the site
administrator to unlock your
account!\";s:14:\"account-update\";s:14:\"ACCOUNT
UPDATE\";s:19:\"account-update-help\";s:68:\"You need
to enter your old password to change your account
settings!\";s:12:\"password-old\";s:12:\"Old
Password\";s:16:\"password-confirm\";s:16:\"Confirm
Password\";s:12:\"password-new\";s:12:\"New
Password\";s:12:\"account-help\";s:64:\"You can edit
your username, email and change your password
here!\";s:13:\"account-title\";s:21:\"EDIT ACCOUNT
SETTINGS\";s:18:\"account-meta-title\";s:21:\"Edit
Account Settings\";}'),(12,'en-US','link','Link Frontend Language
File','frontend','a:25:{s:12:\"link-success\";s:75:\"Link
added! You link will become active once the administrator approves
it!\";s:16:\"linkback-missing\";s:64:\"Please post a
link back to our site before submitting your
site!\";s:16:\"pagerank-invalid\";s:46:\"Your site
needs to have pagerank %s in
Google!\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:16:\"linkback-invalid\";s:40:\"Linkback URL
is not a valid URL
address!\";s:14:\"linkback-empty\";s:30:\"Please enter
the linkback URL!\";s:13:\"email-invalid\";s:35:\"Email
is not a valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email address!\";s:10:\"name-empty\";s:23:\"Please
enter your name!\";s:11:\"url-invalid\";s:36:\"Site URL
is not a valid URL
address!\";s:9:\"url-empty\";s:42:\"Please enter your
site's url
address!\";s:11:\"title-empty\";s:36:\"Please enter
your site's
title!\";s:5:\"rules\";s:5:\"RULES\";s:12:\"captcha-help\";s:36:\"Enter
the code from the above
image!\";s:12:\"linkback-url\";s:12:\"Linkback
URL\";s:11:\"link-button\";s:8:\"ADD
LINK\";s:12:\"verification\";s:12:\"Verification\";s:9:\"cant-read\";s:16:\"Can't
read?\";s:15:\"webmaster-email\";s:15:\"Webmaster
Email\";s:14:\"webmaster-name\";s:14:\"Webmaster
Name\";s:8:\"site-url\";s:3:\"URL\";s:16:\"site-description\";s:16:\"Site
Description\";s:10:\"site-title\";s:10:\"Site
Title\";s:10:\"link-title\";s:13:\"LINK
EXCHANGE\";s:15:\"link-meta-title\";s:11:\"Submit
Link\";}'),(13,'en-US','categories','Categories Frontend Language
File','frontend','a:5:{s:20:\"categories-meta-keys\";s:19:\"porn
categories,
%s\";s:20:\"categories-meta-desc\";s:22:\"Video
Categories -
%s!\";s:21:\"categories-meta-title\";s:23:\"Video
categories at %s!\";s:13:\"no-categories\";s:20:\"No
categories
found!\";s:16:\"categories-title\";s:16:\"VIDEO
CATEGORIES\";}'),(14,'en-US','community','Community Frontend Language
File','frontend','a:11:{s:8:\"no-users\";s:15:\"No users
found!\";s:15:\"advanced-button\";s:8:\"ADVANCED\";s:13:\"search-button\";s:14:\"SEARCH
MEMBERS\";s:10:\"no-popular\";s:25:\"No popular members
found!\";s:19:\"community-meta-keys\";s:18:\"porn
community,
%s\";s:19:\"community-meta-desc\";s:14:\"Community -
%s\";s:12:\"browse-title\";s:14:\"BROWSE
MEMBERS\";s:12:\"search-title\";s:14:\"SEARCH
MEMBERS\";s:13:\"popular-title\";s:15:\"POPULAR
MEMBERS\";s:16:\"community-search\";s:20:\"Users search
results\";s:20:\"community-meta-title\";s:15:\"Community
at %s\";}'),(15,'en-US','enter','Enter Frontend Language
File','frontend','a:6:{s:6:\"policy\";s:78:\"I have read and
I agree to the %s %sTerms of Service%s and %sPrivacy
Policy%s!\";s:14:\"certify-demand\";s:58:\"In order to
enter this website you must certify as
follows\";s:7:\"certify\";s:323:\"Under the governing
law of my country I have reached the age of majority and the age required
to view sexually explicit material and I am accessing this website from a
location where sexually explicit content is legal and permitted. I will not
permit any person to access this website who is not legally permitted to do
so.\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:12:\"enter-button\";s:5:\"ENTER\";s:11:\"enter-title\";s:49:\"This
website contains sexually explicit
material!\";}'),(16,'en-US','forum','Forum Frontend Language
File','frontend','a:63:{s:15:\"forum-view-help\";s:21:\"Click
to view topics!\";s:14:\"forum-old-help\";s:35:\"Old
forum! No posts since one
week!\";s:17:\"forum-access-help\";s:51:\"You dont have
enough privileges to view this
forum!\";s:15:\"topic-view-help\";s:20:\"Click to view
topic!\";s:17:\"topic-locked-help\";s:13:\"Locked
Topic!\";s:17:\"topic-closed-help\";s:13:\"Closed
Topic!\";s:17:\"topic-sticky-help\";s:13:\"Sticky
Topic!\";s:17:\"topic-access-help\";s:51:\"You dont
have enough privileges to view this
topic!\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:15:\"advanced-button\";s:8:\"ADVANCED\";s:11:\"save-button\";s:4:\"SAVE\";s:14:\"delete-success\";s:13:\"Post
deleted!\";s:12:\"post-missing\";s:51:\"Invalid post!
Are you sure this forum post
exists!?\";s:13:\"delete-closed\";s:55:\"Thread closed!
You are not allowed to delete this
post!\";s:13:\"delete-locked\";s:54:\"Locked! You are
not allowed to delete this forum
post!\";s:13:\"delete-access\";s:67:\"Invalid
permissions! You are not allowed to delete this forum
post!\";s:9:\"spam-help\";s:34:\"Click to report this
post as
spam!\";s:5:\"quote\";s:5:\"Quote\";s:10:\"quote-help\";s:28:\"Click
to quote this
message!\";s:11:\"delete-help\";s:26:\"Click to delete
this post!\";s:9:\"edit-help\";s:24:\"Click to edit
this
post!\";s:6:\"joined\";s:6:\"Joined\";s:15:\"post-reply-help\";s:20:\"Reply
to this topic!\";s:10:\"post-reply\";s:10:\"Post
Reply\";s:17:\"search-meta-title\";s:20:\"Forum search
results\";s:12:\"reply-button\";s:10:\"POST
REPLY\";s:11:\"reply-title\";s:15:\"REPLY TO
THREAD\";s:11:\"post-button\";s:12:\"CREATE
TOPIC\";s:10:\"post-title\";s:18:\"CREATE A NEW
TOPIC\";s:13:\"reply-success\";s:34:\"Your reply was
successfuly posted!\";s:13:\"quote-missing\";s:53:\"The
message you are using as a quote cannot be
found!\";s:15:\"post-topic-perm\";s:42:\"You are not
allowed to post in this
topic!\";s:10:\"topic-perm\";s:41:\"You are not allowed
to access this
topic!\";s:12:\"reply-closed\";s:62:\"This topic is
closed! You are not allowed to post any
replies!\";s:12:\"post-success\";s:34:\"Your topic was
succesfuly
created!\";s:15:\"post-forum-perm\";s:42:\"You are not
allowed to post in this
forum!\";s:18:\"post-category-perm\";s:51:\"You are not
allowed to post in this forum
category!\";s:10:\"forum-perm\";s:41:\"You are not
allowed to access this
forum!\";s:13:\"category-perm\";s:50:\"You are not
allowed to access this forum
category!\";s:12:\"edit-success\";s:13:\"Post
updated!\";s:13:\"message-empty\";s:26:\"Please enter
your message!\";s:12:\"title-length\";s:47:\"Topic
title can contain maximum 255
characters!\";s:11:\"title-empty\";s:36:\"Please enter
a title for your
topic!\";s:11:\"edit-button\";s:11:\"UPDATE
POST\";s:10:\"edit-title\";s:9:\"EDIT
POST\";s:11:\"edit-closed\";s:52:\"Thread closed! You
are not allowed to edit or
reply!\";s:11:\"edit-locked\";s:52:\"Locked! You are
not allowed to edit this forum
post!\";s:11:\"edit-access\";s:44:\"You are not allowed
to edit this forum
post!\";s:12:\"forum-access\";s:39:\"You are not
allowed to view this
forum!\";s:15:\"category-access\";s:52:\"You are not
allowed to view forums in this
category!\";s:18:\"no-forums-category\";s:27:\"No
forums in this
category!\";s:14:\"new-topic-help\";s:19:\"Create a new
topic!\";s:9:\"no-topics\";s:24:\"No topics in this
forum!\";s:7:\"replies\";s:7:\"Replies\";s:5:\"views\";s:5:\"Views\";s:5:\"topic\";s:5:\"Topic\";s:9:\"new-topic\";s:9:\"New
Topic\";s:4:\"page\";s:4:\"Page\";s:5:\"posts\";s:5:\"Posts\";s:6:\"topics\";s:6:\"Topics\";s:9:\"no-forums\";s:14:\"No
forums yet!\";s:9:\"last-post\";s:9:\"Last
Post\";s:16:\"forum-meta-title\";s:12:\"Forums at
%s\";}'),(17,'en-US','pornstar','Pornstar Frontend Language
File','frontend','a:58:{s:16:\"pornstar-invalid\";s:53:\"Invalid
pornstar! Are you sure this pornstar
exists!?\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:31:\"Please login to
rate
pornstars!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:60:\"Invalid
pornstar comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:28:\"You comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:16:\"comment-allow-no\";s:54:\"You are
not allowed to post comments on this
pornstar!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:12:\"search-title\";s:56:\"MOST RELEVANT
PORNSTAR SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:22:\"Search
Pornstars at
%s\";s:21:\"pornstar-videos-title\";s:9:\"%s
VIDEOS\";s:26:\"pornstar-videos-meta-title\";s:15:\"%s
Videos at %s\";s:11:\"with-letter\";s:26:\"with letter
'%s'\";s:12:\"no-pornstars\";s:17:\"No
pornstars
yet!\";s:6:\"pstars\";s:9:\"pornstars\";s:14:\"alphabetically\";s:14:\"Alphabetically\";s:12:\"browse-title\";s:9:\"PORNSTARS\";s:11:\"letter-help\";s:41:\"Browse
pornstars starting with letter
%s!\";s:8:\"all-help\";s:21:\"Browse all
pornstars!\";s:10:\"no-popular\";s:25:\"No popular
pornstars yet!\";s:6:\"top-10\";s:13:\"TOP
PORNSTARS\";s:12:\"photo-albums\";s:12:\"photo
albums\";s:12:\"albums-title\";s:15:\"%s PHOTO
ALBUMS\";s:26:\"pornstar-albums-meta-title\";s:15:\"%s
Photos at %s\";s:19:\"pornstar-meta-title\";s:8:\"%s at
%s\";s:13:\"no-albums-yet\";s:20:\"No photo albums
yet!\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:14:\"comment-button\";s:12:\"POST
COMMENT\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:13:\"submenu-games\";s:5:\"GAMES\";s:12:\"submenu-dvds\";s:4:\"DVDS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";s:7:\"watches\";s:5:\"Views\";s:8:\"comments\";s:8:\"Comments\";s:9:\"favorites\";s:9:\"Favorites\";s:9:\"ethnicity\";s:9:\"Ethnicity\";s:12:\"measurements\";s:12:\"Measurements\";s:6:\"height\";s:6:\"Height\";s:6:\"weight\";s:6:\"Weight\";s:10:\"hair-color\";s:10:\"Hair
Color\";s:9:\"eye-color\";s:9:\"Eye
Color\";s:14:\"birth-location\";s:14:\"Birth
Location\";s:10:\"birth-name\";s:10:\"Birth
Name\";s:4:\"born\";s:4:\"Born\";s:8:\"performs\";s:8:\"Performs\";s:7:\"aliases\";s:7:\"Aliases\";s:18:\"pornstar-biography\";s:12:\"%s
BIOGRAPHY\";s:20:\"pornstar-description\";s:14:\"%s
DESCRIPTION\";}'),(18,'en-US','photo','Photo Frontend Language
File','frontend','a:84:{s:22:\"favorite-photo-invalid\";s:56:\"Invalid
favorite photo! Are you sure this photo
exists!?\";s:27:\"favorite-photo-remove-login\";s:55:\"Please
login to remove photos from your favorites
list!\";s:29:\"favorite-photo-remove-success\";s:39:\"Photo
removed from your favorites
list!\";s:18:\"album-delete-login\";s:36:\"Please login
to delete photo
albums!\";s:13:\"photo-invalid\";s:47:\"Invalid photo!
Are you sure this photo
exists!?\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate photos!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:12:\"favorite-own\";s:43:\"You cannot add
your own photo to
favorites!\";s:16:\"favorite-success\";s:39:\"Photo
added to your %sFavorites%s
list!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:57:\"Invalid
photo comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:28:\"You comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:16:\"comment-allow-no\";s:51:\"You are
not allowed to post comments on this
photo!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:13:\"upload-button\";s:13:\"UPLOAD
PHOTOS\";s:17:\"upload-guidelines\";s:17:\"UPLOAD
GUIDELINES\";s:11:\"add-another\";s:18:\"Add Another
Photo?\";s:12:\"album-photos\";s:12:\"ALBUM
PHOTOS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";s:13:\"submenu-games\";s:5:\"GAMES\";s:16:\"upload-box-title\";s:33:\"What
do you want to upload
today?\";s:7:\"caption\";s:7:\"Caption\";s:10:\"image-file\";s:10:\"Image
File\";s:17:\"upload-meta-title\";s:18:\"Upload Photos
- %s\";s:14:\"upload-approve\";s:74:\"Album created!
You will receive a email once your photo album is
approved!\";s:14:\"upload-success\";s:49:\"Album
created! Click %shere%s to view your
album!\";s:13:\"upload-access\";s:49:\"Please login as
a %s user to upload photo
albums!\";s:15:\"upload-disabled\";s:61:\"Photo uploads
are currently disabled! Please try again
later!\";s:7:\"no-tags\";s:43:\"No albums tagged with
'%s'
found!\";s:13:\"albums-tagged\";s:13:\"albums
tagged\";s:9:\"tag-title\";s:34:\"PHOTO ALBUMS TAGGED
'%s'\";s:14:\"tag-meta-title\";s:40:\"Photo
Albums tagged '%s' at
%s\";s:20:\"slideshow-meta-title\";s:12:\"%s
Slideshow\";s:12:\"album-access\";s:47:\"Please login
as a %s user to view photo
albums!\";s:9:\"no-search\";s:57:\"No photo albums
found while searching for
'%s'!\";s:12:\"search-title\";s:39:\"PHOTO
SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:18:\"Search
Photos - %s\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:15:\"comments-button\";s:12:\"POST
COMMENT\";s:16:\"comments-submenu\";s:8:\"COMMENTS\";s:5:\"album\";s:5:\"Album\";s:13:\"favorite-help\";s:38:\"Add
this photo to your favorites
list!\";s:15:\"photo-link-help\";s:28:\"Add this photo
to your site!\";s:9:\"flag-help\";s:16:\"Flag this
photo!\";s:11:\"photos-from\";s:11:\"Photos
from\";s:21:\"edit-guidelines-title\";s:15:\"EDIT
GUIDELINES\";s:19:\"album-cover-current\";s:19:\"Current
album cover\";s:17:\"album-cover-title\";s:11:\"ALBUM
COVER\";s:11:\"edit-button\";s:12:\"UPDATE
ALBUM\";s:16:\"album-cover-help\";s:39:\"Click on a
photo to set as album
cover!\";s:11:\"album-cover\";s:11:\"Album
Cover\";s:17:\"album-information\";s:17:\"ALBUM
INFORMATION\";s:15:\"edit-meta-title\";s:16:\"Edit
Photo Album\";s:11:\"edit-locked\";s:88:\"This album
was locked by the site administrator! You are not allowed to edit this
album!\";s:12:\"edit-success\";s:14:\"Album
updated!\";s:12:\"tags-invalid\";s:79:\"Tags can
contain only letters, numbers, spaces and must be separated by
commas!\";s:11:\"tags-length\";s:61:\"Tags must contain
at least %s and no more than %s
characters!\";s:10:\"tags-empty\";s:39:\"Please enter
tags for this photo
album!\";s:16:\"category-invalid\";s:54:\"Invalid
category checked! What exactly did you
click!?\";s:14:\"category-empty\";s:57:\"Please select
at least one category for this photo
album!\";s:12:\"title-length\";s:68:\"Album title must
contain at least %s and no more than %s
characters!\";s:11:\"title-empty\";s:39:\"Album title
field cannot be left
blank!\";s:13:\"album-invalid\";s:59:\"Invalid photo
album! Are you sure this photo album
exists!?\";s:14:\"category-title\";s:20:\"%s PORN PHOTO
ALBUMS\";s:9:\"no-albums\";s:20:\"No photo albums
yet!\";s:12:\"photo-albums\";s:12:\"photo
albums\";s:12:\"albums-title\";s:25:\"%s FREE PORN
PHOTO ALBUMS\";s:17:\"albums-meta-title\";s:31:\"%s
Free Porn Photo Albums at
%s\";s:10:\"no-related\";s:30:\"No related photo albums
found!\";s:13:\"related-title\";s:14:\"RELATED
ALBUMS\";s:14:\"slideshow-help\";s:21:\"View album
slideshow!\";s:9:\"slideshow\";s:9:\"Slideshow\";s:9:\"link-help\";s:34:\"Add
this photo album on your
site!\";s:16:\"album-meta-title\";s:8:\"%s at
%s\";}'),(19,'en-US','premium','Premium Frontend Language
File','frontend','a:74:{s:13:\"download-link\";s:37:\"Click
to download video in %s
format!\";s:12:\"renew-button\";s:14:\"CLICK TO
RENEW\";s:13:\"renew-title-2\";s:15:\"CHOSE YOUR
PLAN\";s:13:\"renew-title-1\";s:33:\"WHY RENEW YOU
PREMIUM
MEMBERSHIP?\";s:19:\"subscription-active\";s:81:\"Your
subscription is still active! Only renew when your subscription has
expired!\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:19:\"post-comment-button\";s:12:\"POST
COMMENT\";s:6:\"credit\";s:6:\"Credit\";s:12:\"player-renew\";s:80:\"Your
subscription period has expired! Click %shere%s to renew your
subscription!\";s:13:\"player-credit\";s:77:\"You dont
have enough credit to view this video! Click %shere%s to add
credit!\";s:12:\"player-login\";s:57:\"Please %slogin%s
or %sregister%s to watch premium
videos!\";s:14:\"upgrade-button\";s:21:\"CLICK HERE TO
UPGRADE\";s:15:\"upgrade-title-3\";s:10:\"ADD
CREDIT\";s:15:\"upgrade-title-2\";s:15:\"CHOSE YOUR
PLAN\";s:15:\"upgrade-title-1\";s:33:\"WHY UPGRADE TO A
PREMIUM
ACCOUNT?\";s:18:\"upgrade-meta-title\";s:15:\"Upgrade
Account\";s:9:\"no-search\";s:51:\"No videos found
while searching for
'%s'!\";s:12:\"search-title\";s:48:\"PREMIUM
VIDEOS SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:42:\"Premium
Videos Search Results for %s at
%s\";s:15:\"success-upgrade\";s:70:\"Your account has
been upgraded! You can start watching premium
videos!\";s:13:\"success-renew\";s:74:\"Your
subscription has been renewed! You can watch more premium videos
now!\";s:16:\"success-register\";s:80:\"Welcome to %s!
Please click %shere%s to login and start watching premium
videos!\";s:14:\"success-credit\";s:91:\"You
successfuly added credit to your account! You can continue to watch premium
videos now!\";s:12:\"success-help\";s:39:\"Your payment
was successfuly
processed!\";s:13:\"success-title\";s:15:\"PAYMENT
SUCCESS\";s:19:\"register-meta-title\";s:14:\"Register
on %s\";s:12:\"credit-empty\";s:55:\"Please enter a
valid amount of credit you want to
load!\";s:15:\"package-invalid\";s:59:\"Invalid
subscription package! What exactly did you
select!?\";s:10:\"email-used\";s:38:\"Email is already
used by another
user!\";s:13:\"email-invalid\";s:35:\"Email is not a
valid email
address!\";s:11:\"email-empty\";s:33:\"Email field
cannot be left
blank!\";s:14:\"password-empty\";s:36:\"Password field
cannot be left
blank!\";s:13:\"username-used\";s:41:\"Username is
already used by another
user!\";s:16:\"username-invalid\";s:54:\"Username can
contain only letters, numbers and
dashes!\";s:14:\"username-empty\";s:36:\"Username field
cannot be left
blank!\";s:13:\"gateway-empty\";s:66:\"No payment
gateway enabled! Please contact the site
administrator!\";s:15:\"register-button\";s:18:\"CLICK
HERE TO JOIN\";s:7:\"join-cc\";s:19:\"Join by Credit
Card\";s:16:\"register-title-3\";s:18:\"STEP 2: ADD
CREDIT\";s:16:\"register-title-2\";s:23:\"STEP 2: CHOSE
YOUR PLAN\";s:16:\"register-title-1\";s:30:\"STEP 1:
CREATE YOUR %s
ACCOUNT\";s:15:\"redirect-button\";s:28:\"Proceed to
Payment
Processor\";s:13:\"redirect-help\";s:121:\"Redirecting
to payment processor. If you are not automatically redirected within 5
seconds please click the button
below!\";s:14:\"redirect-title\";s:13:\"PROCEED TO
%s\";s:11:\"failed-help\";s:93:\"Your payment was not
processed correctly! Please try again or contact the site
administrator!\";s:12:\"failed-title\";s:14:\"PAYMENT
FAILED\";s:11:\"cancel-help\";s:50:\"Your payment was
not processed! Did you cancel
it?\";s:12:\"cancel-title\";s:16:\"PAYMENT
CANCELED\";s:10:\"no-related\";s:24:\"No related videos
found!\";s:6:\"length\";s:6:\"Length\";s:7:\"watches\";s:5:\"Views\";s:15:\"submenu-related\";s:14:\"RELATED
VIDEOS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:17:\"video-not-playing\";s:17:\"Video
not
playing\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:13:\"favorite-help\";s:38:\"Add
this video to your favorites
list!\";s:9:\"flag-help\";s:16:\"Flag this
video!\";s:13:\"video-private\";s:74:\"This video is
private! You need to be friends with %s to watch this
video!\";s:5:\"watch\";s:5:\"Watch\";s:10:\"credit-low\";s:75:\"You
do not have enough credit to watch this video! Please add credit
below!\";s:20:\"subscription-expired\";s:59:\"Your
subscription period has expired! Please upgrade
below!\";s:7:\"no-tags\";s:46:\"No premium videos
tagged '%s'
found!\";s:13:\"tag-meta-desc\";s:32:\"Premium Porn
Videos Tagged %s - \";s:9:\"tag-title\";s:41:\"PREMIUM
PORN VIDEOS TAGGED
'%s'\";s:14:\"tag-meta-title\";s:47:\"Premium
Porn Videos Tagged '%s' at
%s\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:12:\"browse-title\";s:22:\"%s PREMIUM PORN
VIDEOS\";s:17:\"browse-meta-title\";s:28:\"%s Premium
Porn Videos at %s\";s:11:\"view-access\";s:50:\"Please
login as a %s user to watch premium
videos!\";s:13:\"browse-access\";s:51:\"Please login as
a %s user to browse premium videos!\";}'),(20,'en-US','player','Player
Frontend Language
File','frontend','a:10:{s:10:\"slowmotion\";s:10:\"Slowmotion\";s:8:\"previous\";s:8:\"Previous\";s:4:\"next\";s:4:\"Next\";s:15:\"exit-fullscreen\";s:15:\"Exit
Fullscreen\";s:10:\"fullscreen\";s:10:\"Fullscreen\";s:6:\"unmute\";s:6:\"Unmute\";s:4:\"mute\";s:4:\"Mute\";s:4:\"stop\";s:4:\"Stop\";s:5:\"pause\";s:5:\"Pause\";s:4:\"play\";s:4:\"Play\";}'),(21,'en-US','offline','Offline
Frontend Language
File','frontend','a:1:{s:18:\"offline-meta-title\";s:17:\"Under
Maintenance\";}'),(22,'en-US','kb','Knowledge Base Frontend Language
File','frontend','a:8:{s:13:\"popular-title\";s:16:\"POPULAR
ARTICLES\";s:15:\"view-meta-title\";s:14:\"Knowledge
Base\";s:17:\"search-meta-title\";s:31:\"Knowledge Base
- Search
Results\";s:14:\"articles-title\";s:8:\"ARTICLES\";s:11:\"no-articles\";s:16:\"No
articles
yet!\";s:13:\"search-button\";s:6:\"SEARCH\";s:13:\"article-title\";s:14:\"KNOWLEDGE
BASE\";s:18:\"article-meta-title\";s:17:\"Knowledge
Base - \";}'),(25,'en-US','profile','User Profile Language
File','profile','a:82:{s:18:\"no-photo-favorites\";s:54:\"%s
has not added any photos to his favorites list
yet!\";s:25:\"photo-favorites-meta-desc\";s:30:\"%s's
Favorite Photos -
%s\";s:26:\"photo-favorites-meta-title\";s:31:\"%s's
Favorite Photos at
%s\";s:17:\"no-albums-private\";s:35:\"%s has no
private photo albums
yet!\";s:24:\"albums-private-meta-desc\";s:35:\"%s's
Private Photo Albums -
%s\";s:25:\"albums-private-meta-title\";s:36:\"%s's
Private Photo Albums at
%s\";s:16:\"no-albums-public\";s:34:\"%s has no public
photo albums
yet!\";s:23:\"albums-public-meta-desc\";s:34:\"%s's
Public Photo Albums -
%s\";s:24:\"albums-public-meta-title\";s:35:\"%s's
Public Photo Albums at
%s\";s:16:\"photos-meta-desc\";s:21:\"%s's
Photos -
%s\";s:17:\"photos-meta-title\";s:22:\"%s's
Photos at %s\";s:16:\"no-subscriptions\";s:28:\"%s has
no subscriptions
yet!\";s:23:\"subscriptions-meta-desc\";s:28:\"%s's
Subscriptions -
%s\";s:24:\"subscriptions-meta-title\";s:29:\"%s's
Subscriptions at %s\";s:14:\"no-subscribers\";s:26:\"%s
has no subscribers
yet!\";s:21:\"subscribers-meta-desc\";s:26:\"%s's
Subscribers -
%s\";s:22:\"subscribers-meta-title\";s:27:\"%s's
Subscribers at %s\";s:10:\"no-friends\";s:22:\"%s has
no friends
yet!\";s:17:\"friends-meta-desc\";s:22:\"%s's
Friends -
%s\";s:18:\"friends-meta-title\";s:23:\"%s's
Friends at
%s\";s:21:\"connections-meta-desc\";s:26:\"%s's
Connections -
%s\";s:22:\"connections-meta-title\";s:27:\"%s's
Connections at
%s\";s:18:\"comments-meta-desc\";s:31:\"%s's
Profile Comments -
%s\";s:19:\"comments-meta-title\";s:32:\"%s's
Profile Comments at %s\";s:8:\"no-rated\";s:32:\"%s has
not rated any videos
yet!\";s:11:\"rated-title\";s:12:\"RATED
VIDEOS\";s:15:\"rated-meta-desc\";s:27:\"%s's
Rated Videos -
%s\";s:16:\"rated-meta-title\";s:28:\"%s's
Rated Videos at
%s\";s:16:\"no-videos-public\";s:28:\"%s has no public
videos
yet!\";s:23:\"videos-public-meta-desc\";s:28:\"%s's
Public Videos -
%s\";s:24:\"videos-public-meta-title\";s:29:\"%s's
Public Videos at
%s\";s:17:\"no-videos-private\";s:29:\"%s has no
private videos
yet!\";s:24:\"videos-private-meta-desc\";s:29:\"%s's
Private Videos -
%s\";s:25:\"videos-private-meta-title\";s:30:\"%s's
Private Videos at
%s\";s:14:\"playlist-title\";s:15:\"VIDEO
PLAYLISTS\";s:18:\"playlist-meta-desc\";s:30:\"%s's
Video Playlists -
%s\";s:19:\"playlist-meta-title\";s:31:\"%s's
Video Playlists at %s\";s:10:\"no-watched\";s:34:\"%s
has not watched any videos
yet!\";s:17:\"watched-meta-desc\";s:39:\"%s's
Previously Viewed Videos -
%s\";s:18:\"watched-meta-title\";s:40:\"%s's
Previously Viewed Videos at
%s\";s:11:\"no-favorite\";s:54:\"%s has not added any
videos to his favorites list
yet!\";s:18:\"favorite-meta-desc\";s:30:\"%s's
Favorite Videos -
%s\";s:19:\"favorite-meta-title\";s:31:\"%s's
Favorite Videos at
%s\";s:16:\"videos-meta-desc\";s:21:\"%s's
Videos -
%s\";s:17:\"videos-meta-title\";s:22:\"%s's
Videos at
%s\";s:18:\"profile-meta-title\";s:23:\"%s's
Profile at %s\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:19:\"post-comment-button\";s:12:\"POST
COMMENT\";s:21:\"photo-favorites-title\";s:15:\"FAVORITE
PHOTOS\";s:7:\"see-all\";s:7:\"See
All\";s:20:\"videos-private-title\";s:14:\"PRIVATE
VIDEOS\";s:19:\"videos-public-title\";s:13:\"PUBLIC
VIDEOS\";s:20:\"albums-private-title\";s:20:\"PRIVATE
PHOTO
ALBUMS\";s:19:\"albums-public-title\";s:19:\"PUBLIC
PHOTO ALBUMS\";s:14:\"favorite-title\";s:16:\"FAVORITES
VIDEOS\";s:19:\"subscriptions-title\";s:13:\"SUBSCRIPTIONS\";s:17:\"subscribers-title\";s:11:\"SUBSCRIBERS\";s:13:\"watched-title\";s:24:\"PREVIOUSLY
VIEWED
VIDEOS\";s:13:\"friends-title\";s:7:\"FRIENDS\";s:21:\"leftmenu-removefriend\";s:17:\"REMOVE
FRIENDSHIP\";s:13:\"connect-title\";s:12:\"CONNECT
WITH\";s:22:\"leftmenu-alreadyfriend\";s:15:\"ALREADY
FRIENDS\";s:15:\"leftmenu-report\";s:11:\"REPORT
USER\";s:16:\"leftmenu-unblock\";s:12:\"UNBLOCK
USER\";s:14:\"leftmenu-block\";s:10:\"BLOCK
USER\";s:16:\"leftmenu-comment\";s:7:\"COMMENT\";s:16:\"leftmenu-sendmsg\";s:12:\"SEND
MESSAGE\";s:20:\"leftmenu-unsubscribe\";s:11:\"UNSUBSCRIBE\";s:18:\"leftmenu-subscribe\";s:9:\"SUBSCRIBE\";s:18:\"leftmenu-addfriend\";s:10:\"ADD
FRIEND\";s:14:\"videos-watched\";s:14:\"Watched
Videos\";s:5:\"never\";s:5:\"never\";s:14:\"profile-viewed\";s:14:\"Profile
Viewed\";s:21:\"people-watched-videos\";s:36:\"People
have watched %s's
videos\";s:10:\"last-login\";s:10:\"Last
Login\";s:6:\"joined\";s:6:\"Joined\";s:15:\"submenu-profile\";s:7:\"PROFILE\";s:12:\"submenu-info\";s:4:\"INFO\";s:19:\"submenu-connections\";s:11:\"CONNECTIONS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";}'),(149,'en-UK','offline','Offline
Frontend Language
File','frontend','a:1:{s:18:\"offline-meta-title\";s:17:\"Under
Maintenance\";}'),(150,'en-UK','kb','Knowledge Base Frontend Language
File','frontend','a:8:{s:13:\"popular-title\";s:16:\"POPULAR
ARTICLES\";s:15:\"view-meta-title\";s:14:\"Knowledge
Base\";s:17:\"search-meta-title\";s:31:\"Knowledge Base
- Search
Results\";s:14:\"articles-title\";s:8:\"ARTICLES\";s:11:\"no-articles\";s:16:\"No
articles
yet!\";s:13:\"search-button\";s:6:\"SEARCH\";s:13:\"article-title\";s:14:\"KNOWLEDGE
BASE\";s:18:\"article-meta-title\";s:17:\"Knowledge
Base - \";}'),(151,'en-UK','profile','User Profile Language
File','profile','a:82:{s:18:\"no-photo-favorites\";s:54:\"%s
has not added any photos to his favorites list
yet!\";s:25:\"photo-favorites-meta-desc\";s:30:\"%s's
Favorite Photos -
%s\";s:26:\"photo-favorites-meta-title\";s:31:\"%s's
Favorite Photos at
%s\";s:17:\"no-albums-private\";s:35:\"%s has no
private photo albums
yet!\";s:24:\"albums-private-meta-desc\";s:35:\"%s's
Private Photo Albums -
%s\";s:25:\"albums-private-meta-title\";s:36:\"%s's
Private Photo Albums at
%s\";s:16:\"no-albums-public\";s:34:\"%s has no public
photo albums
yet!\";s:23:\"albums-public-meta-desc\";s:34:\"%s's
Public Photo Albums -
%s\";s:24:\"albums-public-meta-title\";s:35:\"%s's
Public Photo Albums at
%s\";s:16:\"photos-meta-desc\";s:21:\"%s's
Photos -
%s\";s:17:\"photos-meta-title\";s:22:\"%s's
Photos at %s\";s:16:\"no-subscriptions\";s:28:\"%s has
no subscriptions
yet!\";s:23:\"subscriptions-meta-desc\";s:28:\"%s's
Subscriptions -
%s\";s:24:\"subscriptions-meta-title\";s:29:\"%s's
Subscriptions at %s\";s:14:\"no-subscribers\";s:26:\"%s
has no subscribers
yet!\";s:21:\"subscribers-meta-desc\";s:26:\"%s's
Subscribers -
%s\";s:22:\"subscribers-meta-title\";s:27:\"%s's
Subscribers at %s\";s:10:\"no-friends\";s:22:\"%s has
no friends
yet!\";s:17:\"friends-meta-desc\";s:22:\"%s's
Friends -
%s\";s:18:\"friends-meta-title\";s:23:\"%s's
Friends at
%s\";s:21:\"connections-meta-desc\";s:26:\"%s's
Connections -
%s\";s:22:\"connections-meta-title\";s:27:\"%s's
Connections at
%s\";s:18:\"comments-meta-desc\";s:31:\"%s's
Profile Comments -
%s\";s:19:\"comments-meta-title\";s:32:\"%s's
Profile Comments at %s\";s:8:\"no-rated\";s:32:\"%s has
not rated any videos
yet!\";s:11:\"rated-title\";s:12:\"RATED
VIDEOS\";s:15:\"rated-meta-desc\";s:27:\"%s's
Rated Videos -
%s\";s:16:\"rated-meta-title\";s:28:\"%s's
Rated Videos at
%s\";s:16:\"no-videos-public\";s:28:\"%s has no public
videos
yet!\";s:23:\"videos-public-meta-desc\";s:28:\"%s's
Public Videos -
%s\";s:24:\"videos-public-meta-title\";s:29:\"%s's
Public Videos at
%s\";s:17:\"no-videos-private\";s:29:\"%s has no
private videos
yet!\";s:24:\"videos-private-meta-desc\";s:29:\"%s's
Private Videos -
%s\";s:25:\"videos-private-meta-title\";s:30:\"%s's
Private Videos at
%s\";s:14:\"playlist-title\";s:15:\"VIDEO
PLAYLISTS\";s:18:\"playlist-meta-desc\";s:30:\"%s's
Video Playlists -
%s\";s:19:\"playlist-meta-title\";s:31:\"%s's
Video Playlists at %s\";s:10:\"no-watched\";s:34:\"%s
has not watched any videos
yet!\";s:17:\"watched-meta-desc\";s:39:\"%s's
Previously Viewed Videos -
%s\";s:18:\"watched-meta-title\";s:40:\"%s's
Previously Viewed Videos at
%s\";s:11:\"no-favorite\";s:54:\"%s has not added any
videos to his favorites list
yet!\";s:18:\"favorite-meta-desc\";s:30:\"%s's
Favorite Videos -
%s\";s:19:\"favorite-meta-title\";s:31:\"%s's
Favorite Videos at
%s\";s:16:\"videos-meta-desc\";s:21:\"%s's
Videos -
%s\";s:17:\"videos-meta-title\";s:22:\"%s's
Videos at
%s\";s:18:\"profile-meta-title\";s:23:\"%s's
Profile at %s\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:19:\"post-comment-button\";s:12:\"POST
COMMENT\";s:21:\"photo-favorites-title\";s:15:\"FAVORITE
PHOTOS\";s:7:\"see-all\";s:7:\"See
All\";s:20:\"videos-private-title\";s:14:\"PRIVATE
VIDEOS\";s:19:\"videos-public-title\";s:13:\"PUBLIC
VIDEOS\";s:20:\"albums-private-title\";s:20:\"PRIVATE
PHOTO
ALBUMS\";s:19:\"albums-public-title\";s:19:\"PUBLIC
PHOTO ALBUMS\";s:14:\"favorite-title\";s:16:\"FAVORITES
VIDEOS\";s:19:\"subscriptions-title\";s:13:\"SUBSCRIPTIONS\";s:17:\"subscribers-title\";s:11:\"SUBSCRIBERS\";s:13:\"watched-title\";s:24:\"PREVIOUSLY
VIEWED
VIDEOS\";s:13:\"friends-title\";s:7:\"FRIENDS\";s:21:\"leftmenu-removefriend\";s:17:\"REMOVE
FRIENDSHIP\";s:13:\"connect-title\";s:12:\"CONNECT
WITH\";s:22:\"leftmenu-alreadyfriend\";s:15:\"ALREADY
FRIENDS\";s:15:\"leftmenu-report\";s:11:\"REPORT
USER\";s:16:\"leftmenu-unblock\";s:12:\"UNBLOCK
USER\";s:14:\"leftmenu-block\";s:10:\"BLOCK
USER\";s:16:\"leftmenu-comment\";s:7:\"COMMENT\";s:16:\"leftmenu-sendmsg\";s:12:\"SEND
MESSAGE\";s:20:\"leftmenu-unsubscribe\";s:11:\"UNSUBSCRIBE\";s:18:\"leftmenu-subscribe\";s:9:\"SUBSCRIBE\";s:18:\"leftmenu-addfriend\";s:10:\"ADD
FRIEND\";s:14:\"videos-watched\";s:14:\"Watched
Videos\";s:5:\"never\";s:5:\"never\";s:14:\"profile-viewed\";s:14:\"Profile
Viewed\";s:21:\"people-watched-videos\";s:36:\"People
have watched %s's
videos\";s:10:\"last-login\";s:10:\"Last
Login\";s:6:\"joined\";s:6:\"Joined\";s:15:\"submenu-profile\";s:7:\"PROFILE\";s:12:\"submenu-info\";s:4:\"INFO\";s:19:\"submenu-connections\";s:11:\"CONNECTIONS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";}'),(148,'en-UK','player','Player
Frontend Language
File','frontend','a:10:{s:10:\"slowmotion\";s:10:\"Slowmotion\";s:8:\"previous\";s:8:\"Previous\";s:4:\"next\";s:4:\"Next\";s:15:\"exit-fullscreen\";s:15:\"Exit
Fullscreen\";s:10:\"fullscreen\";s:10:\"Fullscreen\";s:6:\"unmute\";s:6:\"Unmute\";s:4:\"mute\";s:4:\"Mute\";s:4:\"stop\";s:4:\"Stop\";s:5:\"pause\";s:5:\"Pause\";s:4:\"play\";s:4:\"Play\";}'),(147,'en-UK','premium','Premium
Frontend Language
File','frontend','a:74:{s:13:\"download-link\";s:37:\"Click
to download video in %s
format!\";s:12:\"renew-button\";s:14:\"CLICK TO
RENEW\";s:13:\"renew-title-2\";s:15:\"CHOSE YOUR
PLAN\";s:13:\"renew-title-1\";s:33:\"WHY RENEW YOU
PREMIUM
MEMBERSHIP?\";s:19:\"subscription-active\";s:81:\"Your
subscription is still active! Only renew when your subscription has
expired!\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:19:\"post-comment-button\";s:12:\"POST
COMMENT\";s:6:\"credit\";s:6:\"Credit\";s:12:\"player-renew\";s:80:\"Your
subscription period has expired! Click %shere%s to renew your
subscription!\";s:13:\"player-credit\";s:77:\"You dont
have enough credit to view this video! Click %shere%s to add
credit!\";s:12:\"player-login\";s:57:\"Please %slogin%s
or %sregister%s to watch premium
videos!\";s:14:\"upgrade-button\";s:21:\"CLICK HERE TO
UPGRADE\";s:15:\"upgrade-title-3\";s:10:\"ADD
CREDIT\";s:15:\"upgrade-title-2\";s:15:\"CHOSE YOUR
PLAN\";s:15:\"upgrade-title-1\";s:33:\"WHY UPGRADE TO A
PREMIUM
ACCOUNT?\";s:18:\"upgrade-meta-title\";s:15:\"Upgrade
Account\";s:9:\"no-search\";s:51:\"No videos found
while searching for
'%s'!\";s:12:\"search-title\";s:48:\"PREMIUM
VIDEOS SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:42:\"Premium
Videos Search Results for %s at
%s\";s:15:\"success-upgrade\";s:70:\"Your account has
been upgraded! You can start watching premium
videos!\";s:13:\"success-renew\";s:74:\"Your
subscription has been renewed! You can watch more premium videos
now!\";s:16:\"success-register\";s:80:\"Welcome to %s!
Please click %shere%s to login and start watching premium
videos!\";s:14:\"success-credit\";s:91:\"You
successfuly added credit to your account! You can continue to watch premium
videos now!\";s:12:\"success-help\";s:39:\"Your payment
was successfuly
processed!\";s:13:\"success-title\";s:15:\"PAYMENT
SUCCESS\";s:19:\"register-meta-title\";s:14:\"Register
on %s\";s:12:\"credit-empty\";s:55:\"Please enter a
valid amount of credit you want to
load!\";s:15:\"package-invalid\";s:59:\"Invalid
subscription package! What exactly did you
select!?\";s:10:\"email-used\";s:38:\"Email is already
used by another
user!\";s:13:\"email-invalid\";s:35:\"Email is not a
valid email
address!\";s:11:\"email-empty\";s:33:\"Email field
cannot be left
blank!\";s:14:\"password-empty\";s:36:\"Password field
cannot be left
blank!\";s:13:\"username-used\";s:41:\"Username is
already used by another
user!\";s:16:\"username-invalid\";s:54:\"Username can
contain only letters, numbers and
dashes!\";s:14:\"username-empty\";s:36:\"Username field
cannot be left
blank!\";s:13:\"gateway-empty\";s:66:\"No payment
gateway enabled! Please contact the site
administrator!\";s:15:\"register-button\";s:18:\"CLICK
HERE TO JOIN\";s:7:\"join-cc\";s:19:\"Join by Credit
Card\";s:16:\"register-title-3\";s:18:\"STEP 2: ADD
CREDIT\";s:16:\"register-title-2\";s:23:\"STEP 2: CHOSE
YOUR PLAN\";s:16:\"register-title-1\";s:30:\"STEP 1:
CREATE YOUR %s
ACCOUNT\";s:15:\"redirect-button\";s:28:\"Proceed to
Payment
Processor\";s:13:\"redirect-help\";s:121:\"Redirecting
to payment processor. If you are not automatically redirected within 5
seconds please click the button
below!\";s:14:\"redirect-title\";s:13:\"PROCEED TO
%s\";s:11:\"failed-help\";s:93:\"Your payment was not
processed correctly! Please try again or contact the site
administrator!\";s:12:\"failed-title\";s:14:\"PAYMENT
FAILED\";s:11:\"cancel-help\";s:50:\"Your payment was
not processed! Did you cancel
it?\";s:12:\"cancel-title\";s:16:\"PAYMENT
CANCELED\";s:10:\"no-related\";s:24:\"No related videos
found!\";s:6:\"length\";s:6:\"Length\";s:7:\"watches\";s:5:\"Views\";s:15:\"submenu-related\";s:14:\"RELATED
VIDEOS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:17:\"video-not-playing\";s:17:\"Video
not
playing\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:13:\"favorite-help\";s:38:\"Add
this video to your favorites
list!\";s:9:\"flag-help\";s:16:\"Flag this
video!\";s:13:\"video-private\";s:74:\"This video is
private! You need to be friends with %s to watch this
video!\";s:5:\"watch\";s:5:\"Watch\";s:10:\"credit-low\";s:75:\"You
do not have enough credit to watch this video! Please add credit
below!\";s:20:\"subscription-expired\";s:59:\"Your
subscription period has expired! Please upgrade
below!\";s:7:\"no-tags\";s:46:\"No premium videos
tagged '%s'
found!\";s:13:\"tag-meta-desc\";s:32:\"Premium Porn
Videos Tagged %s - \";s:9:\"tag-title\";s:41:\"PREMIUM
PORN VIDEOS TAGGED
'%s'\";s:14:\"tag-meta-title\";s:47:\"Premium
Porn Videos Tagged '%s' at
%s\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:12:\"browse-title\";s:22:\"%s PREMIUM PORN
VIDEOS\";s:17:\"browse-meta-title\";s:28:\"%s Premium
Porn Videos at %s\";s:11:\"view-access\";s:50:\"Please
login as a %s user to watch premium
videos!\";s:13:\"browse-access\";s:51:\"Please login as
a %s user to browse premium videos!\";}'),(146,'en-UK','photo','Photo
Frontend Language
File','frontend','a:84:{s:22:\"favorite-photo-invalid\";s:56:\"Invalid
favorite photo! Are you sure this photo
exists!?\";s:27:\"favorite-photo-remove-login\";s:55:\"Please
login to remove photos from your favorites
list!\";s:29:\"favorite-photo-remove-success\";s:39:\"Photo
removed from your favorites
list!\";s:18:\"album-delete-login\";s:36:\"Please login
to delete photo
albums!\";s:13:\"photo-invalid\";s:47:\"Invalid photo!
Are you sure this photo
exists!?\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate photos!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:12:\"favorite-own\";s:43:\"You cannot add
your own photo to
favorites!\";s:16:\"favorite-success\";s:39:\"Photo
added to your %sFavorites%s
list!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:57:\"Invalid
photo comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:28:\"You comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:16:\"comment-allow-no\";s:51:\"You are
not allowed to post comments on this
photo!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:13:\"upload-button\";s:13:\"UPLOAD
PHOTOS\";s:17:\"upload-guidelines\";s:17:\"UPLOAD
GUIDELINES\";s:11:\"add-another\";s:18:\"Add Another
Photo?\";s:12:\"album-photos\";s:12:\"ALBUM
PHOTOS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";s:13:\"submenu-games\";s:5:\"GAMES\";s:16:\"upload-box-title\";s:33:\"What
do you want to upload
today?\";s:7:\"caption\";s:7:\"Caption\";s:10:\"image-file\";s:10:\"Image
File\";s:17:\"upload-meta-title\";s:18:\"Upload Photos
- %s\";s:14:\"upload-approve\";s:74:\"Album created!
You will receive a email once your photo album is
approved!\";s:14:\"upload-success\";s:49:\"Album
created! Click %shere%s to view your
album!\";s:13:\"upload-access\";s:49:\"Please login as
a %s user to upload photo
albums!\";s:15:\"upload-disabled\";s:61:\"Photo uploads
are currently disabled! Please try again
later!\";s:7:\"no-tags\";s:43:\"No albums tagged with
'%s'
found!\";s:13:\"albums-tagged\";s:13:\"albums
tagged\";s:9:\"tag-title\";s:34:\"PHOTO ALBUMS TAGGED
'%s'\";s:14:\"tag-meta-title\";s:40:\"Photo
Albums tagged '%s' at
%s\";s:20:\"slideshow-meta-title\";s:12:\"%s
Slideshow\";s:12:\"album-access\";s:47:\"Please login
as a %s user to view photo
albums!\";s:9:\"no-search\";s:57:\"No photo albums
found while searching for
'%s'!\";s:12:\"search-title\";s:39:\"PHOTO
SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:18:\"Search
Photos - %s\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:15:\"comments-button\";s:12:\"POST
COMMENT\";s:16:\"comments-submenu\";s:8:\"COMMENTS\";s:5:\"album\";s:5:\"Album\";s:13:\"favorite-help\";s:38:\"Add
this photo to your favorites
list!\";s:15:\"photo-link-help\";s:28:\"Add this photo
to your site!\";s:9:\"flag-help\";s:16:\"Flag this
photo!\";s:11:\"photos-from\";s:11:\"Photos
from\";s:21:\"edit-guidelines-title\";s:15:\"EDIT
GUIDELINES\";s:19:\"album-cover-current\";s:19:\"Current
album cover\";s:17:\"album-cover-title\";s:11:\"ALBUM
COVER\";s:11:\"edit-button\";s:12:\"UPDATE
ALBUM\";s:16:\"album-cover-help\";s:39:\"Click on a
photo to set as album
cover!\";s:11:\"album-cover\";s:11:\"Album
Cover\";s:17:\"album-information\";s:17:\"ALBUM
INFORMATION\";s:15:\"edit-meta-title\";s:16:\"Edit
Photo Album\";s:11:\"edit-locked\";s:88:\"This album
was locked by the site administrator! You are not allowed to edit this
album!\";s:12:\"edit-success\";s:14:\"Album
updated!\";s:12:\"tags-invalid\";s:79:\"Tags can
contain only letters, numbers, spaces and must be separated by
commas!\";s:11:\"tags-length\";s:61:\"Tags must contain
at least %s and no more than %s
characters!\";s:10:\"tags-empty\";s:39:\"Please enter
tags for this photo
album!\";s:16:\"category-invalid\";s:54:\"Invalid
category checked! What exactly did you
click!?\";s:14:\"category-empty\";s:57:\"Please select
at least one category for this photo
album!\";s:12:\"title-length\";s:68:\"Album title must
contain at least %s and no more than %s
characters!\";s:11:\"title-empty\";s:39:\"Album title
field cannot be left
blank!\";s:13:\"album-invalid\";s:59:\"Invalid photo
album! Are you sure this photo album
exists!?\";s:14:\"category-title\";s:20:\"%s PORN PHOTO
ALBUMS\";s:9:\"no-albums\";s:20:\"No photo albums
yet!\";s:12:\"photo-albums\";s:12:\"photo
albums\";s:12:\"albums-title\";s:25:\"%s FREE PORN
PHOTO ALBUMS\";s:17:\"albums-meta-title\";s:31:\"%s
Free Porn Photo Albums at
%s\";s:10:\"no-related\";s:30:\"No related photo albums
found!\";s:13:\"related-title\";s:14:\"RELATED
ALBUMS\";s:14:\"slideshow-help\";s:21:\"View album
slideshow!\";s:9:\"slideshow\";s:9:\"Slideshow\";s:9:\"link-help\";s:34:\"Add
this photo album on your
site!\";s:16:\"album-meta-title\";s:8:\"%s at
%s\";}'),(145,'en-UK','pornstar','Pornstar Frontend Language
File','frontend','a:58:{s:16:\"pornstar-invalid\";s:53:\"Invalid
pornstar! Are you sure this pornstar
exists!?\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:31:\"Please login to
rate
pornstars!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:60:\"Invalid
pornstar comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:28:\"You comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:16:\"comment-allow-no\";s:54:\"You are
not allowed to post comments on this
pornstar!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:12:\"search-title\";s:56:\"MOST RELEVANT
PORNSTAR SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:22:\"Search
Pornstars at
%s\";s:21:\"pornstar-videos-title\";s:9:\"%s
VIDEOS\";s:26:\"pornstar-videos-meta-title\";s:15:\"%s
Videos at %s\";s:11:\"with-letter\";s:26:\"with letter
'%s'\";s:12:\"no-pornstars\";s:17:\"No
pornstars
yet!\";s:6:\"pstars\";s:9:\"pornstars\";s:14:\"alphabetically\";s:14:\"Alphabetically\";s:12:\"browse-title\";s:9:\"PORNSTARS\";s:11:\"letter-help\";s:41:\"Browse
pornstars starting with letter
%s!\";s:8:\"all-help\";s:21:\"Browse all
pornstars!\";s:10:\"no-popular\";s:25:\"No popular
pornstars yet!\";s:6:\"top-10\";s:13:\"TOP
PORNSTARS\";s:12:\"photo-albums\";s:12:\"photo
albums\";s:12:\"albums-title\";s:15:\"%s PHOTO
ALBUMS\";s:26:\"pornstar-albums-meta-title\";s:15:\"%s
Photos at %s\";s:19:\"pornstar-meta-title\";s:8:\"%s at
%s\";s:13:\"no-albums-yet\";s:20:\"No photo albums
yet!\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:14:\"comment-button\";s:12:\"POST
COMMENT\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:13:\"submenu-games\";s:5:\"GAMES\";s:12:\"submenu-dvds\";s:4:\"DVDS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";s:7:\"watches\";s:5:\"Views\";s:8:\"comments\";s:8:\"Comments\";s:9:\"favorites\";s:9:\"Favorites\";s:9:\"ethnicity\";s:9:\"Ethnicity\";s:12:\"measurements\";s:12:\"Measurements\";s:6:\"height\";s:6:\"Height\";s:6:\"weight\";s:6:\"Weight\";s:10:\"hair-color\";s:10:\"Hair
Color\";s:9:\"eye-color\";s:9:\"Eye
Color\";s:14:\"birth-location\";s:14:\"Birth
Location\";s:10:\"birth-name\";s:10:\"Birth
Name\";s:4:\"born\";s:4:\"Born\";s:8:\"performs\";s:8:\"Performs\";s:7:\"aliases\";s:7:\"Aliases\";s:18:\"pornstar-biography\";s:12:\"%s
BIOGRAPHY\";s:20:\"pornstar-description\";s:14:\"%s
DESCRIPTION\";}'),(140,'en-UK','link','Link Frontend Language
File','frontend','a:25:{s:12:\"link-success\";s:75:\"Link
added! You link will become active once the administrator approves
it!\";s:16:\"linkback-missing\";s:64:\"Please post a
link back to our site before submitting your
site!\";s:16:\"pagerank-invalid\";s:46:\"Your site
needs to have pagerank %s in
Google!\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:16:\"linkback-invalid\";s:40:\"Linkback URL
is not a valid URL
address!\";s:14:\"linkback-empty\";s:30:\"Please enter
the linkback URL!\";s:13:\"email-invalid\";s:35:\"Email
is not a valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email address!\";s:10:\"name-empty\";s:23:\"Please
enter your name!\";s:11:\"url-invalid\";s:36:\"Site URL
is not a valid URL
address!\";s:9:\"url-empty\";s:42:\"Please enter your
site's url
address!\";s:11:\"title-empty\";s:36:\"Please enter
your site's
title!\";s:5:\"rules\";s:5:\"RULES\";s:12:\"captcha-help\";s:36:\"Enter
the code from the above
image!\";s:12:\"linkback-url\";s:12:\"Linkback
URL\";s:11:\"link-button\";s:8:\"ADD
LINK\";s:12:\"verification\";s:12:\"Verification\";s:9:\"cant-read\";s:16:\"Can't
read?\";s:15:\"webmaster-email\";s:15:\"Webmaster
Email\";s:14:\"webmaster-name\";s:14:\"Webmaster
Name\";s:8:\"site-url\";s:3:\"URL\";s:16:\"site-description\";s:16:\"Site
Description\";s:10:\"site-title\";s:10:\"Site
Title\";s:10:\"link-title\";s:13:\"LINK
EXCHANGE\";s:15:\"link-meta-title\";s:11:\"Submit
Link\";}'),(141,'en-UK','categories','Categories Frontend Language
File','frontend','a:5:{s:20:\"categories-meta-keys\";s:19:\"porn
categories,
%s\";s:20:\"categories-meta-desc\";s:22:\"Video
Categories -
%s!\";s:21:\"categories-meta-title\";s:23:\"Video
categories at %s!\";s:13:\"no-categories\";s:20:\"No
categories
found!\";s:16:\"categories-title\";s:16:\"VIDEO
CATEGORIES\";}'),(142,'en-UK','community','Community Frontend Language
File','frontend','a:11:{s:8:\"no-users\";s:15:\"No users
found!\";s:15:\"advanced-button\";s:8:\"ADVANCED\";s:13:\"search-button\";s:14:\"SEARCH
MEMBERS\";s:10:\"no-popular\";s:25:\"No popular members
found!\";s:19:\"community-meta-keys\";s:18:\"porn
community,
%s\";s:19:\"community-meta-desc\";s:14:\"Community -
%s\";s:12:\"browse-title\";s:14:\"BROWSE
MEMBERS\";s:12:\"search-title\";s:14:\"SEARCH
MEMBERS\";s:13:\"popular-title\";s:15:\"POPULAR
MEMBERS\";s:16:\"community-search\";s:20:\"Users search
results\";s:20:\"community-meta-title\";s:15:\"Community
at %s\";}'),(143,'en-UK','enter','Enter Frontend Language
File','frontend','a:6:{s:6:\"policy\";s:78:\"I have read and
I agree to the %s %sTerms of Service%s and %sPrivacy
Policy%s!\";s:14:\"certify-demand\";s:58:\"In order to
enter this website you must certify as
follows\";s:7:\"certify\";s:323:\"Under the governing
law of my country I have reached the age of majority and the age required
to view sexually explicit material and I am accessing this website from a
location where sexually explicit content is legal and permitted. I will not
permit any person to access this website who is not legally permitted to do
so.\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:12:\"enter-button\";s:5:\"ENTER\";s:11:\"enter-title\";s:49:\"This
website contains sexually explicit
material!\";}'),(144,'en-UK','forum','Forum Frontend Language
File','frontend','a:63:{s:15:\"forum-view-help\";s:21:\"Click
to view topics!\";s:14:\"forum-old-help\";s:35:\"Old
forum! No posts since one
week!\";s:17:\"forum-access-help\";s:51:\"You dont have
enough privileges to view this
forum!\";s:15:\"topic-view-help\";s:20:\"Click to view
topic!\";s:17:\"topic-locked-help\";s:13:\"Locked
Topic!\";s:17:\"topic-closed-help\";s:13:\"Closed
Topic!\";s:17:\"topic-sticky-help\";s:13:\"Sticky
Topic!\";s:17:\"topic-access-help\";s:51:\"You dont
have enough privileges to view this
topic!\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:15:\"advanced-button\";s:8:\"ADVANCED\";s:11:\"save-button\";s:4:\"SAVE\";s:14:\"delete-success\";s:13:\"Post
deleted!\";s:12:\"post-missing\";s:51:\"Invalid post!
Are you sure this forum post
exists!?\";s:13:\"delete-closed\";s:55:\"Thread closed!
You are not allowed to delete this
post!\";s:13:\"delete-locked\";s:54:\"Locked! You are
not allowed to delete this forum
post!\";s:13:\"delete-access\";s:67:\"Invalid
permissions! You are not allowed to delete this forum
post!\";s:9:\"spam-help\";s:34:\"Click to report this
post as
spam!\";s:5:\"quote\";s:5:\"Quote\";s:10:\"quote-help\";s:28:\"Click
to quote this
message!\";s:11:\"delete-help\";s:26:\"Click to delete
this post!\";s:9:\"edit-help\";s:24:\"Click to edit
this
post!\";s:6:\"joined\";s:6:\"Joined\";s:15:\"post-reply-help\";s:20:\"Reply
to this topic!\";s:10:\"post-reply\";s:10:\"Post
Reply\";s:17:\"search-meta-title\";s:20:\"Forum search
results\";s:12:\"reply-button\";s:10:\"POST
REPLY\";s:11:\"reply-title\";s:15:\"REPLY TO
THREAD\";s:11:\"post-button\";s:12:\"CREATE
TOPIC\";s:10:\"post-title\";s:18:\"CREATE A NEW
TOPIC\";s:13:\"reply-success\";s:34:\"Your reply was
successfuly posted!\";s:13:\"quote-missing\";s:53:\"The
message you are using as a quote cannot be
found!\";s:15:\"post-topic-perm\";s:42:\"You are not
allowed to post in this
topic!\";s:10:\"topic-perm\";s:41:\"You are not allowed
to access this
topic!\";s:12:\"reply-closed\";s:62:\"This topic is
closed! You are not allowed to post any
replies!\";s:12:\"post-success\";s:34:\"Your topic was
succesfuly
created!\";s:15:\"post-forum-perm\";s:42:\"You are not
allowed to post in this
forum!\";s:18:\"post-category-perm\";s:51:\"You are not
allowed to post in this forum
category!\";s:10:\"forum-perm\";s:41:\"You are not
allowed to access this
forum!\";s:13:\"category-perm\";s:50:\"You are not
allowed to access this forum
category!\";s:12:\"edit-success\";s:13:\"Post
updated!\";s:13:\"message-empty\";s:26:\"Please enter
your message!\";s:12:\"title-length\";s:47:\"Topic
title can contain maximum 255
characters!\";s:11:\"title-empty\";s:36:\"Please enter
a title for your
topic!\";s:11:\"edit-button\";s:11:\"UPDATE
POST\";s:10:\"edit-title\";s:9:\"EDIT
POST\";s:11:\"edit-closed\";s:52:\"Thread closed! You
are not allowed to edit or
reply!\";s:11:\"edit-locked\";s:52:\"Locked! You are
not allowed to edit this forum
post!\";s:11:\"edit-access\";s:44:\"You are not allowed
to edit this forum
post!\";s:12:\"forum-access\";s:39:\"You are not
allowed to view this
forum!\";s:15:\"category-access\";s:52:\"You are not
allowed to view forums in this
category!\";s:18:\"no-forums-category\";s:27:\"No
forums in this
category!\";s:14:\"new-topic-help\";s:19:\"Create a new
topic!\";s:9:\"no-topics\";s:24:\"No topics in this
forum!\";s:7:\"replies\";s:7:\"Replies\";s:5:\"views\";s:5:\"Views\";s:5:\"topic\";s:5:\"Topic\";s:9:\"new-topic\";s:9:\"New
Topic\";s:4:\"page\";s:4:\"Page\";s:5:\"posts\";s:5:\"Posts\";s:6:\"topics\";s:6:\"Topics\";s:9:\"no-forums\";s:14:\"No
forums yet!\";s:9:\"last-post\";s:9:\"Last
Post\";s:16:\"forum-meta-title\";s:12:\"Forums at
%s\";}'),(138,'en-UK','feedback','Feedback Frontent Language
File','frontend','a:11:{s:14:\"submit-success\";s:92:\"Your
message was sent! We will respond as soon as possible! Thank you for your
contribution!\";s:14:\"message-length\";s:55:\"Message
field cannot contain more than 1000
characters!\";s:13:\"message-empty\";s:26:\"Please
enter your message!\";s:11:\"name-length\";s:51:\"Name
field cannot contain more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";s:13:\"email-invalid\";s:35:\"Email is not
a valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email
address!\";s:15:\"submit-feedback\";s:15:\"SUBMIT
FEEDBACK\";s:4:\"name\";s:4:\"Name\";s:5:\"title\";s:18:\"SUPPORT
/
FEEDBACK\";s:10:\"meta-title\";s:8:\"Feedback\";}'),(139,'en-UK','user','User
Frontend Language
File','frontend','a:283:{s:21:\"delete-video-question\";s:43:\"Are
you sure you want to delete this
video?\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:15:\"my-videos-title\";s:13:\"MANAGE
VIDEOS\";s:17:\"delete-video-help\";s:27:\"Click to
delete this
video!\";s:15:\"edit-video-help\";s:25:\"Click to edit
this video!\";s:7:\"no-spam\";s:27:\"No messages marked
as
spam!\";s:10:\"spam-title\";s:4:\"SPAM\";s:15:\"spam-meta-title\";s:28:\"View
messages marked as
spam\";s:9:\"msg-block\";s:11:\"Block
user!\";s:8:\"msg-mark\";s:13:\"Mark as
spam!\";s:5:\"reply\";s:5:\"Reply\";s:8:\"msg-spam\";s:87:\"This
message is marked as spam! If you want to read this message please click
%shere%s!\";s:10:\"read-title\";s:7:\"READING\";s:15:\"read-meta-title\";s:12:\"Read
Message\";s:16:\"msg-spam-success\";s:23:\"Message
marked as spam!\";s:12:\"user-blocked\";s:69:\"User
blocked! You will not receive any other messages from this
user!\";s:9:\"no-outbox\";s:17:\"No sent
messages!\";s:12:\"outbox-title\";s:6:\"OUTBOX\";s:17:\"outbox-meta-title\";s:13:\"Sent
Messages\";s:8:\"no-inbox\";s:16:\"No new
messages!\";s:11:\"inbox-title\";s:5:\"INBOX\";s:16:\"inbox-meta-title\";s:13:\"Read
Messages\";s:10:\"msgs-empty\";s:35:\"Please select at
least one
message!\";s:19:\"msgs-delete-success\";s:26:\"Selected
messages deleted!\";s:11:\"msg-invalid\";s:51:\"Invalid
message! Are you sure this message
exists!?\";s:14:\"action-invalid\";s:44:\"Invalid
action! What exactly did you
click!?\";s:18:\"msg-delete-success\";s:16:\"Message
deleted!\";s:14:\"compose-button\";s:12:\"SEND
MESSAGE\";s:7:\"send-to\";s:2:\"To\";s:7:\"subject\";s:7:\"Subject\";s:12:\"compose-help\";s:28:\"Write
a new private
message!\";s:13:\"compose-title\";s:15:\"COMPOSE
MESSAGE\";s:18:\"compose-meta-title\";s:23:\"Manage
Private
Messages\";s:15:\"compose-success\";s:13:\"Message
sent!\";s:14:\"subject-length\";s:48:\"Subject cannot
contain more than 255
characters!\";s:13:\"subject-empty\";s:29:\"Subject
cannot be left
blank!\";s:16:\"receiver-invalid\";s:53:\"Invalid
receiver! Are you sure this username
exists!?\";s:15:\"receiver-friend\";s:65:\"You must be
friends with '%s' to send him/her
messages!\";s:11:\"receiver-no\";s:48:\"Recipient does
not want to receive any
messages!\";s:16:\"receiver-blocked\";s:48:\"You cannot
send messages to %s! You are
blocked!\";s:14:\"receiver-empty\";s:37:\"Please
specify at least one
receiver!\";s:13:\"request-login\";s:48:\"Please login
to approve/deny friendship
request!\";s:15:\"request-invalid\";s:44:\"Invalid
action! What exactly did you
click!?\";s:12:\"request-deny\";s:18:\"Friendship
denied!\";s:15:\"request-approve\";s:20:\"Friendship
accepted!\";s:25:\"subscription-remove-login\";s:37:\"Please
login to cancel
subscriptions!\";s:20:\"subscription-invalid\";s:53:\"Invalid
subscription! Are you sure this user
exists!?\";s:27:\"subscription-remove-success\";s:22:\"Subscription
canceled!\";s:18:\"subscriber-invalid\";s:51:\"Invalid
subscriber! Are you sure this user
exists!?\";s:23:\"subscriber-remove-login\";s:35:\"Please
login to remove
subscribers!\";s:25:\"subscriber-remove-success\";s:19:\"Subscriber
removed!\";s:14:\"friend-invalid\";s:47:\"Invalid
friend! Are you sure this user
exists!?\";s:19:\"friend-remove-login\";s:31:\"Please
login to remove
friends!\";s:21:\"friend-remove-success\";s:19:\"Friendship
removed!\";s:16:\"no-subscriptions\";s:39:\"You did not
subscribe to any users
yet!\";s:27:\"subscription-delete-confirm\";s:52:\"Are
you sure you want to unsubscribe from this
user!\";s:24:\"subscription-delete-help\";s:36:\"Click
to unsubscribe from this
user!\";s:22:\"my-subscriptions-title\";s:25:\"MANAGE
YOUR
SUBSCRIPTIONS\";s:22:\"subscriber-delete-help\";s:32:\"Click
to delete this
subscriber!\";s:25:\"subscriber-delete-confirm\";s:48:\"Are
you sure you want to remove this
subscriber?\";s:14:\"no-subscribers\";s:34:\"You dont
have any subscribers
yet!\";s:20:\"my-subscribers-title\";s:23:\"MANAGE YOUR
SUBSCRIBERS\";s:33:\"my-favorite-photos-delete-confirm\";s:68:\"Are
you sure you want to delete this photo from your favorites
list?\";s:30:\"my-favorite-photos-delete-help\";s:51:\"Click
to remove this photo from your favorite
list!\";s:18:\"no-favorite-photos\";s:53:\"You did not
add any photos to your favorite list
yet!\";s:24:\"my-favorite-photos-title\";s:27:\"MANAGE
YOUR FAVORITE PHOTOS\";s:12:\"lost-success\";s:85:\"A
email containing your username and/or password has been sent to your email
address!\";s:10:\"lost-title\";s:21:\"RECOVER YOUR
PASSWORD\";s:15:\"lost-meta-title\";s:38:\"Recover your
username and/or
password!\";s:16:\"no-videos-viewed\";s:33:\"You did
not watch any videos
yet!\";s:27:\"my-view-history-delete-help\";s:47:\"Click
to remove this video from your view
list!\";s:30:\"my-view-history-delete-confirm\";s:63:\"Are
you sure you want to remove this video from your view
list?\";s:21:\"my-view-history-title\";s:36:\"MANAGE
YOUR PREVIOUSLY VIEWED
VIDEOS\";s:21:\"friend-remove-confirm\";s:44:\"Are you
sure you want to remove this
friend?\";s:10:\"no-friends\";s:33:\"You dont have any
friends yet
:-(\";s:16:\"my-friends-title\";s:19:\"MANAGE YOUR
FRIENDS\";s:23:\"favorite-delete-confirm\";s:67:\"Are
you sure you want to remove this video from your favorite
list?\";s:12:\"no-favorites\";s:53:\"You did not add
any videos to your favorite list
yet!\";s:20:\"favorite-delete-help\";s:52:\"Click to
remove this video from your favorites
list!\";s:18:\"my-favorites-title\";s:27:\"MANAGE YOUR
FAVORITE VIDEOS\";s:12:\"my-favorites\";s:18:\"My
Favorite Videos\";s:12:\"confirm-sent\";s:72:\"A email
with your verification link has been sent to your email
address!\";s:15:\"confirm-missing\";s:53:\"There is no
user registered with this email
address!?\";s:12:\"user-invalid\";s:45:\"Invalid user!
Are you sure this user
exists!?\";s:15:\"confirm-success\";s:24:\"Your email
was verified!\";s:14:\"confirm-expire\";s:41:\"This
email verification code has
expired!\";s:16:\"account-verified\";s:41:\"You already
confirmed your email
address!\";s:14:\"confirm-button\";s:10:\"SEND
EMAIL\";s:13:\"confirm-title\";s:35:\"DID NOT RECEIVE
CONFIRMATION
EMAIL?\";s:18:\"confirm-meta-title\";s:27:\"Confirm
your email address!\";s:9:\"no-albums\";s:40:\"You did
not upload any photo ulbums
yet!\";s:17:\"album-delete-help\";s:43:\"Click to
completly delete this photo
album!\";s:15:\"album-edit-help\";s:31:\"Click to edit
this photo
album!\";s:15:\"my-albums-title\";s:19:\"MANAGE PHOTO
ALBUMS\";s:18:\"my-favorite-photos\";s:18:\"My Favorite
Photos\";s:9:\"my-albums\";s:9:\"My
Albums\";s:9:\"spam-help\";s:42:\"View your private
messages marked as
spam!\";s:11:\"outbox-help\";s:32:\"View your sent
private messages!\";s:10:\"inbox-help\";s:31:\"View
your new private
messages!\";s:16:\"my-comments-help\";s:29:\"Manage
your profile
comments!\";s:21:\"my-subscriptions-help\";s:26:\"Manage
your
subscriptions!\";s:19:\"my-subscribers-help\";s:24:\"Manage
your
subscribers!\";s:15:\"my-friends-help\";s:20:\"Manage
your
friends!\";s:23:\"my-favorite-photos-help\";s:28:\"Manage
your favorite
photos!\";s:14:\"my-albums-help\";s:42:\"Upload, Manage
and Edit your photo
albums!\";s:17:\"my-playlists-help\";s:42:\"Add, Manage
and Edit your video
playlists!\";s:12:\"my-playlists\";s:12:\"My
Playlists\";s:17:\"my-favorites-gelp\";s:28:\"Manage
your favorite
Videos!\";s:20:\"my-view-history-help\";s:44:\"Manage
you previously viewed videos
history!\";s:14:\"my-videos-help\";s:36:\"Upload,
Manage and Edit your
Videos!\";s:21:\"edit-advertising-help\";s:33:\"Add/Edit
your Advertising
Banner!\";s:23:\"edit-notifications-help\";s:32:\"Edit
your Notification
Settings!\";s:21:\"edit-preferences-help\";s:30:\"Edit
your Account
Preferences!\";s:17:\"edit-profile-help\";s:30:\"Edit
your Profile
Information!\";s:17:\"edit-account-help\";s:27:\"Edit
your Account
Settings!\";s:13:\"menu-messages\";s:8:\"MESSAGES\";s:11:\"menu-manage\";s:6:\"MANAGE\";s:16:\"menu-advertising\";s:11:\"ADVERTISING\";s:12:\"menu-profile\";s:7:\"PROFILE\";s:12:\"edit-picture\";s:20:\"Edit
Profile
Picture\";s:7:\"compose\";s:7:\"Compose\";s:6:\"outbox\";s:6:\"Outbox\";s:5:\"inbox\";s:5:\"Inbox\";s:11:\"my-comments\";s:11:\"My
Comments\";s:14:\"my-subscribers\";s:14:\"My
Subscribers\";s:16:\"my-subscriptions\";s:16:\"My
Subscriptions\";s:10:\"my-friends\";s:10:\"My
Friends\";s:15:\"my-view-history\";s:15:\"My View
History\";s:9:\"my-videos\";s:9:\"My
Videos\";s:16:\"edit-advertising\";s:16:\"Edit
Advertising\";s:18:\"edit-notifications\";s:18:\"Edit
Notifications\";s:16:\"edit-preferences\";s:16:\"Edit
Preferences\";s:12:\"edit-profile\";s:12:\"Edit
Profile\";s:12:\"edit-account\";s:12:\"Edit
Account\";s:14:\"signup-confirm\";s:76:\"Your account
was created! Please check your email for the verification
link!\";s:14:\"signup-approve\";s:81:\"Your account was
created! You will receive a email once your account is
approved!\";s:14:\"signup-success\";s:49:\"Your account
was successfuly created! Welcome
%s!\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:11:\"terms-empty\";s:78:\"You must agree to
our Terms of Service and Privacy Policy to create a
account!\";s:9:\"age-empty\";s:72:\"You must confirm
that you are at least %s years old to create a
account!\";s:10:\"city-empty\";s:23:\"Please enter your
city!\";s:15:\"country-invalid\";s:46:\"Invalid
country! What exactly did you
select!?\";s:13:\"country-empty\";s:27:\"Please select
your country!\";s:15:\"birthdate-empty\";s:51:\"Please
enter your complete birth date
(mm-dd-yyyy)!\";s:11:\"name-length\";s:61:\"Name must
contain at least 3 and no more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";s:12:\"gender-empty\";s:26:\"Please select
your gender!\";s:15:\"password-length\";s:65:\"Password
must contain at least %s and no more than %s
characters!\";s:14:\"password-empty\";s:36:\"Password
field cannot be left
blank!\";s:15:\"signup-disabled\";s:64:\"User
registration is currently disabled! Please try again
later!\";s:11:\"age-confirm\";s:42:\"I certify that i
am at least %s years
old!\";s:13:\"terms-confirm\";s:25:\"I agree to the %s
and %s!\";s:13:\"signup-button\";s:14:\"CREATE
ACCOUNT\";s:12:\"captcha-help\";s:36:\"Enter the code
from the above image!\";s:13:\"terms_confirm\";s:25:\"I
agree to the %s and %s!\";s:11:\"age_confirm\";s:42:\"I
certify that i am at least %s years
old!\";s:9:\"cant-read\";s:16:\"Can't
read?\";s:12:\"verification\";s:12:\"Verification\";s:12:\"signup-title\";s:23:\"CREATE
YOUR %s
ACCOUNT!\";s:12:\"login-failed\";s:35:\"Incorrect
username and/or
password!\";s:15:\"account-confirm\";s:52:\"You need to
verify your email before you can log
in!\";s:15:\"account-approve\";s:76:\"Your account is
valid, but the site administrator needs to approve it
first!\";s:17:\"account-suspended\";s:18:\"Account
Suspended!\";s:11:\"login-empty\";s:43:\"Please enter
your username and/or
password!\";s:12:\"login-button\";s:5:\"LOGIN\";s:8:\"remember\";s:12:\"Remember
me?\";s:16:\"confirm-question\";s:35:\"Did not receive
confirmation
email?\";s:13:\"lost-question\";s:35:\"Lost your
username and/or
password?\";s:11:\"login-title\";s:12:\"MEMBER
LOGIN\";s:8:\"deny-all\";s:46:\"Click to deny all
pending friendship
requests!\";s:10:\"accept-all\";s:48:\"Click to accept
all pending friendship
requests!\";s:14:\"requests-title\";s:38:\"FRIENDSHIP
REQUESTS THAT NEED
APPROVAL\";s:11:\"no-requests\";s:23:\"No friendship
requests!\";s:12:\"welcome-back\";s:12:\"Welcome
back\";s:14:\"dashboard-help\";s:83:\"You can easily
view, manage and control all your content and profile settings
here!\";s:16:\"recommended-none\";s:28:\"No recommended
videos
found!\";s:17:\"recommended-title\";s:19:\"RECOMMENDED
FOR YOU\";s:15:\"dashboard-title\";s:12:\"MY
DASHBOARD\";s:20:\"dashboard-meta-title\";s:12:\"My
Dashboard\";s:11:\"banner-help\";s:38:\"Add or update
your advertising
banner!\";s:12:\"banner-title\";s:30:\"EDIT OR ADD
ADVERTISING
BANNER\";s:17:\"banner-meta-title\";s:23:\"Edit
Advertising
Banner\";s:12:\"banner-added\";s:95:\"Advertising
added! Your advertising will appear on the site once the administrator
approves
it!\";s:14:\"banner-updated\";s:53:\"Advertising
updated! Awaiting administrator
approval!\";s:18:\"banner-url-invalid\";s:50:\"Advertising
banner URL is not a valid URL
address!\";s:16:\"banner-url-empty\";s:44:\"Advertising
banner URL cannot be left
blank!\";s:19:\"banner-type-invalid\";s:55:\"Invalid
advertising type! What exactly did you
select!?\";s:25:\"banner-image-type-invalid\";s:61:\"Invalid
advertising image type! What exactly did you
select!?\";s:19:\"banner-image-select\";s:39:\"Please
upload a image advertising
file!\";s:17:\"banner-image-file\";s:52:\"Advertising
image file is not a valid uploaded
file!\";s:19:\"banner-image-upload\";s:80:\"Invalid
advertising image file! File is not a valid image (renders
incorrectly)!\";s:19:\"banner-image-format\";s:90:\"Invalid
advertising image file! Format not supported! Supported formats: jpg, png
and
gif!\";s:20:\"banner-image-invalid\";s:56:\"Advertising
banner image URL is not a valid URL
address!\";s:18:\"banner-image-empty\";s:50:\"Advertising
banner image URL cannot be left
blank!\";s:17:\"banner-code-empty\";s:57:\"Please enter
the advertising banner html/javascript
code!\";s:18:\"banner-title-empty\";s:63:\"Please enter
the advertising banner title (used for the a
tag)!\";s:20:\"notifications-update\";s:20:\"UPDATE
NOTIFICATIONS\";s:28:\"notification-profile-comment\";s:23:\"Comments
on my
profile!\";s:20:\"notification-message\";s:26:\"Receive
a private
message!\";s:19:\"notification-friend\";s:38:\"Approve
or deny my friendship
request!\";s:27:\"notification-friend-request\";s:19:\"Friendship
request!\";s:23:\"notification-subscribes\";s:34:\"Someone
subscribers to my
profile!\";s:25:\"notification-video-rating\";s:24:\"Someone
rates my
videos!\";s:26:\"notification-video-comment\";s:30:\"Someone
comments on my
videos!\";s:26:\"notification-video-approve\";s:32:\"Videos
are approved or
rejected!\";s:18:\"notifications-help\";s:74:\"Edit
your notifications! When do you want to receive emails from the
site!\";s:19:\"notifications-title\";s:18:\"EDIT
NOTIFICATIONS\";s:24:\"notifications-meta-title\";s:18:\"Edit
Notifications\";s:21:\"notifications-success\";s:21:\"Notifications
Updated\";s:22:\"allow-private-messages\";s:22:\"Allow
Private
Messages\";s:21:\"allow-friend-requests\";s:25:\"Allow
Friendship
Requests\";s:22:\"allow-profile-comments\";s:22:\"Allow
Profile
Comments\";s:18:\"show-my-activities\";s:18:\"Show My
Activities\";s:21:\"show-my-subscriptions\";s:21:\"Show
My
Subscriptions\";s:19:\"show-my-subscribers\";s:19:\"Show
My Subscribers\";s:15:\"show-my-friends\";s:15:\"Show
My
Friends\";s:23:\"show-my-favorite-photos\";s:23:\"Show
My Favorite
Photos\";s:20:\"show-my-photo-albums\";s:20:\"Show My
Photo
Albums\";s:20:\"show-my-rated-videos\";s:20:\"Show My
Rated
Videos\";s:23:\"show-my-video-playlists\";s:23:\"Show
My Video
Playlists\";s:23:\"show-my-favorite-videos\";s:23:\"Show
My Favorite
Videos\";s:21:\"show-my-video-history\";s:26:\"Show My
Video View
History\";s:14:\"show-my-videos\";s:14:\"Show My
Videos\";s:21:\"show-profile-comments\";s:21:\"Show
Profile Comments\";s:12:\"show-profile\";s:12:\"Show
Profile\";s:16:\"preferences-help\";s:64:\"Edit profile
preferences, profile parts and privacy
preferences!\";s:17:\"preferences-title\";s:24:\"EDIT
PROFILE
PREFERENCES\";s:22:\"preferences-meta-title\";s:24:\"Edit
Profile
Preferences\";s:19:\"preferences-success\";s:20:\"Preferences
Updated!\";s:14:\"profile-update\";s:14:\"UPDATE
PROFILE\";s:9:\"turn-offs\";s:9:\"Turn
Offs\";s:8:\"turn-ons\";s:8:\"Turn
Ons\";s:5:\"books\";s:5:\"Books\";s:5:\"music\";s:5:\"Music\";s:6:\"movies\";s:6:\"Movies\";s:9:\"interests\";s:21:\"Interests
and
Hobbies\";s:7:\"company\";s:7:\"Company\";s:6:\"school\";s:6:\"School\";s:10:\"occupation\";s:10:\"Occupation\";s:5:\"about\";s:5:\"About\";s:3:\"zip\";s:3:\"Zip\";s:9:\"birthdate\";s:10:\"Birth
Date\";s:18:\"random-information\";s:18:\"Random
Information\";s:20:\"location-information\";s:20:\"Location
Information\";s:20:\"personal-information\";s:20:\"Personal
Information\";s:12:\"profile-help\";s:110:\"You can
edit your profile information, location information, personal information
and random information
here!\";s:13:\"profile-title\";s:12:\"EDIT
PROFILE\";s:18:\"profile-meta-title\";s:12:\"Edit
Profile\";s:15:\"profile-success\";s:16:\"Profile
updated!\";s:18:\"interested-invalid\";s:49:\"Invalid
interested! What exactly did you
select!?\";s:16:\"relation-invalid\";s:47:\"Invalid
relation! What exactly did you
select!?\";s:14:\"gender-invalid\";s:45:\"Invalid
gender! What exactly did you
select!?\";s:15:\"website-invalid\";s:48:\"Personal
website URL is not a valid URL
address!\";s:17:\"birthdate-invalid\";s:39:\"Selected
birthdate is not a valid
date!\";s:20:\"birthdate-incomplete\";s:37:\"Please
select your complete
birthday!\";s:11:\"avatar-crop\";s:11:\"CROP
AVATAR\";s:13:\"avatar-upload\";s:13:\"UPLOAD
AVATAR\";s:14:\"avatar-current\";s:14:\"Current
Avatar\";s:11:\"avatar-help\";s:41:\"You can change
your profile picture
here!\";s:17:\"avatar-meta-title\";s:20:\"Edit Profile
Picture\";s:12:\"avatar-title\";s:20:\"EDIT PROFILE
PICTURE\";s:13:\"avatar-failed\";s:54:\"Failed to
update profile avatar! Invalid
permissions!?\";s:14:\"avatar-success\";s:32:\"Your
profile avatar was
updated!\";s:15:\"account-success\";s:25:\"Account
settings
updated!\";s:18:\"password-incorrect\";s:95:\"Invalid
account password! You need to provide yout old password to update the
account
settings!\";s:17:\"password-mismatch\";s:52:\"Password
and confirmation password are not the
same!\";s:10:\"email-used\";s:38:\"Email is already
used by another
user!\";s:13:\"email-invalid\";s:35:\"Email is not a
valid email
address!\";s:11:\"email-empty\";s:33:\"Email field
cannot be left
blank!\";s:16:\"username-changed\";s:44:\"You are not
allowed to change your
username!\";s:13:\"username-used\";s:54:\"Username is
already used by another user on this
site!\";s:16:\"username-invalid\";s:67:\"Username can
contain only letters, numbers, dashes and
underscores!\";s:15:\"username-length\";s:43:\"Username
can contain maximum %s
characters!\";s:14:\"username-empty\";s:37:\"Username
field cannot be left
blank!\";s:14:\"account-locked\";s:119:\"Account is
locked! You cannot edit your account settings! Please contact the site
administrator to unlock your
account!\";s:14:\"account-update\";s:14:\"ACCOUNT
UPDATE\";s:19:\"account-update-help\";s:68:\"You need
to enter your old password to change your account
settings!\";s:12:\"password-old\";s:12:\"Old
Password\";s:16:\"password-confirm\";s:16:\"Confirm
Password\";s:12:\"password-new\";s:12:\"New
Password\";s:12:\"account-help\";s:64:\"You can edit
your username, email and change your password
here!\";s:13:\"account-title\";s:21:\"EDIT ACCOUNT
SETTINGS\";s:18:\"account-meta-title\";s:21:\"Edit
Account Settings\";}'),(136,'en-UK','frontpage','Frontpage Frontend
Language
File','frontend','a:5:{s:10:\"no-watched\";s:22:\"No watched
videos
yet!\";s:7:\"refresh\";s:7:\"Refresh\";s:10:\"meta-title\";s:69:\"Free
Porn Movies, Sex Clips, Porno, Porn Tube, XXX and Porn Videos
at\";s:13:\"watched-title\";s:30:\"BEING WATCHED FREE
PORN VIDEOS\";s:12:\"recent-title\";s:28:\"MOST RECENT
FREE PORN VIDEOS\";}'),(137,'en-UK','upload','Upload Library Error
Codes/Messages','frontend','a:12:{s:10:\"file-valid\";s:43:\"Uploaded
file is not a valid uploaded
file!\";s:11:\"file-select\";s:31:\"Please select a
file to upload!\";s:12:\"file-invalid\";s:56:\"Uploaded
file format is invalid! Allowed extensions:
%s!\";s:10:\"file-limit\";s:66:\"Uploaded file exceeds
the maximum allowed filesize of %s
MB!'\";s:13:\"error-unknown\";s:44:\"No error
code available! Application
error!?\";s:7:\"error-8\";s:33:\"File upload stopped by
extension!\";s:7:\"error-7\";s:29:\"Failed to write
file to disk!\";s:7:\"error-5\";s:27:\"Missing a
temporary folder!\";s:7:\"error-4\";s:21:\"No file was
uploaded!\";s:7:\"error-3\";s:46:\"The uploaded file
was only partially
uploaded!\";s:7:\"error-2\";s:69:\"The uploaded file
exceeds the MAX_FILE_SIZE defined in the html
form!\";s:7:\"error-1\";s:73:\"The uploaded file
exceeds the maximum upload_filesize defined in
php.ini!\";}'),(134,'en-UK','video','Frontend Video Module Language
File','frontend','a:74:{s:13:\"download-link\";s:37:\"Click
to download video in %s
format!\";s:21:\"favorite-remove-login\";s:55:\"Please
login to remove videos from your favorites
list!\";s:16:\"favorite-invalid\";s:56:\"Invalid video
favorite! Are you sure this video
exists!?\";s:23:\"favorite-remove-success\";s:39:\"Video
removed from your favorites
list!\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate videos!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:12:\"favorite-own\";s:43:\"You cannot add
your own video to
favorites!\";s:16:\"favorite-success\";s:39:\"Video
added to your %sFavorites%s
list!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:57:\"Invalid
video comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:29:\"Your comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:16:\"comment-allow-no\";s:51:\"You are not
allowed to post comments on this
video!\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:15:\"submenu-related\";s:14:\"RELATED
VIDEOS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:17:\"video-not-playing\";s:18:\"Video
not
playing!\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:13:\"favorite-help\";s:38:\"Add
this video to your favorites
list!\";s:10:\"embed-help\";s:30:\"Embed this video on
your site!\";s:9:\"flag-help\";s:16:\"Flag this
video!\";s:13:\"video-private\";s:74:\"This video is
private! You need to be friends with %s to watch this
video!\";s:9:\"uploading\";s:24:\"UPLOADING...PLEASE
WAIT!\";s:6:\"no-tag\";s:38:\"No videos tagged
'%s'
found!\";s:9:\"tag-title\";s:38:\"FREE PORN VIDEOS
TAGGED
'%s'\";s:14:\"tag-meta-title\";s:32:\"Free
Porn Videos Tagged %s at
%s\";s:12:\"search-title\";s:39:\"VIDEO SEARCH RESULTS
FOR
'%s'\";s:9:\"no-search\";s:51:\"No
videos found while searching for
'%s'!\";s:17:\"search-meta-title\";s:21:\"Search
Results for %s\";s:15:\"edit-guidelines\";s:15:\"EDIT
GUIDELINES\";s:11:\"edit-button\";s:12:\"UPDATE
VIDEO\";s:5:\"thumb\";s:5:\"Thumb\";s:14:\"allow-download\";s:14:\"Allow
Download\";s:13:\"allow-comment\";s:13:\"Allow
Comment\";s:12:\"allow-rating\";s:12:\"Allow
Rating\";s:11:\"allow-embed\";s:11:\"Allow
Embed\";s:10:\"edit-title\";s:13:\"EDITING
VIDEO\";s:12:\"edit-success\";s:14:\"Video
updated!\";s:13:\"video-invalid\";s:47:\"Invalid video!
Are you sure this video
exists!?\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:17:\"browse-meta-title\";s:25:\"%s Free Porn
Videos at %s\";s:12:\"browse-title\";s:19:\"%s FREE
PORN VIDEOS\";s:12:\"post-comment\";s:12:\"POST
COMMENT\";s:17:\"no-related-videos\";s:24:\"No related
videos
found!\";s:5:\"embed\";s:5:\"Embed\";s:17:\"upload-guidelines\";s:17:\"UPLOAD
GUIDELINES\";s:14:\"upload-approve\";s:63:\"Uploaded!
You will receive a email once your video is
approved!\";s:12:\"upload-queue\";s:84:\"Uploaded! You
will receive a email once your video has been processed and
published!\";s:14:\"upload-success\";s:70:\"Uploaded!
Your video will be processed and published in a few
minutes!\";s:12:\"tags-invalid\";s:79:\"Tags can
contain only letters, numbers, spaces and must be separated by
commas!\";s:16:\"category-invalid\";s:52:\"Invalid
video category! What exactly did you
check!?\";s:11:\"upload-perm\";s:38:\"Please login as a
%s to upload
videos!\";s:15:\"upload-disabled\";s:61:\"Video uploads
are currently disabled! Please try again
later!\";s:12:\"upload-video\";s:12:\"Upload
Video\";s:12:\"file-invalid\";s:44:\"Invalid file
format! Allowed extensions:
%s!\";s:10:\"file-empty\";s:41:\"Please select a video
file for uploading!\";s:10:\"tags-empty\";s:33:\"Please
enter tags for this
video!\";s:14:\"category-empty\";s:62:\"Please check at
least one and no more than 3 video
categories!\";s:12:\"title-length\";s:58:\"Video title
field cannot contain more than 100
characters!\";s:11:\"title-empty\";s:39:\"Video title
field cannot be left
blank!\";s:17:\"video-information\";s:17:\"VIDEO
INFORMATION\";s:10:\"video-file\";s:10:\"VIDEO
FILE\";}'),(135,'en-UK','global','Global Frontend Language
File','frontend','a:175:{s:8:\"add-link\";s:8:\"Add
Link\";i:2257;s:4:\"2257\";s:4:\"DMCA\";s:4:\"DMCA\";s:3:\"faq\";s:3:\"FAQ\";s:6:\"policy\";s:14:\"Privacy
Policy\";s:5:\"terms\";s:16:\"Terms of
Service\";s:4:\"date\";s:4:\"Date\";s:13:\"message-empty\";s:26:\"Please
enter your
message!\";s:8:\"december\";s:8:\"December\";s:8:\"november\";s:8:\"November\";s:7:\"october\";s:7:\"October\";s:9:\"september\";s:9:\"September\";s:6:\"august\";s:6:\"August\";s:4:\"july\";s:4:\"July\";s:4:\"june\";s:4:\"June\";s:3:\"may\";s:3:\"May\";s:5:\"april\";s:5:\"April\";s:5:\"march\";s:5:\"March\";s:8:\"february\";s:8:\"February\";s:7:\"january\";s:7:\"January\";s:10:\"spam-login\";s:38:\"Please
login to mark comments as
spam!\";s:12:\"spam-success\";s:27:\"Comment was marked
as spam!\";s:14:\"report-already\";s:16:\"Already
flagged!\";s:14:\"reason-invalid\";s:15:\"Invalid
reason!\";s:14:\"report-success\";s:12:\"Report
sent!\";s:9:\"very-good\";s:9:\"Very
Good\";s:4:\"good\";s:4:\"Good\";s:2:\"ok\";s:2:\"OK\";s:3:\"hmm\";s:3:\"Hmm\";s:5:\"works\";s:5:\"Works\";s:7:\"average\";s:7:\"Average\";s:4:\"poor\";s:4:\"Poor\";s:9:\"very-poor\";s:9:\"Very
poor\";s:8:\"whatever\";s:8:\"Whatever\";s:6:\"bleaks\";s:6:\"Bleaks\";s:13:\"no-categories\";s:18:\"No
categories
yet!\";s:4:\"next\";s:4:\"Next\";s:4:\"prev\";s:4:\"Prev\";s:13:\"being-watched\";s:13:\"Being
Watched\";s:7:\"longest\";s:7:\"Longest\";s:15:\"most-downloaded\";s:15:\"Most
Downloaded\";s:9:\"uploading\";s:23:\"UPLOADING...PLEASE
WAIT\";s:13:\"image-invalid\";s:44:\"Invalid file
format! Allowed extensions:
%s!\";s:11:\"image-empty\";s:48:\"Please upload at
least one image for this
album!\";s:8:\"optional\";s:8:\"optional\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:7:\"private\";s:7:\"Private\";s:6:\"public\";s:6:\"Public\";s:4:\"type\";s:4:\"Type\";s:4:\"link\";s:4:\"Link\";s:4:\"vids\";s:6:\"videos\";s:12:\"most-popular\";s:12:\"Most
Popular\";s:14:\"most-favorites\";s:14:\"Most
Favorites\";s:3:\"all\";s:3:\"All\";s:4:\"coms\";s:8:\"comments\";s:4:\"pics\";s:6:\"photos\";s:3:\"pic\";s:5:\"photo\";s:4:\"less\";s:4:\"less\";s:4:\"more\";s:4:\"more\";s:6:\"photos\";s:6:\"Photos\";s:6:\"albums\";s:6:\"Albums\";s:2:\"on\";s:2:\"on\";s:2:\"by\";s:2:\"by\";s:6:\"reason\";s:6:\"Reason\";s:7:\"content\";s:7:\"Content\";s:6:\"search\";s:6:\"Search\";s:7:\"404-msg\";s:57:\"We're
sorry, the page you requested cannot be
found!\";s:14:\"404-meta-title\";s:13:\"404 Not
Found\";s:6:\"remove\";s:6:\"Remove\";s:6:\"delete\";s:6:\"Delete\";s:4:\"edit\";s:4:\"Edit\";s:4:\"spam\";s:4:\"Spam\";s:13:\"login-already\";s:26:\"You
are already logged
in!\";s:8:\"password\";s:8:\"Password\";s:4:\"deny\";s:4:\"Deny\";s:6:\"accept\";s:6:\"Accept\";s:18:\"preferences-update\";s:18:\"UPDATE
PREFERENCES\";s:4:\"auto\";s:4:\"Auto\";s:7:\"approve\";s:7:\"Approve\";s:6:\"friend\";s:6:\"Friend\";s:7:\"friends\";s:7:\"Friends\";s:2:\"no\";s:2:\"No\";s:3:\"yes\";s:3:\"Yes\";s:4:\"city\";s:4:\"City\";s:3:\"age\";s:3:\"Age\";s:7:\"country\";s:7:\"Country\";s:7:\"website\";s:7:\"Website\";s:10:\"boys-girls\";s:14:\"Boys
and
Girls\";s:5:\"girls\";s:5:\"Girls\";s:4:\"boys\";s:4:\"Boys\";s:4:\"open\";s:4:\"Open\";s:5:\"taken\";s:5:\"Taken\";s:6:\"single\";s:6:\"Single\";s:6:\"hidden\";s:6:\"Hidden\";s:6:\"female\";s:6:\"Female\";s:4:\"male\";s:4:\"Male\";s:10:\"interested\";s:13:\"Interested
In\";s:8:\"relation\";s:8:\"Relation\";s:6:\"gender\";s:6:\"Gender\";s:8:\"username\";s:8:\"Username\";s:7:\"message\";s:7:\"Message\";s:5:\"email\";s:5:\"Email\";s:4:\"name\";s:4:\"Name\";s:5:\"added\";s:5:\"Added\";s:4:\"from\";s:4:\"From\";s:8:\"favorite\";s:8:\"Favorite\";s:5:\"share\";s:5:\"Share\";s:4:\"flag\";s:4:\"Flag\";s:5:\"votes\";s:5:\"votes\";s:4:\"vote\";s:4:\"vote\";s:5:\"views\";s:5:\"views\";s:4:\"view\";s:4:\"view\";s:2:\"of\";s:2:\"of\";s:2:\"to\";s:2:\"to\";s:7:\"showing\";s:7:\"Showing\";s:11:\"most-recent\";s:11:\"Most
Recent\";s:2:\"at\";s:2:\"at\";s:10:\"this-years\";s:16:\"This
Year's\";s:11:\"this-months\";s:17:\"This
Month's\";s:10:\"this-weeks\";s:16:\"This
Week's\";s:10:\"yesterdays\";s:16:\"Yesterday's\";s:6:\"todays\";s:12:\"Today's\";s:14:\"database-error\";s:52:\"Failed
to create database entry! Application
Error!?\";s:10:\"file-error\";s:49:\"Failed to move
uploaded file! Application
Error!?\";s:6:\"cancel\";s:6:\"Cancel\";s:4:\"tags\";s:4:\"Tags\";s:8:\"category\";s:8:\"Category\";s:11:\"description\";s:11:\"Description\";s:5:\"title\";s:5:\"Title\";s:4:\"file\";s:4:\"File\";s:4:\"NEXT\";s:4:\"NEXT\";s:4:\"PREV\";s:4:\"PREV\";s:5:\"LINKS\";s:5:\"LINKS\";s:4:\"help\";s:4:\"Help\";s:5:\"login\";s:5:\"Login\";s:6:\"signup\";s:6:\"Signup\";s:7:\"log-out\";s:7:\"Log
Out\";s:7:\"profile\";s:7:\"Profile\";s:9:\"dashboard\";s:9:\"Dashboard\";s:7:\"welcome\";s:7:\"Welcome\";s:10:\"no-watched\";s:22:\"No
watched videos yet!\";s:9:\"no-videos\";s:14:\"No
videos
yet!\";s:10:\"CATEGORIES\";s:10:\"CATEGORIES\";s:2:\"go\";s:2:\"Go\";s:5:\"users\";s:5:\"Users\";s:7:\"premium\";s:7:\"Premium\";s:5:\"forum\";s:5:\"Forum\";s:6:\"upload\";s:6:\"Upload\";s:9:\"community\";s:9:\"Community\";s:9:\"pornstars\";s:9:\"Pornstars\";s:5:\"years\";s:5:\"years\";s:4:\"year\";s:4:\"year\";s:5:\"weeks\";s:5:\"weeks\";s:4:\"week\";s:4:\"week\";s:6:\"months\";s:6:\"months\";s:5:\"month\";s:5:\"month\";s:7:\"minutes\";s:7:\"minutes\";s:8:\"from-now\";s:8:\"from
now\";s:3:\"ago\";s:3:\"ago\";s:6:\"minute\";s:6:\"minute\";s:7:\"seconds\";s:7:\"seconds\";s:6:\"second\";s:6:\"second\";s:5:\"hours\";s:5:\"hours\";s:4:\"hour\";s:4:\"hour\";s:14:\"most-discussed\";s:14:\"Most
Discussed\";s:9:\"top-rated\";s:9:\"Top
Rated\";s:7:\"popular\";s:7:\"Popular\";s:6:\"recent\";s:6:\"Recent\";s:10:\"categories\";s:10:\"Categories\";s:6:\"videos\";s:6:\"Videos\";s:4:\"home\";s:4:\"Home\";}');
/*!40000
ALTER TABLE `language_files` ENABLE KEYS */;
UNLOCK TABLES;