Page MenuHomeIn-Portal Phabricator

in-portal
No OneTemporary

File Metadata

Created
Thu, Jun 19, 12:36 AM

in-portal

This file is larger than 256 KB, so syntax highlighting was skipped.
Index: branches/unlabeled/unlabeled-1.2.2/kernel/admin/include/toolbar/sendmail.php
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/kernel/admin/include/toolbar/sendmail.php (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/kernel/admin/include/toolbar/sendmail.php (revision 8062)
@@ -0,0 +1,100 @@
+<?php
+global $rootURL,$envar, $objUsers,$objGroups, $reciplist, $recip_ids,$addr_list, $adminURL;
+
+$editor_url = $adminURL."/editor";
+$reciplist = array();
+$addrs = array();
+$id_count=0;
+
+if (isset($_POST['idtype'])) {
+ switch ($_POST['idtype']) {
+ case "user":
+ $recip_ids = $_POST["idlist"];
+ $idlist = explode(",",$recip_ids);
+ $r = '';
+ foreach($idlist as $id)
+ {
+ $u = $objUsers->GetItemByField("ResourceId",$id);
+ $r .= $u->Get("FirstName")." ".$u->Get("LastName");
+ $r .="&lt;".$u->Get("Email")."&gt;";
+ $addr_list[] = $u->Get("Email");
+ $reciplist[] = $r;
+ $r = "";
+ }
+ $recip_ids = implode(",",$idlist);
+ break;
+
+ case "group":
+ $recip_ids = $_POST["idlist"];
+ $idlist = explode(",",$recip_ids);
+ foreach($idlist as $id)
+ {
+ $g = $objGroups->GetItem($id);
+ if(is_object($g))
+ {
+ $reciplist[] .= "&lt;".$g->Get("Name")."&gt;";
+ $ulist = $g->GetUserList();
+ foreach($ulist as $uid)
+ {
+ $u = $objUsers->GetItem($uid);
+ $addr_list[] = $u->Get("Email");
+ }
+ }
+ }
+ $recip_ids = implode(",",$idlist);
+ break;
+ }
+}
+print <<<END
+
+<script language="Javascript">
+<!--
+
+var idcount = $id_count;
+
+rootPath = '$editor_url'+'/';
+
+function DataIsValid(f)
+{
+ var result=true;
+
+ s = document.getElementById("valSubject");
+ if(f.subject.value.length==0)
+ {
+ result = false;
+ s.style.display = "";
+ }
+ else
+ s.style.display = "none";
+
+ return result;
+}
+
+function InitValidation()
+{
+ var ValContainers = document.body.getElementsByTagName("SPAN");
+
+ for (var i = 0; i < ValContainers.length; i++)
+ if (ValContainers[i].className=="validation_error")
+ ValContainers[i].style.display="none";
+
+}
+
+function SendMail()
+{
+ f = document.getElementById('sendmail');
+ if (f.onsubmit) f.onsubmit();
+ if(DataIsValid(f))
+ f.submit();
+}
+
+
+//-->
+</script>
+
+
+END;
+?>
+
+
+
Property changes on: branches/unlabeled/unlabeled-1.2.2/kernel/admin/include/toolbar/sendmail.php
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.2
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: branches/unlabeled/unlabeled-1.2.2/system/user_files
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/system/user_files (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/system/user_files (revision 8062)
Property changes on: branches/unlabeled/unlabeled-1.2.2/system/user_files
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,2 ##
+Documents
+Images
Index: branches/unlabeled/unlabeled-1.2.2/admin/install/upgrades/inportal_upgrade_v4.0.2.php
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/admin/install/upgrades/inportal_upgrade_v4.0.2.php (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/admin/install/upgrades/inportal_upgrade_v4.0.2.php (revision 8062)
@@ -0,0 +1,8 @@
+<?php
+ require_once FULL_PATH.'/core/install/upgrades.php'; // k4_include_once doesn't globalize $upgrade_class :(
+
+ $upgrade = new $upgrade_class();
+ /* @var $upgrade CoreUpgrades */
+
+ $upgrade->Upgrade_4_0_2('after');
+?>
\ No newline at end of file
Property changes on: branches/unlabeled/unlabeled-1.2.2/admin/install/upgrades/inportal_upgrade_v4.0.2.php
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.2
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: branches/unlabeled/unlabeled-1.2.2/core/kernel/utility/email_send.php
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/core/kernel/utility/email_send.php (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/core/kernel/utility/email_send.php (revision 8062)
@@ -0,0 +1,1944 @@
+<?php
+
+ /**
+ * Class used to compose email message (using MIME standarts) and send it via mail function or via SMTP server
+ *
+ */
+ class kEmailSendingHelper extends kHelper {
+
+ /**
+ * headers of main header part
+ *
+ * @var Array
+ */
+ var $headers = Array ();
+
+ /**
+ * Tells if all message parts were combined together
+ *
+ * @var int
+ */
+ var $bodyPartNumber = false;
+
+ /**
+ * Composed message parts
+ *
+ * @var Array
+ */
+ var $parts = Array();
+
+ /**
+ * Lines separator by MIME standart
+ *
+ * @var string
+ */
+ var $line_break = "\n";
+
+ /**
+ * Charset used for message composing
+ *
+ * @var string
+ */
+ var $charset = 'utf-8';
+
+ /**
+ * Name of mailer program (X-Mailer header)
+ *
+ * @var string
+ */
+ var $mailerName = '';
+
+ /**
+ * Options used for message content-type & structure guessing
+ *
+ * @var Array
+ */
+ var $guessOptions = Array ();
+
+ /**
+ * Send messages using selected method
+ *
+ * @var string
+ */
+ var $sendMethod = 'Mail';
+
+ /**
+ * Parameters used to initiate SMTP server connection
+ *
+ * @var Array
+ */
+ var $smtpParams = Array ();
+
+ /**
+ * List of supported authentication methods, in preferential order.
+ * @var array
+ * @access public
+ */
+ var $smtpAuthMethods = Array('CRAM-MD5', 'LOGIN', 'PLAIN');
+
+ /**
+ * The socket resource being used to connect to the SMTP server.
+ * @var kSocket
+ * @access private
+ */
+ var $smtpSocket = null;
+
+ /**
+ * The most recent server response code.
+ * @var int
+ * @access private
+ */
+ var $smtpResponceCode = -1;
+
+ /**
+ * The most recent server response arguments.
+ * @var array
+ * @access private
+ */
+ var $smtpRespoceArguments = Array();
+
+ /**
+ * Stores detected features of the SMTP server.
+ * @var array
+ * @access private
+ */
+ var $smtpFeatures = Array();
+
+
+ function kEmailSendingHelper()
+ {
+ parent::kHelper();
+
+ // set default guess options
+ $this->guessOptions = Array (
+ 'attachments' => Array(),
+ 'inline_attachments' => Array (),
+ 'text_part' => false,
+ 'html_part' => false,
+ );
+
+ // read SMTP server connection params from config
+ $smtp_mapping = Array ('server' => 'Smtp_Server', 'port' => 'Smtp_Port');
+ if ($this->Application->ConfigValue('Smtp_Authenticate')) {
+ $smtp_mapping['username'] = 'Smtp_User';
+ $smtp_mapping['password'] = 'Smtp_Pass';
+ }
+
+ foreach ($smtp_mapping as $smtp_name => $config_name) {
+ $this->smtpParams[$smtp_name] = $this->Application->ConfigValue($config_name);
+ }
+ $this->smtpParams['use_auth'] = isset($this->smtpParams['username']) ? true : false;
+ $this->smtpParams['localhost'] = 'localhost'; // The value to give when sending EHLO or HELO.
+
+ $this->sendMethod = $this->smtpParams['server'] && $this->smtpParams['port'] ? 'SMTP' : 'Mail';
+
+ if ($this->sendMethod == 'SMTP') {
+ // create connection object if we will use SMTP
+ $this->smtpSocket =& $this->Application->makeClass('Socket');
+ }
+
+ $this->SetCharset(null, true);
+ }
+
+
+ /**
+ * Returns new message id header by sender's email address
+ *
+ * @param string $email_address email address
+ * @return string
+ */
+ function GenerateMessageID($email_address)
+ {
+ list ($micros, $seconds) = explode(' ', microtime());
+ list ($user, $domain) = explode('@', $email_address, 2);
+
+ $message_id = strftime('%Y%m%d%H%M%S', $seconds).substr($micros, 1, 5).'.'.preg_replace('/[^A-Za-z]+/', '-', $user).'@'.$domain;
+
+ $this->SetHeader('Message-ID', '<'.$message_id.'>');
+ }
+
+ /**
+ * Returns extension of given filename
+ *
+ * @param string $filename
+ * @return string
+ */
+ function GetFilenameExtension($filename)
+ {
+ $last_dot = strrpos($filename, '.');
+ return $last_dot !== false ? substr($filename, $last_dot + 1) : '';
+ }
+
+ /**
+ * Creates boundary for part by number (only if it's missing)
+ *
+ * @param int $part_number
+ *
+ */
+
+ function CreatePartBoundary($part_number)
+ {
+ $part =& $this->parts[$part_number];
+ if (!isset($part['BOUNDARY'])) {
+ $part['BOUNDARY'] = md5(uniqid($part_number.time()));
+
+ }
+ }
+
+ /**
+ * Returns ready to use headers associative array of any message part by it's number
+ *
+ * @param int $part_number
+ * @return Array
+ */
+ function GetPartHeaders($part_number)
+ {
+ $part =& $this->parts[$part_number];
+
+ if (!isset($part['Content-Type'])) {
+ return $this->SetError('MISSING_CONTENT_TYPE');
+ }
+
+ $full_type = strtolower($part['Content-Type']);
+ list ($type, $sub_type) = explode('/', $full_type);
+
+ $headers['Content-Type'] = $full_type;
+ switch ($type) {
+ case 'text':
+ case 'image':
+ case 'audio':
+ case 'video':
+ case 'application':
+ case 'message':
+ // 1. update content-type header
+ if (isset($part['CHARSET'])) {
+ $headers['Content-Type'] .= '; charset='.$part['CHARSET'];
+ }
+ if (isset($part['NAME'])) {
+ $headers['Content-Type'] .= '; name="'.$part['NAME'].'"';
+ }
+
+ // 2. set content-transfer-encoding header
+ if (isset($part['Content-Transfer-Encoding'])) {
+ $headers['Content-Transfer-Encoding'] = $part['Content-Transfer-Encoding'];
+ }
+
+ // 3. set content-disposition header
+ if (isset($part['DISPOSITION']) && $part['DISPOSITION']) {
+ $headers['Content-Disposition'] = $part['DISPOSITION'];
+ if (isset($part['NAME'])) {
+ $headers['Content-Disposition'] .= '; filename="'.$part['NAME'].'"';
+ }
+ }
+ break;
+
+ case 'multipart':
+ switch ($sub_type) {
+ case 'alternative':
+ case 'related':
+ case 'mixed':
+ case 'parallel':
+ $this->CreatePartBoundary($part_number);
+ $headers['Content-Type'] .= '; boundary="'.$part['BOUNDARY'].'"';
+ break;
+
+ default:
+ return $this->SetError('INVALID_MULTIPART_SUBTYPE', Array($sub_type));
+ }
+ break;
+
+ default:
+ return $this->SetError('INVALID_CONTENT_TYPE', Array($full_type));
+ }
+
+ // set content-id if any
+ if (isset($part['Content-ID'])) {
+ $headers['Content-ID'] = '<'.$part['Content-ID'].'>';
+ }
+
+ return $headers;
+ }
+
+ function GetPartBody($part_number)
+ {
+ $part =& $this->parts[$part_number];
+
+ if (!isset($part['Content-Type'])) {
+ return $this->SetError('MISSING_CONTENT_TYPE');
+ }
+
+ $full_type = strtolower($part['Content-Type']);
+ list ($type, $sub_type) = explode('/', $full_type);
+
+ $body = '';
+ switch ($type) {
+ // compose text/binary content
+ case 'text':
+ case 'image':
+ case 'audio':
+ case 'video':
+ case 'application':
+ case 'message':
+ // 1. get content of part
+ if (isset($part['FILENAME'])) {
+ // content provided via absolute path to content containing file
+ $filename = $part['FILENAME'];
+ $file_size = filesize($filename);
+
+ $body = file_get_contents($filename);
+ if ($body === false) {
+ return $this->SetError('FILE_PART_OPEN_ERROR', Array($filename));
+ }
+
+ $actual_size = strlen($body);
+ if (($file_size === false || $actual_size > $file_size) && get_magic_quotes_runtime()) {
+ $body = stripslashes($body);
+ }
+
+ if ($file_size !== false && $actual_size != $file_size) {
+ return $this->SetError('FILE_PART_DATA_ERROR', Array($filename));
+ }
+ }
+ else {
+ // content provided directly as one of part keys
+ if (!isset($part['DATA'])) {
+ return $this->SetError('FILE_PART_DATA_MISSING');
+ }
+ $body =& $part['DATA'];
+ }
+
+ // 2. get part transfer encoding
+ $encoding = isset($part['Content-Transfer-Encoding']) ? strtolower($part['Content-Transfer-Encoding']) : '';
+ if (!in_array($encoding, Array ('', 'base64', 'quoted-printable', '7bit'))) {
+ return $this->SetError('INVALID_ENCODING', Array($encoding));
+ }
+
+ if ($encoding == 'base64') {
+ // split base64 encoded text by 76 symbols at line (MIME requirement)
+ $body = chunk_split( base64_encode($body) );
+ }
+ break;
+
+ case 'multipart':
+ // compose multipart message
+ switch ($sub_type) {
+ case 'alternative':
+ case 'related':
+ case 'mixed':
+ case 'parallel':
+ $this->CreatePartBoundary($part_number);
+ $boundary = $this->line_break.'--'.$part['BOUNDARY'];
+
+ foreach ($part['PARTS'] as $multipart_number) {
+ $body .= $boundary.$this->line_break;
+ $part_headers = $this->GetPartHeaders($multipart_number);
+ if ($part_headers === false) {
+ // some of sub-part headers were invalid
+ return false;
+ }
+
+ foreach ($part_headers as $header_name => $header_value) {
+ $body .= $header_name.': '.$header_value.$this->line_break;
+ }
+
+ $part_body = $this->GetPartBody($multipart_number);
+ if ($part_body === false) {
+ // part body was invalid
+ return false;
+ }
+
+ $body .= $this->line_break.$part_body;
+ }
+ $body .= $boundary.'--'.$this->line_break;
+ break;
+
+ default:
+ return $this->SetError('INVALID_MULTIPART_SUBTYPE', Array($sub_type));
+ }
+ break;
+ default:
+ return $this->SetError('INVALID_CONTENT_TYPE', Array($full_type));
+ }
+
+ return $body;
+ }
+
+ /**
+ * Applies quoted-printable encoding to specified text
+ *
+ * @param string $text
+ * @param string $header_charset
+ * @param int $break_lines
+ * @return unknown
+ */
+ function QuotedPrintableEncode($text, $header_charset = '', $break_lines = 1)
+ {
+ $ln = strlen($text);
+ $h = strlen($header_charset) > 0;
+ if ($h) {
+ $s = Array (
+ '=' => 1,
+ '?' => 1,
+ '_' => 1,
+ '(' => 1,
+ ')' => 1,
+ '<' => 1,
+ '>' => 1,
+ '@' => 1,
+ ',' => 1,
+ ';' => 1,
+ '"' => 1,
+ '\\' => 1,
+ /*
+ '/' => 1,
+ '[' => 1,
+ ']' => 1,
+ ':' => 1,
+ '.' => 1,
+ */
+ );
+
+ $b = $space = $break_lines = 0;
+ for ($i = 0; $i < $ln; $i++) {
+ if (isset($s[$text[$i]])) {
+ $b = 1;
+ break;
+ }
+
+ switch ($o = ord($text[$i])) {
+ case 9:
+ case 32:
+ $space = $i + 1;
+ $b = 1;
+ break 2;
+ case 10:
+ case 13:
+ break 2;
+ default:
+ if ($o < 32 || $o > 127) {
+ $b = 1;
+ break 2;
+ }
+ }
+ }
+
+ if($i == $ln) {
+ return $text;
+ }
+
+ if ($space > 0) {
+ return substr($text, 0, $space).($space < $ln ? $this->QuotedPrintableEncode(substr($text, $space), $header_charset, 0) : '');
+ }
+ }
+
+ for ($w = $e = '', $n = 0, $l = 0, $i = 0; $i < $ln; $i++) {
+ $c = $text[$i];
+ $o = ord($c);
+ $en = 0;
+ switch ($o) {
+ case 9:
+ case 32:
+ if (!$h) {
+ $w = $c;
+ $c = '';
+ }
+ else {
+ if ($b) {
+ if ($o == 32) {
+ $c = '_';
+ }
+ else {
+ $en = 1;
+ }
+ }
+ }
+ break;
+ case 10:
+ case 13:
+ if (strlen($w)) {
+ if ($break_lines && $l + 3 > 75) {
+ $e .= '='.$this->line_break;
+ $l = 0;
+ }
+
+ $e .= sprintf('=%02X', ord($w));
+ $l += 3;
+ $w = '';
+ }
+
+ $e .= $c;
+ if ($h) {
+ $e .= "\t";
+ }
+ $l = 0;
+ continue 2;
+ case 46:
+ case 70:
+ case 102:
+ $en = (!$h && ($l == 0 || $l + 1 > 75));
+ break;
+ default:
+ if ($o > 127 || $o < 32 || !strcmp($c, '=')) {
+ $en = 1;
+ }
+ elseif ($h && isset($s[$c])) {
+ $en = 1;
+ }
+ break;
+ }
+
+ if (strlen($w)) {
+ if ($break_lines && $l + 1 > 75) {
+ $e .= '='.$this->line_break;
+ $l = 0;
+ }
+ $e .= $w;
+ $l++;
+ $w = '';
+ }
+
+ if (strlen($c)) {
+ if ($en) {
+ $c = sprintf('=%02X', $o);
+ $el = 3;
+ $n = 1;
+ $b = 1;
+ }
+ else {
+ $el = 1;
+ }
+ if ($break_lines && $l + $el > 75) {
+ $e .= '='.$this->line_break;
+ $l = 0;
+ }
+ $e .= $c;
+ $l += $el;
+ }
+ }
+ if (strlen($w)) {
+ if ($break_lines && $l + 3 > 75) {
+ $e .= '='.$this->line_break;
+ }
+ $e .= sprintf('=%02X', ord($w));
+ }
+
+ return $h && $n ? '=?'.$header_charset.'?q?'.$e.'?=' : $e;
+ }
+
+ /**
+ * Sets message header + encodes is by quoted-printable using charset specified
+ *
+ * @param string $name
+ * @param string $value
+ * @param string $encoding_charset
+ */
+ function SetHeader($name, $value, $encoding_charset = '')
+ {
+ if ($encoding_charset) {
+ // actually for headers base64 method may give shorter result
+ $value = $this->QuotedPrintableEncode($value, $encoding_charset);
+ }
+
+ $this->headers[$name] = $value;
+ }
+
+ /**
+ * Sets header + automatically encodes it using default charset
+ *
+ * @param string $name
+ * @param string $value
+ */
+ function SetEncodedHeader($name, $value)
+ {
+ $this->SetHeader($name, $value, $this->charset);
+ }
+
+ /**
+ * Sets header which value is email and username +autoencode
+ *
+ * @param string $header
+ * @param string $address
+ * @param string $name
+ */
+ function SetEncodedEmailHeader($header, $address, $name)
+ {
+ $this->SetHeader($header, $this->QuotedPrintableEncode($name, $this->charset).' <'.$address.'>');
+ }
+
+ function SetMultipleEncodedEmailHeader($header, $addresses)
+ {
+ $value = '';
+ foreach ($addresses as $name => $address) {
+ $value .= $this->QuotedPrintableEncode($name, $this->charset).' <'.$address.'>, ';
+ }
+ $value = preg_replace('/(.*),$/', '\\1', $value);
+
+ $this->SetHeader($header, $value);
+ }
+
+
+ /**
+ * Adds new part to message and returns it's number
+ *
+ * @param Array $part_definition
+ * @param int $part_number number of new part
+ * @return int
+ */
+ function AddPart(&$part_definition, $part_number = false)
+ {
+ $part_number = $part_number !== false ? $part_number : count($this->parts);
+ $this->parts[$part_number] =& $part_definition;
+ return $part_number;
+ }
+
+ /**
+ * Returns text version of HTML document
+ *
+ * @param string $html
+ * @return string
+ */
+ function ConvertToText($html)
+ {
+ $search = Array (
+ "'(<\/td>.*)[\r\n]+(.*<td)'i",//formating text in tables
+ "'(<br[ ]?[\/]?>[\r\n]{0,2})|(<\/p>)|(<\/div>)|(<\/tr>)'i",
+ "'<head>(.*?)</head>'si",
+ "'<style(.*?)</style>'si",
+ "'<title>(.*?)</title>'si",
+ "'<script(.*?)</script>'si",
+// "'^[\s\n\r\t]+'", //strip all spacers & newlines in the begin of document
+// "'[\s\n\r\t]+$'", //strip all spacers & newlines in the end of document
+ "'&(quot|#34);'i",
+ "'&(amp|#38);'i",
+ "'&(lt|#60);'i",
+ "'&(gt|#62);'i",
+ "'&(nbsp|#160);'i",
+ "'&(iexcl|#161);'i",
+ "'&(cent|#162);'i",
+ "'&(pound|#163);'i",
+ "'&(copy|#169);'i",
+ "'&#(\d+);'e"
+ );
+
+ $replace = Array (
+ "\\1\t\\2",
+ "\n",
+ "",
+ "",
+ "",
+ "",
+// "",
+// "",
+ "\"",
+ "&",
+ "<",
+ ">",
+ " ",
+ chr(161),
+ chr(162),
+ chr(163),
+ chr(169),
+ "chr(\\1)"
+ );
+
+ return strip_tags( preg_replace ($search, $replace, $html) );
+ }
+
+ /**
+ * Add text OR html part to message (optionally encoded)
+ *
+ * @param string $text part's text
+ * @param bool $is_html this html part or not
+ * @param bool $encode encode message using quoted-printable encoding
+ *
+ * @return int number of created part
+ */
+ function CreateTextHtmlPart($text, $is_html = false, $encode = true)
+ {
+ if ($is_html) {
+ // if adding HTML part, then create plain-text part too
+ $this->CreateTextHtmlPart($this->ConvertToText($text));
+ }
+
+ // in case if text is from $_REQUEST, then line endings are "\r\n", but we need "\n" here
+
+ $text = str_replace("\r\n", "\n", $text); // possible case
+ $text = str_replace("\r", "\n", $text); // impossible case, but just in case replace this too
+
+ $definition = Array (
+ 'Content-Type' => $is_html ? 'text/html' : 'text/plain',
+ 'CHARSET' => $this->charset,
+ 'DATA' => $encode ? $this->QuotedPrintableEncode($text) : $text,
+ );
+
+ if ($encode) {
+ $definition['Content-Transfer-Encoding'] = 'quoted-printable';
+ }
+
+ $guess_name = $is_html ? 'html_part' : 'text_part';
+ $part_number = $this->guessOptions[$guess_name] !== false ? $this->guessOptions[$guess_name] : false;
+
+ $part_number = $this->AddPart($definition, $part_number);
+ $this->guessOptions[$guess_name] = $part_number;
+
+ return $part_number;
+ }
+
+ /**
+ * Adds attachment part to message
+ *
+ * @param string $file name of the file with attachment body
+ * @param string $attach_name name for attachment (name of file is used, when not specified)
+ * @param string $content_type content type for attachment
+ * @param string $content body of file to be attached
+ * @param bool $inline is attachment inline or not
+ *
+ * @return int number of created part
+ */
+ function AddAttachment($file = '', $attach_name = '', $content_type = '', $content = '', $inline = false)
+ {
+ $definition = Array (
+ 'Disposition' => $inline ? 'inline' : 'attachment',
+ 'Content-Type' => $content_type ? $content_type : 'automatic/name',
+ );
+
+ if ($file) {
+ // filename of attachment given
+ $definition['FileName'] = $file;
+ }
+
+ if ($attach_name) {
+ // name of attachment given
+ $definition['Name'] = $attach_name;
+ }
+
+ if ($content) {
+ // attachment data is given
+ $definition['Data'] = $content;
+ }
+
+ $definition =& $this->GetFileDefinition($definition);
+ $part_number = $this->AddPart($definition);
+
+ if ($inline) {
+ // it's inline attachment and needs content-id to be addressed by in message
+ $this->parts[$part_number]['Content-ID'] = md5(uniqid($part_number.time())).'.'.$this->GetFilenameExtension($attach_name ? $attach_name : $file);
+ }
+
+ $this->guessOptions[$inline ? 'inline_attachments' : 'attachments'][] = $part_number;
+
+ return $part_number;
+ }
+
+ /**
+ * Adds another MIME message as attachment to message being composed
+ *
+ * @param string $file name of the file with attachment body
+ * @param string $attach_name name for attachment (name of file is used, when not specified)
+ * @param string $content body of file to be attached
+ *
+ * @return int number of created part
+ */
+ function AddMessageAttachment($file = '', $attach_name = '', $content = '')
+ {
+ $part_number = $this->AddAttachment($file, $attach_name, 'message/rfc822', $content, true);
+ unset($this->parts[$part_number]['Content-ID']); // messages don't have content-id, but have inline disposition
+ return $part_number;
+ }
+
+ /**
+ * Creates multipart of specified type and returns it's number
+ *
+ * @param Array $part_numbers
+ * @param string $multipart_type = {alternative,related,mixed,paralell}
+ * @return int
+ */
+ function CreateMultipart($part_numbers, $multipart_type)
+ {
+ $types = Array ('alternative', 'related' , 'mixed', 'paralell');
+ if (!in_array($multipart_type, $types)) {
+ return $this->SetError('INVALID_MULTIPART_SUBTYPE', Array($multipart_type));
+ }
+
+ $definition = Array (
+ 'Content-Type' => 'multipart/'.$multipart_type,
+ 'PARTS' => $part_numbers,
+ );
+
+ return $this->AddPart($definition);
+ }
+
+ /**
+ * Creates missing content-id header for inline attachments
+ *
+ * @param int $part_number
+ */
+ function CreateContentID($part_number)
+ {
+ $part =& $this->parts[$part_number];
+ if (!isset($part['Content-ID']) && $part['DISPOSITION'] == 'inline') {
+ $part['Content-ID'] = md5(uniqid($part_number.time())).'.'.$this->GetFilenameExtension($part['NAME']);
+ }
+ }
+
+ /**
+ * Returns attachment part based on file used in attachment
+ *
+ * @param Array $file
+ * @return Array
+ */
+ function &GetFileDefinition ($file)
+ {
+ $name = '';
+ if (isset($file['Name'])) {
+ // if name is given directly, then use it
+ $name = $file['Name'];
+ }
+ else {
+ // auto-guess attachment name based on source filename
+ $name = isset($file['FileName']) ? basename($file['FileName']) : '';
+ }
+
+ if (!$name || (!isset($file['FileName']) && !isset($file['Data']))) {
+ // filename not specified || no filename + no direct file content
+ return $this->SetError('MISSING_FILE_DATA');
+ }
+
+ $encoding = 'base64';
+ if (isset($file['Content-Type'])) {
+ $content_type = $file['Content-Type'];
+ list ($type, $sub_type) = explode('/', $content_type);
+
+ switch ($type) {
+ case 'text':
+ case 'image':
+ case 'audio':
+ case 'video':
+ case 'application':
+ break;
+
+ case 'message':
+ $encoding = '7bit';
+ break;
+
+ case 'automatic':
+ if (!$name) {
+ return $this->SetError('MISSING_FILE_NAME');
+ }
+ $this->guessContentType($name, $content_type, $encoding);
+ break;
+
+ default:
+ return $this->SetError('INVALID_CONTENT_TYPE', Array($content_type));
+ }
+ }
+ else {
+ // encoding not passed in file part, then assume, that it's binary
+ $content_type = 'application/octet-stream';
+ }
+
+ $definition = Array (
+ 'Content-Type' => $content_type,
+ 'Content-Transfer-Encoding' => $encoding,
+ 'NAME' => $name, // attachment name
+ );
+
+ if (isset($file['Disposition'])) {
+ $disposition = strtolower($file['Disposition']);
+ if ($disposition == 'inline' || $disposition == 'attachment') {
+ // valid disposition header value
+ $definition['DISPOSITION'] = $file['Disposition'];
+ }
+ else {
+ return $this->SetError('INVALID_DISPOSITION', Array($file['Disposition']));
+ }
+ }
+
+ if (isset($file['FileName'])) {
+ $definition['FILENAME'] = $file['FileName'];
+ }
+ elseif (isset($file['Data'])) {
+ $definition['DATA'] =& $file['Data'];
+ }
+
+ return $definition;
+ }
+
+ /**
+ * Returns content-type based on filename extension
+ *
+ * @param string $filename
+ * @param string $content_type
+ * @param string $encoding
+ *
+ * @todo Regular expression used is not completely finished, that's why if extension used for
+ * comparing in some other extension (from list) part, that partial match extension will be returned.
+ * Because of two extension that begins with same 2 letters always belong to same content type
+ * this unfinished regular expression still gives correct result in any case.
+ */
+ function guessContentType($filename, &$content_type, &$encoding)
+ {
+ $file_extension = strtolower( $this->GetFilenameExtension($filename) );
+
+ $mapping = '(xls:application/excel)(hqx:application/macbinhex40)(doc,dot,wrd:application/msword)(pdf:application/pdf)
+ (pgp:application/pgp)(ps,eps,ai:application/postscript)(ppt:application/powerpoint)(rtf:application/rtf)
+ (tgz,gtar:application/x-gtar)(gz:application/x-gzip)(php,php3:application/x-httpd-php)(js:application/x-javascript)
+ (ppd,psd:application/x-photoshop)(swf,swc,rf:application/x-shockwave-flash)(tar:application/x-tar)(zip:application/zip)
+ (mid,midi,kar:audio/midi)(mp2,mp3,mpga:audio/mpeg)(ra:audio/x-realaudio)(wav:audio/wav)(bmp:image/bitmap)(bmp:image/bitmap)
+ (gif:image/gif)(iff:image/iff)(jb2:image/jb2)(jpg,jpe,jpeg:image/jpeg)(jpx:image/jpx)(png:image/png)(tif,tiff:image/tiff)
+ (wbmp:image/vnd.wap.wbmp)(xbm:image/xbm)(css:text/css)(txt:text/plain)(htm,html:text/html)(xml:text/xml)
+ (mpg,mpe,mpeg:video/mpeg)(qt,mov:video/quicktime)(avi:video/x-ms-video)(eml:message/rfc822)';
+
+ if (preg_match('/[\(,]'.$file_extension.'[,]{0,1}.*?:(.*?)\)/s', $mapping, $regs)) {
+ if ($file_extension == 'eml') {
+ $encoding = '7bit';
+ }
+ $content_type = $regs[1];
+ }
+ else {
+ $content_type = 'application/octet-stream';
+ }
+ }
+
+ /**
+ * Using guess options combines all added parts together and returns combined part number
+ *
+ * @return int
+ */
+ function PrepareMessageBody()
+ {
+ if ($this->bodyPartNumber === false) {
+ $part_number = false; // number of generated body part
+
+ // 1. set text content of message
+ if ($this->guessOptions['text_part'] !== false && $this->guessOptions['html_part'] !== false) {
+ // text & html parts present -> compose into alternative part
+ $parts = Array (
+ $this->guessOptions['text_part'],
+ $this->guessOptions['html_part'],
+ );
+ $part_number = $this->CreateMultipart($parts, 'alternative');
+ }
+ elseif ($this->guessOptions['text_part'] !== false) {
+ // only text part is defined, then leave as is
+ $part_number = $this->guessOptions['text_part'];
+ }
+
+ if ($part_number === false) {
+ return $this->SetError('MESSAGE_TEXT_MISSING');
+ }
+
+ // 2. if inline attachments found, then create related multipart from text & inline attachments
+ if ($this->guessOptions['inline_attachments']) {
+ $parts = array_merge(Array($part_number), $this->guessOptions['inline_attachments']);
+ $part_number = $this->CreateMultipart($parts, 'related');
+ }
+
+ // 3. if normal attachments found, then create mixed multipart from text & attachments
+ if ($this->guessOptions['attachments']) {
+ $parts = array_merge(Array($part_number), $this->guessOptions['attachments']);
+ $part_number = $this->CreateMultipart($parts, 'mixed');
+ }
+
+ $this->bodyPartNumber = $part_number;
+ }
+
+ return $this->bodyPartNumber;
+ }
+
+ /**
+ * Returns message headers and body part (by reference in parameters)
+ *
+ * @param Array $message_headers
+ * @param string $message_body
+ * @return bool
+ */
+ function GetHeadersAndBody(&$message_headers, &$message_body)
+ {
+ $part_number = $this->PrepareMessageBody();
+ if ($part_number === false) {
+ return $this->SetError('MESSAGE_COMPOSE_ERROR');
+ }
+
+ $message_headers = $this->GetPartHeaders($part_number);
+
+ // join message headers and body headers
+ $message_headers = array_merge_recursive2($this->headers, $message_headers);
+
+ $message_headers['MIME-Version'] = '1.0';
+ if ($this->mailerName) {
+ $message_headers['X-Mailer'] = $this->mailerName;
+ }
+
+ $this->GenerateMessageID($message_headers['From']);
+ $valid_headers = $this->ValidateHeaders($message_headers);
+ if ($valid_headers) {
+ // set missing headers from existing
+ $from_headers = Array ('Reply-To', 'Errors-To');
+ foreach ($from_headers as $header_name) {
+ if (!isset($message_headers[$header_name])) {
+ $message_headers[$header_name] = $message_headers['From'];
+ }
+ }
+
+ $message_body = $this->GetPartBody($part_number);
+ return true;
+ }
+
+ return false;
+ }
+
+ /**
+ * Checks that all required headers are set and not empty
+ *
+ * @param Array $message_headers
+ * @return bool
+ */
+ function ValidateHeaders($message_headers)
+ {
+ $from = isset($message_headers['From']) ? $message_headers['From'] : '';
+ if (!$from) {
+ return $this->SetError('HEADER_MISSING', Array('From'));
+ }
+
+ if (!isset($message_headers['To'])) {
+ return $this->SetError('HEADER_MISSING', Array('To'));
+ }
+
+ if (!isset($message_headers['Subject'])) {
+ return $this->SetError('HEADER_MISSING', Array('Subject'));
+ }
+
+ return true;
+ }
+
+ /**
+ * Returns full message source (headers + body) for sending to SMTP server
+ *
+ * @return string
+ */
+ function GetMessage()
+ {
+ $composed = $this->GetHeadersAndBody($message_headers, $message_body);
+ if ($composed) {
+ // add headers to resulting message
+ $message = '';
+ foreach ($message_headers as $header_name => $header_value) {
+ $message .= $header_name.': '.$header_value.$this->line_break;
+ }
+
+ // add message body
+ $message .= $this->line_break.$message_body;
+
+ return $message;
+ }
+
+ return false;
+ }
+
+ /**
+ * Sets just happened error code
+ *
+ * @param string $code
+ * @param Array $params additional error params
+ * @return bool
+ */
+ function SetError($code, $params = null, $fatal = true)
+ {
+ $error_msgs = Array (
+ 'MAIL_NOT_FOUND' => 'the mail() function is not available in this PHP installation',
+
+ 'MISSING_CONTENT_TYPE' => 'it was added a part without Content-Type: defined',
+ 'INVALID_CONTENT_TYPE' => 'Content-Type: %s not yet supported',
+ 'INVALID_MULTIPART_SUBTYPE' => 'multipart Content-Type sub_type %s not yet supported',
+ 'FILE_PART_OPEN_ERROR' => 'could not open part file %s',
+ 'FILE_PART_DATA_ERROR' => 'the length of the file that was read does not match the size of the part file %s due to possible data corruption',
+ 'FILE_PART_DATA_MISSING' => 'it was added a part without a body PART',
+ 'INVALID_ENCODING' => '%s is not yet a supported encoding type',
+
+ 'MISSING_FILE_DATA' => 'file part data is missing',
+ 'MISSING_FILE_NAME' => 'it is not possible to determine content type from the name',
+ 'INVALID_DISPOSITION' => '%s is not a supported message part content disposition',
+
+ 'MESSAGE_TEXT_MISSING' => 'text part of message was not defined',
+ 'MESSAGE_COMPOSE_ERROR' => 'unknown message composing error',
+
+ 'HEADER_MISSING' => 'header %s is required',
+
+ // SMTP errors
+ 'INVALID_COMMAND' => 'Commands cannot contain newlines',
+ 'CONNECTION_TERMINATED' => 'Connection was unexpectedly closed',
+ 'HELO_ERROR' => 'HELO was not accepted: %s',
+ 'AUTH_METHOD_NOT_SUPPORTED' => '%s is not a supported authentication method',
+ 'AUTH_METHOD_NOT_IMPLEMENTED' => '%s is not a implemented authentication method',
+ );
+
+ if (!is_array($params)) {
+ $params = Array ();
+ }
+
+ trigger_error('mail error: '.vsprintf($error_msgs[$code], $params), $fatal ? E_USER_ERROR : E_USER_WARNING);
+
+ return false;
+ }
+
+ /**
+ * Simple method of message sending
+ *
+ * @param string $from_email
+ * @param string $to_email
+ * @param string $subject
+ * @param string $from_name
+ * @param string $to_name
+ */
+ function Send($from_email, $to_email, $subject, $from_name = '', $to_name = '')
+ {
+ $this->SetSubject($subject);
+ $this->SetFrom($from_email, trim($from_name) ? trim($from_name) : $from_email);
+
+ if (!isset($this->headers['Return-Path'])) {
+ $this->SetReturnPath($from_email);
+ }
+
+ $this->SetEncodedEmailHeader('To', $to_email, $to_name ? $to_name : $to_email);
+
+ return $this->Deliver();
+ }
+
+ /**
+ * Prepares class for sending another message
+ *
+ */
+ function Clear()
+ {
+ $this->headers = Array ();
+ $this->bodyPartNumber = false;
+ $this->parts = Array();
+ $this->guessOptions = Array (
+ 'attachments' => Array(),
+ 'inline_attachments' => Array (),
+ 'text_part' => false,
+ 'html_part' => false,
+ );
+
+ $this->SetCharset(null, true);
+ }
+
+ /**
+ * Sends message via php mail function
+ *
+ * @param Array $message_headers
+ * @param string $body
+ *
+ * @return bool
+ */
+ function SendMail($message_headers, &$body)
+ {
+ if (!function_exists('mail')) {
+ return $this->SetError('MAIL_NOT_FOUND');
+ }
+
+ $to = $message_headers['To'];
+ $subject = $message_headers['Subject'];
+ $return_path = $message_headers['Return-Path'];
+ unset($message_headers['To'], $message_headers['Subject']);
+
+ $headers = '';
+ $header_separator = $this->Application->ConfigValue('MailFunctionHeaderSeparator') == 1 ? "\n" : "\r\n";
+ foreach ($message_headers as $header_name => $header_value) {
+ $headers .= $header_name.': '.$header_value.$header_separator;
+ }
+
+ if ($return_path) {
+ if (constOn('SAFE_MODE') || (defined('PHP_OS') && substr(PHP_OS, 0, 3) == 'WIN')) {
+ // safe mode restriction OR is windows
+ $return_path = '';
+ }
+ }
+
+ return mail($to, $subject, $body, $headers, $return_path ? '-f'.$return_path : null);
+ }
+
+ /**
+ * Sends message via SMTP server
+ *
+ * @param Array $message_headers
+ * @param string $body
+ *
+ * @return bool
+ */
+ function SendSMTP($message_headers, &$message_body)
+ {
+ if (!$this->SmtpConnect()) {
+ return false;
+ }
+
+ $from = $this->ExtractRecipientEmail($message_headers['From']);
+ if (!$this->SmtpSetFrom($from)) {
+ return false;
+ }
+
+ $recipients = '';
+ $recipient_headers = Array ('To', 'Cc', 'Bcc');
+ foreach ($recipient_headers as $recipient_header) {
+ if (isset($message_headers[$recipient_header])) {
+ $recipients .= ' '.$message_headers[$recipient_header];
+ }
+ }
+
+ $recipients_accepted = 0;
+ $recipients = $this->ExtractRecipientEmail($recipients, true);
+ foreach ($recipients as $recipient) {
+ if ($this->SmtpAddTo($recipient)) {
+ $recipients_accepted++;
+ }
+ }
+
+ if ($recipients_accepted == 0) {
+ // none of recipients were accepted
+ return false;
+ }
+
+ $headers = '';
+ foreach ($message_headers as $header_name => $header_value) {
+ $headers .= $header_name.': '.$header_value.$this->line_break;
+ }
+
+ if (!$this->SmtpSendMessage($headers . "\r\n" . $message_body)) {
+ return false;
+ }
+
+ $this->SmtpDisconnect();
+
+ return true;
+ }
+
+ /**
+ * Send a command to the server with an optional string of
+ * arguments. A carriage return / linefeed (CRLF) sequence will
+ * be appended to each command string before it is sent to the
+ * SMTP server.
+ *
+ * @param string $command The SMTP command to send to the server.
+ * @param string $args A string of optional arguments to append to the command.
+ *
+ * @return bool
+ *
+ */
+ function SmtpSendCommand($command, $args = '')
+ {
+ if (!empty($args)) {
+ $command .= ' ' . $args;
+ }
+
+ if (strcspn($command, "\r\n") !== strlen($command)) {
+ return $this->SetError('INVALID_COMMAND');
+ }
+
+ return $this->smtpSocket->write($command . "\r\n") === false ? false : true;
+ }
+
+ /**
+ * Read a reply from the SMTP server. The reply consists of a response code and a response message.
+ *
+ * @param mixed $valid The set of valid response codes. These may be specified as an array of integer values or as a single integer value.
+ *
+ * @return bool
+ *
+ */
+ function SmtpParseResponse($valid)
+ {
+ $this->smtpResponceCode = -1;
+ $this->smtpRespoceArguments = array();
+
+ while ($line = $this->smtpSocket->readLine()) {
+ // If we receive an empty line, the connection has been closed.
+ if (empty($line)) {
+ $this->SmtpDisconnect();
+ return $this->SetError('CONNECTION_TERMINATED', null, false);
+ }
+
+ // Read the code and store the rest in the arguments array.
+ $code = substr($line, 0, 3);
+ $this->smtpRespoceArguments[] = trim(substr($line, 4));
+
+ // Check the syntax of the response code.
+ if (is_numeric($code)) {
+ $this->smtpResponceCode = (int)$code;
+ } else {
+ $this->smtpResponceCode = -1;
+ break;
+ }
+
+ // If this is not a multiline response, we're done.
+ if (substr($line, 3, 1) != '-') {
+ break;
+ }
+ }
+
+ // Compare the server's response code with the valid code.
+ if (is_int($valid) && ($this->smtpResponceCode === $valid)) {
+ return true;
+ }
+
+ // If we were given an array of valid response codes, check each one.
+ if (is_array($valid)) {
+ foreach ($valid as $valid_code) {
+ if ($this->smtpResponceCode === $valid_code) {
+ return true;
+ }
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * Attempt to connect to the SMTP server.
+ *
+ * @param int $timeout The timeout value (in seconds) for the socket connection.
+ * @param bool $persistent Should a persistent socket connection be used ?
+ *
+ * @return bool
+ *
+ */
+ function SmtpConnect($timeout = null, $persistent = false)
+ {
+ $result = $this->smtpSocket->connect($this->smtpParams['server'], $this->smtpParams['port'], $persistent, $timeout);
+ if (!$result) {
+ return false;
+ }
+
+ if ($this->SmtpParseResponse(220) === false) {
+ return false;
+ }
+ elseif ($this->SmtpNegotiate() === false) {
+ return false;
+ }
+
+ if ($this->smtpParams['use_auth']) {
+ $result = $this->SmtpAuthentificate($this->smtpParams['username'], $this->smtpParams['password']);
+ if (!$result) {
+ // authentification failed
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ /**
+ * Attempt to disconnect from the SMTP server.
+ *
+ * @return bool
+ */
+ function SmtpDisconnect()
+ {
+ if ($this->SmtpSendCommand('QUIT') === false) {
+ return false;
+ }
+ elseif ($this->SmtpParseResponse(221) === false) {
+ return false;
+ }
+
+ return $this->smtpSocket->disconnect();
+ }
+
+ /**
+ * Attempt to send the EHLO command and obtain a list of ESMTP
+ * extensions available, and failing that just send HELO.
+ *
+ * @return bool
+ */
+ function SmtpNegotiate()
+ {
+ if (!$this->SmtpSendCommand('EHLO', $this->smtpParams['localhost'])) {
+ return false;
+ }
+
+ if (!$this->SmtpParseResponse(250)) {
+ // If we receive a 503 response, we're already authenticated.
+ if ($this->smtpResponceCode === 503) {
+ return true;
+ }
+
+ // If the EHLO failed, try the simpler HELO command.
+ if (!$this->SmtpSendCommand('HELO', $this->smtpParams['localhost'])) {
+ return false;
+ }
+
+ if (!$this->SmtpParseResponse(250)) {
+ return $this->SetError('HELO_ERROR', Array($this->smtpResponceCode), false);
+ }
+
+ return true;
+ }
+
+ foreach ($this->smtpRespoceArguments as $argument) {
+ $verb = strtok($argument, ' ');
+ $arguments = substr($argument, strlen($verb) + 1, strlen($argument) - strlen($verb) - 1);
+ $this->smtpFeatures[$verb] = $arguments;
+ }
+
+ return true;
+ }
+
+ /**
+ * Attempt to do SMTP authentication.
+ *
+ * @param string The userid to authenticate as.
+ * @param string The password to authenticate with.
+ * @param string The requested authentication method. If none is specified, the best supported method will be used.
+ *
+ * @return bool
+ */
+ function SmtpAuthentificate($uid, $pwd , $method = '')
+ {
+ if (empty($this->smtpFeatures['AUTH'])) {
+ // server doesn't understand AUTH command, then don't authentificate
+ return true;
+ }
+
+ $available_methods = explode(' ', $this->smtpFeatures['AUTH']); // methods supported by SMTP server
+
+ if (empty($method)) {
+ foreach ($this->smtpAuthMethods as $supported_method) {
+ // check if server supports methods, that we have implemented
+ if (in_array($supported_method, $available_methods)) {
+ $method = $supported_method;
+ break;
+ }
+ }
+ } else {
+ $method = strtoupper($method);
+ }
+
+ if (!in_array($method, $available_methods)) {
+ // coosen method is not supported by server
+ return $this->SetError('AUTH_METHOD_NOT_SUPPORTED', Array($method));
+ }
+
+ switch ($method) {
+ case 'CRAM-MD5':
+ $result = $this->_authCRAM_MD5($uid, $pwd);
+ break;
+
+ case 'LOGIN':
+ $result = $this->_authLogin($uid, $pwd);
+ break;
+ case 'PLAIN':
+ $result = $this->_authPlain($uid, $pwd);
+ break;
+ default:
+ return $this->SetError('AUTH_METHOD_NOT_IMPLEMENTED', Array($method));
+ break;
+ }
+
+ return $result;
+ }
+
+ /**
+ * Function which implements HMAC MD5 digest
+ *
+ * @param string $key The secret key
+ * @param string $data The data to protect
+ * @return string The HMAC MD5 digest
+ */
+ function _HMAC_MD5($key, $data)
+ {
+ if (strlen($key) > 64) {
+ $key = pack('H32', md5($key));
+ }
+
+ if (strlen($key) < 64) {
+ $key = str_pad($key, 64, chr(0));
+ }
+
+ $k_ipad = substr($key, 0, 64) ^ str_repeat(chr(0x36), 64);
+ $k_opad = substr($key, 0, 64) ^ str_repeat(chr(0x5C), 64);
+
+ $inner = pack('H32', md5($k_ipad . $data));
+ $digest = md5($k_opad . $inner);
+
+ return $digest;
+ }
+
+ /**
+ * Authenticates the user using the CRAM-MD5 method.
+ *
+ * @param string The userid to authenticate as.
+ * @param string The password to authenticate with.
+ *
+ * @return bool
+ */
+ function _authCRAM_MD5($uid, $pwd)
+ {
+ if (!$this->SmtpSendCommand('AUTH', 'CRAM-MD5')) {
+ return false;
+ }
+
+ // 334: Continue authentication request
+ if (!$this->SmtpParseResponse(334)) {
+ // 503: Error: already authenticated
+ return $this->smtpResponceCode === 503 ? true : false;
+ }
+
+ $challenge = base64_decode($this->smtpRespoceArguments[0]);
+ $auth_str = base64_encode($uid . ' ' . $this->_HMAC_MD5($pwd, $challenge));
+
+ if (!$this->SmtpSendCommand($auth_str)) {
+ return false;
+ }
+
+ // 235: Authentication successful
+ if (!$this->SmtpParseResponse(235)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Authenticates the user using the LOGIN method.
+ *
+ * @param string The userid to authenticate as.
+ * @param string The password to authenticate with.
+ *
+ * @return bool
+ */
+ function _authLogin($uid, $pwd)
+ {
+ if (!$this->SmtpSendCommand('AUTH', 'LOGIN')) {
+ return false;
+ }
+
+ // 334: Continue authentication request
+ if (!$this->SmtpParseResponse(334)) {
+ // 503: Error: already authenticated
+ return $this->smtpResponceCode === 503 ? true : false;
+ }
+
+ if (!$this->SmtpSendCommand(base64_encode($uid))) {
+ return false;
+ }
+
+ // 334: Continue authentication request
+ if (!$this->SmtpParseResponse(334)) {
+ return false;
+ }
+
+ if (!$this->SmtpSendCommand(base64_encode($pwd))) {
+ return false;
+ }
+
+ // 235: Authentication successful
+ if (!$this->SmtpParseResponse(235)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Authenticates the user using the PLAIN method.
+ *
+ * @param string The userid to authenticate as.
+ * @param string The password to authenticate with.
+ *
+ * @return bool
+ */
+ function _authPlain($uid, $pwd)
+ {
+ if (!$this->SmtpSendCommand('AUTH', 'PLAIN')) {
+ return false;
+ }
+
+ // 334: Continue authentication request
+ if (!$this->SmtpParseResponse(334)) {
+ // 503: Error: already authenticated
+ return $this->smtpResponceCode === 503 ? true : false;
+ }
+
+ $auth_str = base64_encode(chr(0) . $uid . chr(0) . $pwd);
+
+ if (!$this->SmtpSendCommand($auth_str)) {
+ return false;
+ }
+
+ // 235: Authentication successful
+ if (!$this->SmtpParseResponse(235)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Send the MAIL FROM: command.
+ *
+ * @param string $sender The sender (reverse path) to set.
+ * @param string $params String containing additional MAIL parameters, such as the NOTIFY flags defined by RFC 1891 or the VERP protocol.
+ *
+ * @return bool
+ */
+ function SmtpSetFrom($sender, $params = null)
+ {
+ $args = "FROM:<$sender>";
+ if (is_string($params)) {
+ $args .= ' ' . $params;
+ }
+
+ if (!$this->SmtpSendCommand('MAIL', $args)) {
+ return false;
+ }
+ if (!$this->SmtpParseResponse(250)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Send the RCPT TO: command.
+ *
+ * @param string $recipient The recipient (forward path) to add.
+ * @param string $params String containing additional RCPT parameters, such as the NOTIFY flags defined by RFC 1891.
+ *
+ * @return bool
+ */
+ function SmtpAddTo($recipient, $params = null)
+ {
+ $args = "TO:<$recipient>";
+ if (is_string($params)) {
+ $args .= ' ' . $params;
+ }
+
+ if (!$this->SmtpSendCommand('RCPT', $args)) {
+ return false;
+ }
+
+ if (!$this->SmtpParseResponse(array(250, 251))) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Send the DATA command.
+ *
+ * @param string $data The message body to send.
+ *
+ * @return bool
+ */
+ function SmtpSendMessage($data)
+ {
+ /* RFC 1870, section 3, subsection 3 states "a value of zero
+ * indicates that no fixed maximum message size is in force".
+ * Furthermore, it says that if "the parameter is omitted no
+ * information is conveyed about the server's fixed maximum
+ * message size". */
+ if (isset($this->smtpFeatures['SIZE']) && ($this->smtpFeatures['SIZE'] > 0)) {
+ if (strlen($data) >= $this->smtpFeatures['SIZE']) {
+ $this->SmtpDisconnect();
+ return $this->SetError('Message size excedes the server limit', null, false);
+ }
+ }
+
+ // Quote the data based on the SMTP standards
+
+ // Change Unix (\n) and Mac (\r) linefeeds into Internet-standard CRLF (\r\n) linefeeds.
+ $data = preg_replace(Array('/(?<!\r)\n/','/\r(?!\n)/'), "\r\n", $data);
+
+ // Because a single leading period (.) signifies an end to the data,
+ // legitimate leading periods need to be "doubled" (e.g. '..')
+ $data = str_replace("\n.", "\n..", $data);
+
+ if (!$this->SmtpSendCommand('DATA')) {
+ return false;
+ }
+ if (!$this->SmtpParseResponse(354)) {
+ return false;
+ }
+
+ if ($this->smtpSocket->write($data . "\r\n.\r\n") === false) {
+ return false;
+ }
+ if (!$this->SmtpParseResponse(250)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Sets global charset for every message part
+ *
+ * @param string $charset
+ * @param bool set charset to default for current langauge
+ */
+ function SetCharset($charset, $is_system = false)
+ {
+ if ($is_system) {
+ $language =& $this->Application->recallObject('lang.current');
+ /* @var $language LanguagesItem */
+
+ $charset = $language->GetDBField('Charset') ? $language->GetDBField('Charset') : 'ISO-8859-1';
+ }
+
+ $this->charset = $charset;
+ }
+
+ /**
+ * Allows to extract recipient's name from text by specifying it's email
+ *
+ * @param string $text
+ * @param string $email
+ * @return string
+ */
+ function ExtractRecipientName($text, $email = '')
+ {
+ $lastspace = strrpos($text, ' ');
+ $name = trim(substr($text, 0, $lastspace - strlen($text)), " \r\n\t\0\x0b\"'");
+ if (empty($name)) {
+ $name = $email;
+ }
+ return $name;
+ }
+
+ /**
+ * Takes $text and returns an email address from it
+ * Set $multiple to true to retrieve all found addresses
+ * Returns false if no addresses were found
+ *
+ * @param string $text
+ * @param bool $multiple
+ * @param bool $allowOnlyDomain
+ * @return string
+ */
+ function ExtractRecipientEmail($text, $multiple = false, $allowOnlyDomain = false) {
+ if ($allowOnlyDomain) {
+ $pattern = '/(('.REGEX_EMAIL_USER.'@)?'.REGEX_EMAIL_DOMAIN.')/i';
+ } else {
+ $pattern = '/('.REGEX_EMAIL_USER.'@'.REGEX_EMAIL_DOMAIN.')/i';
+ }
+ if ($multiple) {
+ if (preg_match_all($pattern, $text, $findemail) >= 1) {
+ return $findemail[1];
+ } else {
+ return false;
+ }
+ } else {
+ if (preg_match($pattern, $text, $findemail) == 1) {
+ return $findemail[1];
+ } else {
+ return false;
+ }
+ }
+ }
+
+ /**
+ * Returns array of recipient names and emails
+ *
+ * @param string $list
+ * @param string $separator
+ * @return Array
+ */
+ function GetRecipients($list, $separator = ';')
+ {
+ // by MIME specs recipients should be separated using "," symbol,
+ // but users can write ";" too (like in OutLook)
+
+ if (!trim($list)) {
+ return false;
+ }
+
+ $list = explode(',', str_replace($separator, ',', $list));
+
+ $ret = Array ();
+ foreach ($list as $recipient) {
+ $email = $this->ExtractRecipientEmail($recipient);
+ if (!$email) {
+ // invalid email format -> error
+ return false;
+ }
+ $name = $this->ExtractRecipientName($recipient, $email);
+ $ret[] = Array('Name' => $name, 'Email' => $email);
+ }
+
+ return $ret;
+ }
+
+ /* methods for nice header setting */
+
+ /**
+ * Sets "From" header.
+ *
+ * @param string $email
+ * @param string $first_last_name FirstName and LastName or just FirstName
+ * @param string $last_name LastName (if not specified in previous parameter)
+ */
+ function SetFrom($email, $first_last_name, $last_name = '')
+ {
+ $name = rtrim($first_last_name.' '.$last_name, ' ');
+ $this->SetEncodedEmailHeader('From', $email, $name ? $name : $email);
+
+ if (!isset($this->headers['Return-Path'])) {
+ $this->SetReturnPath($email);
+ }
+ }
+
+ /**
+ * Sets "Return-Path" header (useful for spammers)
+ *
+ * @param string $email
+ */
+ function SetReturnPath($email)
+ {
+ $this->SetHeader('Return-Path', $email);
+ }
+
+ /**
+ * Adds one more recipient into "To" header
+ *
+ * @param string $email
+ * @param string $first_last_name FirstName and LastName or just FirstName
+ * @param string $last_name LastName (if not specified in previous parameter)
+ */
+ function AddTo($email, $first_last_name = '', $last_name = '')
+ {
+ $name = rtrim($first_last_name.' '.$last_name, ' ');
+ $this->AddRecipient('To', $email, $name);
+ }
+
+ /**
+ * Adds one more recipient into "Cc" header
+ *
+ * @param string $email
+ * @param string $first_last_name FirstName and LastName or just FirstName
+ * @param string $last_name LastName (if not specified in previous parameter)
+ */
+ function AddCc($email, $first_last_name = '', $last_name = '')
+ {
+ $name = rtrim($first_last_name.' '.$last_name, ' ');
+ $this->AddRecipient('Cc', $email, $name);
+ }
+
+ /**
+ * Adds one more recipient into "Bcc" header
+ *
+ * @param string $email
+ * @param string $first_last_name FirstName and LastName or just FirstName
+ * @param string $last_name LastName (if not specified in previous parameter)
+ */
+ function AddBcc($email, $first_last_name = '', $last_name = '')
+ {
+ $name = rtrim($first_last_name.' '.$last_name, ' ');
+ $this->AddRecipient('Bcc', $email, $name);
+ }
+
+ /**
+ * Adds one more recipient to specified header
+ *
+ * @param string $header_name
+ * @param string $email
+ * @param string $name
+ */
+ function AddRecipient($header_name, $email, $name = '')
+ {
+ if (!$name) {
+ $name = $email;
+ }
+
+ $value = isset($this->headers[$header_name]) ? $this->headers[$header_name] : '';
+ $value .= ', '.$this->QuotedPrintableEncode($name, $this->charset).' <'.$email.'>';
+
+ $value = preg_replace('/^,(.*)/', '\\1', $value); // remove first comma
+ $this->SetHeader($header_name, $value);
+ }
+
+ /**
+ * Sets "Subject" header.
+ *
+ * @param string $subject message subject
+ */
+ function SetSubject($subject)
+ {
+ $this->setEncodedHeader('Subject', $subject);
+ }
+
+ /**
+ * Sets HTML part of message
+ *
+ * @param string $html
+ */
+ function SetHTML($html)
+ {
+ $this->CreateTextHtmlPart($html, true);
+ }
+
+ /**
+ * Sets Plain-Text part of message
+ *
+ * @param string $plain_text
+ */
+ function SetPlain($plain_text)
+ {
+ $this->CreateTextHtmlPart($plain_text);
+ }
+
+ /**
+ * Sets HTML and optionally plain part of the message
+ *
+ * @param string $html
+ * @param string $plain_text
+ */
+ function SetBody($html, $plain_text = '')
+ {
+ $this->SetHTML($html);
+ if ($plain_text) {
+ $this->SetPlain($plain_text);
+ }
+ }
+
+ /**
+ * Performs mail delivery (supports delayed delivery)
+ *
+ * @param string $mesasge message, if not given, then use composed one
+ * @param bool $immediate_send send message now
+ * @param bool $immediate_clear clear message parts after message is sent
+ *
+ */
+ function Deliver($message = null, $immediate_send = true, $immediate_clear = true)
+ {
+ if (isset($message)) {
+ // if message is given directly, then use it
+ $message_headers = Array ();
+ list ($headers, $message_body) = explode("\n\n", $message, 2);
+ $headers = explode("\n", $headers);
+ foreach ($headers as $header) {
+ $header = explode(':', $header, 2);
+ $message_headers[ trim($header[0]) ] = trim($header[1]);
+ }
+ $composed = true;
+ } else {
+ // direct message not given, then assemble message from available parts
+ $composed = $this->GetHeadersAndBody($message_headers, $message_body);
+ }
+
+ if ($composed && $immediate_send) {
+ $send_method = 'Send'.$this->sendMethod;
+ $result = $this->$send_method($message_headers, $message_body);
+
+ if ($immediate_clear) {
+ $this->Clear();
+ }
+ return $result;
+ }
+
+ // if not immediate send, then send result is positive :)
+ return !$immediate_send ? true : false;
+ }
+ }
+
+?>
\ No newline at end of file
Property changes on: branches/unlabeled/unlabeled-1.2.2/core/kernel/utility/email_send.php
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.2
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: branches/unlabeled/unlabeled-1.2.2/core/admin_templates/incs/config_blocks.tpl
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/core/admin_templates/incs/config_blocks.tpl (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/core/admin_templates/incs/config_blocks.tpl (revision 8062)
@@ -0,0 +1,102 @@
+<inp2:m_DefineElement name="config_edit_text">
+ <input type="text" tabindex="<inp2:m_get param="tab_index"/>" name="<inp2:InputName field="$field"/>" value="<inp2:Field field="$field" />" <inp2:m_param name="field_params" />/>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_password">
+ <input type="password" tabindex="<inp2:m_get param="tab_index"/>" primarytype="password" name="<inp2:InputName field="$field"/>" id="<inp2:InputName field="$field"/>" value="" />
+ <input type="password" name="verify_<inp2:InputName field="$field"/>" id="verify_<inp2:InputName field="$field"/>" value="" />
+ &nbsp;<span class="error" id="error_<inp2:InputName field="$field"/>"></span>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_option">
+ <option value="<inp2:m_param name="key"/>"<inp2:m_param name="selected"/>><inp2:m_param name="option"/></option>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_select">
+ <select name="<inp2:InputName field="$field"/>" tabindex="<inp2:m_get param="tab_index"/>">
+ <inp2:PredefinedOptions field="$field" block="config_edit_option" selected="selected"/>
+ </select>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_multiselect">
+ <select id="<inp2:InputName field="$field"/>_select" onchange="update_multiple_options('<inp2:InputName field="$field"/>');" tabindex="<inp2:m_get param="tab_index"/>" multiple>
+ <inp2:PredefinedOptions field="$field" block="config_edit_option" selected="selected"/>
+ </select>
+ <input type="hidden" id="<inp2:InputName field="$field"/>" name="<inp2:InputName field="$field"/>" value="<inp2:Field field="$field"/>"/>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_checkbox" field_class="">
+ <input type="hidden" id="<inp2:InputName field="$field"/>" name="<inp2:InputName field="$field"/>" value="<inp2:Field field="$field" db="db"/>">
+ <input tabindex="<inp2:m_get param="tab_index"/>" type="checkbox" id="_cb_<inp2:m_param name="field"/>" name="_cb_<inp2:InputName field="$field"/>" <inp2:Field field="$field" checked="checked" db="db"/> class="<inp2:m_param name="field_class"/>" onclick="update_checkbox(this, document.getElementById('<inp2:InputName field="$field"/>'))">
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_textarea">
+ <textarea tabindex="<inp2:m_get param="tab_index"/>" name="<inp2:InputName field="$field"/>" <inp2:m_param name="field_params" />><inp2:Field field="$field" /></textarea>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_radio_item">
+ <input type="radio" <inp2:m_param name="checked"/> name="<inp2:InputName field="$field"/>" id="<inp2:InputName field="$field"/>_<inp2:m_param name="key"/>" value="<inp2:m_param name="key"/>"><label for="<inp2:InputName field="$field"/>_<inp2:m_param name="key"/>"><inp2:m_param name="option"/></label>&nbsp;
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_edit_radio">
+ <inp2:PredefinedOptions field="$field" block="config_radio_item" selected="checked"/>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_block">
+ <inp2:m_inc param="tab_index" by="1"/>
+ <inp2:m_if check="m_ParamEquals" name="show_heading" value="1">
+ <tr class="subsectiontitle">
+ <td colspan="2">
+ <inp2:Field name="heading" as_label="1"/>
+ </td>
+ <td align="right">
+ <a class="config-header" href="javascript:toggle_section('<inp2:Field name="heading"/>');" id="toggle_mark[<inp2:Field name="heading"/>]" title="Collapse/Expand Section">[-]</a>
+ </td>
+ </tr>
+ </inp2:m_if>
+ <tr class="<inp2:m_odd_even odd="table_color1" even="table_color2"/>" id="<inp2:m_param name="PrefixSpecial"/>_<inp2:field field="$IdField"/>" header_label="<inp2:Field name="heading"/>">
+ <td>
+ <inp2:Field field="prompt" as_label="1" />
+ <inp2:m_if check="m_IsDebugMode">
+ <br><small>[<inp2:Field field="DisplayOrder"/>] <inp2:Field field="VariableName"/></small>
+ </inp2:m_if>
+ </td>
+
+ <td>
+ <inp2:ConfigFormElement PrefixSpecial="$PrefixSpecial" field="VariableValue" blocks_prefix="config_edit_" element_type_field="element_type" value_list_field="ValueList"/>
+ </td>
+
+ <td class="error"><inp2:Error id_field="VariableName"/>&nbsp;</td>
+ </tr>
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_block1">
+ <inp2:m_inc param="tab_index" by="1"/>
+ <inp2:m_if check="m_ParamEquals" name="show_heading" value="1">
+ <tr class="subsectiontitle">
+ <td colspan="2">
+ <inp2:Field name="heading" as_label="1"/>
+ </td>
+ <td align="right">
+ <a class="config-header" href="javascript:toggle_section('<inp2:Field name="heading"/>');" id="toggle_mark[<inp2:Field name="heading"/>]" title="Collapse/Expand Section">[-]</a>
+ </td>
+ </tr>
+ </inp2:m_if>
+ <tr class="<inp2:m_odd_even odd="table_color1" even="table_color2"/>" id="<inp2:m_param name="PrefixSpecial"/>_<inp2:Field field="$IdField"/>" header_label="<inp2:Field name="heading"/>">
+ <td>
+ <inp2:Field field="prompt" as_label="1" />
+ <inp2:m_if check="m_IsDebugMode">
+ <br><small>[<inp2:Field field="DisplayOrder"/>] <inp2:Field field="VariableName"/></small>
+ </inp2:m_if>
+ </td>
+
+ <td>
+ <nobr><inp2:ConfigFormElement PrefixSpecial="$PrefixSpecial" field="VariableValue" blocks_prefix="config_edit_" element_type_field="element_type" value_list_field="ValueList"/>&nbsp;&nbsp;
+</inp2:m_DefineElement>
+
+<inp2:m_DefineElement name="config_block2">
+ <inp2:ConfigFormElement PrefixSpecial="$PrefixSpecial" field="VariableValue" blocks_prefix="config_edit_" element_type_field="element_type" value_list_field="ValueList"/></nobr>
+ </td>
+ <td class="error"><inp2:Error id_field="VariableName"/>&nbsp;</td>
+ </tr>
+</inp2:m_DefineElement>
Property changes on: branches/unlabeled/unlabeled-1.2.2/core/admin_templates/incs/config_blocks.tpl
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.2
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: branches/unlabeled/unlabeled-1.2.2/core/admin_templates/js/forms.js
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/core/admin_templates/js/forms.js (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/core/admin_templates/js/forms.js (revision 8062)
@@ -0,0 +1,134 @@
+var last_shown_error = false;
+var errors = new Object();
+var first_error = new Object();
+var fields = new Object();
+function show_form_error(prefix, field, sticky)
+{
+ if (isset(errors[prefix]) && isset(errors[prefix][field])) {
+ span = document.getElementById('error_msg_'+prefix);
+ span.innerHTML = fields[prefix][field] + ' - ' + errors[prefix][field];
+ if (sticky) last_shown_error = field;
+ }
+}
+function hide_form_error(prefix)
+{
+ span = document.getElementById('error_msg_'+prefix);
+ if (!span) return;
+ span.innerHTML = '<br/>';
+ if (typeof(last_shown_error) != 'undefined' && last_shown_error) {
+ show_form_error(prefix, last_shown_error);
+ }
+}
+function add_form_error(prefix, field, element, error_msg) {
+ if (error_msg != '') {
+ if (typeof(errors[prefix]) == 'undefined') {
+ errors[prefix] = new Object();
+ }
+ errors[prefix][field] = error_msg;
+ addEvent(document.getElementById(element), 'focus', function() {
+ show_form_error(prefix, field, true)
+ } );
+ addEvent(document.getElementById(element), 'blur', function() {last_shown_error = false} )
+ if (typeof(first_error[prefix]) == 'undefined' || first_error[prefix] == false) {
+ first_error[prefix] = [field, element];
+ }
+ }
+}
+
+function Form() {}
+
+Form = new Form();
+
+Form.Controls = new Array();
+Form.Div = false;
+Form.MinControlsHeight = 0;
+Form.Coeffs = new Object();
+
+Form.ScrollerW = 17;
+Form.ScrollerH = 17;
+Form.Wrap = true;
+
+Form.Init = function(id)
+{
+ this.Div = document.getElementById(id);
+
+ for (var i in this.Controls) {
+ dim = getDimensions(document.getElementById(this.Controls[i]));
+ this.MinControlsHeight += dim.innerHeight;
+// alert('adding element '+this.Controls[i]+' height: '+dim.innerHeight+' total: '+this.MinControlsHeight)
+ }
+
+ document.body.style.height = '100%';
+ document.body.style.overflow = 'hidden';
+ document.body.scroll = 'no'
+
+ var a_div = document.createElement('DIV');
+ a_div.style.position = 'relative';
+ a_div.style.overflow = 'auto';
+ a_div.style.width = '100%';
+ a_div.style.height = '100%';
+
+ a_div.appendChild(el.parentNode.replaceChild(a_div, el))
+
+ this.Table = this.Div.getElementsByTagName('table')[0];
+ this.Table.style.height = 'auto';
+ this.MinHeight = this.Table.offsetHeight;
+ this.MinWidth = this.Table.offsetWidth;
+
+ addEvent(window, 'resize', function() {Form.Resize()})
+
+ this.Resize()
+
+ if (isset(first_error)) {
+ for (var i in first_error) {
+ if (first_error[i] != false) {
+ document.getElementById(first_error[i][1]).focus();
+ show_form_error(i, first_error[i][0], true);
+// alert('focused on '+first_error[i][1])
+ }
+ }
+ }
+}
+
+Form.addControl = function(id, coeff) {
+ this.Controls.push(id);
+ this.Coeffs[id] = coeff ? coeff : 1; // for future use
+}
+
+Form.Resize = function()
+{
+ var h = (document.all ? window.document.body.offsetHeight : window.innerHeight);
+ var pos = findPos(el);
+ var dim = getDimensions(this.Div);
+ h -= pos[1] + dim.padding[0] + dim.padding[2] + dim.borders[0] + dim.borders[2];
+
+ var w = (document.all ? window.document.body.offsetWidth : window.innerWidth);
+ w -= pos[0] + dim.padding[1] + dim.padding[3] + dim.borders[1] + dim.borders[3];
+
+ scroller_height = this.MinWidth >= w ? this.ScrollerH : 0;
+ scroller_width = this.MinHeight >= h - scroller_height ? this.ScrollerW : 0;
+ scroller_height = this.MinWidth >= w - scroller_width ? this.ScrollerH : 0;
+
+// alert('resize: '+w+'x'+h)
+
+ this.Table.style.width = (w-scroller_width) + 'px';
+
+ this.Div.style.width = (w)+'px';
+ this.Div.style.height = (h)+'px';
+
+ var count = this.Controls.length;
+
+ // -count here is adjustment - 1px for each control
+ var split = h - count - this.MinHeight + this.MinControlsHeight;
+ if (split < this.MinControlsHeight) split = this.MinControlsHeight;
+ var new_height = Math.round(split / count) -2;
+
+// alert('h is: '+h+' min height is '+this.MinHeight+' MinControlsHeight is '+this.MinControlsHeight+' -> '+split+' to split between '+count+' new height is '+new_height);
+// print_pre(this.Controls)
+
+ for (var i in this.Controls) {
+ document.getElementById(this.Controls[i]).style.height = new_height + 'px';
+ }
+
+
+}
Property changes on: branches/unlabeled/unlabeled-1.2.2/core/admin_templates/js/forms.js
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.2
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: branches/unlabeled/unlabeled-1.2.2/core/install/english.lang
===================================================================
--- branches/unlabeled/unlabeled-1.2.2/core/install/english.lang (nonexistent)
+++ branches/unlabeled/unlabeled-1.2.2/core/install/english.lang (revision 8062)
@@ -0,0 +1,2342 @@
+<LANGUAGES>
+ <LANGUAGE PackName="English" Encoding="base64"><DATEFORMAT>m/d/Y</DATEFORMAT><TIMEFORMAT>g:i:s A</TIMEFORMAT><INPUTDATEFORMAT>m/d/Y</INPUTDATEFORMAT><INPUTTIMEFORMAT>g:i:s A</INPUTTIMEFORMAT><DECIMAL>.</DECIMAL><THOUSANDS>,</THOUSANDS><CHARSET>iso-8859-1</CHARSET><UNITSYSTEM>2</UNITSYSTEM>
+ <PHRASES>
+ <PHRASE Label=" lu_resetpw_confirm_text" Module="Proj-Base" Type="0">WW91ciBwYXNzd29yZCBoYXMgYmVlbiByZXNldC4gWW91IHdpbGwgcmVjZWl2ZSB5b3VyIG5ldyBwYXNzd29yZCBpbiB0aGUgZW1haWwgc2hvcnRseS4=</PHRASE>
+ <PHRASE Label="la_Active" Module="Proj-Base" Type="1">QWN0aXZl</PHRASE>
+ <PHRASE Label="la_added" Module="Proj-Base" Type="1">QWRkZWQ=</PHRASE>
+ <PHRASE Label="la_AddTo" Module="Proj-Base" Type="1">QWRkIFRv</PHRASE>
+ <PHRASE Label="la_Always" Module="Proj-Base" Type="1">QWx3YXlz</PHRASE>
+ <PHRASE Label="la_and" Module="Proj-Base" Type="1">YW5k</PHRASE>
+ <PHRASE Label="la_approve_description" Module="Proj-Base" Type="1">QWN0aXZl</PHRASE>
+ <PHRASE Label="la_Article_Author" Module="Proj-Base" Type="1">QXV0aG9y</PHRASE>
+ <PHRASE Label="la_Article_Date" Module="Proj-Base" Type="1">RGF0ZQ==</PHRASE>
+ <PHRASE Label="la_Article_Excerpt" Module="Proj-Base" Type="1">QXJ0aWNsZSBFeGNlcnB0</PHRASE>
+ <PHRASE Label="la_Article_Hits" Module="Proj-Base" Type="1">SGl0cw==</PHRASE>
+ <PHRASE Label="la_Article_Rating" Module="Proj-Base" Type="1">UmF0aW5n</PHRASE>
+ <PHRASE Label="la_article_reviewed" Module="Proj-Base" Type="1">QXJ0aWNsZSByZXZpZXdlZA==</PHRASE>
+ <PHRASE Label="la_Article_Title" Module="Proj-Base" Type="1">QXJ0aWNsZSBUaXRsZQ==</PHRASE>
+ <PHRASE Label="la_Auto" Module="Proj-Base" Type="1">QXV0bw==</PHRASE>
+ <PHRASE Label="la_Automatic" Module="Proj-Base" Type="1">QXV0b21hdGlj</PHRASE>
+ <PHRASE Label="la_Background" Module="Proj-Base" Type="1">QmFja2dyb3VuZA==</PHRASE>
+ <PHRASE Label="la_ban_email" Module="Proj-Base" Type="1">QmFuIGVtYWlsIGFkZHJlc3M=</PHRASE>
+ <PHRASE Label="la_ban_ip" Module="Proj-Base" Type="1">QmFuIElQIGFkZHJlc3M=</PHRASE>
+ <PHRASE Label="la_ban_login" Module="Proj-Base" Type="1">QmFuIHVzZXIgbmFtZQ==</PHRASE>
+ <PHRASE Label="la_bb" Module="Proj-Base" Type="1">SW1wb3J0ZWQ=</PHRASE>
+ <PHRASE Label="la_Borders" Module="Proj-Base" Type="1">Qm9yZGVycw==</PHRASE>
+ <PHRASE Label="la_btn_Change" Module="Proj-Base" Type="1">Q2hhbmdl</PHRASE>
+ <PHRASE Label="la_btn_Down" Module="Proj-Base" Type="1">RG93bg==</PHRASE>
+ <PHRASE Label="la_btn_Up" Module="Proj-Base" Type="1">VXA=</PHRASE>
+ <PHRASE Label="la_button_ok" Module="Proj-Base" Type="1">T0s=</PHRASE>
+ <PHRASE Label="la_bytes" Module="Proj-Base" Type="1">Ynl0ZXM=</PHRASE>
+ <PHRASE Label="la_by_theme" Module="Proj-Base" Type="1">QnkgdGhlbWU=</PHRASE>
+ <PHRASE Label="la_Cancel" Module="Proj-Base" Type="1">Q2FuY2Vs</PHRASE>
+ <PHRASE Label="la_category" Module="Proj-Base" Type="1">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_Category_Date" Module="Proj-Base" Type="1">RGF0ZQ==</PHRASE>
+ <PHRASE Label="la_category_daysnew_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGRheXMgZm9yIGEgY2F0LiB0byBiZSBORVc=</PHRASE>
+ <PHRASE Label="la_Category_Description" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgRGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="la_category_metadesc" Module="Proj-Base" Type="1">RGVmYXVsdCBNRVRBIGRlc2NyaXB0aW9u</PHRASE>
+ <PHRASE Label="la_category_metakey" Module="Proj-Base" Type="1">RGVmYXVsdCBNRVRBIEtleXdvcmRz</PHRASE>
+ <PHRASE Label="la_Category_Name" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_category_perpage_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGNhdGVnb3JpZXMgcGVyIHBhZ2U=</PHRASE>
+ <PHRASE Label="la_category_perpage__short_prompt" Module="Proj-Base" Type="1">Q2F0ZWdvcmllcyBQZXIgUGFnZSAoU2hvcnRsaXN0KQ==</PHRASE>
+ <PHRASE Label="la_Category_Pick" Module="Proj-Base" Type="1">UGljaw==</PHRASE>
+ <PHRASE Label="la_Category_Pop" Module="Proj-Base" Type="1">UG9wdWxhcml0eQ==</PHRASE>
+ <PHRASE Label="la_category_showpick_prompt" Module="Proj-Base" Type="1">RGlzcGxheSBlZGl0b3IgUElDS3MgYWJvdmUgcmVndWxhciBjYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="la_category_sortfield2_prompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_category_sortfield_prompt" Module="Proj-Base" Type="1">T3JkZXIgY2F0ZWdvcmllcyBieQ==</PHRASE>
+ <PHRASE Label="la_Close" Module="Proj-Base" Type="1">Q2xvc2U=</PHRASE>
+ <PHRASE Label="la_ColHeader_AltValue" Module="Proj-Base" Type="1">QWx0IFZhbHVl</PHRASE>
+ <PHRASE Label="la_ColHeader_BadWord" Module="Proj-Base" Type="1">Q2Vuc29yZWQgV29yZA==</PHRASE>
+ <PHRASE Label="la_ColHeader_CreatedOn" Module="Proj-Base" Type="2">Q3JlYXRlZCBPbg==</PHRASE>
+ <PHRASE Label="la_ColHeader_Date" Module="Proj-Base" Type="1">RGF0ZS9UaW1l</PHRASE>
+ <PHRASE Label="la_ColHeader_Enabled" Module="Proj-Base" Type="1">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_ColHeader_FieldLabel" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_ColHeader_FieldName" Module="Proj-Base" Type="1">RmllbGQgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_Colheader_GroupType" Module="Proj-Base" Type="1">VHlwZQ==</PHRASE>
+ <PHRASE Label="la_ColHeader_Image" Module="Proj-Base" Type="1">SW1hZ2U=</PHRASE>
+ <PHRASE Label="la_ColHeader_InheritFrom" Module="Proj-Base" Type="1">SW5oZXJpdGVkIEZyb20=</PHRASE>
+ <PHRASE Label="la_ColHeader_Item" Module="Proj-Base" Type="1">SXRlbQ==</PHRASE>
+ <PHRASE Label="la_Colheader_ItemField" Module="Proj-Base" Type="1">SXRlbSBGaWVsZA==</PHRASE>
+ <PHRASE Label="la_ColHeader_ItemType" Module="Proj-Base" Type="1">SXRlbSBUeXBl</PHRASE>
+ <PHRASE Label="la_Colheader_ItemValue" Module="Proj-Base" Type="1">SXRlbSBWYWx1ZQ==</PHRASE>
+ <PHRASE Label="la_ColHeader_ItemVerb" Module="Proj-Base" Type="1">Q29tcGFyaXNvbiBPcGVyYXRvcg==</PHRASE>
+ <PHRASE Label="la_ColHeader_Name" Module="Proj-Base" Type="2">TGluayBOYW1l</PHRASE>
+ <PHRASE Label="la_ColHeader_PermAccess" Module="Proj-Base" Type="1">QWNjZXNz</PHRASE>
+ <PHRASE Label="la_ColHeader_PermInherited" Module="Proj-Base" Type="1">SW5oZXJpdGVk</PHRASE>
+ <PHRASE Label="la_ColHeader_Poster" Module="Proj-Base" Type="1">UG9zdGVy</PHRASE>
+ <PHRASE Label="la_ColHeader_Preview" Module="Proj-Base" Type="1">UHJldmlldw==</PHRASE>
+ <PHRASE Label="la_ColHeader_Replacement" Module="Proj-Base" Type="1">UmVwbGFjZW1lbnQ=</PHRASE>
+ <PHRASE Label="la_ColHeader_Reply" Module="Proj-Base" Type="1">UmVwbGllcw==</PHRASE>
+ <PHRASE Label="la_ColHeader_RuleType" Module="Proj-Base" Type="1">UnVsZSBUeXBl</PHRASE>
+ <PHRASE Label="la_ColHeader_Status" Module="Proj-Base" Type="1">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_ColHeader_Topic" Module="Proj-Base" Type="1">VG9waWM=</PHRASE>
+ <PHRASE Label="la_ColHeader_Url" Module="Proj-Base" Type="1">VVJM</PHRASE>
+ <PHRASE Label="la_ColHeader_ValidationStatus" Module="Proj-Base" Type="2">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_ColHeader_ValidationTime" Module="Proj-Base" Type="2">VmFsaWRhdGVkIE9u</PHRASE>
+ <PHRASE Label="la_ColHeader_Value" Module="Proj-Base" Type="1">VmFsdWU=</PHRASE>
+ <PHRASE Label="la_ColHeader_Views" Module="Proj-Base" Type="1">Vmlld3M=</PHRASE>
+ <PHRASE Label="la_col_Access" Module="Proj-Base" Type="1">QWNjZXNz</PHRASE>
+ <PHRASE Label="la_col_AdditionalPermissions" Module="Proj-Base" Type="1">QWRkaXRpb25hbA==</PHRASE>
+ <PHRASE Label="la_col_Basedon" Module="Proj-Base" Type="1">QmFzZWQgT24=</PHRASE>
+ <PHRASE Label="la_col_Category" Module="Proj-Base" Type="1">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_col_CategoryName" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_col_CreatedOn" Module="Proj-Base" Type="1">Q3JlYXRlZCBPbg==</PHRASE>
+ <PHRASE Label="la_col_Description" Module="Proj-Base" Type="1">RGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="la_col_Duration" Module="Proj-Base" Type="1">RHVyYXRpb24=</PHRASE>
+ <PHRASE Label="la_col_DurationType" Module="Proj-Base" Type="1">RHVyYXRpb24gVHlwZQ==</PHRASE>
+ <PHRASE Label="la_col_Effective" Module="Proj-Base" Type="1">RWZmZWN0aXZl</PHRASE>
+ <PHRASE Label="la_col_Email" Module="Proj-Base" Type="1">RW1haWw=</PHRASE>
+ <PHRASE Label="la_col_Event" Module="Proj-Base" Type="1">RXZlbnQ=</PHRASE>
+ <PHRASE Label="la_col_FieldName" Module="Proj-Base" Type="1">RmllbGQgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_col_FirstName" Module="Proj-Base" Type="1">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_col_GroupName" Module="Proj-Base" Type="1">R3JvdXAgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_col_Id" Module="Proj-Base" Type="1">SUQ=</PHRASE>
+ <PHRASE Label="la_col_ImageEnabled" Module="Proj-Base" Type="1">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_col_ImageName" Module="Proj-Base" Type="1">SW1hZ2U=</PHRASE>
+ <PHRASE Label="la_col_ImageUrl" Module="Proj-Base" Type="1">VVJM</PHRASE>
+ <PHRASE Label="la_col_Inherited" Module="Proj-Base" Type="1">SW5oZXJpdGVk</PHRASE>
+ <PHRASE Label="la_col_InheritedFrom" Module="Proj-Base" Type="1">SW5oZXJpdGVkIEZyb20=</PHRASE>
+ <PHRASE Label="la_col_IsSystem" Module="Proj-Base" Type="1">U3lzdGVt</PHRASE>
+ <PHRASE Label="la_col_Label" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_col_LastChanged" Module="Proj-Base" Type="1">TGFzdCBDaGFuZ2Vk</PHRASE>
+ <PHRASE Label="la_col_LastCompiled" Module="Proj-Base" Type="1">TGFzdCBDb21waWxlZA==</PHRASE>
+ <PHRASE Label="la_col_LastName" Module="Proj-Base" Type="1">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="la_col_LinkUrl" Module="Proj-Base" Type="1">TGluayBVUkw=</PHRASE>
+ <PHRASE Label="la_col_LocalName" Module="Proj-Base" Type="1">TmFtZQ==</PHRASE>
+ <PHRASE Label="la_col_Module" Module="Proj-Base" Type="1">TW9kdWxl</PHRASE>
+ <PHRASE Label="la_col_Name" Module="Proj-Base" Type="1">TmFtZQ==</PHRASE>
+ <PHRASE Label="la_col_PackName" Module="Proj-Base" Type="1">UGFjayBOYW1l</PHRASE>
+ <PHRASE Label="la_col_PermAdd" Module="Proj-Base" Type="1">QWRk</PHRASE>
+ <PHRASE Label="la_col_PermDelete" Module="Proj-Base" Type="1">RGVsZXRl</PHRASE>
+ <PHRASE Label="la_col_PermEdit" Module="Proj-Base" Type="1">RWRpdA==</PHRASE>
+ <PHRASE Label="la_col_PermissionName" Module="Proj-Base" Type="1">UGVybWlzc2lvbiBOYW1l</PHRASE>
+ <PHRASE Label="la_col_PermissionValue" Module="Proj-Base" Type="1">QWNjZXNz</PHRASE>
+ <PHRASE Label="la_col_PermView" Module="Proj-Base" Type="1">Vmlldw==</PHRASE>
+ <PHRASE Label="la_col_PhraseType" Module="Proj-Base" Type="1">VHlwZQ==</PHRASE>
+ <PHRASE Label="la_col_Preview" Module="Proj-Base" Type="1">UHJldmlldw==</PHRASE>
+ <PHRASE Label="la_col_PrimaryGroup" Module="Proj-Base" Type="1">UHJpbWFyeSBHcm91cA==</PHRASE>
+ <PHRASE Label="la_col_PrimaryValue" Module="Proj-Base" Type="1">UHJpbWFyeSBWYWx1ZQ==</PHRASE>
+ <PHRASE Label="la_col_Prompt" Module="Proj-Base" Type="1">RmllbGQgUHJvbXB0</PHRASE>
+ <PHRASE Label="la_col_RelationshipType" Module="Proj-Base" Type="1">UmVsYXRpb24gVHlwZQ==</PHRASE>
+ <PHRASE Label="la_col_ReviewedBy" Module="Proj-Base" Type="1">UmV2aWV3ZWQgQnk=</PHRASE>
+ <PHRASE Label="la_col_ReviewText" Module="Proj-Base" Type="1">UmV2aWV3IFRleHQ=</PHRASE>
+ <PHRASE Label="la_col_SelectorName" Module="Proj-Base" Type="1">U2VsZWN0b3I=</PHRASE>
+ <PHRASE Label="la_col_Status" Module="Proj-Base" Type="1">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_col_TargetId" Module="Proj-Base" Type="1">SXRlbQ==</PHRASE>
+ <PHRASE Label="la_col_TargetType" Module="Proj-Base" Type="1">SXRlbSBUeXBl</PHRASE>
+ <PHRASE Label="la_col_Title" Module="Proj-Base" Type="1">VGl0bGU=</PHRASE>
+ <PHRASE Label="la_col_Translation" Module="Proj-Base" Type="1">VmFsdWU=</PHRASE>
+ <PHRASE Label="la_col_Type" Module="Proj-Base" Type="1">VHlwZQ==</PHRASE>
+ <PHRASE Label="la_col_UserCount" Module="Proj-Base" Type="1">VXNlciBDb3VudA==</PHRASE>
+ <PHRASE Label="la_col_Value" Module="Proj-Base" Type="1">RmllbGQgVmFsdWU=</PHRASE>
+ <PHRASE Label="la_col_VisitDate" Module="Proj-Base" Type="1">VmlzaXQgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_common_ascending" Module="Proj-Base" Type="1">QXNjZW5kaW5n</PHRASE>
+ <PHRASE Label="la_common_CreatedOn" Module="Proj-Base" Type="1">RGF0ZQ==</PHRASE>
+ <PHRASE Label="la_common_descending" Module="Proj-Base" Type="1">RGVzY2VuZGluZw==</PHRASE>
+ <PHRASE Label="la_common_ReviewText" Module="Proj-Base" Type="1">UmV2aWV3IFRleHQ=</PHRASE>
+ <PHRASE Label="la_configerror_review" Module="Proj-Base" Type="1">UmV2aWV3IG5vdCBhZGRlZCBkdWUgdG8gYSBzeXN0ZW0gZXJyb3I=</PHRASE>
+ <PHRASE Label="la_config_backup_path" Module="Proj-Base" Type="1">QmFja3VwIFBhdGg=</PHRASE>
+ <PHRASE Label="la_config_company" Module="Proj-Base" Type="1">Q29tcGFueQ==</PHRASE>
+ <PHRASE Label="la_config_error_template" Module="Proj-Base" Type="1">RmlsZSBub3QgZm91bmQgKDQwNCkgdGVtcGxhdGU=</PHRASE>
+ <PHRASE Label="la_config_first_day_of_week" Module="Proj-Base" Type="1">Rmlyc3QgRGF5IE9mIFdlZWs=</PHRASE>
+ <PHRASE Label="la_config_force_http" Module="Proj-Base" Type="1">UmVkaXJlY3QgdG8gSFRUUCB3aGVuIFNTTCBpcyBub3QgcmVxdWlyZWQ=</PHRASE>
+ <PHRASE Label="la_config_name" Module="Proj-Base" Type="1">TmFtZQ==</PHRASE>
+ <PHRASE Label="la_config_nopermission_template" Module="Proj-Base" Type="1">SW5zdWZmaWNlbnQgcGVybWlzc2lvbnMgdGVtcGxhdGU=</PHRASE>
+ <PHRASE Label="la_config_OutputCompressionLevel" Module="Proj-Base" Type="1">R1pJUCBjb21wcmVzc2lvbiBsZXZlbCAwLTk=</PHRASE>
+ <PHRASE Label="la_config_PerpageReviews" Module="Proj-Base" Type="1">UmV2aWV3cyBwZXIgcGFnZQ==</PHRASE>
+ <PHRASE Label="la_config_reg_number" Module="Proj-Base" Type="1">UmVnaXN0cmF0aW9uIE51bWJlcg==</PHRASE>
+ <PHRASE Label="la_config_require_ssl" Module="Proj-Base" Type="1">UmVxdWlyZSBTU0wgZm9yIGxvZ2luICYgY2hlY2tvdXQ=</PHRASE>
+ <PHRASE Label="la_config_server_name" Module="Proj-Base" Type="1">U2VydmVyIE5hbWU=</PHRASE>
+ <PHRASE Label="la_config_server_path" Module="Proj-Base" Type="1">U2VydmVyIFBhdGg=</PHRASE>
+ <PHRASE Label="la_config_site_zone" Module="Proj-Base" Type="1">VGltZSB6b25lIG9mIHRoZSBzaXRl</PHRASE>
+ <PHRASE Label="la_config_ssl_url" Module="Proj-Base" Type="1">U1NMIEZ1bGwgVVJMIChodHRwczovL3d3dy5kb21haW4uY29tL3BhdGgp</PHRASE>
+ <PHRASE Label="la_config_time_server" Module="Proj-Base" Type="1">VGltZSB6b25lIG9mIHRoZSBzZXJ2ZXI=</PHRASE>
+ <PHRASE Label="la_config_UseOutputCompression" Module="Proj-Base" Type="1">RW5hYmxlIEhUTUwgR1pJUCBjb21wcmVzc2lvbg==</PHRASE>
+ <PHRASE Label="la_config_use_js_redirect" Module="Proj-Base" Type="1">VXNlIEphdmFTY3JpcHQgcmVkaXJlY3Rpb24gYWZ0ZXIgbG9naW4vbG9nb3V0IChmb3IgSUlTKQ==</PHRASE>
+ <PHRASE Label="la_config_use_modrewrite" Module="Proj-Base" Type="1">VXNlIE1PRCBSRVdSSVRF</PHRASE>
+ <PHRASE Label="la_config_use_modrewrite_with_ssl" Module="Proj-Base" Type="1">RW5hYmxlIE1PRF9SRVdSSVRFIGZvciBTU0w=</PHRASE>
+ <PHRASE Label="la_config_website_address" Module="Proj-Base" Type="1">V2Vic2l0ZSBhZGRyZXNz</PHRASE>
+ <PHRASE Label="la_config_website_name" Module="Proj-Base" Type="1">V2Vic2l0ZSBuYW1l</PHRASE>
+ <PHRASE Label="la_config_web_address" Module="Proj-Base" Type="1">V2ViIGFkZHJlc3M=</PHRASE>
+ <PHRASE Label="la_confirm_maintenance" Module="Proj-Base" Type="1">VGhlIGNhdGVnb3J5IHRyZWUgbXVzdCBiZSB1cGRhdGVkIHRvIHJlZmxlY3QgdGhlIGxhdGVzdCBjaGFuZ2Vz</PHRASE>
+ <PHRASE Label="la_Continue" Module="Proj-Base" Type="1">Q29udGludWU=</PHRASE>
+ <PHRASE Label="la_CreatedOn" Module="Proj-Base" Type="1">Q3JlYXRlZCBPbg==</PHRASE>
+ <PHRASE Label="la_Credits_Title" Module="Proj-Base" Type="1">Q3JlZGl0cw==</PHRASE>
+ <PHRASE Label="la_days" Module="Proj-Base" Type="1">ZGF5cw==</PHRASE>
+ <PHRASE Label="la_Delete_Confirm" Module="Proj-Base" Type="1">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGRlbGV0ZSB0aGUgaXRlbShzKT8gVGhpcyBhY3Rpb24gY2Fubm90IGJlIHVuZG9uZS4=</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tQnVsbGV0aW4gc2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:configuration_censorship" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgY2Vuc29yZWQgd29yZHMgYW5kIHRoZWlyIHJlcGxhY2VtZW50cw==</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:configuration_custom" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgY3VzdG9tIGZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:configuration_email" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tYnVsbHRlaW4gZW1haWwgc2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:configuration_emoticon" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2Ugc2ltbGV5cw==</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:configuration_output" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tYnVsbHRlaW4gb3V0cHV0IHNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:configuration_search" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tYnVsbHRlaW4gZGVmYXVsdCBzZWFyY2ggc2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Description_in-bulletin:inbulletin_general" Module="Proj-Base" Type="2">SW4tYnVsbGV0aW4gZ2VuZXJhbCBjb25maWd1cmF0aW9uIG9wdGlvbnM=</PHRASE>
+ <PHRASE Label="la_Description_in-link" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbGluayBzZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_Description_in-link:configuration_custom" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgY3VzdG9tIGZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_Description_in-link:configuration_email" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgZW1haWwgZXZlbnRz</PHRASE>
+ <PHRASE Label="la_Description_in-link:configuration_output" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbGluayBvdXRwdXQgc2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Description_in-link:configuration_search" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2Ugc2VhcmNoIHNldHRpbmdzIGFuZCBmaWVsZHM=</PHRASE>
+ <PHRASE Label="la_Description_in-link:inlink_general" Module="Proj-Base" Type="2">SW4tTGluayBHZW5lcmFsIENvbmZpZ3VyYXRpb24gT3B0aW9ucw==</PHRASE>
+ <PHRASE Label="la_Description_in-link:validation_list" Module="Proj-Base" Type="2">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBydW4gdmFsaWRhdGlvbiBvbiB0aGUgbGlua3M=</PHRASE>
+ <PHRASE Label="la_Description_in-news" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbmV3eiBzZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_Description_in-news:configuration_custom" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbmV3eiBjdXN0b20gZmllbGRz</PHRASE>
+ <PHRASE Label="la_Description_in-news:configuration_email" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbmV3eiBlbWFpbCBjb25maWd1cmF0aW9u</PHRASE>
+ <PHRASE Label="la_Description_in-news:configuration_output" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbmV3eiBvdXRwdXQgc2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Description_in-news:configuration_search" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgSW4tbmV3eiBkZWZhdWx0IHNlYXJjaCBjb25maWd1cmF0aW9u</PHRASE>
+ <PHRASE Label="la_Description_in-news:innews_general" Module="Proj-Base" Type="2">SW4tTmV3eiBnZW5lcmFsIGNvbmZpZ3VyYXRpb24gb3B0aW9ucw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:addmodule" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBpbnN0YWxsIG5ldyBtb2R1bGVz</PHRASE>
+ <PHRASE Label="la_Description_in-portal:advanced_view" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB5b3UgdG8gbWFuYWdlIGNhdGVnb3JpZXMgYW5kIGl0ZW1zIGFjcm9zcyBhbGwgY2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:backup" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBwZXJmb3JtIHN5c3RlbSBiYWNrdXBz</PHRASE>
+ <PHRASE Label="la_Description_in-portal:browse" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB5b3UgdG8gYnJvd3NlIHRoZSBjYXRhbG9nIGFuZCBtYW5hZ2UgY2F0ZWdvcmllcyBhbmQgaXRlbXM=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configuration_custom" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB5b3UgdG8gY29uZmlndXJlIGNhdGVnb3J5IGN1c3RvbSBmaWVsZHM=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configuration_email" Module="Proj-Base" Type="2">Q29uZmlndXJlIENhdGVnb3J5IEVtYWlsIEV2ZW50cw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configuration_search" Module="Proj-Base" Type="2">Q29uZmlndXJlIENhdGVnb3J5IHNlYXJjaCBvcHRpb25z</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configure_categories" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB5b3UgdG8gY29uZmlndXJlIGdlbmVyYWwgY2F0ZWdvcnkgc2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configure_general" Module="Proj-Base" Type="1">VGhpcyBpcyBhIGdlbmVyYWwgY29uZmd1cmF0aW9uIHNlY3Rpb24=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configure_lang" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgcmVnaW9uYWwgc2V0dGluZ3MsIG1hbmFnZSBhbmQgZWRpdCBsYW5ndWFnZXM=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configure_styles" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgQ1NTIHN0eWxlc2hlZXRzIGZvciB0aGVtZXMu</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configure_themes" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgdGhlbWVzIGFuZCBlZGl0IHRoZSBpbmRpdmlkdWFsIHRlbXBsYXRlcw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:configure_users" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB5b3UgdG8gY29uZmlndXJlIGdlbmVyYWwgdXNlciBzZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:emaillog" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIHNob3dzIGFsbCBlLW1haWxzIHNlbnQgYnkgSW4tUG9ydGFs</PHRASE>
+ <PHRASE Label="la_Description_in-portal:export" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBleHBvcnQgSW4tcG9ydGFsIGRhdGE=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:help" Module="Proj-Base" Type="1">SGVscCBzZWN0aW9uIGZvciBJbi1wb3J0YWwgYW5kIGFsbCBvZiBpdHMgbW9kdWxlcy4gQWxzbyBhY2Nlc3NpYmxlIHZpYSB0aGUgc2VjdGlvbi1zcGVjaWZpYyBpbnRlcmFjdGl2ZSBoZWxwIGZlYXR1cmUu</PHRASE>
+ <PHRASE Label="la_Description_in-portal:inlink_inport" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBpbXBvcnQgZGF0YSBmcm9tIG90aGVyIHByb2dyYW1zIGludG8gSW4tcG9ydGFs</PHRASE>
+ <PHRASE Label="la_Description_in-portal:log_summary" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIHNob3dzIHN1bW1hcnkgc3RhdGlzdGljcw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:main_import" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBwZXJmb3JtIGRhdGEgaW1wb3J0IGZyb20gb3RoZXIgc3lzdGVtcw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:modules" Module="Proj-Base" Type="1">TWFuYWdlIHN0YXR1cyBvZiBhbGwgbW9kdWxlcyB3aGljaCBhcmUgaW5zdGFsbGVkIG9uIHlvdXIgSW4tcG9ydGFsIHN5c3RlbS4=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:mod_status" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBlbmFibGVkIGFuZCBkaXNhYmxlIG1vZHVsZXM=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:reports" Module="Proj-Base" Type="1">VmlldyBzeXN0ZW0gc3RhdGlzdGljcywgbG9ncyBhbmQgcmVwb3J0cw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:restore" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBwZXJmb3JtIGRhdGFiYXNlIHJlc3RvcmVz</PHRASE>
+ <PHRASE Label="la_Description_in-portal:reviews" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGRpc3BsYXlzIGEgbGlzdCBvZiBhbGwgcmV2aWV3cyBpbiB0aGUgc3lzdGVtLg==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:searchlog" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIHNob3dzIHRoZSBzZWFyY2ggbG9nIGFuZCBhbGxvd3MgdG8gbWFuYWdlIGl0</PHRASE>
+ <PHRASE Label="la_Description_in-portal:server_info" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byB2aWV3IFBIUCBjb25maWd1cmF0aW9u</PHRASE>
+ <PHRASE Label="la_Description_in-portal:sessionlog" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIHNob3dzIGFsbCBhY3RpdmUgc2Vzc2lvbnMgYW5kIGFsbG93cyB0byBtYW5hZ2UgdGhlbQ==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:site" Module="Proj-Base" Type="1">TWFuYWdlIHRoZSBzdHJ1Y3R1cmUgb2YgeW91ciBzaXRlLCBpbmNsdWRpbmcgY2F0ZWdvcmllcywgaXRlbXMgYW5kIGNhdGVnb3J5IHNldHRpbmdzLg==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:sql_query" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBwZXJmb3JtIGRpcmVjdCBTUUwgcXVlcmllcyBvbiBJbi1wb3J0YWwgZGF0YWJhc2U=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:system" Module="Proj-Base" Type="1">TWFuYWdlIHN5c3RlbS13aWRlIHNldHRpbmdzLCBlZGl0IHRoZW1lcyBhbmQgbGFuZ3VhZ2Vz</PHRASE>
+ <PHRASE Label="la_Description_in-portal:tag_library" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIHNob3dzIGF2YWlsYWJsZSB0YWdzIGZvciB1c2luZyBpbiB0ZW1wbGF0ZXM=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:tools" Module="Proj-Base" Type="1">VXNlIHZhcmlvdXMgSW4tcG9ydGFsIGRhdGEgbWFuYWdlbWVudCB0b29scywgaW5jbHVkaW5nIGJhY2t1cCwgcmVzdG9yZSwgaW1wb3J0IGFuZCBleHBvcnQ=</PHRASE>
+ <PHRASE Label="la_Description_in-portal:users" Module="Proj-Base" Type="1">TWFuYWdlIHVzZXJzIGFuZCBncm91cHMsIHNldCB1c2VyICYgZ3JvdXAgcGVybWlzc2lvbnMgYW5kIGRlZmluZSB1c2VyIHNldHRpbmdzLg==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:user_banlist" Module="Proj-Base" Type="2">TWFuYWdlIFVzZXIgQmFuIFJ1bGVz</PHRASE>
+ <PHRASE Label="la_Description_in-portal:user_custom" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB5b3UgdG8gY29uZmlndXJlIHVzZXIgY3VzdG9tIGZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:user_email" Module="Proj-Base" Type="2">Q29uZmlndXJlIFVzZXIgZW1haWwgZXZlbnRz</PHRASE>
+ <PHRASE Label="la_Description_in-portal:user_groups" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYWdhbmUgZ3JvdXBzLCBhc3NpZ24gdXNlcnMgdG8gZ3JvdXBzIGFuZCBwZXJmb3JtIG1hc3MgZW1haWwgc2VuZGluZw==</PHRASE>
+ <PHRASE Label="la_Description_in-portal:user_list" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9ucyBhbGxvd3MgdG8gbWFuYWdlIHVzZXJzLCB0aGVpciBwZXJtaXNzaW9ucyBhbmQgcGVyZm9ybSBtYXNzIGVtYWls</PHRASE>
+ <PHRASE Label="la_Description_in-portal:visits" Module="Proj-Base" Type="1">VGhpcyBzZWN0aW9uIHNob3dzIHRoZSBzaXRlIHZpc2l0b3JzIGxvZw==</PHRASE>
+ <PHRASE Label="la_Disabled" Module="Proj-Base" Type="1">RGlzYWJsZWQ=</PHRASE>
+ <PHRASE Label="la_DownloadExportFile" Module="Proj-Base" Type="1">RG93bmxvYWQgRXhwb3J0IEZpbGU=</PHRASE>
+ <PHRASE Label="la_DownloadLanguageExport" Module="Proj-Base" Type="1">RG93bmxvYWQgTGFuZ3VhZ2UgRXhwb3J0</PHRASE>
+ <PHRASE Label="la_EditingInProgress" Module="Proj-Base" Type="1">WW91IGhhdmUgbm90IHNhdmVkIGNoYW5nZXMgdG8gdGhlIGl0ZW0geW91IGFyZSBlZGl0aW5nITxiciAvPkNsaWNrIE9LIHRvIGxvb3NlIGNoYW5nZXMgYW5kIGdvIHRvIHRoZSBzZWxlY3RlZCBzZWN0aW9uPGJyIC8+b3IgQ2FuY2VsIHRvIHN0YXkgaW4gdGhlIGN1cnJlbnQgc2VjdGlvbi4=</PHRASE>
+ <PHRASE Label="la_EmptyFile" Module="Proj-Base" Type="1">RmlsZSBpcyBlbXB0eQ==</PHRASE>
+ <PHRASE Label="la_EmptyValue" Module="Proj-Base" Type="1">IA==</PHRASE>
+ <PHRASE Label="la_Enabled" Module="Proj-Base" Type="1">RW5hYmxlZA==</PHRASE>
+ <PHRASE Label="la_error_cant_save_file" Module="Proj-Base" Type="1">Q2FuJ3Qgc2F2ZSBhIGZpbGU=</PHRASE>
+ <PHRASE Label="la_error_copy_subcategory" Module="Proj-Base" Type="1">RXJyb3IgY29weWluZyBzdWJjYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="la_error_CustomExists" Module="Proj-Base" Type="1">Q3VzdG9tIGZpZWxkIHdpdGggaWRlbnRpY2FsIG5hbWUgYWxyZWFkeSBleGlzdHM=</PHRASE>
+ <PHRASE Label="la_error_duplicate_username" Module="Proj-Base" Type="1">VXNlcm5hbWUgeW91IGhhdmUgZW50ZXJlZCBhbHJlYWR5IGV4aXN0cyBpbiB0aGUgc3lzdGVtLCBwbGVhc2UgY2hvb3NlIGFub3RoZXIgdXNlcm5hbWUu</PHRASE>
+ <PHRASE Label="la_error_FileTooLarge" Module="Proj-Base" Type="1">RmlsZSBpcyB0b28gbGFyZ2U=</PHRASE>
+ <PHRASE Label="la_error_InvalidFileFormat" Module="Proj-Base" Type="1">SW52YWxpZCBGaWxlIEZvcm1hdA==</PHRASE>
+ <PHRASE Label="la_error_move_subcategory" Module="Proj-Base" Type="1">RXJyb3IgbW92aW5nIHN1YmNhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_error_PasswordMatch" Module="Proj-Base" Type="1">UGFzc3dvcmRzIGRvIG5vdCBtYXRjaCE=</PHRASE>
+ <PHRASE Label="la_error_RequiredColumnsMissing" Module="Proj-Base" Type="1">cmVxdWlyZWQgY29sdW1ucyBtaXNzaW5n</PHRASE>
+ <PHRASE Label="la_error_unique_category_field" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgZmllbGQgbm90IHVuaXF1ZQ==</PHRASE>
+ <PHRASE Label="la_error_unknown_category" Module="Proj-Base" Type="1">VW5rbm93biBjYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_err_bad_date_format" Module="Proj-Base" Type="1">SW5jb3JyZWN0IGRhdGUgZm9ybWF0LCBwbGVhc2UgdXNlICglcykgZXguICglcyk=</PHRASE>
+ <PHRASE Label="la_err_bad_type" Module="Proj-Base" Type="1">SW5jb3JyZWN0IGRhdGEgZm9ybWF0LCBwbGVhc2UgdXNlICVz</PHRASE>
+ <PHRASE Label="la_err_invalid_format" Module="Proj-Base" Type="1">SW52YWxpZCBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_err_length_out_of_range" Module="Proj-Base" Type="1">RmllbGQgaXMgb3V0IG9mIHJhbmdl</PHRASE>
+ <PHRASE Label="la_err_required" Module="Proj-Base" Type="1">RmllbGQgaXMgcmVxdWlyZWQ=</PHRASE>
+ <PHRASE Label="la_err_unique" Module="Proj-Base" Type="1">RmllbGQgdmFsdWUgbXVzdCBiZSB1bmlxdWU=</PHRASE>
+ <PHRASE Label="la_err_value_out_of_range" Module="Proj-Base" Type="1">RmllbGQgaXMgb3V0IG9mIHJhbmdlLCBwb3NzaWJsZSB2YWx1ZXMgZnJvbSAlcyB0byAlcw==</PHRASE>
+ <PHRASE Label="la_event_article.add" Module="Proj-Base" Type="1">QWRkIEFydGljbGU=</PHRASE>
+ <PHRASE Label="la_event_article.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBBcnRpY2xl</PHRASE>
+ <PHRASE Label="la_event_article.deny" Module="Proj-Base" Type="1">RGVjbGluZSBBcnRpY2xl</PHRASE>
+ <PHRASE Label="la_event_article.modify" Module="Proj-Base" Type="1">TW9kaWZ5IEFydGljbGU=</PHRASE>
+ <PHRASE Label="la_event_article.modify.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBBcnRpY2xlIE1vZGlmaWNhdGlvbg==</PHRASE>
+ <PHRASE Label="la_event_article.modify.deny" Module="Proj-Base" Type="1">RGVjbGluZSBBcnRpY2xlIE1vZGlmaWNhdGlvbg==</PHRASE>
+ <PHRASE Label="la_event_article.review.add" Module="Proj-Base" Type="1">QXJ0aWNsZSBSZXZpZXcgQWRkZWQ=</PHRASE>
+ <PHRASE Label="la_event_article.review.add.pending" Module="Proj-Base" Type="1">UGVuZGluZyBBcnRpY2xlIFJldmlldyBBZGRlZA==</PHRASE>
+ <PHRASE Label="la_event_article.review.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBBcnRpY2xlIFJldmlldw==</PHRASE>
+ <PHRASE Label="la_event_article.review.deny" Module="Proj-Base" Type="1">RGVjbGluZSBBcnRpY2xlIFJldmlldw==</PHRASE>
+ <PHRASE Label="la_event_category.add" Module="Proj-Base" Type="1">QWRkIENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_event_category.add.pending" Module="Proj-Base" Type="1">QWRkIFBlbmRpbmcgQ2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_event_category.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_event_category.deny" Module="Proj-Base" Type="1">RGVueSBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_event_category.modify" Module="Proj-Base" Type="1">TW9kaWZ5IENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_event_category_delete" Module="Proj-Base" Type="1">RGVsZXRlIENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_event_common.footer" Module="Proj-Base" Type="1">Q29tbW9uIEZvb3RlciBUZW1wbGF0ZQ==</PHRASE>
+ <PHRASE Label="la_event_import_progress" Module="Proj-Base" Type="1">RW1haWwgZXZlbnRzIGltcG9ydCBwcm9ncmVzcw==</PHRASE>
+ <PHRASE Label="la_event_link.add" Module="Proj-Base" Type="1">QWRkIExpbms=</PHRASE>
+ <PHRASE Label="la_event_link.add.pending" Module="Proj-Base" Type="1">QWRkIFBlbmRpbmcgTGluaw==</PHRASE>
+ <PHRASE Label="la_event_link.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBQZW5kaW5nIExpbms=</PHRASE>
+ <PHRASE Label="la_event_link.deny" Module="Proj-Base" Type="1">RGVueSBMaW5r</PHRASE>
+ <PHRASE Label="la_event_link.modify" Module="Proj-Base" Type="1">TW9kaWZ5IExpbms=</PHRASE>
+ <PHRASE Label="la_event_link.modify.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBMaW5rIE1vZGlmaWNhdGlvbg==</PHRASE>
+ <PHRASE Label="la_event_link.modify.deny" Module="Proj-Base" Type="1">RGVjbGluZSBsaW5rIG1vZGlmaWNhdGlvbg==</PHRASE>
+ <PHRASE Label="la_event_link.modify.pending" Module="Proj-Base" Type="1">TGluayBNb2RpZmljYXRpb24gUGVuZGluZw==</PHRASE>
+ <PHRASE Label="la_event_link.review.add" Module="Proj-Base" Type="1">TGluayBSZXZpZXcgQWRkZWQ=</PHRASE>
+ <PHRASE Label="la_event_link.review.add.pending" Module="Proj-Base" Type="1">UGVuZGluZyBSZXZpZXcgQWRkZWQ=</PHRASE>
+ <PHRASE Label="la_event_link.review.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBMaW5rIFJldmlldw==</PHRASE>
+ <PHRASE Label="la_event_link.review.deny" Module="Proj-Base" Type="1">RGVjbGluZSBMaW5rIFJldmlldw==</PHRASE>
+ <PHRASE Label="la_event_pm.add" Module="Proj-Base" Type="1">TmV3IFByaXZhdGUgTWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="la_event_post.add" Module="Proj-Base" Type="1">UG9zdCBBZGRlZA==</PHRASE>
+ <PHRASE Label="la_event_post.modify" Module="Proj-Base" Type="1">UG9zdCBNb2RpZmllZA==</PHRASE>
+ <PHRASE Label="la_event_topic.add" Module="Proj-Base" Type="1">VG9waWMgQWRkZWQ=</PHRASE>
+ <PHRASE Label="la_event_user.add" Module="Proj-Base" Type="1">QWRkIFVzZXI=</PHRASE>
+ <PHRASE Label="la_event_user.add.pending" Module="Proj-Base" Type="1">QWRkIFBlbmRpbmcgVXNlcg==</PHRASE>
+ <PHRASE Label="la_event_user.approve" Module="Proj-Base" Type="1">QXBwcm92ZSBVc2Vy</PHRASE>
+ <PHRASE Label="la_event_user.deny" Module="Proj-Base" Type="1">RGVueSBVc2Vy</PHRASE>
+ <PHRASE Label="la_event_user.forgotpw" Module="Proj-Base" Type="1">Rm9yZ290IFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="la_event_user.membership_expiration_notice" Module="Proj-Base" Type="1">TWVtYmVyc2hpcCBleHBpcmF0aW9uIG5vdGljZQ==</PHRASE>
+ <PHRASE Label="la_event_user.membership_expired" Module="Proj-Base" Type="1">TWVtYmVyc2hpcCBleHBpcmVk</PHRASE>
+ <PHRASE Label="la_event_user.pswd_confirm" Module="Proj-Base" Type="1">UGFzc3dvcmQgQ29uZmlybWF0aW9u</PHRASE>
+ <PHRASE Label="la_event_user.subscribe" Module="Proj-Base" Type="1">VXNlciBzdWJzY3JpYmVk</PHRASE>
+ <PHRASE Label="la_event_user.suggest" Module="Proj-Base" Type="1">U3VnZ2VzdCB0byBhIGZyaWVuZA==</PHRASE>
+ <PHRASE Label="la_event_user.unsubscribe" Module="Proj-Base" Type="1">VXNlciB1bnN1YnNjcmliZWQ=</PHRASE>
+ <PHRASE Label="la_event_user.validate" Module="Proj-Base" Type="1">VmFsaWRhdGUgVXNlcg==</PHRASE>
+ <PHRASE Label="la_Field" Module="Proj-Base" Type="1">RmllbGQ=</PHRASE>
+ <PHRASE Label="la_field_displayorder" Module="Proj-Base" Type="1">RGlzcGxheSBPcmRlcg==</PHRASE>
+ <PHRASE Label="la_fld_AddressLine" Module="Proj-Base" Type="1">QWRkcmVzcyBMaW5l</PHRASE>
+ <PHRASE Label="la_fld_AdvancedCSS" Module="Proj-Base" Type="1">QWR2YW5jZWQgQ1NT</PHRASE>
+ <PHRASE Label="la_fld_AltValue" Module="Proj-Base" Type="1">QWx0IFZhbHVl</PHRASE>
+ <PHRASE Label="la_fld_AutomaticFilename" Module="Proj-Base" Type="1">QXV0b21hdGljIEZpbGVuYW1l</PHRASE>
+ <PHRASE Label="la_fld_AvailableColumns" Module="Proj-Base" Type="1">QXZhaWxhYmxlIENvbHVtbnM=</PHRASE>
+ <PHRASE Label="la_fld_Background" Module="Proj-Base" Type="1">QmFja2dyb3VuZA==</PHRASE>
+ <PHRASE Label="la_fld_BackgroundAttachment" Module="Proj-Base" Type="1">QmFja2dyb3VuZCBBdHRhY2htZW50</PHRASE>
+ <PHRASE Label="la_fld_BackgroundColor" Module="Proj-Base" Type="1">QmFja2dyb3VuZCBDb2xvcg==</PHRASE>
+ <PHRASE Label="la_fld_BackgroundImage" Module="Proj-Base" Type="1">QmFja2dyb3VuZCBJbWFnZQ==</PHRASE>
+ <PHRASE Label="la_fld_BackgroundPosition" Module="Proj-Base" Type="1">QmFja2dyb3VuZCBQb3NpdGlvbg==</PHRASE>
+ <PHRASE Label="la_fld_BackgroundRepeat" Module="Proj-Base" Type="1">QmFja2dyb3VuZCBSZXBlYXQ=</PHRASE>
+ <PHRASE Label="la_fld_BorderBottom" Module="Proj-Base" Type="1">Qm9yZGVyIEJvdHRvbQ==</PHRASE>
+ <PHRASE Label="la_fld_BorderLeft" Module="Proj-Base" Type="1">Qm9yZGVyIExlZnQ=</PHRASE>
+ <PHRASE Label="la_fld_BorderRight" Module="Proj-Base" Type="1">Qm9yZGVyIFJpZ2h0</PHRASE>
+ <PHRASE Label="la_fld_Borders" Module="Proj-Base" Type="1">Qm9yZGVycw==</PHRASE>
+ <PHRASE Label="la_fld_BorderTop" Module="Proj-Base" Type="1">Qm9yZGVyIFRvcA==</PHRASE>
+ <PHRASE Label="la_fld_Category" Module="Proj-Base" Type="1">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_fld_CategoryAutomaticFilename" Module="Proj-Base" Type="1">QXV0b21hdGljIERpcmVjdG9yeSBOYW1l</PHRASE>
+ <PHRASE Label="la_fld_CategoryFilename" Module="Proj-Base" Type="1">RGlyZWN0b3J5IE5hbWU=</PHRASE>
+ <PHRASE Label="la_fld_CategoryFormat" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgRm9ybWF0</PHRASE>
+ <PHRASE Label="la_fld_CategoryId" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgSUQ=</PHRASE>
+ <PHRASE Label="la_fld_CategorySeparator" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgc2VwYXJhdG9y</PHRASE>
+ <PHRASE Label="la_fld_CategoryTemplate" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgVGVtcGxhdGU=</PHRASE>
+ <PHRASE Label="la_fld_Charset" Module="Proj-Base" Type="1">Q2hhcnNldA==</PHRASE>
+ <PHRASE Label="la_fld_CheckDuplicatesMethod" Module="Proj-Base" Type="1">Q2hlY2sgRHVwbGljYXRlcyBieQ==</PHRASE>
+ <PHRASE Label="la_fld_Company" Module="Proj-Base" Type="1">Q29tcGFueQ==</PHRASE>
+ <PHRASE Label="la_fld_CopyLabels" Module="Proj-Base" Type="1">Q29weSBMYWJlbHMgZnJvbSB0aGlzIExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_fld_CreatedById" Module="Proj-Base" Type="1">Q3JlYXRlZCBCeQ==</PHRASE>
+ <PHRASE Label="la_fld_CreatedOn" Module="Proj-Base" Type="1">Q3JlYXRlZCBPbg==</PHRASE>
+ <PHRASE Label="la_fld_Cursor" Module="Proj-Base" Type="1">Q3Vyc29y</PHRASE>
+ <PHRASE Label="la_fld_DateFormat" Module="Proj-Base" Type="1">RGF0ZSBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_fld_DecimalPoint" Module="Proj-Base" Type="1">RGVjaW1hbCBQb2ludA==</PHRASE>
+ <PHRASE Label="la_fld_Description" Module="Proj-Base" Type="1">RGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="la_fld_Display" Module="Proj-Base" Type="1">RGlzcGxheQ==</PHRASE>
+ <PHRASE Label="la_fld_DoNotEncode" Module="Proj-Base" Type="1">QXMgUGxhaW4gVGV4dA==</PHRASE>
+ <PHRASE Label="la_fld_Duration" Module="Proj-Base" Type="1">RHVyYXRpb24=</PHRASE>
+ <PHRASE Label="la_fld_EditorsPick" Module="Proj-Base" Type="1">RWRpdG9ycyBQaWNr</PHRASE>
+ <PHRASE Label="la_fld_ElapsedTime" Module="Proj-Base" Type="1">RWxhcHNlZCBUaW1l</PHRASE>
+ <PHRASE Label="la_fld_Enabled" Module="Proj-Base" Type="1">RW5hYmxlZA==</PHRASE>
+ <PHRASE Label="la_fld_EstimatedTime" Module="Proj-Base" Type="1">RXN0aW1hdGVkIFRpbWU=</PHRASE>
+ <PHRASE Label="la_fld_Expire" Module="Proj-Base" Type="1">RXhwaXJl</PHRASE>
+ <PHRASE Label="la_fld_ExportColumns" Module="Proj-Base" Type="1">RXhwb3J0IGNvbHVtbnM=</PHRASE>
+ <PHRASE Label="la_fld_ExportFileName" Module="Proj-Base" Type="1">RXhwb3J0IEZpbGVuYW1l</PHRASE>
+ <PHRASE Label="la_fld_ExportFormat" Module="Proj-Base" Type="1">RXhwb3J0IGZvcm1hdA==</PHRASE>
+ <PHRASE Label="la_fld_ExportModules" Module="Proj-Base" Type="1">RXhwb3J0IE1vZHVsZXM=</PHRASE>
+ <PHRASE Label="la_fld_ExportPhraseTypes" Module="Proj-Base" Type="1">RXhwb3J0IFBocmFzZSBUeXBlcw==</PHRASE>
+ <PHRASE Label="la_fld_ExtraHeaders" Module="Proj-Base" Type="1">RXh0cmEgSGVhZGVycw==</PHRASE>
+ <PHRASE Label="la_fld_Fax" Module="Proj-Base" Type="1">RmF4</PHRASE>
+ <PHRASE Label="la_fld_FieldsEnclosedBy" Module="Proj-Base" Type="1">RmllbGRzIGVuY2xvc2VkIGJ5</PHRASE>
+ <PHRASE Label="la_fld_FieldsSeparatedBy" Module="Proj-Base" Type="1">RmllbGRzIHNlcGFyYXRlZCBieQ==</PHRASE>
+ <PHRASE Label="la_fld_FieldTitles" Module="Proj-Base" Type="1">RmllbGQgVGl0bGVz</PHRASE>
+ <PHRASE Label="la_fld_Filename" Module="Proj-Base" Type="1">RmlsZW5hbWU=</PHRASE>
+ <PHRASE Label="la_fld_Font" Module="Proj-Base" Type="1">Rm9udA==</PHRASE>
+ <PHRASE Label="la_fld_FontColor" Module="Proj-Base" Type="1">Rm9udCBDb2xvcg==</PHRASE>
+ <PHRASE Label="la_fld_FontFamily" Module="Proj-Base" Type="1">Rm9udCBGYW1pbHk=</PHRASE>
+ <PHRASE Label="la_fld_FontSize" Module="Proj-Base" Type="1">Rm9udCBTaXpl</PHRASE>
+ <PHRASE Label="la_fld_FontStyle" Module="Proj-Base" Type="1">Rm9udCBTdHlsZQ==</PHRASE>
+ <PHRASE Label="la_fld_FontWeight" Module="Proj-Base" Type="1">Rm9udCBXZWlnaHQ=</PHRASE>
+ <PHRASE Label="la_fld_GroupId" Module="Proj-Base" Type="1">SUQ=</PHRASE>
+ <PHRASE Label="la_fld_GroupName" Module="Proj-Base" Type="1">R3JvdXAgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_fld_Height" Module="Proj-Base" Type="1">SGVpZ2h0</PHRASE>
+ <PHRASE Label="la_fld_Hits" Module="Proj-Base" Type="1">SGl0cw==</PHRASE>
+ <PHRASE Label="la_fld_Hot" Module="Proj-Base" Type="1">SG90</PHRASE>
+ <PHRASE Label="la_fld_IconURL" Module="Proj-Base" Type="1">SWNvbiBVUkw=</PHRASE>
+ <PHRASE Label="la_fld_Id" Module="Proj-Base" Type="1">SUQ=</PHRASE>
+ <PHRASE Label="la_fld_ImageId" Module="Proj-Base" Type="1">SW1hZ2UgSUQ=</PHRASE>
+ <PHRASE Label="la_fld_ImportCategory" Module="Proj-Base" Type="1">SW1wb3J0IENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_fld_ImportFilename" Module="Proj-Base" Type="1">SW1wb3J0IEZpbGVuYW1l</PHRASE>
+ <PHRASE Label="la_fld_IncludeFieldTitles" Module="Proj-Base" Type="1">SW5jbHVkZSBmaWVsZCB0aXRsZXM=</PHRASE>
+ <PHRASE Label="la_fld_InputDateFormat" Module="Proj-Base" Type="1">SW5wdXQgRGF0ZSBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_fld_InputTimeFormat" Module="Proj-Base" Type="1">SW5wdXQgVGltZSBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_fld_InstallModules" Module="Proj-Base" Type="1">SW5zdGFsbCBNb2R1bGVz</PHRASE>
+ <PHRASE Label="la_fld_InstallPhraseTypes" Module="Proj-Base" Type="1">SW5zdGFsbCBQaHJhc2UgVHlwZXM=</PHRASE>
+ <PHRASE Label="la_fld_IsBaseCategory" Module="Proj-Base" Type="1">VXNlIGN1cnJlbnQgY2F0ZWdvcnkgYXMgcm9vdCBmb3IgdGhlIGV4cG9ydA==</PHRASE>
+ <PHRASE Label="la_fld_IsPrimary" Module="Proj-Base" Type="1">UHJpbWFyeQ==</PHRASE>
+ <PHRASE Label="la_fld_IsSystem" Module="Proj-Base" Type="1">SXMgU3lzdGVt</PHRASE>
+ <PHRASE Label="la_fld_ItemTemplate" Module="Proj-Base" Type="1">SXRlbSBUZW1wbGF0ZQ==</PHRASE>
+ <PHRASE Label="la_fld_LanguageFile" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgRmlsZQ==</PHRASE>
+ <PHRASE Label="la_fld_LanguageId" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgSUQ=</PHRASE>
+ <PHRASE Label="la_fld_Left" Module="Proj-Base" Type="1">TGVmdA==</PHRASE>
+ <PHRASE Label="la_fld_LineEndings" Module="Proj-Base" Type="1">TGluZSBlbmRpbmdz</PHRASE>
+ <PHRASE Label="la_fld_LineEndingsInside" Module="Proj-Base" Type="1">TGluZSBFbmRpbmdzIEluc2lkZSBGaWVsZHM=</PHRASE>
+ <PHRASE Label="la_fld_LocalName" Module="Proj-Base" Type="1">TG9jYWwgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_fld_Location" Module="Proj-Base" Type="1">TG9jYXRpb24=</PHRASE>
+ <PHRASE Label="la_fld_MarginBottom" Module="Proj-Base" Type="1">TWFyZ2luIEJvdHRvbQ==</PHRASE>
+ <PHRASE Label="la_fld_MarginLeft" Module="Proj-Base" Type="1">TWFyZ2luIExlZnQ=</PHRASE>
+ <PHRASE Label="la_fld_MarginRight" Module="Proj-Base" Type="1">TWFyZ2luIFJpZ2h0</PHRASE>
+ <PHRASE Label="la_fld_Margins" Module="Proj-Base" Type="1">TWFyZ2lucw==</PHRASE>
+ <PHRASE Label="la_fld_MarginTop" Module="Proj-Base" Type="1">TWFyZ2luIFRvcA==</PHRASE>
+ <PHRASE Label="la_fld_MessageBody" Module="Proj-Base" Type="1">TWVzc2FnZSBCb2R5</PHRASE>
+ <PHRASE Label="la_fld_MessageType" Module="Proj-Base" Type="1">TWVzc2FnZSBUeXBl</PHRASE>
+ <PHRASE Label="la_fld_MetaDescription" Module="Proj-Base" Type="1">TWV0YSBEZXNjcmlwdGlvbg==</PHRASE>
+ <PHRASE Label="la_fld_MetaKeywords" Module="Proj-Base" Type="1">TWV0YSBLZXl3b3Jkcw==</PHRASE>
+ <PHRASE Label="la_fld_Modified" Module="Proj-Base" Type="1">TW9kaWZpZWQ=</PHRASE>
+ <PHRASE Label="la_fld_Module" Module="Proj-Base" Type="1">TW9kdWxl</PHRASE>
+ <PHRASE Label="la_fld_Name" Module="Proj-Base" Type="1">TmFtZQ==</PHRASE>
+ <PHRASE Label="la_fld_New" Module="Proj-Base" Type="1">TmV3</PHRASE>
+ <PHRASE Label="la_fld_PackName" Module="Proj-Base" Type="1">UGFjayBOYW1l</PHRASE>
+ <PHRASE Label="la_fld_PaddingBottom" Module="Proj-Base" Type="1">UGFkZGluZyBCb3R0b20=</PHRASE>
+ <PHRASE Label="la_fld_PaddingLeft" Module="Proj-Base" Type="1">UGFkZGluZyBMZWZ0</PHRASE>
+ <PHRASE Label="la_fld_PaddingRight" Module="Proj-Base" Type="1">UGFkZGluZyBSaWdodA==</PHRASE>
+ <PHRASE Label="la_fld_Paddings" Module="Proj-Base" Type="1">UGFkZGluZ3M=</PHRASE>
+ <PHRASE Label="la_fld_PaddingTop" Module="Proj-Base" Type="1">UGFkZGluZyBUb3A=</PHRASE>
+ <PHRASE Label="la_fld_PercentsCompleted" Module="Proj-Base" Type="1">UGVyY2VudHMgQ29tcGxldGVk</PHRASE>
+ <PHRASE Label="la_fld_Phrase" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_fld_PhraseType" Module="Proj-Base" Type="1">UGhyYXNlIFR5cGU=</PHRASE>
+ <PHRASE Label="la_fld_Pop" Module="Proj-Base" Type="1">UG9w</PHRASE>
+ <PHRASE Label="la_fld_Position" Module="Proj-Base" Type="1">UG9zaXRpb24=</PHRASE>
+ <PHRASE Label="la_fld_Primary" Module="Proj-Base" Type="1">UHJpbWFyeQ==</PHRASE>
+ <PHRASE Label="la_fld_PrimaryLang" Module="Proj-Base" Type="1">UHJpbWFyeQ==</PHRASE>
+ <PHRASE Label="la_fld_PrimaryTranslation" Module="Proj-Base" Type="1">UHJpbWFyeSBUcmFuc2xhdGlvbg==</PHRASE>
+ <PHRASE Label="la_fld_Priority" Module="Proj-Base" Type="1">UHJpb3JpdHk=</PHRASE>
+ <PHRASE Label="la_fld_Rating" Module="Proj-Base" Type="1">UmF0aW5n</PHRASE>
+ <PHRASE Label="la_fld_RelationshipId" Module="Proj-Base" Type="1">UmVsYXRpb24gSUQ=</PHRASE>
+ <PHRASE Label="la_fld_RelationshipType" Module="Proj-Base" Type="1">VHlwZQ==</PHRASE>
+ <PHRASE Label="la_fld_RemoteUrl" Module="Proj-Base" Type="1">UmVtb3RlIFVSTA==</PHRASE>
+ <PHRASE Label="la_fld_ReplaceDuplicates" Module="Proj-Base" Type="1">UmVwbGFjZSBEdXBsaWNhdGVz</PHRASE>
+ <PHRASE Label="la_fld_ReviewId" Module="Proj-Base" Type="0">UmV2aWV3IElE</PHRASE>
+ <PHRASE Label="la_fld_ReviewText" Module="Proj-Base" Type="1">UmV2aWV3IFRleHQ=</PHRASE>
+ <PHRASE Label="la_fld_SameAsThumb" Module="Proj-Base" Type="1">U2FtZSBBcyBUaHVtYg==</PHRASE>
+ <PHRASE Label="la_fld_SelectorBase" Module="Proj-Base" Type="1">QmFzZWQgT24=</PHRASE>
+ <PHRASE Label="la_fld_SelectorData" Module="Proj-Base" Type="1">U3R5bGU=</PHRASE>
+ <PHRASE Label="la_fld_SelectorId" Module="Proj-Base" Type="1">U2VsZWN0b3IgSUQ=</PHRASE>
+ <PHRASE Label="la_fld_SelectorName" Module="Proj-Base" Type="1">U2VsZWN0b3IgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_fld_SkipFirstRow" Module="Proj-Base" Type="1">U2tpcCBGaXJzdCBSb3c=</PHRASE>
+ <PHRASE Label="la_fld_Status" Module="Proj-Base" Type="1">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_fld_StylesheetId" Module="Proj-Base" Type="1">U3R5bGVzaGVldCBJRA==</PHRASE>
+ <PHRASE Label="la_fld_Subject" Module="Proj-Base" Type="1">U3ViamVjdA==</PHRASE>
+ <PHRASE Label="la_fld_TargetId" Module="Proj-Base" Type="1">SXRlbQ==</PHRASE>
+ <PHRASE Label="la_fld_TextAlign" Module="Proj-Base" Type="1">VGV4dCBBbGlnbg==</PHRASE>
+ <PHRASE Label="la_fld_TextDecoration" Module="Proj-Base" Type="1">VGV4dCBEZWNvcmF0aW9u</PHRASE>
+ <PHRASE Label="la_fld_ThousandSep" Module="Proj-Base" Type="1">VGhvdXNhbmRzIFNlcGFyYXRvcg==</PHRASE>
+ <PHRASE Label="la_fld_TimeFormat" Module="Proj-Base" Type="1">VGltZSBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_fld_Title" Module="Proj-Base" Type="1">VGl0bGU=</PHRASE>
+ <PHRASE Label="la_fld_Top" Module="Proj-Base" Type="1">VG9w</PHRASE>
+ <PHRASE Label="la_fld_Translation" Module="Proj-Base" Type="1">VmFsdWU=</PHRASE>
+ <PHRASE Label="la_fld_UnitSystem" Module="Proj-Base" Type="1">TWVhc3VyZXMgU3lzdGVt</PHRASE>
+ <PHRASE Label="la_fld_Upload" Module="Proj-Base" Type="1">VXBsb2FkIEZpbGUgRnJvbSBMb2NhbCBQQw==</PHRASE>
+ <PHRASE Label="la_fld_URL" Module="Proj-Base" Type="1">VVJM</PHRASE>
+ <PHRASE Label="la_fld_Visibility" Module="Proj-Base" Type="1">VmlzaWJpbGl0eQ==</PHRASE>
+ <PHRASE Label="la_fld_Votes" Module="Proj-Base" Type="1">Vm90ZXM=</PHRASE>
+ <PHRASE Label="la_fld_Width" Module="Proj-Base" Type="1">V2lkdGg=</PHRASE>
+ <PHRASE Label="la_fld_Z-Index" Module="Proj-Base" Type="1">Wi1JbmRleA==</PHRASE>
+ <PHRASE Label="la_Font" Module="Proj-Base" Type="1">Rm9udCBQcm9wZXJ0aWVz</PHRASE>
+ <PHRASE Label="la_from_date" Module="Proj-Base" Type="1">RnJvbSBEYXRl</PHRASE>
+ <PHRASE Label="la_front_end" Module="Proj-Base" Type="1">RnJvbnQgZW5k</PHRASE>
+ <PHRASE Label="la_gigabytes" Module="Proj-Base" Type="1">Z2lnYWJ5dGUocyk=</PHRASE>
+ <PHRASE Label="la_help_in_progress" Module="Proj-Base" Type="1">VGhpcyBoZWxwIHNlY3Rpb24gZG9lcyBub3QgeWV0IGV4aXN0LCBpdCdzIGNvbWluZyBzb29uIQ==</PHRASE>
+ <PHRASE Label="la_Html" Module="Proj-Base" Type="1">aHRtbA==</PHRASE>
+ <PHRASE Label="la_IDField" Module="Proj-Base" Type="1">SUQgRmllbGQ=</PHRASE>
+ <PHRASE Label="la_ImportingEmailEvents" Module="Proj-Base" Type="1">SW1wb3J0aW5nIEVtYWlsIEV2ZW50cyAuLi4=</PHRASE>
+ <PHRASE Label="la_ImportingLanguages" Module="Proj-Base" Type="1">SW1wb3J0aW5nIExhbmd1YWdlcyAuLi4=</PHRASE>
+ <PHRASE Label="la_ImportingPhrases" Module="Proj-Base" Type="1">SW1wb3J0aW5nIFBocmFzZXMgLi4u</PHRASE>
+ <PHRASE Label="la_importlang_phrasewarning" Module="Proj-Base" Type="2">RW5hYmxpbmcgdGhpcyBvcHRpb24gd2lsbCB1bmRvIGFueSBjaGFuZ2VzIHlvdSBoYXZlIG1hZGUgdG8gZXhpc3RpbmcgcGhyYXNlcw==</PHRASE>
+ <PHRASE Label="la_importPhrases" Module="Proj-Base" Type="1">SW1wb3J0aW5nIFBocmFzZXM=</PHRASE>
+ <PHRASE Label="la_inlink" Module="Proj-Base" Type="1">SW4tbGluaw==</PHRASE>
+ <PHRASE Label="la_invalid_integer" Module="Proj-Base" Type="1">SW5jb3JyZWN0IGRhdGEgZm9ybWF0LCBwbGVhc2UgdXNlIGludGVnZXI=</PHRASE>
+ <PHRASE Label="la_invalid_license" Module="Proj-Base" Type="1">TWlzc2luZyBvciBpbnZhbGlkIEluLVBvcnRhbCBMaWNlbnNl</PHRASE>
+ <PHRASE Label="la_invalid_state" Module="Proj-Base" Type="0">SW52YWxpZCBzdGF0ZQ==</PHRASE>
+ <PHRASE Label="la_ItemTab_Categories" Module="Proj-Base" Type="1">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_ItemTab_Links" Module="Proj-Base" Type="1">TGlua3M=</PHRASE>
+ <PHRASE Label="la_ItemTab_News" Module="Proj-Base" Type="1">QXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_ItemTab_Topics" Module="Proj-Base" Type="1">VG9waWNz</PHRASE>
+ <PHRASE Label="la_K4_AdvancedView" Module="Proj-Base" Type="1">SzQgQWR2YW5jZWQgVmlldw==</PHRASE>
+ <PHRASE Label="la_K4_Catalog" Module="Proj-Base" Type="1">SzQgQ2F0YWxvZw==</PHRASE>
+ <PHRASE Label="la_kilobytes" Module="Proj-Base" Type="1">S0I=</PHRASE>
+ <PHRASE Label="la_language" Module="Proj-Base" Type="1">TGFuZ3VhZ2U=</PHRASE>
+ <PHRASE Label="la_lang_import_progress" Module="Proj-Base" Type="1">SW1wb3J0IHByb2dyZXNz</PHRASE>
+ <PHRASE Label="la_LastUpdate" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVk</PHRASE>
+ <PHRASE Label="la_Link_Date" Module="Proj-Base" Type="1">RGF0ZQ==</PHRASE>
+ <PHRASE Label="la_Link_Description" Module="Proj-Base" Type="1">TGluayBEZXNjcmlwdGlvbg==</PHRASE>
+ <PHRASE Label="la_link_editorspick_prompt" Module="Proj-Base" Type="1">RGlzcGxheSBlZGl0b3IgUElDS3MgYWJvdmUgcmVndWxhciBsaW5rcw==</PHRASE>
+ <PHRASE Label="la_Link_Hits" Module="Proj-Base" Type="1">SGl0cw==</PHRASE>
+ <PHRASE Label="la_Link_Name" Module="Proj-Base" Type="1">TGluayBOYW1l</PHRASE>
+ <PHRASE Label="la_link_newdays_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGRheXMgZm9yIGEgbGluayB0byBiZSBORVc=</PHRASE>
+ <PHRASE Label="la_link_perpage_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGxpbmtzIHBlciBwYWdl</PHRASE>
+ <PHRASE Label="la_link_perpage_short_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGxpbmtzIHBlciBwYWdlIG9uIGEgc2hvcnQgbGlzdGluZw==</PHRASE>
+ <PHRASE Label="la_Link_Rating" Module="Proj-Base" Type="1">UmF0aW5n</PHRASE>
+ <PHRASE Label="la_link_reviewed" Module="Proj-Base" Type="1">TGluayByZXZpZXdlZA==</PHRASE>
+ <PHRASE Label="la_link_sortfield2_prompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_link_sortfield_prompt" Module="Proj-Base" Type="1">T3JkZXIgbGlua3MgYnk=</PHRASE>
+ <PHRASE Label="la_link_sortreviews2_prompt" Module="Proj-Base" Type="1">YW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_link_sortreviews_prompt" Module="Proj-Base" Type="1">U29ydCByZXZpZXdzIGJ5</PHRASE>
+ <PHRASE Label="la_Link_URL" Module="Proj-Base" Type="1">VVJM</PHRASE>
+ <PHRASE Label="la_link_urlstatus_prompt" Module="Proj-Base" Type="1">RGlzcGxheSBsaW5rIFVSTCBpbiBzdGF0dXMgYmFy</PHRASE>
+ <PHRASE Label="la_LocalImage" Module="Proj-Base" Type="1">TG9jYWwgSW1hZ2U=</PHRASE>
+ <PHRASE Label="la_Logged_in_as" Module="Proj-Base" Type="1">TG9nZ2VkIGluIGFz</PHRASE>
+ <PHRASE Label="la_login" Module="Proj-Base" Type="1">TG9naW4=</PHRASE>
+ <PHRASE Label="la_m0" Module="Proj-Base" Type="1">KEdNVCk=</PHRASE>
+ <PHRASE Label="la_m1" Module="Proj-Base" Type="1">KEdNVCAtMDE6MDAp</PHRASE>
+ <PHRASE Label="la_m10" Module="Proj-Base" Type="1">KEdNVCAtMTA6MDAp</PHRASE>
+ <PHRASE Label="la_m11" Module="Proj-Base" Type="1">KEdNVCAtMTE6MDAp</PHRASE>
+ <PHRASE Label="la_m12" Module="Proj-Base" Type="1">KEdNVCAtMTI6MDAp</PHRASE>
+ <PHRASE Label="la_m2" Module="Proj-Base" Type="1">KEdNVCAtMDI6MDAp</PHRASE>
+ <PHRASE Label="la_m3" Module="Proj-Base" Type="1">KEdNVCAtMDM6MDAp</PHRASE>
+ <PHRASE Label="la_m4" Module="Proj-Base" Type="1">KEdNVCAtMDQ6MDAp</PHRASE>
+ <PHRASE Label="la_m5" Module="Proj-Base" Type="1">KEdNVCAtMDU6MDAp</PHRASE>
+ <PHRASE Label="la_m6" Module="Proj-Base" Type="1">KEdNVCAtMDY6MDAp</PHRASE>
+ <PHRASE Label="la_m7" Module="Proj-Base" Type="1">KEdNVCAtMDc6MDAp</PHRASE>
+ <PHRASE Label="la_m8" Module="Proj-Base" Type="1">KEdNVCAtMDg6MDAp</PHRASE>
+ <PHRASE Label="la_m9" Module="Proj-Base" Type="1">KEdNVCAtMDk6MDAp</PHRASE>
+ <PHRASE Label="la_Margins" Module="Proj-Base" Type="1">TWFyZ2lucw==</PHRASE>
+ <PHRASE Label="la_megabytes" Module="Proj-Base" Type="1">TUI=</PHRASE>
+ <PHRASE Label="la_MembershipExpirationReminder" Module="Proj-Base" Type="1">R3JvdXAgTWVtYmVyc2hpcCBFeHBpcmF0aW9uIFJlbWluZGVyIChkYXlzKQ==</PHRASE>
+ <PHRASE Label="la_MenuTreeTitle" Module="Proj-Base" Type="1">TWFpbiBNZW51</PHRASE>
+ <PHRASE Label="la_Metric" Module="Proj-Base" Type="1">TWV0cmlj</PHRASE>
+ <PHRASE Label="la_missing_theme" Module="Proj-Base" Type="1">TWlzc2luZyBJbiBUaGVtZQ==</PHRASE>
+ <PHRASE Label="la_MixedCategoryPath" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgcGF0aCBpbiBvbmUgZmllbGQ=</PHRASE>
+ <PHRASE Label="la_module_not_licensed" Module="Proj-Base" Type="1">TW9kdWxlIG5vdCBsaWNlbnNlZA==</PHRASE>
+ <PHRASE Label="la_monday" Module="Proj-Base" Type="1">TW9uZGF5</PHRASE>
+ <PHRASE Label="la_Never" Module="Proj-Base" Type="1">TmV2ZXI=</PHRASE>
+ <PHRASE Label="la_NeverExpires" Module="Proj-Base" Type="1">TmV2ZXIgRXhwaXJlcw==</PHRASE>
+ <PHRASE Label="la_New" Module="Proj-Base" Type="1">TmV3</PHRASE>
+ <PHRASE Label="la_news_daysarchive_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGRheXMgdG8gYXJjaGl2ZSBhcnRpY2xlcyBhdXRvbWF0aWNhbGx5</PHRASE>
+ <PHRASE Label="la_news_editorpicksabove_prompt" Module="Proj-Base" Type="1">RGlzcGxheSBlZGl0b3IgUElDS3MgYWJvdmUgcmVndWxhciBhcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="la_news_newdays_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGRheXMgZm9yIGEgYXJ0aWNsZSB0byBiZSBORVc=</PHRASE>
+ <PHRASE Label="la_news_perpage_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGFydGljbGVzIHBlciBwYWdl</PHRASE>
+ <PHRASE Label="la_news_perpage_short_prompt" Module="Proj-Base" Type="1">QXJ0aWNsZXMgUGVyIFBhZ2UgKFNob3J0bGlzdCk=</PHRASE>
+ <PHRASE Label="la_news_sortfield2_pompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_news_sortfield_pompt" Module="Proj-Base" Type="1">T3JkZXIgYXJ0aWNsZXMgYnk=</PHRASE>
+ <PHRASE Label="la_news_sortreviews2_prompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_news_sortreviews_prompt" Module="Proj-Base" Type="1">U29ydCByZXZpZXdzIGJ5</PHRASE>
+ <PHRASE Label="la_nextcategory" Module="Proj-Base" Type="1">TmV4dCBjYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_nextgroup" Module="Proj-Base" Type="1">TmV4dCBncm91cA==</PHRASE>
+ <PHRASE Label="la_NextUser" Module="Proj-Base" Type="1">TmV4dCBVc2Vy</PHRASE>
+ <PHRASE Label="la_No" Module="Proj-Base" Type="1">Tm8=</PHRASE>
+ <PHRASE Label="la_none" Module="Proj-Base" Type="1">Tm9uZQ==</PHRASE>
+ <PHRASE Label="la_NoSubject" Module="Proj-Base" Type="1">Tm8gU3ViamVjdA==</PHRASE>
+ <PHRASE Label="la_no_topics" Module="Proj-Base" Type="1">Tm8gdG9waWNz</PHRASE>
+ <PHRASE Label="la_Number_of_Posts" Module="Proj-Base" Type="1">TnVtYmVyIG9mIFBvc3Rz</PHRASE>
+ <PHRASE Label="la_of" Module="Proj-Base" Type="1">b2Y=</PHRASE>
+ <PHRASE Label="la_Off" Module="Proj-Base" Type="1">T2Zm</PHRASE>
+ <PHRASE Label="la_On" Module="Proj-Base" Type="1">T24=</PHRASE>
+ <PHRASE Label="la_OneWay" Module="Proj-Base" Type="1">T25lIFdheQ==</PHRASE>
+ <PHRASE Label="la_opt_day" Module="Proj-Base" Type="1">ZGF5KHMp</PHRASE>
+ <PHRASE Label="la_opt_hour" Module="Proj-Base" Type="1">aG91cihzKQ==</PHRASE>
+ <PHRASE Label="la_opt_min" Module="Proj-Base" Type="1">bWludXRlKHMp</PHRASE>
+ <PHRASE Label="la_opt_month" Module="Proj-Base" Type="1">bW9udGgocyk=</PHRASE>
+ <PHRASE Label="la_opt_sec" Module="Proj-Base" Type="1">c2Vjb25kKHMp</PHRASE>
+ <PHRASE Label="la_opt_week" Module="Proj-Base" Type="1">d2VlayhzKQ==</PHRASE>
+ <PHRASE Label="la_opt_year" Module="Proj-Base" Type="1">eWVhcihzKQ==</PHRASE>
+ <PHRASE Label="la_original_values" Module="Proj-Base" Type="1">T3JpZ2luYWwgVmFsdWVz</PHRASE>
+ <PHRASE Label="la_origional_value" Module="Proj-Base" Type="1">T3JpZ2luYWwgVmFsdWU=</PHRASE>
+ <PHRASE Label="la_origional_values" Module="Proj-Base" Type="1">T3JpZ2luYWwgVmFsdWVz</PHRASE>
+ <PHRASE Label="la_OtherFields" Module="Proj-Base" Type="1">T3RoZXIgRmllbGRz</PHRASE>
+ <PHRASE Label="la_p1" Module="Proj-Base" Type="1">KEdNVCArMDE6MDAp</PHRASE>
+ <PHRASE Label="la_p10" Module="Proj-Base" Type="1">KEdNVCArMTA6MDAp</PHRASE>
+ <PHRASE Label="la_p11" Module="Proj-Base" Type="1">KEdNVCArMTE6MDAp</PHRASE>
+ <PHRASE Label="la_p12" Module="Proj-Base" Type="1">KEdNVCArMTI6MDAp</PHRASE>
+ <PHRASE Label="la_p13" Module="Proj-Base" Type="1">KEdNVCArMTM6MDAp</PHRASE>
+ <PHRASE Label="la_p2" Module="Proj-Base" Type="1">KEdNVCArMDI6MDAp</PHRASE>
+ <PHRASE Label="la_p3" Module="Proj-Base" Type="1">KEdNVCArMDM6MDAp</PHRASE>
+ <PHRASE Label="la_p4" Module="Proj-Base" Type="1">KEdNVCArMDQ6MDAp</PHRASE>
+ <PHRASE Label="la_p5" Module="Proj-Base" Type="1">KEdNVCArMDU6MDAp</PHRASE>
+ <PHRASE Label="la_p6" Module="Proj-Base" Type="1">KEdNVCArMDY6MDAp</PHRASE>
+ <PHRASE Label="la_p7" Module="Proj-Base" Type="1">KEdNVCArMDc6MDAp</PHRASE>
+ <PHRASE Label="la_p8" Module="Proj-Base" Type="1">KEdNVCArMDg6MDAp</PHRASE>
+ <PHRASE Label="la_p9" Module="Proj-Base" Type="1">KEdNVCArMDk6MDAp</PHRASE>
+ <PHRASE Label="la_Paddings" Module="Proj-Base" Type="1">UGFkZGluZ3M=</PHRASE>
+ <PHRASE Label="la_Page" Module="Proj-Base" Type="1">UGFnZQ==</PHRASE>
+ <PHRASE Label="la_password_info" Module="Proj-Base" Type="2">VG8gY2hhbmdlIHRoZSBwYXNzd29yZCwgZW50ZXIgdGhlIHBhc3N3b3JkIGhlcmUgYW5kIGluIHRoZSBib3ggYmVsb3c=</PHRASE>
+ <PHRASE Label="la_Pending" Module="Proj-Base" Type="0">UGVuZGluZw==</PHRASE>
+ <PHRASE Label="la_performing_backup" Module="Proj-Base" Type="1">UGVyZm9ybWluZyBCYWNrdXA=</PHRASE>
+ <PHRASE Label="la_performing_export" Module="Proj-Base" Type="1">UGVyZm9ybWluZyBFeHBvcnQ=</PHRASE>
+ <PHRASE Label="la_performing_import" Module="Proj-Base" Type="1">UGVyZm9ybWluZyBJbXBvcnQ=</PHRASE>
+ <PHRASE Label="la_performing_restore" Module="Proj-Base" Type="1">UGVyZm9ybWluZyBSZXN0b3Jl</PHRASE>
+ <PHRASE Label="la_PermName_Admin_desc" Module="Proj-Base" Type="1">QWxsb3dzIGFjY2VzcyB0byB0aGUgQWRtaW5pc3RyYXRpb24gdXRpbGl0eQ==</PHRASE>
+ <PHRASE Label="la_PermName_SystemAccess.ReadOnly_desc" Module="Proj-Base" Type="1">UmVhZC1Pbmx5IEFjY2VzcyBUbyBEYXRhYmFzZQ==</PHRASE>
+ <PHRASE Label="la_PermTab_category" Module="Proj-Base" Type="1">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_PermTab_link" Module="Proj-Base" Type="1">TGlua3M=</PHRASE>
+ <PHRASE Label="la_PermTab_news" Module="Proj-Base" Type="1">QXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_PermTab_topic" Module="Proj-Base" Type="1">VG9waWNz</PHRASE>
+ <PHRASE Label="la_PermType_Admin" Module="Proj-Base" Type="1">UGVybWlzc2lvbiBUeXBlIEFkbWlu</PHRASE>
+ <PHRASE Label="la_PermType_AdminSection" Module="Proj-Base" Type="1">QWRtaW5pc3RyYXRpb24=</PHRASE>
+ <PHRASE Label="la_PermType_Front" Module="Proj-Base" Type="1">UGVybWlzc2lvbiBUeXBlIEZyb250IEVuZA==</PHRASE>
+ <PHRASE Label="la_PermType_FrontEnd" Module="Proj-Base" Type="1">RnJvbnQgRW5k</PHRASE>
+ <PHRASE Label="la_PhraseNotTranslated" Module="Proj-Base" Type="1">Tm90IFRyYW5zbGF0ZWQ=</PHRASE>
+ <PHRASE Label="la_PhraseTranslated" Module="Proj-Base" Type="1">VHJhbnNsYXRlZA==</PHRASE>
+ <PHRASE Label="la_PhraseType_Admin" Module="Proj-Base" Type="1">QWRtaW4=</PHRASE>
+ <PHRASE Label="la_PhraseType_Both" Module="Proj-Base" Type="2">Qm90aA==</PHRASE>
+ <PHRASE Label="la_PhraseType_Front" Module="Proj-Base" Type="1">RnJvbnQ=</PHRASE>
+ <PHRASE Label="la_Pick" Module="Proj-Base" Type="1">RWRpdG9yJ3MgcGljaw==</PHRASE>
+ <PHRASE Label="la_Pop" Module="Proj-Base" Type="1">UG9w</PHRASE>
+ <PHRASE Label="la_PositionAndVisibility" Module="Proj-Base" Type="1">UG9zaXRpb24gQW5kIFZpc2liaWxpdHk=</PHRASE>
+ <PHRASE Label="la_posts_newdays_prompt" Module="Proj-Base" Type="1">TmV3IHBvc3RzIChkYXlzKQ==</PHRASE>
+ <PHRASE Label="la_posts_perpage_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIHBvc3RzIHBlciBwYWdl</PHRASE>
+ <PHRASE Label="la_posts_subheading" Module="Proj-Base" Type="1">UG9zdHM=</PHRASE>
+ <PHRASE Label="la_prevcategory" Module="Proj-Base" Type="1">UHJldmlvdXMgY2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_prevgroup" Module="Proj-Base" Type="1">UHJldmlvdXMgZ3JvdXA=</PHRASE>
+ <PHRASE Label="la_PrevUser" Module="Proj-Base" Type="1">UHJldmlvdXMgVXNlcg==</PHRASE>
+ <PHRASE Label="la_PrimaryCategory" Module="Proj-Base" Type="1">UHJpbWFyeQ==</PHRASE>
+ <PHRASE Label="la_prompt_ActiveArticles" Module="Proj-Base" Type="1">QWN0aXZlIEFydGljbGVz</PHRASE>
+ <PHRASE Label="la_prompt_ActiveCategories" Module="Proj-Base" Type="1">QWN0aXZlIENhdGVnb3JpZXM=</PHRASE>
+ <PHRASE Label="la_prompt_ActiveLinks" Module="Proj-Base" Type="1">QWN0aXZlIExpbmtz</PHRASE>
+ <PHRASE Label="la_prompt_ActiveTopics" Module="Proj-Base" Type="1">QWN0aXZlIFRvcGljcw==</PHRASE>
+ <PHRASE Label="la_prompt_ActiveUsers" Module="Proj-Base" Type="1">QWN0aXZlIFVzZXJz</PHRASE>
+ <PHRASE Label="la_prompt_addmodule" Module="Proj-Base" Type="1">QWRkIE1vZHVsZQ==</PHRASE>
+ <PHRASE Label="la_prompt_AddressTo" Module="Proj-Base" Type="1">U2VudCBUbw==</PHRASE>
+ <PHRASE Label="la_prompt_AdminId" Module="Proj-Base" Type="1">QWRtaW4gZ3JvdXA=</PHRASE>
+ <PHRASE Label="la_prompt_AdminMailFrom" Module="Proj-Base" Type="1">TWVzc2FnZXMgZnJvbSBTaXRlIEFkbWluIGFyZSBmcm9t</PHRASE>
+ <PHRASE Label="la_prompt_AdvancedSearch" Module="Proj-Base" Type="1">QWR2YW5jZWQgU2VhcmNo</PHRASE>
+ <PHRASE Label="la_prompt_allow_reset" Module="Proj-Base" Type="1">QWxsb3cgcGFzc3dvcmQgcmVzZXQgYWZ0ZXI=</PHRASE>
+ <PHRASE Label="la_prompt_all_templates" Module="Proj-Base" Type="1">QWxsIHRlbXBsYXRlcw==</PHRASE>
+ <PHRASE Label="la_prompt_AltName" Module="Proj-Base" Type="1">QWx0IHZhbHVl</PHRASE>
+ <PHRASE Label="la_prompt_applyingbanlist" Module="Proj-Base" Type="2">QXBwbHlpbmcgQmFuIExpc3QgdG8gRXhpc3RpbmcgVXNlcnMuLg==</PHRASE>
+ <PHRASE Label="la_prompt_approve_warning" Module="Proj-Base" Type="1">Q29udGludWUgdG8gcmVzdG9yZSBhdCBteSBvd24gcmlzaz8=</PHRASE>
+ <PHRASE Label="la_prompt_Archived" Module="Proj-Base" Type="1">QXJjaGl2ZWQ=</PHRASE>
+ <PHRASE Label="la_prompt_ArchiveDate" Module="Proj-Base" Type="1">QXJjaGl2YXRpb24gRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_ArticleAverageRating" Module="Proj-Base" Type="1">QXZlcmFnZSBSYXRpbmcgb2YgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_prompt_ArticleBody" Module="Proj-Base" Type="1">QXJ0aWNsZSBCb2R5</PHRASE>
+ <PHRASE Label="la_prompt_ArticleExcerpt" Module="Proj-Base" Type="1">QXJ0aWNsZSBFeGNlcnB0</PHRASE>
+ <PHRASE Label="la_prompt_ArticleExcerpt!" Module="Proj-Base" Type="1">QXJ0aWNsZSBFeGNlcnB0</PHRASE>
+ <PHRASE Label="la_prompt_ArticleReviews" Module="Proj-Base" Type="1">VG90YWwgQXJ0aWNsZSBSZXZpZXdz</PHRASE>
+ <PHRASE Label="la_prompt_ArticlesActive" Module="Proj-Base" Type="1">QWN0aXZlIEFydGljbGVz</PHRASE>
+ <PHRASE Label="la_prompt_ArticlesArchived" Module="Proj-Base" Type="1">QXJjaGl2ZWQgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_prompt_ArticlesPending" Module="Proj-Base" Type="1">UGVuZGluZyBBcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="la_prompt_ArticlesTotal" Module="Proj-Base" Type="1">VG90YWwgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_prompt_Attatchment" Module="Proj-Base" Type="1">QXR0YWNobWVudA==</PHRASE>
+ <PHRASE Label="la_Prompt_Attention" Module="Proj-Base" Type="1">QXR0ZW50aW9uIQ==</PHRASE>
+ <PHRASE Label="la_prompt_Author" Module="Proj-Base" Type="1">QXV0aG9y</PHRASE>
+ <PHRASE Label="la_prompt_AutoGen_Excerpt" Module="Proj-Base" Type="1">R2VuZXJhdGUgZnJvbSB0aGUgYXJ0aWNsZSBib2R5</PHRASE>
+ <PHRASE Label="la_prompt_AutomaticDirectoryName" Module="Proj-Base" Type="1">QXV0b21hdGljIERpcmVjdG9yeSBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_AutomaticFilename" Module="Proj-Base" Type="1">QXV0b21hdGljIEZpbGVuYW1l</PHRASE>
+ <PHRASE Label="la_prompt_Available_Modules" Module="Proj-Base" Type="1">TW9kdWxlcw==</PHRASE>
+ <PHRASE Label="la_Prompt_Backup_Date" Module="Proj-Base" Type="1">QmFjayBVcCBEYXRl</PHRASE>
+ <PHRASE Label="la_prompt_Backup_Path" Module="Proj-Base" Type="1">QmFja3VwIFBhdGg=</PHRASE>
+ <PHRASE Label="la_Prompt_Backup_Status" Module="Proj-Base" Type="1">QmFja3VwIHN0YXR1cw==</PHRASE>
+ <PHRASE Label="la_prompt_BannedUsers" Module="Proj-Base" Type="1">QmFubmVkIFVzZXJz</PHRASE>
+ <PHRASE Label="la_prompt_birthday" Module="Proj-Base" Type="1">RGF0ZSBvZiBCaXJ0aA==</PHRASE>
+ <PHRASE Label="la_prompt_CacheTimeout" Module="Proj-Base" Type="1">Q2FjaGUgVGltZW91dCAoc2Vjb25kcyk=</PHRASE>
+ <PHRASE Label="la_prompt_CategoryEditorsPick" Module="Proj-Base" Type="1">RWRpdG9yJ3MgUGljayBDYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="la_prompt_CategoryId" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgSUQ=</PHRASE>
+ <PHRASE Label="la_prompt_CategoryLeadStoryArticles" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgTGVhZCBTdG9yeSBBcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="la_Prompt_CategoryPermissions" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgUGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_prompt_CatLead" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgTGVhZCBTdG9yeQ==</PHRASE>
+ <PHRASE Label="la_prompt_CensorhipId" Module="Proj-Base" Type="1">Q2Vuc29yc2hpcCBJZA==</PHRASE>
+ <PHRASE Label="la_prompt_CensorWord" Module="Proj-Base" Type="1">Q2Vuc29yc2hpcCBXb3Jk</PHRASE>
+ <PHRASE Label="la_prompt_charset" Module="Proj-Base" Type="1">Q2hhcnNldA==</PHRASE>
+ <PHRASE Label="la_prompt_City" Module="Proj-Base" Type="1">Q2l0eQ==</PHRASE>
+ <PHRASE Label="la_prompt_Comments" Module="Proj-Base" Type="1">Q29tbWVudHM=</PHRASE>
+ <PHRASE Label="la_prompt_continue" Module="Proj-Base" Type="1">Q29udGludWU=</PHRASE>
+ <PHRASE Label="la_prompt_CopyLabels" Module="Proj-Base" Type="1">Q29weSBMYWJlbHMgZnJvbSB0aGlzIExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_prompt_Country" Module="Proj-Base" Type="1">Q291bnRyeQ==</PHRASE>
+ <PHRASE Label="la_prompt_CreatedBy" Module="Proj-Base" Type="1">Q3JlYXRlZCBieQ==</PHRASE>
+ <PHRASE Label="la_prompt_CreatedOn" Module="Proj-Base" Type="1">Q3JlYXRlZCBvbg==</PHRASE>
+ <PHRASE Label="la_prompt_CreatedOn_Time" Module="Proj-Base" Type="1">Q3JlYXRlZCBhdA==</PHRASE>
+ <PHRASE Label="la_prompt_CurrentSessions" Module="Proj-Base" Type="1">Q3VycmVudCBTZXNzaW9ucw==</PHRASE>
+ <PHRASE Label="la_prompt_CustomFilename" Module="Proj-Base" Type="1">Q3VzdG9tIEZpbGVuYW1l</PHRASE>
+ <PHRASE Label="la_prompt_DatabaseSettings" Module="Proj-Base" Type="1">RGF0YWJhc2UgU2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_prompt_DataSize" Module="Proj-Base" Type="1">VG90YWwgU2l6ZSBvZiB0aGUgRGF0YWJhc2U=</PHRASE>
+ <PHRASE Label="la_prompt_DateFormat" Module="Proj-Base" Type="1">KG1tLWRkLXl5eXkp</PHRASE>
+ <PHRASE Label="la_prompt_DbName" Module="Proj-Base" Type="1">U2VydmVyIERhdGFiYXNl</PHRASE>
+ <PHRASE Label="la_prompt_DbPass" Module="Proj-Base" Type="1">U2VydmVyIFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="la_prompt_DbUsername" Module="Proj-Base" Type="1">RGF0YWJhc2UgVXNlciBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_decimal" Module="Proj-Base" Type="2">RGVjaW1hbCBQb2ludA==</PHRASE>
+ <PHRASE Label="la_prompt_Default" Module="Proj-Base" Type="1">RGVmYXVsdA==</PHRASE>
+ <PHRASE Label="la_prompt_delete" Module="Proj-Base" Type="1">RGVsZXRl</PHRASE>
+ <PHRASE Label="la_prompt_Description" Module="Proj-Base" Type="1">RGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="la_prompt_DirectoryName" Module="Proj-Base" Type="1">RGlyZWN0b3J5IE5hbWU=</PHRASE>
+ <PHRASE Label="la_prompt_DisabledArticles" Module="Proj-Base" Type="1">RGlzYWJsZWQgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_prompt_DisabledCategories" Module="Proj-Base" Type="1">RGlzYWJsZWQgQ2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_prompt_DisabledLinks" Module="Proj-Base" Type="1">RGlzYWJsZWQgTGlua3M=</PHRASE>
+ <PHRASE Label="la_prompt_DisplayOrder" Module="Proj-Base" Type="1">RGlzcGxheSBPcmRlcg==</PHRASE>
+ <PHRASE Label="la_prompt_download_export" Module="Proj-Base" Type="2">RG93bmxvYWQgTGFuZ3VhZ2UgRXhwb3J0Og==</PHRASE>
+ <PHRASE Label="la_prompt_DupRating" Module="Proj-Base" Type="2">QWxsb3cgRHVwbGljYXRlIFJhdGluZyBWb3Rlcw==</PHRASE>
+ <PHRASE Label="la_prompt_DupReviews" Module="Proj-Base" Type="2">QWxsb3cgRHVwbGljYXRlIFJldmlld3M=</PHRASE>
+ <PHRASE Label="la_prompt_edit" Module="Proj-Base" Type="1">RWRpdA==</PHRASE>
+ <PHRASE Label="la_prompt_EditorsPick" Module="Proj-Base" Type="1">RWRpdG9yJ3MgUGljaw==</PHRASE>
+ <PHRASE Label="la_prompt_EditorsPickArticles" Module="Proj-Base" Type="1">RWRpdG9yJ3MgUGljayBBcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="la_prompt_EditorsPickLinks" Module="Proj-Base" Type="1">RWRpdG9yJ3MgUGljayBMaW5rcw==</PHRASE>
+ <PHRASE Label="la_prompt_EditorsPickTopics" Module="Proj-Base" Type="1">RWRpdG9yIFBpY2sgVG9waWNz</PHRASE>
+ <PHRASE Label="la_prompt_edit_query" Module="Proj-Base" Type="1">RWRpdCBRdWVyeQ==</PHRASE>
+ <PHRASE Label="la_prompt_Email" Module="Proj-Base" Type="1">RW1haWw=</PHRASE>
+ <PHRASE Label="la_prompt_EmailBody" Module="Proj-Base" Type="1">RW1haWwgQm9keQ==</PHRASE>
+ <PHRASE Label="la_prompt_EmailCancelMessage" Module="Proj-Base" Type="1">RW1haWwgZGVsaXZlcnkgYWJvcnRlZA==</PHRASE>
+ <PHRASE Label="la_prompt_EmailCompleteMessage" Module="Proj-Base" Type="1">VGhlIEVtYWlsIE1lc3NhZ2UgaGFzIGJlZW4gc2VudA==</PHRASE>
+ <PHRASE Label="la_prompt_EmailInitMessage" Module="Proj-Base" Type="1">UGxlYXNlIFdhaXQgd2hpbGUgSW4tUG9ydGFsIHByZXBhcmVzIHRvIHNlbmQgdGhlIG1lc3NhZ2UuLg==</PHRASE>
+ <PHRASE Label="la_prompt_EmailSubject" Module="Proj-Base" Type="1">RW1haWwgU3ViamVjdA==</PHRASE>
+ <PHRASE Label="la_prompt_EmoticonId" Module="Proj-Base" Type="1">RW1vdGlvbiBJZA==</PHRASE>
+ <PHRASE Label="la_prompt_EnableCache" Module="Proj-Base" Type="1">RW5hYmxlIFRlbXBsYXRlIENhY2hpbmc=</PHRASE>
+ <PHRASE Label="la_prompt_Enabled" Module="Proj-Base" Type="1">RW5hYmxlZA==</PHRASE>
+ <PHRASE Label="la_prompt_Enable_HTML" Module="Proj-Base" Type="1">RW5hYmxlIEhUTUw/</PHRASE>
+ <PHRASE Label="la_prompt_ErrorTag" Module="Proj-Base" Type="2">RXJyb3IgVGFn</PHRASE>
+ <PHRASE Label="la_prompt_Event" Module="Proj-Base" Type="1">RXZlbnQ=</PHRASE>
+ <PHRASE Label="la_prompt_Expired" Module="Proj-Base" Type="0">RXhwaXJhdGlvbiBEYXRl</PHRASE>
+ <PHRASE Label="la_prompt_ExportFileName" Module="Proj-Base" Type="2">RXhwb3J0IEZpbGVuYW1l</PHRASE>
+ <PHRASE Label="la_prompt_export_error" Module="Proj-Base" Type="1">R2VuZXJhbCBlcnJvcjogdW5hYmxlIHRvIGV4cG9ydA==</PHRASE>
+ <PHRASE Label="la_prompt_FieldId" Module="Proj-Base" Type="1">RmllbGQgSWQ=</PHRASE>
+ <PHRASE Label="la_prompt_FieldLabel" Module="Proj-Base" Type="1">RmllbGQgTGFiZWw=</PHRASE>
+ <PHRASE Label="la_prompt_FieldName" Module="Proj-Base" Type="1">RmllbGQgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_FieldPrompt" Module="Proj-Base" Type="1">RmllbGQgUHJvbXB0</PHRASE>
+ <PHRASE Label="la_prompt_FileId" Module="Proj-Base" Type="1">RmlsZSBJZA==</PHRASE>
+ <PHRASE Label="la_prompt_FileName" Module="Proj-Base" Type="1">RmlsZSBuYW1l</PHRASE>
+ <PHRASE Label="la_prompt_FirstName" Module="Proj-Base" Type="1">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_First_Name" Module="Proj-Base" Type="1">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_Frequency" Module="Proj-Base" Type="1">RnJlcXVlbmN5</PHRASE>
+ <PHRASE Label="la_prompt_FromUser" Module="Proj-Base" Type="1">RnJvbS9UbyBVc2Vy</PHRASE>
+ <PHRASE Label="la_prompt_FromUsername" Module="Proj-Base" Type="1">RnJvbQ==</PHRASE>
+ <PHRASE Label="la_prompt_FrontLead" Module="Proj-Base" Type="1">RnJvbnQgcGFnZSBsZWFkIGFydGljbGU=</PHRASE>
+ <PHRASE Label="la_Prompt_GeneralPermissions" Module="Proj-Base" Type="1">R2VuZXJhbCBQZXJtaXNzaW9ucw==</PHRASE>
+ <PHRASE Label="la_prompt_GroupName" Module="Proj-Base" Type="1">R3JvdXAgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_headers" Module="Proj-Base" Type="1">RXh0cmEgTWFpbCBIZWFkZXJz</PHRASE>
+ <PHRASE Label="la_prompt_heading" Module="Proj-Base" Type="1">SGVhZGluZw==</PHRASE>
+ <PHRASE Label="la_prompt_HitLimits" Module="Proj-Base" Type="1">KE1pbmltdW0gNCk=</PHRASE>
+ <PHRASE Label="la_prompt_Hits" Module="Proj-Base" Type="1">SGl0cw==</PHRASE>
+ <PHRASE Label="la_prompt_Hot" Module="Proj-Base" Type="1">SG90</PHRASE>
+ <PHRASE Label="la_prompt_HotArticles" Module="Proj-Base" Type="1">SG90IEFydGljbGVz</PHRASE>
+ <PHRASE Label="la_prompt_HotLinks" Module="Proj-Base" Type="1">SG90IExpbmtz</PHRASE>
+ <PHRASE Label="la_prompt_HotTopics" Module="Proj-Base" Type="1">SG90IFRvcGljcw==</PHRASE>
+ <PHRASE Label="la_prompt_html" Module="Proj-Base" Type="1">SFRNTA==</PHRASE>
+ <PHRASE Label="la_prompt_html_version" Module="Proj-Base" Type="1">SFRNTCBWZXJzaW9u</PHRASE>
+ <PHRASE Label="la_prompt_icon_url" Module="Proj-Base" Type="1">SWNvbiBVUkw=</PHRASE>
+ <PHRASE Label="la_prompt_Image" Module="Proj-Base" Type="1">SW1hZ2U=</PHRASE>
+ <PHRASE Label="la_prompt_ImageId" Module="Proj-Base" Type="1">SW1hZ2UgSUQ=</PHRASE>
+ <PHRASE Label="la_prompt_import_error" Module="Proj-Base" Type="1">SW1wb3J0IGVuY291bnRlcmVkIGFuIGVycm9yIGFuZCBkaWQgbm90IGNvbXBsZXRlLg==</PHRASE>
+ <PHRASE Label="la_prompt_Import_ImageName" Module="Proj-Base" Type="1">TGluayBJbWFnZSBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_Import_Prefix" Module="Proj-Base" Type="1">VGFibGUgTmFtZSBQcmVmaXg=</PHRASE>
+ <PHRASE Label="la_prompt_InitImportCat" Module="Proj-Base" Type="1">SW5pdGlhbCBJbXBvcnQgQ2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_prompt_InlinkDbName" Module="Proj-Base" Type="1">SW4tTGluayBEYXRhYmFzZSBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_InlinkDbPass" Module="Proj-Base" Type="1">SW4tTGluayBEYXRhYmFzZSBQYXNzd29yZA==</PHRASE>
+ <PHRASE Label="la_prompt_InlinkDbUsername" Module="Proj-Base" Type="1">SW4tTGluayBEYXRhYmFzZSBVc2VybmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_InlinkServer" Module="Proj-Base" Type="1">SW4tTGluayBTZXJ2ZXIgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_InlinkSqlType" Module="Proj-Base" Type="1">SW4tTGluayBTUUwgVHlwZQ==</PHRASE>
+ <PHRASE Label="la_prompt_InputType" Module="Proj-Base" Type="1">SW5wdXQgVHlwZQ==</PHRASE>
+ <PHRASE Label="la_prompt_Install_Status" Module="Proj-Base" Type="1">SW5zdGFsbGF0aW9uIFN0YXR1cw==</PHRASE>
+ <PHRASE Label="la_prompt_ip" Module="Proj-Base" Type="1">SVAgQWRkcmVzcw==</PHRASE>
+ <PHRASE Label="la_prompt_IPAddress" Module="Proj-Base" Type="1">SVAgQWRkcmVzcw==</PHRASE>
+ <PHRASE Label="la_prompt_Item" Module="Proj-Base" Type="1">SXRlbQ==</PHRASE>
+ <PHRASE Label="la_prompt_ItemField" Module="Proj-Base" Type="2">SXRlbSBGaWVsZA==</PHRASE>
+ <PHRASE Label="la_prompt_ItemValue" Module="Proj-Base" Type="2">RmllbGQgVmFsdWU=</PHRASE>
+ <PHRASE Label="la_prompt_ItemVerb" Module="Proj-Base" Type="2">RmllbGQgQ29tcGFyaXNvbg==</PHRASE>
+ <PHRASE Label="la_prompt_KeyStroke" Module="Proj-Base" Type="1">S2V5IFN0cm9rZQ==</PHRASE>
+ <PHRASE Label="la_prompt_Keyword" Module="Proj-Base" Type="1">S2V5d29yZA==</PHRASE>
+ <PHRASE Label="la_prompt_Label" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_prompt_LanguageFile" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgRmlsZQ==</PHRASE>
+ <PHRASE Label="la_prompt_LanguageId" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgSWQ=</PHRASE>
+ <PHRASE Label="la_prompt_lang_cache_timeout" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgQ2FjaGUgVGltZW91dA==</PHRASE>
+ <PHRASE Label="la_prompt_lang_dateformat" Module="Proj-Base" Type="2">RGF0ZSBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_prompt_lang_timeformat" Module="Proj-Base" Type="0">VGltZSBGb3JtYXQ=</PHRASE>
+ <PHRASE Label="la_prompt_LastArticleUpdate" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVkIEFydGljbGU=</PHRASE>
+ <PHRASE Label="la_prompt_LastCategoryUpdate" Module="Proj-Base" Type="1">TGFzdCBDYXRlZ29yeSBVcGRhdGU=</PHRASE>
+ <PHRASE Label="la_prompt_LastLinkUpdate" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVkIExpbms=</PHRASE>
+ <PHRASE Label="la_prompt_LastName" Module="Proj-Base" Type="1">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_LastUpdatedPostDate" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVkIFBvc3QgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_LastUpdatedPostTime" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVkIFBvc3QgVGltZQ==</PHRASE>
+ <PHRASE Label="la_prompt_LastUpdatedTopicDate" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVkIFRvcGljIERhdGU=</PHRASE>
+ <PHRASE Label="la_prompt_LastUpdatedTopicTime" Module="Proj-Base" Type="1">TGFzdCBVcGRhdGVkIFRvcGljIFRpbWU=</PHRASE>
+ <PHRASE Label="la_prompt_Last_Name" Module="Proj-Base" Type="1">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_LeadArticle" Module="Proj-Base" Type="1">U2l0ZSBMZWFkIFN0b3J5</PHRASE>
+ <PHRASE Label="la_prompt_LeadCat" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgbGVhZCBhcnRpY2xl</PHRASE>
+ <PHRASE Label="la_prompt_LeadStoryArticles" Module="Proj-Base" Type="1">TGVhZCBTdG9yeSBBcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="la_prompt_LinkId" Module="Proj-Base" Type="1">TGluayBJZA==</PHRASE>
+ <PHRASE Label="la_prompt_LinkReviews" Module="Proj-Base" Type="1">VG90YWwgTGluayBSZXZpZXdz</PHRASE>
+ <PHRASE Label="la_prompt_LinksAverageRating" Module="Proj-Base" Type="1">QXZlcmFnZSBSYXRpbmcgb2YgTGlua3M=</PHRASE>
+ <PHRASE Label="la_prompt_link_owner" Module="Proj-Base" Type="1">TGluayBPd25lcg==</PHRASE>
+ <PHRASE Label="la_prompt_LoadLangTypes" Module="Proj-Base" Type="1">SW5zdGFsbCBQaHJhc2UgVHlwZXM6</PHRASE>
+ <PHRASE Label="la_prompt_LocalName" Module="Proj-Base" Type="1">TG9jYWwgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_Location" Module="Proj-Base" Type="1">TG9jYXRpb24=</PHRASE>
+ <PHRASE Label="la_prompt_mailauthenticate" Module="Proj-Base" Type="1">U2VydmVyIFJlcXVpcmVzIEF1dGhlbnRpY2F0aW9u</PHRASE>
+ <PHRASE Label="la_prompt_mailhtml" Module="Proj-Base" Type="1">U2VuZCBIVE1MIGVtYWls</PHRASE>
+ <PHRASE Label="la_prompt_mailport" Module="Proj-Base" Type="1">UG9ydCAoZS5nLiBwb3J0IDI1KQ==</PHRASE>
+ <PHRASE Label="la_prompt_mailserver" Module="Proj-Base" Type="1">TWFpbCBTZXJ2ZXIgQWRkcmVzcw==</PHRASE>
+ <PHRASE Label="la_prompt_MaxHitsArticles" Module="Proj-Base" Type="1">TWF4aW11bSBIaXRzIG9mIGFuIEFydGljbGU=</PHRASE>
+ <PHRASE Label="la_prompt_MaxLinksHits" Module="Proj-Base" Type="1">TWF4aW11bSBIaXRzIG9mIGEgTGluaw==</PHRASE>
+ <PHRASE Label="la_prompt_MaxLinksVotes" Module="Proj-Base" Type="1">TWF4aW11bSBWb3RlcyBvZiBhIExpbms=</PHRASE>
+ <PHRASE Label="la_prompt_MaxTopicHits" Module="Proj-Base" Type="1">VG9waWMgTWF4aW11bSBIaXRz</PHRASE>
+ <PHRASE Label="la_prompt_MaxTopicVotes" Module="Proj-Base" Type="1">VG9waWMgTWF4aW11bSBWb3Rlcw==</PHRASE>
+ <PHRASE Label="la_prompt_MaxVotesArticles" Module="Proj-Base" Type="1">TWF4aW11bSBWb3RlcyBvZiBhbiBBcnRpY2xl</PHRASE>
+ <PHRASE Label="la_prompt_max_import_category_levels" Module="Proj-Base" Type="1">TWF4aW1hbCBpbXBvcnRlZCBjYXRlZ29yeSBsZXZlbA==</PHRASE>
+ <PHRASE Label="la_prompt_MembershipExpires" Module="Proj-Base" Type="1">TWVtYmVyc2hpcCBFeHBpcmVz</PHRASE>
+ <PHRASE Label="la_prompt_MessageType" Module="Proj-Base" Type="1">Rm9ybWF0</PHRASE>
+ <PHRASE Label="la_prompt_MetaDescription" Module="Proj-Base" Type="1">TWV0YSBEZXNjcmlwdGlvbg==</PHRASE>
+ <PHRASE Label="la_prompt_MetaKeywords" Module="Proj-Base" Type="1">TWV0YSBLZXl3b3Jkcw==</PHRASE>
+ <PHRASE Label="la_prompt_minkeywordlength" Module="Proj-Base" Type="1">TWluaW11bSBrZXl3b3JkIGxlbmd0aA==</PHRASE>
+ <PHRASE Label="la_prompt_ModifedOn" Module="Proj-Base" Type="1">TW9kaWZpZWQgT24=</PHRASE>
+ <PHRASE Label="la_prompt_ModifedOn_Time" Module="Proj-Base" Type="1">TW9kaWZpZWQgYXQ=</PHRASE>
+ <PHRASE Label="la_prompt_Module" Module="Proj-Base" Type="1">TW9kdWxl</PHRASE>
+ <PHRASE Label="la_prompt_movedown" Module="Proj-Base" Type="1">TW92ZSBkb3du</PHRASE>
+ <PHRASE Label="la_prompt_moveup" Module="Proj-Base" Type="1">TW92ZSB1cA==</PHRASE>
+ <PHRASE Label="la_prompt_multipleshow" Module="Proj-Base" Type="1">U2hvdyBtdWx0aXBsZQ==</PHRASE>
+ <PHRASE Label="la_prompt_Name" Module="Proj-Base" Type="1">TmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_New" Module="Proj-Base" Type="1">TmV3</PHRASE>
+ <PHRASE Label="la_prompt_NewArticles" Module="Proj-Base" Type="1">TmV3IEFydGljbGVz</PHRASE>
+ <PHRASE Label="la_prompt_NewCategories" Module="Proj-Base" Type="1">TmV3IENhdGVnb3JpZXM=</PHRASE>
+ <PHRASE Label="la_prompt_NewestArticleDate" Module="Proj-Base" Type="1">TmV3ZXN0IEFydGljbGUgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_NewestCategoryDate" Module="Proj-Base" Type="1">TmV3ZXN0IENhdGVnb3J5IERhdGU=</PHRASE>
+ <PHRASE Label="la_prompt_NewestLinkDate" Module="Proj-Base" Type="1">TmV3ZXN0IExpbmsgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_NewestPostDate" Module="Proj-Base" Type="1">TmV3ZXN0IFBvc3QgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_NewestPostTime" Module="Proj-Base" Type="1">TmV3ZXN0IFBvc3QgVGltZQ==</PHRASE>
+ <PHRASE Label="la_prompt_NewestTopicDate" Module="Proj-Base" Type="1">TmV3ZXN0IFRvcGljIERhdGU=</PHRASE>
+ <PHRASE Label="la_prompt_NewestTopicTime" Module="Proj-Base" Type="1">TmV3ZXN0IFRvcGljIFRpbWU=</PHRASE>
+ <PHRASE Label="la_prompt_NewestUserDate" Module="Proj-Base" Type="1">TmV3ZXN0IFVzZXIgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_NewLinks" Module="Proj-Base" Type="1">TmV3IExpbmtz</PHRASE>
+ <PHRASE Label="la_prompt_NewsId" Module="Proj-Base" Type="1">TmV3cyBBcnRpY2xlIElE</PHRASE>
+ <PHRASE Label="la_prompt_NewTopics" Module="Proj-Base" Type="1">TmV3IFRvcGljcw==</PHRASE>
+ <PHRASE Label="la_prompt_NonExpiredSessions" Module="Proj-Base" Type="1">Q3VycmVudGx5IEFjdGl2ZSBVc2VyIFNlc3Npb25z</PHRASE>
+ <PHRASE Label="la_prompt_NotifyOwner" Module="Proj-Base" Type="1">Tm90aWZ5IE93bmVy</PHRASE>
+ <PHRASE Label="la_prompt_NotRegUsers" Module="Proj-Base" Type="1">TGluayBwZXJtaXNzaW9uIElEIGZvciBhbGwgdW5yZWdpc3RlcmVkIHVzZXJzIHRvIHZpZXcgaXQ=</PHRASE>
+ <PHRASE Label="la_prompt_overwritephrases" Module="Proj-Base" Type="2">T3ZlcndyaXRlIEV4aXN0aW5nIFBocmFzZXM=</PHRASE>
+ <PHRASE Label="la_prompt_PackName" Module="Proj-Base" Type="1">UGFjayBOYW1l</PHRASE>
+ <PHRASE Label="la_prompt_Parameter" Module="Proj-Base" Type="1">UGFyYW1ldGVy</PHRASE>
+ <PHRASE Label="la_prompt_parent_templates" Module="Proj-Base" Type="1">UGFyZW50IHRlbXBsYXRlcw==</PHRASE>
+ <PHRASE Label="la_prompt_Password" Module="Proj-Base" Type="1">UGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="la_prompt_PasswordRepeat" Module="Proj-Base" Type="1">UmVwZWF0IFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="la_prompt_Pending" Module="Proj-Base" Type="1">UGVuZGluZw==</PHRASE>
+ <PHRASE Label="la_prompt_PendingCategories" Module="Proj-Base" Type="1">UGVuZGluZyBDYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="la_prompt_PendingItems" Module="Proj-Base" Type="1">UGVuZGluZyBJdGVtcw==</PHRASE>
+ <PHRASE Label="la_prompt_PendingLinks" Module="Proj-Base" Type="1">UGVuZGluZyBMaW5rcw==</PHRASE>
+ <PHRASE Label="la_prompt_perform_now" Module="Proj-Base" Type="1">UGVyZm9ybSB0aGlzIG9wZXJhdGlvbiBub3c/</PHRASE>
+ <PHRASE Label="la_prompt_PerPage" Module="Proj-Base" Type="1">UGVyIFBhZ2U=</PHRASE>
+ <PHRASE Label="la_prompt_PersonalInfo" Module="Proj-Base" Type="1">UGVyc29uYWwgSW5mb3JtYXRpb24=</PHRASE>
+ <PHRASE Label="la_prompt_Phone" Module="Proj-Base" Type="1">UGhvbmU=</PHRASE>
+ <PHRASE Label="la_prompt_PhraseId" Module="Proj-Base" Type="1">UGhyYXNlIElk</PHRASE>
+ <PHRASE Label="la_prompt_Phrases" Module="Proj-Base" Type="1">UGhyYXNlcw==</PHRASE>
+ <PHRASE Label="la_prompt_PhraseType" Module="Proj-Base" Type="1">UGhyYXNlIFR5cGU=</PHRASE>
+ <PHRASE Label="la_prompt_plaintext" Module="Proj-Base" Type="1">UGxhaW4gVGV4dA==</PHRASE>
+ <PHRASE Label="la_prompt_Pop" Module="Proj-Base" Type="1">UG9wdWxhcml0eQ==</PHRASE>
+ <PHRASE Label="la_prompt_PopularArticles" Module="Proj-Base" Type="1">UG9wdWxhciBBcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="la_prompt_PopularLinks" Module="Proj-Base" Type="1">UG9wdWxhciBMaW5rcw==</PHRASE>
+ <PHRASE Label="la_prompt_PopularTopics" Module="Proj-Base" Type="1">UG9wdWxhciBUb3BpY3M=</PHRASE>
+ <PHRASE Label="la_prompt_PostedBy" Module="Proj-Base" Type="1">UG9zdGVkIGJ5</PHRASE>
+ <PHRASE Label="la_prompt_PostsToLock" Module="Proj-Base" Type="1">UG9zdHMgdG8gbG9jaw==</PHRASE>
+ <PHRASE Label="la_prompt_PostsTotal" Module="Proj-Base" Type="1">VG90YWwgUG9zdHM=</PHRASE>
+ <PHRASE Label="la_prompt_Primary" Module="Proj-Base" Type="1">UHJpbWFyeQ==</PHRASE>
+ <PHRASE Label="la_prompt_PrimaryGroup" Module="Proj-Base" Type="1">UHJpbWFyeSBHcm91cA==</PHRASE>
+ <PHRASE Label="la_prompt_PrimaryValue" Module="Proj-Base" Type="1">UHJpbWFyeSBWYWx1ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_Priority" Module="Proj-Base" Type="1">UHJpb3JpdHk=</PHRASE>
+ <PHRASE Label="la_prompt_Properties" Module="Proj-Base" Type="1">UHJvcGVydGllcw==</PHRASE>
+ <PHRASE Label="la_prompt_Rating" Module="Proj-Base" Type="1">UmF0aW5n</PHRASE>
+ <PHRASE Label="la_prompt_RatingLimits" Module="Proj-Base" Type="1">KE1pbmltdW0gMCwgTWF4aW11bSA1KQ==</PHRASE>
+ <PHRASE Label="la_prompt_RecordsCount" Module="Proj-Base" Type="1">TnVtYmVyIG9mIERhdGFiYXNlIFJlY29yZHM=</PHRASE>
+ <PHRASE Label="la_prompt_RegionsCount" Module="Proj-Base" Type="1">TnVtYmVyIG9mIFJlZ2lvbiBQYWNrcw==</PHRASE>
+ <PHRASE Label="la_prompt_RegUserId" Module="Proj-Base" Type="1">UmVndWxhciBVc2VyIEdyb3Vw</PHRASE>
+ <PHRASE Label="la_prompt_RegUsers" Module="Proj-Base" Type="1">TGluayBwZXJtaXNzaW9uIElEIGZvciBhbGwgcmVnaXN0ZXJlZCB1c2VycyB0byB2aWV3IGl0</PHRASE>
+ <PHRASE Label="la_prompt_RelationId" Module="Proj-Base" Type="1">UmVsYXRpb24gSUQ=</PHRASE>
+ <PHRASE Label="la_prompt_RelationType" Module="Proj-Base" Type="1">UmVsYXRpb24gVHlwZQ==</PHRASE>
+ <PHRASE Label="la_prompt_relevence_percent" Module="Proj-Base" Type="1">U2VhcmNoIFJlbGV2YW5jZSBkZXBlbmRzIG9u</PHRASE>
+ <PHRASE Label="la_prompt_relevence_settings" Module="Proj-Base" Type="1">U2VhcmNoIFJlbGV2ZW5jZSBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_prompt_remote_url" Module="Proj-Base" Type="1">VXNlIHJlbW90ZSBpbWFnZSAoVVJMKQ==</PHRASE>
+ <PHRASE Label="la_prompt_ReplacementWord" Module="Proj-Base" Type="1">UmVwbGFjZW1lbnQgV29yZA==</PHRASE>
+ <PHRASE Label="la_prompt_required_field_increase" Module="Proj-Base" Type="1">SW5jcmVhc2UgaW1wb3J0YW5jZSBpZiBmaWVsZCBjb250YWlucyBhIHJlcXVpcmVkIGtleXdvcmQgYnk=</PHRASE>
+ <PHRASE Label="la_Prompt_Restore_Failed" Module="Proj-Base" Type="1">UmVzdG9yZSBoYXMgZmFpbGVkIGFuIGVycm9yIG9jY3VyZWQ6</PHRASE>
+ <PHRASE Label="la_Prompt_Restore_Filechoose" Module="Proj-Base" Type="1">Q2hvb3NlIG9uZSBvZiB0aGUgZm9sbG93aW5nIGJhY2t1cCBkYXRlcyB0byByZXN0b3JlIG9yIGRlbGV0ZQ==</PHRASE>
+ <PHRASE Label="la_Prompt_Restore_Status" Module="Proj-Base" Type="1">UmVzdG9yZSBTdGF0dXM=</PHRASE>
+ <PHRASE Label="la_Prompt_Restore_Success" Module="Proj-Base" Type="1">UmVzdG9yZSBoYXMgYmVlbiBjb21wbGV0ZWQgc3VjY2Vzc2Z1bGx5</PHRASE>
+ <PHRASE Label="la_Prompt_ReviewedBy" Module="Proj-Base" Type="1">UmV2aWV3ZWQgQnk=</PHRASE>
+ <PHRASE Label="la_prompt_ReviewId" Module="Proj-Base" Type="1">UmV2aWV3IElE</PHRASE>
+ <PHRASE Label="la_prompt_ReviewText" Module="Proj-Base" Type="1">UmV2aWV3IFRleHQ=</PHRASE>
+ <PHRASE Label="la_prompt_RootCategory" Module="Proj-Base" Type="1">U2VsZWN0IE1vZHVsZSBSb290IENhdGVnb3J5Og==</PHRASE>
+ <PHRASE Label="la_prompt_root_name" Module="Proj-Base" Type="1">Um9vdCBjYXRlZ29yeSBuYW1lIChsYW5ndWFnZSB2YXJpYWJsZSk=</PHRASE>
+ <PHRASE Label="la_prompt_root_pass" Module="Proj-Base" Type="1">Um9vdCBQYXNzd29yZA==</PHRASE>
+ <PHRASE Label="la_prompt_Root_Password" Module="Proj-Base" Type="1">UGxlYXNlIGVudGVyIHRoZSBSb290IHBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="la_prompt_root_pass_verify" Module="Proj-Base" Type="1">VmVyaWZ5IFJvb3QgUGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="la_prompt_RuleType" Module="Proj-Base" Type="2">UnVsZSBUeXBl</PHRASE>
+ <PHRASE Label="la_prompt_runlink_validation" Module="Proj-Base" Type="2">VmFsaWRhdGlvbiBQcm9ncmVzcw==</PHRASE>
+ <PHRASE Label="la_prompt_Search" Module="Proj-Base" Type="1">U2VhcmNo</PHRASE>
+ <PHRASE Label="la_prompt_SearchType" Module="Proj-Base" Type="1">U2VhcmNoIFR5cGU=</PHRASE>
+ <PHRASE Label="la_prompt_Select_Source" Module="Proj-Base" Type="1">U2VsZWN0IFNvdXJjZSBMYW5ndWFnZQ==</PHRASE>
+ <PHRASE Label="la_prompt_sendmethod" Module="Proj-Base" Type="1">U2VuZCBFbWFpbCBBcw==</PHRASE>
+ <PHRASE Label="la_prompt_SentOn" Module="Proj-Base" Type="1">U2VudCBPbg==</PHRASE>
+ <PHRASE Label="la_prompt_Server" Module="Proj-Base" Type="1">U2VydmVyIEhvc3RuYW1l</PHRASE>
+ <PHRASE Label="la_prompt_SessionKey" Module="Proj-Base" Type="1">U0lE</PHRASE>
+ <PHRASE Label="la_prompt_session_cookie_name" Module="Proj-Base" Type="1">U2Vzc2lvbiBDb29raWUgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_prompt_session_management" Module="Proj-Base" Type="1">U2Vzc2lvbiBNYW5hZ2VtZW50IE1ldGhvZA==</PHRASE>
+ <PHRASE Label="la_prompt_session_timeout" Module="Proj-Base" Type="1">U2Vzc2lvbiBJbmFjdGl2aXR5IFRpbWVvdXQgKHNlY29uZHMp</PHRASE>
+ <PHRASE Label="la_prompt_showgeneraltab" Module="Proj-Base" Type="1">U2hvdyBvbiB0aGUgZ2VuZXJhbCB0YWI=</PHRASE>
+ <PHRASE Label="la_prompt_SimpleSearch" Module="Proj-Base" Type="1">U2ltcGxlIFNlYXJjaA==</PHRASE>
+ <PHRASE Label="la_prompt_smtpheaders" Module="Proj-Base" Type="1">QWRkaXRpb25hbCBNZXNzYWdlIEhlYWRlcnM=</PHRASE>
+ <PHRASE Label="la_prompt_smtp_pass" Module="Proj-Base" Type="1">TWFpbCBTZXJ2ZXIgUGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="la_prompt_smtp_user" Module="Proj-Base" Type="1">TWFpbCBTZXJ2ZXIgVXNlcm5hbWU=</PHRASE>
+ <PHRASE Label="la_prompt_socket_blocking_mode" Module="Proj-Base" Type="1">VXNlIG5vbi1ibG9ja2luZyBzb2NrZXQgbW9kZQ==</PHRASE>
+ <PHRASE Label="la_prompt_sqlquery" Module="Proj-Base" Type="1">U1FMIFF1ZXJ5Og==</PHRASE>
+ <PHRASE Label="la_prompt_sqlquery_error" Module="Proj-Base" Type="1">QW4gU1FMIGVycm9yIGhhcyBvY2N1cmVk</PHRASE>
+ <PHRASE Label="la_prompt_sqlquery_header" Module="Proj-Base" Type="1">UGVyZm9ybSBTUUwgUXVlcnk=</PHRASE>
+ <PHRASE Label="la_prompt_sqlquery_result" Module="Proj-Base" Type="1">U1FMIFF1ZXJ5IFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="la_prompt_SqlType" Module="Proj-Base" Type="1">U2VydmVyIFR5cGU=</PHRASE>
+ <PHRASE Label="la_prompt_StartDate" Module="Proj-Base" Type="1">U3RhcnQgRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_prompt_State" Module="Proj-Base" Type="1">U3RhdGU=</PHRASE>
+ <PHRASE Label="la_prompt_Status" Module="Proj-Base" Type="1">U3RhdHVz</PHRASE>
+ <PHRASE Label="la_Prompt_Step_One" Module="Proj-Base" Type="1">U3RlcCBPbmU=</PHRASE>
+ <PHRASE Label="la_prompt_Street" Module="Proj-Base" Type="1">U3RyZWV0</PHRASE>
+ <PHRASE Label="la_prompt_Stylesheet" Module="Proj-Base" Type="1">U3R5bGVzaGVldA==</PHRASE>
+ <PHRASE Label="la_prompt_Subject" Module="Proj-Base" Type="1">U3ViamVjdA==</PHRASE>
+ <PHRASE Label="la_prompt_SubSearch" Module="Proj-Base" Type="1">U3ViIFNlYXJjaA==</PHRASE>
+ <PHRASE Label="la_prompt_syscache_enable" Module="Proj-Base" Type="1">RW5hYmxlIFRhZyBDYWNoaW5n</PHRASE>
+ <PHRASE Label="la_prompt_SystemFileSize" Module="Proj-Base" Type="1">VG90YWwgU2l6ZSBvZiBTeXN0ZW0gRmlsZXM=</PHRASE>
+ <PHRASE Label="la_Prompt_SystemPermissions" Module="Proj-Base" Type="1">U3lzdGVtIHByZW1pc3Npb25z</PHRASE>
+ <PHRASE Label="la_prompt_TablesCount" Module="Proj-Base" Type="1">TnVtYmVyIG9mIERhdGFiYXNlIFRhYmxlcw==</PHRASE>
+ <PHRASE Label="la_prompt_Template" Module="Proj-Base" Type="1">VGVtcGxhdGU=</PHRASE>
+ <PHRASE Label="la_prompt_text_version" Module="Proj-Base" Type="1">VGV4dCBWZXJzaW9u</PHRASE>
+ <PHRASE Label="la_prompt_Theme" Module="Proj-Base" Type="1">VGhlbWU=</PHRASE>
+ <PHRASE Label="la_prompt_ThemeCount" Module="Proj-Base" Type="1">TnVtYmVyIG9mIFRoZW1lcw==</PHRASE>
+ <PHRASE Label="la_prompt_ThemeId" Module="Proj-Base" Type="1">VGhlbWUgSWQ=</PHRASE>
+ <PHRASE Label="la_prompt_thousand" Module="Proj-Base" Type="2">VGhvdXNhbmRzIFNlcGFyYXRvcg==</PHRASE>
+ <PHRASE Label="la_prompt_ThumbURL" Module="Proj-Base" Type="1">UmVtb3RlIFVSTA==</PHRASE>
+ <PHRASE Label="la_prompt_TimeFormat" Module="Proj-Base" Type="1">KGhoOm1tOnNzKQ==</PHRASE>
+ <PHRASE Label="la_Prompt_Title" Module="Proj-Base" Type="1">VGl0bGU=</PHRASE>
+ <PHRASE Label="la_prompt_To" Module="Proj-Base" Type="1">VG8=</PHRASE>
+ <PHRASE Label="la_prompt_TopicAverageRating" Module="Proj-Base" Type="1">VG9waWNzIEF2ZXJhZ2UgUmF0aW5n</PHRASE>
+ <PHRASE Label="la_prompt_TopicId" Module="Proj-Base" Type="1">VG9waWMgSUQ=</PHRASE>
+ <PHRASE Label="la_prompt_TopicLocked" Module="Proj-Base" Type="1">VG9waWMgTG9ja2Vk</PHRASE>
+ <PHRASE Label="la_prompt_TopicReviews" Module="Proj-Base" Type="1">VG90YWwgVG9waWMgUmV2aWV3cw==</PHRASE>
+ <PHRASE Label="la_prompt_TopicsActive" Module="Proj-Base" Type="1">QWN0aXZlIFRvcGljcw==</PHRASE>
+ <PHRASE Label="la_prompt_TopicsDisabled" Module="Proj-Base" Type="1">RGlzYWJsZWQgVG9waWNz</PHRASE>
+ <PHRASE Label="la_prompt_TopicsPending" Module="Proj-Base" Type="1">UGVuZGluZyBUb3BpY3M=</PHRASE>
+ <PHRASE Label="la_prompt_TopicsTotal" Module="Proj-Base" Type="1">VG90YWwgVG9waWNz</PHRASE>
+ <PHRASE Label="la_prompt_TopicsUsers" Module="Proj-Base" Type="1">VG90YWwgVXNlcnMgd2l0aCBUb3BpY3M=</PHRASE>
+ <PHRASE Label="la_prompt_TotalCategories" Module="Proj-Base" Type="1">VG90YWwgQ2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_prompt_TotalLinks" Module="Proj-Base" Type="1">VG90YWwgTGlua3M=</PHRASE>
+ <PHRASE Label="la_prompt_TotalUserGroups" Module="Proj-Base" Type="1">VG90YWwgVXNlciBHcm91cHM=</PHRASE>
+ <PHRASE Label="la_prompt_Type" Module="Proj-Base" Type="1">VHlwZQ==</PHRASE>
+ <PHRASE Label="la_prompt_updating" Module="Proj-Base" Type="1">VXBkYXRpbmc=</PHRASE>
+ <PHRASE Label="la_prompt_upload" Module="Proj-Base" Type="1">VXBsb2FkIGltYWdlIGZyb20gbG9jYWwgUEM=</PHRASE>
+ <PHRASE Label="la_prompt_URL" Module="Proj-Base" Type="1">VVJM</PHRASE>
+ <PHRASE Label="la_prompt_UserCount" Module="Proj-Base" Type="1">VXNlciBDb3VudA==</PHRASE>
+ <PHRASE Label="la_prompt_Usermame" Module="Proj-Base" Type="1">VXNlcm5hbWU=</PHRASE>
+ <PHRASE Label="la_prompt_Username" Module="Proj-Base" Type="1">VXNlcm5hbWU=</PHRASE>
+ <PHRASE Label="la_prompt_UsersActive" Module="Proj-Base" Type="1">QWN0aXZlIFVzZXJz</PHRASE>
+ <PHRASE Label="la_prompt_UsersDisabled" Module="Proj-Base" Type="1">RGlzYWJsZWQgVXNlcnM=</PHRASE>
+ <PHRASE Label="la_prompt_UsersPending" Module="Proj-Base" Type="1">UGVuZGluZyBVc2Vycw==</PHRASE>
+ <PHRASE Label="la_prompt_UsersUniqueCountries" Module="Proj-Base" Type="1">TnVtYmVyIG9mIFVuaXF1ZSBDb3VudHJpZXMgb2YgVXNlcnM=</PHRASE>
+ <PHRASE Label="la_prompt_UsersUniqueStates" Module="Proj-Base" Type="1">TnVtYmVyIG9mIFVuaXF1ZSBTdGF0ZXMgb2YgVXNlcnM=</PHRASE>
+ <PHRASE Label="la_prompt_Value" Module="Proj-Base" Type="1">VmFsdWU=</PHRASE>
+ <PHRASE Label="la_prompt_valuelist" Module="Proj-Base" Type="1">TGlzdCBvZiBWYWx1ZXM=</PHRASE>
+ <PHRASE Label="la_prompt_Views" Module="Proj-Base" Type="1">Vmlld3M=</PHRASE>
+ <PHRASE Label="la_prompt_Visible" Module="Proj-Base" Type="1">VmlzaWJsZQ==</PHRASE>
+ <PHRASE Label="la_prompt_VoteLimits" Module="Proj-Base" Type="1">KE1pbmltdW0gMSk=</PHRASE>
+ <PHRASE Label="la_prompt_Votes" Module="Proj-Base" Type="1">Vm90ZXM=</PHRASE>
+ <PHRASE Label="la_Prompt_Warning" Module="Proj-Base" Type="1">V2FybmluZyE=</PHRASE>
+ <PHRASE Label="la_prompt_weight" Module="Proj-Base" Type="1">V2VpZ2h0</PHRASE>
+ <PHRASE Label="la_prompt_Zip" Module="Proj-Base" Type="1">Wmlw</PHRASE>
+ <PHRASE Label="la_promt_ReferrerCheck" Module="Proj-Base" Type="1">U2Vzc2lvbiBSZWZlcnJlciBDaGVja2luZw==</PHRASE>
+ <PHRASE Label="la_Rating" Module="Proj-Base" Type="1">bGFfUmF0aW5n</PHRASE>
+ <PHRASE Label="la_rating_alreadyvoted" Module="Proj-Base" Type="1">QWxyZWFkeSB2b3RlZA==</PHRASE>
+ <PHRASE Label="la_Reciprocal" Module="Proj-Base" Type="1">UmVjaXByb2NhbA==</PHRASE>
+ <PHRASE Label="la_RemoveFrom" Module="Proj-Base" Type="1">UmVtb3ZlIEZyb20=</PHRASE>
+ <PHRASE Label="la_RequiredWarning" Module="Proj-Base" Type="1">Tm90IGFsbCByZXF1aXJlZCBmaWVsZHMgYXJlIGZpbGxlZC4gUGxlYXNlIGZpbGwgdGhlbSBmaXJzdC4=</PHRASE>
+ <PHRASE Label="la_restore_access_denied" Module="Proj-Base" Type="1">QWNjZXNzIGRlbmllZA==</PHRASE>
+ <PHRASE Label="la_restore_file_error" Module="Proj-Base" Type="1">RmlsZSBlcnJvcg==</PHRASE>
+ <PHRASE Label="la_restore_file_not_found" Module="Proj-Base" Type="1">RmlsZSBub3QgZm91bmQ=</PHRASE>
+ <PHRASE Label="la_restore_read_error" Module="Proj-Base" Type="1">VW5hYmxlIHRvIHJlYWQgZnJvbSBmaWxl</PHRASE>
+ <PHRASE Label="la_restore_unknown_error" Module="Proj-Base" Type="1">QW4gdW5kZWZpbmVkIGVycm9yIGhhcyBvY2N1cmVk</PHRASE>
+ <PHRASE Label="la_reviewer" Module="Proj-Base" Type="1">UmV2aWV3ZXI=</PHRASE>
+ <PHRASE Label="la_review_added" Module="Proj-Base" Type="1">UmV2aWV3IGFkZGVkIHN1Y2Nlc3NmdWxseQ==</PHRASE>
+ <PHRASE Label="la_review_alreadyreviewed" Module="Proj-Base" Type="1">VGhpcyBpdGVtIGhhcyBhbHJlYWR5IGJlZW4gcmV2aWV3ZWQ=</PHRASE>
+ <PHRASE Label="la_review_error" Module="Proj-Base" Type="1">RXJyb3IgYWRkaW5nIHJldmlldw==</PHRASE>
+ <PHRASE Label="la_review_perpage_prompt" Module="Proj-Base" Type="1">UmV2aWV3cyBQZXIgUGFnZQ==</PHRASE>
+ <PHRASE Label="la_review_perpage_short_prompt" Module="Proj-Base" Type="1">UmV2aWV3cyBQZXIgUGFnZSAoU2hvcnRsaXN0KQ==</PHRASE>
+ <PHRASE Label="la_rootpass_verify_error" Module="Proj-Base" Type="1">RXJyb3IgdmVyaWZ5aW5nIHBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="la_running_query" Module="Proj-Base" Type="1">UnVubmluZyBRdWVyeQ==</PHRASE>
+ <PHRASE Label="la_SampleText" Module="Proj-Base" Type="1">U2FtcGxlIFRleHQ=</PHRASE>
+ <PHRASE Label="la_Save" Module="Proj-Base" Type="1">U2F2ZQ==</PHRASE>
+ <PHRASE Label="la_Search" Module="Proj-Base" Type="1">U2VhcmNo</PHRASE>
+ <PHRASE Label="la_SearchLabel" Module="Proj-Base" Type="1">U2VhcmNo</PHRASE>
+ <PHRASE Label="la_SearchLabel_Categories" Module="Proj-Base" Type="1">U2VhcmNoIENhdGVnb3JpZXM=</PHRASE>
+ <PHRASE Label="la_SearchLabel_Links" Module="Proj-Base" Type="1">U2VhcmNoIExpbmtz</PHRASE>
+ <PHRASE Label="la_SearchLabel_News" Module="Proj-Base" Type="1">U2VhcmNoIEFydGljbGVz</PHRASE>
+ <PHRASE Label="la_SearchLabel_Topics" Module="Proj-Base" Type="1">U2VhcmNoIFRvcGljcw==</PHRASE>
+ <PHRASE Label="la_SearchMenu_Categories" Module="Proj-Base" Type="1">Q2F0ZWdvcmllczE=</PHRASE>
+ <PHRASE Label="la_SearchMenu_Clear" Module="Proj-Base" Type="1">Q2xlYXIgU2VhcmNo</PHRASE>
+ <PHRASE Label="la_SearchMenu_New" Module="Proj-Base" Type="1">TmV3IFNlYXJjaA==</PHRASE>
+ <PHRASE Label="la_Sectionheader_MetaInformation" Module="Proj-Base" Type="1">TUVUQSBJbmZvcm1hdGlvbg==</PHRASE>
+ <PHRASE Label="la_section_Category" Module="Proj-Base" Type="1">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_section_Counters" Module="Proj-Base" Type="1">Q291bnRlcnM=</PHRASE>
+ <PHRASE Label="la_section_CustomFields" Module="Proj-Base" Type="1">Q3VzdG9tIEZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_section_FullSizeImage" Module="Proj-Base" Type="1">RnVsbCBTaXplIEltYWdl</PHRASE>
+ <PHRASE Label="la_section_General" Module="Proj-Base" Type="1">R2VuZXJhbA==</PHRASE>
+ <PHRASE Label="la_section_Image" Module="Proj-Base" Type="1">SW1hZ2U=</PHRASE>
+ <PHRASE Label="la_section_Message" Module="Proj-Base" Type="1">TWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="la_section_overview" Module="Proj-Base" Type="1">U2VjdGlvbiBPdmVydmlldw==</PHRASE>
+ <PHRASE Label="la_section_Properties" Module="Proj-Base" Type="1">UHJvcGVydGllcw==</PHRASE>
+ <PHRASE Label="la_section_QuickLinks" Module="Proj-Base" Type="1">UXVpY2sgTGlua3M=</PHRASE>
+ <PHRASE Label="la_section_Relation" Module="Proj-Base" Type="1">UmVsYXRpb24=</PHRASE>
+ <PHRASE Label="la_section_Templates" Module="Proj-Base" Type="1">VGVtcGxhdGVz</PHRASE>
+ <PHRASE Label="la_section_ThumbnailImage" Module="Proj-Base" Type="1">VGh1bWJuYWlsIEltYWdl</PHRASE>
+ <PHRASE Label="la_section_Translation" Module="Proj-Base" Type="1">VHJhbnNsYXRpb24=</PHRASE>
+ <PHRASE Label="la_section_UsersSearch" Module="Proj-Base" Type="1">U2VhcmNoIFVzZXJz</PHRASE>
+ <PHRASE Label="la_selecting_categories" Module="Proj-Base" Type="1">U2VsZWN0aW5nIENhdGVnb3JpZXM=</PHRASE>
+ <PHRASE Label="la_Selection_Empty" Module="Proj-Base" Type="1">RW1wdHkgc2VsZWN0aW9u</PHRASE>
+ <PHRASE Label="la_SeparatedCategoryPath" Module="Proj-Base" Type="1">T25lIGZpZWxkIGZvciBlYWNoIGNhdGVnb3J5IGxldmVs</PHRASE>
+ <PHRASE Label="la_Showing_Logs" Module="Proj-Base" Type="1">U2hvd2luZyBMb2dz</PHRASE>
+ <PHRASE Label="la_Showing_Stats" Module="Proj-Base" Type="1">U2hvd2luZyBTdGF0aXN0aWNz</PHRASE>
+ <PHRASE Label="la_Show_EmailLog" Module="Proj-Base" Type="1">U2hvdyBFbWFpbCBMb2c=</PHRASE>
+ <PHRASE Label="la_Show_Log" Module="Proj-Base" Type="1">U2hvd2luZyBMb2dz</PHRASE>
+ <PHRASE Label="la_sortfield2_prompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_step" Module="Proj-Base" Type="1">U3RlcA==</PHRASE>
+ <PHRASE Label="la_StyleDefinition" Module="Proj-Base" Type="1">RGVmaW5pdGlvbg==</PHRASE>
+ <PHRASE Label="la_StylePreview" Module="Proj-Base" Type="1">UHJldmlldw==</PHRASE>
+ <PHRASE Label="la_sunday" Module="Proj-Base" Type="1">U3VuZGF5</PHRASE>
+ <PHRASE Label="la_tab_AdminUI" Module="Proj-Base" Type="1">QWRtaW5pc3RyYXRpb24gUGFuZWwgVUk=</PHRASE>
+ <PHRASE Label="la_tab_AdvancedView" Module="Proj-Base" Type="1">QWR2YW5jZWQgVmlldw==</PHRASE>
+ <PHRASE Label="la_tab_Backup" Module="Proj-Base" Type="1">QmFja3Vw</PHRASE>
+ <PHRASE Label="la_tab_BanList" Module="Proj-Base" Type="1">VXNlciBCYW4gTGlzdA==</PHRASE>
+ <PHRASE Label="la_tab_BaseStyles" Module="Proj-Base" Type="1">QmFzZSBTdHlsZXM=</PHRASE>
+ <PHRASE Label="la_tab_BlockStyles" Module="Proj-Base" Type="1">QmxvY2sgU3R5bGVz</PHRASE>
+ <PHRASE Label="la_tab_Browse" Module="Proj-Base" Type="1">Q2F0YWxvZw==</PHRASE>
+ <PHRASE Label="la_tab_Categories" Module="Proj-Base" Type="1">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_tab_Category_RelationSelect" Module="Proj-Base" Type="1">U2VsZWN0IEl0ZW0=</PHRASE>
+ <PHRASE Label="la_tab_Category_Select" Module="Proj-Base" Type="1">Q2F0ZWdvcnkgU2VsZWN0</PHRASE>
+ <PHRASE Label="la_tab_Censorship" Module="Proj-Base" Type="1">Q2Vuc29yc2hpcA==</PHRASE>
+ <PHRASE Label="la_tab_Community" Module="Proj-Base" Type="1">Q29tbXVuaXR5</PHRASE>
+ <PHRASE Label="la_tab_ConfigCategories" Module="Proj-Base" Type="1">R2VuZXJhbCBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_tab_ConfigCensorship" Module="Proj-Base" Type="1">Q2Vuc29yc2hpcA==</PHRASE>
+ <PHRASE Label="la_tab_ConfigCustom" Module="Proj-Base" Type="1">Q3VzdG9tIEZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_tab_ConfigE-mail" Module="Proj-Base" Type="1">RS1tYWlsIFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_tab_ConfigGeneral" Module="Proj-Base" Type="1">R2VuZXJhbCBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_tab_ConfigOutput" Module="Proj-Base" Type="1">T3V0cHV0IFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_tab_ConfigSearch" Module="Proj-Base" Type="1">U2VhcmNoIFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_tab_ConfigSettings" Module="Proj-Base" Type="1">R2VuZXJhbCBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_tab_ConfigSmileys" Module="Proj-Base" Type="1">U21pbGV5cw==</PHRASE>
+ <PHRASE Label="la_tab_ConfigUsers" Module="Proj-Base" Type="1">R2VuZXJhbCBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_tab_Custom" Module="Proj-Base" Type="1">Q3VzdG9t</PHRASE>
+ <PHRASE Label="la_tab_Editing_Review" Module="Proj-Base" Type="1">RWRpdGluZyBSZXZpZXc=</PHRASE>
+ <PHRASE Label="la_tab_EmailEvents" Module="Proj-Base" Type="1">RW1haWwgRXZlbnRz</PHRASE>
+ <PHRASE Label="la_tab_EmailLog" Module="Proj-Base" Type="1">RW1haWwgTG9n</PHRASE>
+ <PHRASE Label="la_tab_EmailMessage" Module="Proj-Base" Type="1">RW1haWwgTWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="la_tab_ExportData" Module="Proj-Base" Type="1">RXhwb3J0IERhdGE=</PHRASE>
+ <PHRASE Label="la_tab_ExportLang" Module="Proj-Base" Type="1">RXhwb3J0IExhbmd1YWdlIFBhY2s=</PHRASE>
+ <PHRASE Label="la_tab_General" Module="Proj-Base" Type="1">R2VuZXJhbA==</PHRASE>
+ <PHRASE Label="la_tab_GeneralSettings" Module="Proj-Base" Type="1">R2VuZXJhbCBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_tab_Group" Module="Proj-Base" Type="1">R3JvdXA=</PHRASE>
+ <PHRASE Label="la_tab_Groups" Module="Proj-Base" Type="1">R3JvdXBz</PHRASE>
+ <PHRASE Label="la_tab_GroupSelect" Module="Proj-Base" Type="1">U2VsZWN0IEdyb3Vw</PHRASE>
+ <PHRASE Label="la_tab_Help" Module="Proj-Base" Type="1">SGVscA==</PHRASE>
+ <PHRASE Label="la_tab_Images" Module="Proj-Base" Type="1">SW1hZ2Vz</PHRASE>
+ <PHRASE Label="la_tab_ImportData" Module="Proj-Base" Type="1">SW1wb3J0IERhdGE=</PHRASE>
+ <PHRASE Label="la_tab_ImportLang" Module="Proj-Base" Type="1">SW1wb3J0IExhbmd1YWdlIFBhY2s=</PHRASE>
+ <PHRASE Label="la_tab_inlinkimport" Module="Proj-Base" Type="1">SW4tbGluayBpbXBvcnQ=</PHRASE>
+ <PHRASE Label="la_tab_Install" Module="Proj-Base" Type="1">SW5zdGFsbA==</PHRASE>
+ <PHRASE Label="la_tab_ItemList" Module="Proj-Base" Type="1">SXRlbSBMaXN0</PHRASE>
+ <PHRASE Label="la_tab_Items" Module="Proj-Base" Type="1">SXRlbXM=</PHRASE>
+ <PHRASE Label="la_tab_label" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_tab_Labels" Module="Proj-Base" Type="1">TGFiZWxz</PHRASE>
+ <PHRASE Label="la_tab_LinkValidation" Module="Proj-Base" Type="2">TGluayBWYWxpZGF0aW9u</PHRASE>
+ <PHRASE Label="la_tab_Mail_List" Module="Proj-Base" Type="1">TWFpbCBMaXN0</PHRASE>
+ <PHRASE Label="la_tab_Message" Module="Proj-Base" Type="1">TWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="la_tab_MissingLabels" Module="Proj-Base" Type="1">TWlzc2luZyBMYWJlbHM=</PHRASE>
+ <PHRASE Label="la_tab_modules" Module="Proj-Base" Type="1">TW9kdWxlcw==</PHRASE>
+ <PHRASE Label="la_tab_ModulesManagement" Module="Proj-Base" Type="1">TW9kdWxlcyBNYW5hZ2VtZW50</PHRASE>
+ <PHRASE Label="la_tab_ModulesSettings" Module="Proj-Base" Type="1">TW9kdWxlcyAmIFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_tab_Overview" Module="Proj-Base" Type="1">T3ZlcnZpZXc=</PHRASE>
+ <PHRASE Label="la_tab_PackageContent" Module="Proj-Base" Type="1">UGFja2FnZSBDb250ZW50</PHRASE>
+ <PHRASE Label="la_tab_Permissions" Module="Proj-Base" Type="1">UGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_tab_phpbbimport" Module="Proj-Base" Type="1">cGhwQkIgSW1wb3J0</PHRASE>
+ <PHRASE Label="la_tab_Properties" Module="Proj-Base" Type="1">UHJvcGVydGllcw==</PHRASE>
+ <PHRASE Label="la_tab_QueryDB" Module="Proj-Base" Type="1">UXVlcnkgRGF0YWJhc2U=</PHRASE>
+ <PHRASE Label="la_tab_Regional" Module="Proj-Base" Type="1">UmVnaW9uYWw=</PHRASE>
+ <PHRASE Label="la_tab_Relations" Module="Proj-Base" Type="1">UmVsYXRpb25z</PHRASE>
+ <PHRASE Label="la_tab_Reports" Module="Proj-Base" Type="1">U3VtbWFyeSAmIExvZ3M=</PHRASE>
+ <PHRASE Label="la_tab_Restore" Module="Proj-Base" Type="1">UmVzdG9yZQ==</PHRASE>
+ <PHRASE Label="la_tab_Review" Module="Proj-Base" Type="1">UmV2aWV3</PHRASE>
+ <PHRASE Label="la_tab_Reviews" Module="Proj-Base" Type="1">UmV2aWV3cw==</PHRASE>
+ <PHRASE Label="la_tab_Rule" Module="Proj-Base" Type="2">UnVsZSBQcm9wZXJ0aWVz</PHRASE>
+ <PHRASE Label="la_Tab_Search" Module="Proj-Base" Type="1">U2VhcmNo</PHRASE>
+ <PHRASE Label="la_tab_SearchLog" Module="Proj-Base" Type="1">U2VhcmNoIExvZw==</PHRASE>
+ <PHRASE Label="la_tab_Search_Groups" Module="Proj-Base" Type="1">U2VhcmNoIEdyb3Vwcw==</PHRASE>
+ <PHRASE Label="la_tab_Search_Users" Module="Proj-Base" Type="1">U2VhcmNoIFVzZXJz</PHRASE>
+ <PHRASE Label="la_tab_SendMail" Module="Proj-Base" Type="1">U2VuZCBlLW1haWw=</PHRASE>
+ <PHRASE Label="la_tab_ServerInfo" Module="Proj-Base" Type="1">U2VydmVyIEluZm9ybWF0aW9u</PHRASE>
+ <PHRASE Label="la_tab_SessionLog" Module="Proj-Base" Type="1">U2Vzc2lvbiBMb2c=</PHRASE>
+ <PHRASE Label="la_tab_Settings" Module="Proj-Base" Type="1">R2VuZXJhbCBTZXR0aW5ncw==</PHRASE>
+ <PHRASE Label="la_tab_Site_Structure" Module="Proj-Base" Type="1">U3RydWN0dXJlICYgRGF0YQ==</PHRASE>
+ <PHRASE Label="la_tab_Stats" Module="Proj-Base" Type="1">U3RhdGlzdGljcw==</PHRASE>
+ <PHRASE Label="la_tab_Stylesheets" Module="Proj-Base" Type="1">U3R5bGVzaGVldHM=</PHRASE>
+ <PHRASE Label="la_tab_Summary" Module="Proj-Base" Type="1">U3VtbWFyeQ==</PHRASE>
+ <PHRASE Label="la_tab_Sys_Config" Module="Proj-Base" Type="1">Q29uZmlndXJhdGlvbg==</PHRASE>
+ <PHRASE Label="la_tab_taglibrary" Module="Proj-Base" Type="1">VGFnIGxpYnJhcnk=</PHRASE>
+ <PHRASE Label="la_tab_Template" Module="Proj-Base" Type="1">VGVtcGxhdGU=</PHRASE>
+ <PHRASE Label="la_tab_Templates" Module="Proj-Base" Type="1">VGVtcGxhdGVz</PHRASE>
+ <PHRASE Label="la_tab_Themes" Module="Proj-Base" Type="1">VGhlbWVz</PHRASE>
+ <PHRASE Label="la_tab_Tools" Module="Proj-Base" Type="1">VG9vbHM=</PHRASE>
+ <PHRASE Label="la_tab_upgrade_license" Module="Proj-Base" Type="1">VXBkYXRlIExpY2Vuc2U=</PHRASE>
+ <PHRASE Label="la_tab_userban" Module="Proj-Base" Type="1">QmFuIHVzZXI=</PHRASE>
+ <PHRASE Label="la_tab_UserBanList" Module="Proj-Base" Type="1">VXNlciBCYW4gTGlzdA==</PHRASE>
+ <PHRASE Label="la_tab_Users" Module="Proj-Base" Type="1">VXNlcnM=</PHRASE>
+ <PHRASE Label="la_tab_UserSelect" Module="Proj-Base" Type="1">VXNlciBTZWxlY3Q=</PHRASE>
+ <PHRASE Label="la_tab_User_Groups" Module="Proj-Base" Type="1">R3JvdXBz</PHRASE>
+ <PHRASE Label="la_tab_User_List" Module="Proj-Base" Type="1">VXNlcnM=</PHRASE>
+ <PHRASE Label="la_tab_Visits" Module="Proj-Base" Type="1">VmlzaXRz</PHRASE>
+ <PHRASE Label="la_taglib_link" Module="Proj-Base" Type="1">VGFnIExpYnJhcnk=</PHRASE>
+ <PHRASE Label="la_tag_library" Module="Proj-Base" Type="1">VGFnIExpYnJhcnk=</PHRASE>
+ <PHRASE Label="la_terabytes" Module="Proj-Base" Type="1">dGVyYWJ5dGUocyk=</PHRASE>
+ <PHRASE Label="la_Text" Module="Proj-Base" Type="1">dGV4dA==</PHRASE>
+ <PHRASE Label="la_Text_Access_Denied" Module="Proj-Base" Type="1">SW52YWxpZCB1c2VyIG5hbWUgb3IgcGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="la_Text_Active" Module="Proj-Base" Type="1">QWN0aXZl</PHRASE>
+ <PHRASE Label="la_Text_Adding" Module="Proj-Base" Type="1">QWRkaW5n</PHRASE>
+ <PHRASE Label="la_Text_Address" Module="Proj-Base" Type="1">QWRkcmVzcw==</PHRASE>
+ <PHRASE Label="la_text_address_denied" Module="Proj-Base" Type="1">TG9naW4gbm90IGFsbG93ZWQgZnJvbSB0aGlzIGFkZHJlc3M=</PHRASE>
+ <PHRASE Label="la_Text_Admin" Module="Proj-Base" Type="1">QWRtaW4=</PHRASE>
+ <PHRASE Label="la_Text_AdminEmail" Module="Proj-Base" Type="1">QWRtaW5pc3RyYXRvciBSZWNlaXZlIE5vdGljZXMgV2hlbg==</PHRASE>
+ <PHRASE Label="la_text_advanced" Module="Proj-Base" Type="1">QWR2YW5jZWQ=</PHRASE>
+ <PHRASE Label="la_Text_All" Module="Proj-Base" Type="1">QWxs</PHRASE>
+ <PHRASE Label="la_Text_Allow" Module="Proj-Base" Type="1">QWxsb3c=</PHRASE>
+ <PHRASE Label="la_Text_Any" Module="Proj-Base" Type="1">QW55</PHRASE>
+ <PHRASE Label="la_Text_Archived" Module="Proj-Base" Type="1">QXJjaGl2ZWQ=</PHRASE>
+ <PHRASE Label="la_Text_Article" Module="Proj-Base" Type="1">QXJ0aWNsZQ==</PHRASE>
+ <PHRASE Label="la_Text_Articles" Module="Proj-Base" Type="1">QXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="la_text_As" Module="Proj-Base" Type="1">YXM=</PHRASE>
+ <PHRASE Label="la_Text_backing_up" Module="Proj-Base" Type="1">QmFja2luZyB1cA==</PHRASE>
+ <PHRASE Label="la_Text_BackupComplete" Module="Proj-Base" Type="1">QmFjayB1cCBoYXMgYmVlbiBjb21wbGV0ZWQuIFRoZSBiYWNrdXAgZmlsZSBpczo=</PHRASE>
+ <PHRASE Label="la_Text_BackupPath" Module="Proj-Base" Type="1">QmFja3VwIFBhdGg=</PHRASE>
+ <PHRASE Label="la_Text_backup_access" Module="Proj-Base" Type="2">SW4tUG9ydGFsIGRvZXMgbm90IGhhdmUgYWNjZXNzIHRvIHdyaXRlIHRvIHRoaXMgZGlyZWN0b3J5</PHRASE>
+ <PHRASE Label="la_Text_Backup_Info" Module="Proj-Base" Type="1">VGhpcyB1dGlsaXR5IGFsbG93cyB5b3UgdG8gYmFja3VwIHlvdXIgY3VycmVudCBkYXRhIGZyb20gSW4tUG9ydGFsIGRhdGFiYXNlLg==</PHRASE>
+ <PHRASE Label="la_text_Backup_in_progress" Module="Proj-Base" Type="1">QmFja3VwIGluIHByb2dyZXNz</PHRASE>
+ <PHRASE Label="la_Text_Ban" Module="Proj-Base" Type="1">QmFu</PHRASE>
+ <PHRASE Label="la_Text_BanRules" Module="Proj-Base" Type="2">VXNlciBCYW4gUnVsZXM=</PHRASE>
+ <PHRASE Label="la_Text_BanUserFields" Module="Proj-Base" Type="1">QmFuIFVzZXIgSW5mb3JtYXRpb24=</PHRASE>
+ <PHRASE Label="la_Text_Blank_Field" Module="Proj-Base" Type="1">QmxhbmsgdXNlcm5hbWUgb3IgcGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="la_Text_Both" Module="Proj-Base" Type="1">Qm90aA==</PHRASE>
+ <PHRASE Label="la_Text_BuiltIn" Module="Proj-Base" Type="1">QnVpbHQgSW4=</PHRASE>
+ <PHRASE Label="la_text_Bytes" Module="Proj-Base" Type="1">Ynl0ZXM=</PHRASE>
+ <PHRASE Label="la_Text_Catalog" Module="Proj-Base" Type="1">Q2F0YWxvZw==</PHRASE>
+ <PHRASE Label="la_Text_Categories" Module="Proj-Base" Type="1">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_Text_Category" Module="Proj-Base" Type="1">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_Text_Censorship" Module="Proj-Base" Type="1">Q2Vuc29yc2hpcA==</PHRASE>
+ <PHRASE Label="la_Text_City" Module="Proj-Base" Type="1">Q2l0eQ==</PHRASE>
+ <PHRASE Label="la_text_ClearClipboardWarning" Module="Proj-Base" Type="1">WW91IGFyZSBhYm91dCB0byBjbGVhciBjbGlwYm9hcmQgY29udGVudCENClByZXNzIE9LIHRvIGNvbnRpbnVlIG9yIENhbmNlbCB0byByZXR1cm4gdG8gcHJldmlvdXMgc2NyZWVuLg==</PHRASE>
+ <PHRASE Label="la_Text_ComingSoon" Module="Proj-Base" Type="1">U2VjdGlvbiBDb21pbmcgU29vbg==</PHRASE>
+ <PHRASE Label="la_Text_Complete" Module="Proj-Base" Type="1">Q29tcGxldGU=</PHRASE>
+ <PHRASE Label="la_Text_Configuration" Module="Proj-Base" Type="1">Q29uZmlndXJhdGlvbg==</PHRASE>
+ <PHRASE Label="la_text_Contains" Module="Proj-Base" Type="1">Q29udGFpbnM=</PHRASE>
+ <PHRASE Label="la_Text_Counters" Module="Proj-Base" Type="1">Q291bnRlcnM=</PHRASE>
+ <PHRASE Label="la_Text_Current" Module="Proj-Base" Type="1">Q3VycmVudA==</PHRASE>
+ <PHRASE Label="la_text_custom" Module="Proj-Base" Type="1">Q3VzdG9t</PHRASE>
+ <PHRASE Label="la_Text_CustomField" Module="Proj-Base" Type="1">Q3VzdG9tIEZpZWxk</PHRASE>
+ <PHRASE Label="la_Text_CustomFields" Module="Proj-Base" Type="1">Q3VzdG9tIEZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_Text_DatabaseSettings" Module="Proj-Base" Type="1">RGF0YWJhc2UgU2V0dGluZ3MgLSBJbnRlY2huaWMgSW4tTGluayAyLng=</PHRASE>
+ <PHRASE Label="la_Text_DataType_1" Module="Proj-Base" Type="1">Y2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_Text_DataType_2" Module="Proj-Base" Type="1">RGF0YSBUeXBlIDI=</PHRASE>
+ <PHRASE Label="la_Text_DataType_3" Module="Proj-Base" Type="1">cG9zdA==</PHRASE>
+ <PHRASE Label="la_Text_DataType_4" Module="Proj-Base" Type="1">bGlua3M=</PHRASE>
+ <PHRASE Label="la_Text_DataType_6" Module="Proj-Base" Type="1">dXNlcnM=</PHRASE>
+ <PHRASE Label="la_Text_Date_Time_Settings" Module="Proj-Base" Type="1">RGF0ZS9UaW1lIFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_Text_Day" Module="Proj-Base" Type="1">RGF5</PHRASE>
+ <PHRASE Label="la_text_db_warning" Module="Proj-Base" Type="1">UnVubmluZyB0aGlzIHV0aWxpdHkgd2lsbCBhZmZlY3QgeW91ciBkYXRhYmFzZS4gIFBsZWFzZSBiZSBhZHZpc2VkIHRoYXQgeW91IGNhbiB1c2UgdGhpcyB1dGlsaXR5IGF0IHlvdXIgb3duIHJpc2suICBJbnRlY2huaWMgQ29ycG9yYXRpb24gY2FuIG5vdCBiZSBoZWxkIGxpYWJsZSBmb3IgYW55IGNvcnJ1cHQgZGF0YSBvciBkYXRhIGxvc3Mu</PHRASE>
+ <PHRASE Label="la_Text_Default" Module="Proj-Base" Type="1">RGVmYXVsdA==</PHRASE>
+ <PHRASE Label="la_Text_Delete" Module="Proj-Base" Type="1">RGVsZXRl</PHRASE>
+ <PHRASE Label="la_text_denied" Module="Proj-Base" Type="1">RGVuaWVk</PHRASE>
+ <PHRASE Label="la_Text_Deny" Module="Proj-Base" Type="1">RGVueQ==</PHRASE>
+ <PHRASE Label="la_Text_Disable" Module="Proj-Base" Type="1">RGlzYWJsZQ==</PHRASE>
+ <PHRASE Label="la_Text_Disabled" Module="Proj-Base" Type="1">RGlzYWJsZWQ=</PHRASE>
+ <PHRASE Label="la_text_disclaimer_part1" Module="Proj-Base" Type="1">UnVubmluZyB0aGlzIHV0aWxpdHkgd2lsbCBhZmZlY3QgeW91ciBkYXRhYmFzZS4gUGxlYXNlIGJlIGFkdmlzZWQgdGhhdCB5b3UgY2FuIHVzZSB0aGlzIHV0aWxpdHkgYXQgeW91ciBvd24gcmlzay4gSW50ZWNobmljIENvcnBvcmF0aW9uIGNhbiBub3QgYmUgaGVsZCBsaWFibGUgZm9yIGFueSBjb3JydXB0IGRhdGEgb3IgZGF0YSBsb3NzLg==</PHRASE>
+ <PHRASE Label="la_text_disclaimer_part2" Module="Proj-Base" Type="1">UGxlYXNlIG1ha2Ugc3VyZSB0byBiYWNrIHVwIHlvdXIgZGF0YWJhc2UocykgYmVmb3JlIHJ1bm5pbmcgdGhpcyB1dGlsaXR5Lg==</PHRASE>
+ <PHRASE Label="la_Text_Edit" Module="Proj-Base" Type="1">RWRpdA==</PHRASE>
+ <PHRASE Label="la_Text_Editing" Module="Proj-Base" Type="1">RWRpdGluZw==</PHRASE>
+ <PHRASE Label="la_Text_Editor" Module="Proj-Base" Type="1">RWRpdG9y</PHRASE>
+ <PHRASE Label="la_Text_Email" Module="Proj-Base" Type="1">RW1haWw=</PHRASE>
+ <PHRASE Label="la_Text_Emoticons" Module="Proj-Base" Type="1">RW1vdGlvbiBJY29ucw==</PHRASE>
+ <PHRASE Label="la_Text_Enable" Module="Proj-Base" Type="1">RW5hYmxl</PHRASE>
+ <PHRASE Label="la_Text_Enabled" Module="Proj-Base" Type="1">RW5hYmxlZA==</PHRASE>
+ <PHRASE Label="la_Text_Events" Module="Proj-Base" Type="1">RXZlbnRz</PHRASE>
+ <PHRASE Label="la_Text_example" Module="Proj-Base" Type="2">RXhhbXBsZQ==</PHRASE>
+ <PHRASE Label="la_Text_Exists" Module="Proj-Base" Type="1">RXhpc3Rz</PHRASE>
+ <PHRASE Label="la_Text_Expired" Module="Proj-Base" Type="1">RXhwaXJlZA==</PHRASE>
+ <PHRASE Label="la_Text_Export" Module="Proj-Base" Type="2">RXhwb3J0</PHRASE>
+ <PHRASE Label="la_Text_Fields" Module="Proj-Base" Type="1">RmllbGRz</PHRASE>
+ <PHRASE Label="la_Text_Filter" Module="Proj-Base" Type="1">RmlsdGVy</PHRASE>
+ <PHRASE Label="la_Text_FirstName" Module="Proj-Base" Type="1">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_text_for" Module="Proj-Base" Type="1">Zm9y</PHRASE>
+ <PHRASE Label="la_Text_Front" Module="Proj-Base" Type="1">RnJvbnQ=</PHRASE>
+ <PHRASE Label="la_Text_FrontEnd" Module="Proj-Base" Type="1">RnJvbnQgRW5k</PHRASE>
+ <PHRASE Label="la_Text_FrontOnly" Module="Proj-Base" Type="1">RnJvbnQtZW5kIE9ubHk=</PHRASE>
+ <PHRASE Label="la_Text_Full" Module="Proj-Base" Type="1">RnVsbA==</PHRASE>
+ <PHRASE Label="la_Text_Full_Size_Image" Module="Proj-Base" Type="1">RnVsbCBTaXplIEltYWdl</PHRASE>
+ <PHRASE Label="la_Text_General" Module="Proj-Base" Type="1">R2VuZXJhbA==</PHRASE>
+ <PHRASE Label="la_Text_GreaterThan" Module="Proj-Base" Type="1">R3JlYXRlciBUaGFu</PHRASE>
+ <PHRASE Label="la_Text_Group" Module="Proj-Base" Type="1">R3JvdXA=</PHRASE>
+ <PHRASE Label="la_Text_Groups" Module="Proj-Base" Type="1">R3JvdXBz</PHRASE>
+ <PHRASE Label="la_Text_Group_Name" Module="Proj-Base" Type="1">R3JvdXAgTmFtZQ==</PHRASE>
+ <PHRASE Label="la_Text_Guest" Module="Proj-Base" Type="1">R3Vlc3Q=</PHRASE>
+ <PHRASE Label="la_Text_GuestUsers" Module="Proj-Base" Type="1">R3Vlc3QgVXNlcnM=</PHRASE>
+ <PHRASE Label="la_Text_Hot" Module="Proj-Base" Type="1">SG90</PHRASE>
+ <PHRASE Label="la_Text_Hour" Module="Proj-Base" Type="1">SG91cg==</PHRASE>
+ <PHRASE Label="la_Text_IAgree" Module="Proj-Base" Type="1">SSBhZ3JlZSB0byB0aGUgdGVybXMgYW5kIGNvbmRpdGlvbnM=</PHRASE>
+ <PHRASE Label="la_Text_Image" Module="Proj-Base" Type="1">SW1hZ2U=</PHRASE>
+ <PHRASE Label="la_Text_Images" Module="Proj-Base" Type="1">SW1hZ2Vz</PHRASE>
+ <PHRASE Label="la_Text_Inactive" Module="Proj-Base" Type="1">SW5hY3RpdmU=</PHRASE>
+ <PHRASE Label="la_Text_InDevelopment" Module="Proj-Base" Type="1">SW4gRGV2ZWxvcG1lbnQ=</PHRASE>
+ <PHRASE Label="la_Text_Install" Module="Proj-Base" Type="1">SW5zdGFsbA==</PHRASE>
+ <PHRASE Label="la_Text_Installed" Module="Proj-Base" Type="1">SW5zdGFsbGVk</PHRASE>
+ <PHRASE Label="la_Text_Invalid" Module="Proj-Base" Type="2">SW52YWxpZA==</PHRASE>
+ <PHRASE Label="la_Text_Invert" Module="Proj-Base" Type="1">SW52ZXJ0</PHRASE>
+ <PHRASE Label="la_Text_IPAddress" Module="Proj-Base" Type="1">SVAgQWRkcmVzcw==</PHRASE>
+ <PHRASE Label="la_Text_Is" Module="Proj-Base" Type="1">SXM=</PHRASE>
+ <PHRASE Label="la_Text_IsNot" Module="Proj-Base" Type="1">SXMgTm90</PHRASE>
+ <PHRASE Label="la_Text_Items" Module="Proj-Base" Type="1">SXRlbXM=</PHRASE>
+ <PHRASE Label="la_text_keyword" Module="Proj-Base" Type="1">S2V5d29yZA==</PHRASE>
+ <PHRASE Label="la_Text_Label" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_Text_LangImport" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgSW1wb3J0</PHRASE>
+ <PHRASE Label="la_Text_Languages" Module="Proj-Base" Type="2">TGFuZ3VhZ2U=</PHRASE>
+ <PHRASE Label="la_Text_LastName" Module="Proj-Base" Type="1">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="la_text_leading" Module="Proj-Base" Type="1">TGVhZGluZw==</PHRASE>
+ <PHRASE Label="la_Text_LessThan" Module="Proj-Base" Type="1">TGVzcyBUaGFu</PHRASE>
+ <PHRASE Label="la_Text_Licence" Module="Proj-Base" Type="1">TGljZW5zZQ==</PHRASE>
+ <PHRASE Label="la_Text_Link" Module="Proj-Base" Type="1">TGluaw==</PHRASE>
+ <PHRASE Label="la_Text_Links" Module="Proj-Base" Type="1">TGlua3M=</PHRASE>
+ <PHRASE Label="la_Text_Link_Validation" Module="Proj-Base" Type="2">VmFsaWRhdGluZyBMaW5rcw==</PHRASE>
+ <PHRASE Label="la_Text_Local" Module="Proj-Base" Type="1">TG9jYWw=</PHRASE>
+ <PHRASE Label="la_Text_Locked" Module="Proj-Base" Type="1">TG9ja2Vk</PHRASE>
+ <PHRASE Label="la_Text_Login" Module="Proj-Base" Type="1">VXNlcm5hbWU=</PHRASE>
+ <PHRASE Label="la_Text_MailEvent" Module="Proj-Base" Type="1">RW1haWwgRXZlbnQ=</PHRASE>
+ <PHRASE Label="la_Text_MetaInfo" Module="Proj-Base" Type="1">RGVmYXVsdCBNRVRBIGtleXdvcmRz</PHRASE>
+ <PHRASE Label="la_text_minkeywordlength" Module="Proj-Base" Type="1">TWluaW11bSBrZXl3b3JkIGxlbmd0aA==</PHRASE>
+ <PHRASE Label="la_Text_Minute" Module="Proj-Base" Type="1">TWludXRl</PHRASE>
+ <PHRASE Label="la_text_min_password" Module="Proj-Base" Type="1">TWluaW11bSBwYXNzd29yZCBsZW5ndGg=</PHRASE>
+ <PHRASE Label="la_text_min_username" Module="Proj-Base" Type="1">TWluaW11bSB1c2VyIG5hbWUgbGVuZ3Ro</PHRASE>
+ <PHRASE Label="la_Text_Missing_Password" Module="Proj-Base" Type="1">QmxhbmsgcGFzc3dvcmRzIGFyZSBub3QgYWxsb3dlZA==</PHRASE>
+ <PHRASE Label="la_Text_Missing_Username" Module="Proj-Base" Type="1">QmxhbmsgdXNlciBuYW1l</PHRASE>
+ <PHRASE Label="la_Text_Modules" Module="Proj-Base" Type="1">TW9kdWxlcw==</PHRASE>
+ <PHRASE Label="la_Text_Month" Module="Proj-Base" Type="1">TW9udGhz</PHRASE>
+ <PHRASE Label="la_text_multipleshow" Module="Proj-Base" Type="1">U2hvdyBtdWx0aXBsZQ==</PHRASE>
+ <PHRASE Label="la_Text_New" Module="Proj-Base" Type="1">TmV3</PHRASE>
+ <PHRASE Label="la_Text_NewCensorWord" Module="Proj-Base" Type="1">TmV3IENlbnNvciBXb3Jk</PHRASE>
+ <PHRASE Label="la_Text_NewField" Module="Proj-Base" Type="1">TmV3IEZpZWxk</PHRASE>
+ <PHRASE Label="la_Text_NewTheme" Module="Proj-Base" Type="1">TmV3IFRoZW1l</PHRASE>
+ <PHRASE Label="la_text_NoCategories" Module="Proj-Base" Type="1">Tm8gQ2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_Text_None" Module="Proj-Base" Type="1">Tm9uZQ==</PHRASE>
+ <PHRASE Label="la_text_nopermissions" Module="Proj-Base" Type="1">Tm8gcGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_Text_NotContains" Module="Proj-Base" Type="1">RG9lcyBOb3QgQ29udGFpbg==</PHRASE>
+ <PHRASE Label="la_Text_Not_Validated" Module="Proj-Base" Type="2">Tm90IFZhbGlkYXRlZA==</PHRASE>
+ <PHRASE Label="la_Text_No_permissions" Module="Proj-Base" Type="1">Tm8gcGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_Text_OneWay" Module="Proj-Base" Type="1">T25lIFdheQ==</PHRASE>
+ <PHRASE Label="la_Text_Pack" Module="Proj-Base" Type="1">UGFjaw==</PHRASE>
+ <PHRASE Label="la_Text_Pending" Module="Proj-Base" Type="1">UGVuZGluZw==</PHRASE>
+ <PHRASE Label="la_text_Permission" Module="Proj-Base" Type="1">UGVybWlzc2lvbg==</PHRASE>
+ <PHRASE Label="la_Text_Phone" Module="Proj-Base" Type="1">UGhvbmU=</PHRASE>
+ <PHRASE Label="la_Text_Pop" Module="Proj-Base" Type="1">UG9wdWxhcg==</PHRASE>
+ <PHRASE Label="la_text_popularity" Module="Proj-Base" Type="1">UG9wdWxhcml0eQ==</PHRASE>
+ <PHRASE Label="la_Text_PostBody" Module="Proj-Base" Type="1">UG9zdCBCb2R5</PHRASE>
+ <PHRASE Label="la_Text_Posts" Module="Proj-Base" Type="1">UG9zdHM=</PHRASE>
+ <PHRASE Label="la_text_prerequisit_not_passed" Module="Proj-Base" Type="1">UHJlcmVxdWlzaXRlIG5vdCBmdWxmaWxsZWQsIGluc3RhbGxhdGlvbiBjYW5ub3QgY29udGludWUh</PHRASE>
+ <PHRASE Label="la_Text_Primary" Module="Proj-Base" Type="1">UHJpbWFyeQ==</PHRASE>
+ <PHRASE Label="la_text_quicklinks" Module="Proj-Base" Type="1">UXVpY2sgbGlua3M=</PHRASE>
+ <PHRASE Label="la_text_ReadOnly" Module="Proj-Base" Type="1">UmVhZCBPbmx5</PHRASE>
+ <PHRASE Label="la_text_ready_to_install" Module="Proj-Base" Type="1">UmVhZHkgdG8gSW5zdGFsbA==</PHRASE>
+ <PHRASE Label="la_Text_Reciprocal" Module="Proj-Base" Type="1">UmVjaXByb2NhbA==</PHRASE>
+ <PHRASE Label="la_Text_Relation" Module="Proj-Base" Type="1">UmVsYXRpb24=</PHRASE>
+ <PHRASE Label="la_Text_Relations" Module="Proj-Base" Type="1">UmVsYXRpb25z</PHRASE>
+ <PHRASE Label="la_Text_Replies" Module="Proj-Base" Type="1">UmVwbGllcw==</PHRASE>
+ <PHRASE Label="la_text_restore warning" Module="Proj-Base" Type="1">VGhlIHZlcnNpb25zIG9mIHRoZSBiYWNrdXAgYW5kIHlvdXIgY29kZSBkb24ndCBtYXRjaC4gWW91ciBpbnN0YWxsYXRpb24gd2lsbCBwcm9iYWJseSBiZSBub24gb3BlcmF0aW9uYWwu</PHRASE>
+ <PHRASE Label="la_Text_Restore_Heading" Module="Proj-Base" Type="1">SGVyZSB5b3UgY2FuIHJlc3RvcmUgeW91ciBkYXRhYmFzZSBmcm9tIGEgcHJldmlvdXNseSBiYWNrZWQgdXAgc25hcHNob3QuIFJlc3RvcmluZyB5b3VyIGRhdGFiYXNlIHdpbGwgZGVsZXRlIGFsbCBvZiB5b3VyIGN1cnJlbnQgZGF0YSBhbmQgbG9nIHlvdSBvdXQgb2YgdGhlIHN5c3RlbS4=</PHRASE>
+ <PHRASE Label="la_text_Restore_in_progress" Module="Proj-Base" Type="1">UmVzdG9yZSBpcyBpbiBwcm9ncmVzcw==</PHRASE>
+ <PHRASE Label="la_Text_Restore_Warning" Module="Proj-Base" Type="1">IFJ1bm5pbmcgdGhpcyB1dGlsaXR5IHdpbGwgYWZmZWN0IHlvdXIgZGF0YWJhc2UuICBQbGVhc2UgYmUgYWR2aXNlZCB0aGF0IHlvdSBjYW4gdXNlIHRoaXMgdXRpbGl0eSBhdCB5b3VyIG93biByaXNrLiAgSW50ZWNobmljIGNvcnBvcmF0aW9uIGNhbiBub3QgYmUgaGVsZCBsaWFibGUgZm9yIGFueSBjb3JydXB0IGRhdGEgb3IgZGF0YSBsb3NzLiAgUGxlYXNlIG1ha2Ugc3VyZSB0byBiYWNrIHVwIHlvdXIgZGF0YWJhc2UocykgYmVmb3JlIHJ1bm5p</PHRASE>
+ <PHRASE Label="la_Text_Restrictions" Module="Proj-Base" Type="1">UmVzdHJpY3Rpb25z</PHRASE>
+ <PHRASE Label="la_Text_Results" Module="Proj-Base" Type="2">UmVzdWx0cw==</PHRASE>
+ <PHRASE Label="la_text_review" Module="Proj-Base" Type="1">UmV2aWV3</PHRASE>
+ <PHRASE Label="la_Text_Reviews" Module="Proj-Base" Type="1">UmV2aWV3cw==</PHRASE>
+ <PHRASE Label="la_Text_Root" Module="Proj-Base" Type="1">Um9vdA==</PHRASE>
+ <PHRASE Label="la_Text_RootCategory" Module="Proj-Base" Type="1">TW9kdWxlIFJvb3QgQ2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_text_Rows" Module="Proj-Base" Type="1">cm93KHMp</PHRASE>
+ <PHRASE Label="la_Text_Rule" Module="Proj-Base" Type="2">UnVsZQ==</PHRASE>
+ <PHRASE Label="la_text_Same" Module="Proj-Base" Type="1">U2FtZQ==</PHRASE>
+ <PHRASE Label="la_text_Same_As_Thumbnail" Module="Proj-Base" Type="1">U2FtZSBhcyB0aHVtYm5haWw=</PHRASE>
+ <PHRASE Label="la_text_Save" Module="Proj-Base" Type="1">U2F2ZQ==</PHRASE>
+ <PHRASE Label="la_Text_Scanning" Module="Proj-Base" Type="1">U2Nhbm5pbmc=</PHRASE>
+ <PHRASE Label="la_Text_Search_Results" Module="Proj-Base" Type="1">U2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="la_Text_Second" Module="Proj-Base" Type="1">U2Vjb25kcw==</PHRASE>
+ <PHRASE Label="la_Text_Select" Module="Proj-Base" Type="1">U2VsZWN0</PHRASE>
+ <PHRASE Label="la_Text_Send" Module="Proj-Base" Type="1">U2VuZA==</PHRASE>
+ <PHRASE Label="la_Text_Sessions" Module="Proj-Base" Type="1">U2Vzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_text_sess_expired" Module="Proj-Base" Type="0">U2Vzc2lvbiBFeHBpcmVk</PHRASE>
+ <PHRASE Label="la_Text_Settings" Module="Proj-Base" Type="1">U2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_Text_ShowingGroups" Module="Proj-Base" Type="1">U2hvd2luZyBHcm91cHM=</PHRASE>
+ <PHRASE Label="la_Text_ShowingUsers" Module="Proj-Base" Type="1">U2hvd2luZyBVc2Vycw==</PHRASE>
+ <PHRASE Label="la_Text_Simple" Module="Proj-Base" Type="1">U2ltcGxl</PHRASE>
+ <PHRASE Label="la_Text_Size" Module="Proj-Base" Type="1">U2l6ZQ==</PHRASE>
+ <PHRASE Label="la_Text_Smiley" Module="Proj-Base" Type="1">U21pbGV5</PHRASE>
+ <PHRASE Label="la_Text_smtp_server" Module="Proj-Base" Type="1">U01UUCAobWFpbCkgU2VydmVy</PHRASE>
+ <PHRASE Label="la_Text_Sort" Module="Proj-Base" Type="1">U29ydA==</PHRASE>
+ <PHRASE Label="la_Text_State" Module="Proj-Base" Type="1">U3RhdGU=</PHRASE>
+ <PHRASE Label="la_Text_Step" Module="Proj-Base" Type="1">U3RlcA==</PHRASE>
+ <PHRASE Label="la_Text_SubCats" Module="Proj-Base" Type="1">U3ViQ2F0cw==</PHRASE>
+ <PHRASE Label="la_Text_Subitems" Module="Proj-Base" Type="1">U3ViSXRlbXM=</PHRASE>
+ <PHRASE Label="la_Text_Table" Module="Proj-Base" Type="1">VGFibGU=</PHRASE>
+ <PHRASE Label="la_Text_Template" Module="Proj-Base" Type="1">VGVtcGxhdGU=</PHRASE>
+ <PHRASE Label="la_Text_Templates" Module="Proj-Base" Type="1">VGVtcGxhdGVz</PHRASE>
+ <PHRASE Label="la_Text_Theme" Module="Proj-Base" Type="1">VGhlbWU=</PHRASE>
+ <PHRASE Label="la_text_Thumbnail" Module="Proj-Base" Type="1">VGh1bWJuYWls</PHRASE>
+ <PHRASE Label="la_text_Thumbnail_Image" Module="Proj-Base" Type="1">VGh1bWJuYWlsIEltYWdl</PHRASE>
+ <PHRASE Label="la_Text_to" Module="Proj-Base" Type="1">dG8=</PHRASE>
+ <PHRASE Label="la_Text_Topic" Module="Proj-Base" Type="1">VG9waWM=</PHRASE>
+ <PHRASE Label="la_Text_Topics" Module="Proj-Base" Type="1">VG9waWNz</PHRASE>
+ <PHRASE Label="la_Text_Type" Module="Proj-Base" Type="1">VHlwZQ==</PHRASE>
+ <PHRASE Label="la_text_types" Module="Proj-Base" Type="1">dHlwZXM=</PHRASE>
+ <PHRASE Label="la_Text_Unique" Module="Proj-Base" Type="1">SXMgVW5pcXVl</PHRASE>
+ <PHRASE Label="la_Text_Unselect" Module="Proj-Base" Type="1">VW5zZWxlY3Q=</PHRASE>
+ <PHRASE Label="la_Text_Update_Licence" Module="Proj-Base" Type="1">VXBkYXRlIExpY2Vuc2U=</PHRASE>
+ <PHRASE Label="la_text_upgrade_disclaimer" Module="Proj-Base" Type="1">WW91ciBkYXRhIHdpbGwgYmUgbW9kaWZpZWQgZHVyaW5nIHRoZSB1cGdyYWRlLiBXZSBzdHJvbmdseSByZWNvbW1lbmQgdGhhdCB5b3UgbWFrZSBhIGJhY2t1cCBvZiB5b3VyIGRhdGFiYXNlLiBQcm9jZWVkIHdpdGggdGhlIHVwZ3JhZGU/</PHRASE>
+ <PHRASE Label="la_Text_Upload" Module="Proj-Base" Type="1">VXBsb2Fk</PHRASE>
+ <PHRASE Label="la_Text_User" Module="Proj-Base" Type="1">VXNlcg==</PHRASE>
+ <PHRASE Label="la_Text_UserEmail" Module="Proj-Base" Type="1">VXNlciBSZWNlaXZlcyBOb3RpY2VzIFdoZW4=</PHRASE>
+ <PHRASE Label="la_Text_Users" Module="Proj-Base" Type="1">VXNlcnM=</PHRASE>
+ <PHRASE Label="la_Text_User_Count" Module="Proj-Base" Type="1">VXNlciBDb3VudA==</PHRASE>
+ <PHRASE Label="la_Text_Valid" Module="Proj-Base" Type="1">VmFsaWQ=</PHRASE>
+ <PHRASE Label="la_Text_Version" Module="Proj-Base" Type="1">VmVyc2lvbg==</PHRASE>
+ <PHRASE Label="la_Text_View" Module="Proj-Base" Type="1">Vmlldw==</PHRASE>
+ <PHRASE Label="la_Text_Views" Module="Proj-Base" Type="1">Vmlld3M=</PHRASE>
+ <PHRASE Label="la_Text_Website" Module="Proj-Base" Type="1">V2Vic2l0ZQ==</PHRASE>
+ <PHRASE Label="la_Text_Week" Module="Proj-Base" Type="1">V2Vla3M=</PHRASE>
+ <PHRASE Label="la_Text_Within" Module="Proj-Base" Type="1">V2l0aGlu</PHRASE>
+ <PHRASE Label="la_Text_Year" Module="Proj-Base" Type="1">WWVhcnM=</PHRASE>
+ <PHRASE Label="la_Text_Zip" Module="Proj-Base" Type="1">Wmlw</PHRASE>
+ <PHRASE Label="la_title_addingCustom" Module="Proj-Base" Type="1">QWRkaW5nIEN1c3RvbSBGaWVsZA==</PHRASE>
+ <PHRASE Label="la_title_Adding_BaseStyle" Module="Proj-Base" Type="1">QWRkaW5nIEJhc2UgU3R5bGU=</PHRASE>
+ <PHRASE Label="la_title_Adding_BlockStyle" Module="Proj-Base" Type="1">QWRkaW5nIEJsb2NrIFN0eWxl</PHRASE>
+ <PHRASE Label="la_title_Adding_Category" Module="Proj-Base" Type="1">QWRkaW5nIENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_title_Adding_Group" Module="Proj-Base" Type="1">QWRkaW5nIEdyb3Vw</PHRASE>
+ <PHRASE Label="la_title_Adding_Image" Module="Proj-Base" Type="1">QWRkaW5nIEltYWdl</PHRASE>
+ <PHRASE Label="la_title_Adding_Language" Module="Proj-Base" Type="1">QWRkaW5nIExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_title_Adding_Phrase" Module="Proj-Base" Type="1">QWRkaW5nIFBocmFzZQ==</PHRASE>
+ <PHRASE Label="la_title_Adding_Relationship" Module="Proj-Base" Type="1">QWRkaW5nIFJlbGF0aW9uc2hpcA==</PHRASE>
+ <PHRASE Label="la_title_Adding_Review" Module="Proj-Base" Type="1">QWRkaW5nIFJldmlldw==</PHRASE>
+ <PHRASE Label="la_title_Adding_Stylesheet" Module="Proj-Base" Type="1">QWRkaW5nIFN0eWxlc2hlZXQ=</PHRASE>
+ <PHRASE Label="la_title_AdditionalPermissions" Module="Proj-Base" Type="1">QWRkaXRpb25hbCBQZXJtaXNzaW9ucw==</PHRASE>
+ <PHRASE Label="la_title_Add_Module" Module="Proj-Base" Type="1">QWRkIE1vZHVsZQ==</PHRASE>
+ <PHRASE Label="la_title_AdvancedView" Module="Proj-Base" Type="1">QWR2YW5jZWQgVmlldw==</PHRASE>
+ <PHRASE Label="la_title_Backup" Module="Proj-Base" Type="1">QmFja3Vw</PHRASE>
+ <PHRASE Label="la_title_BaseStyles" Module="Proj-Base" Type="1">QmFzZSBTdHlsZXM=</PHRASE>
+ <PHRASE Label="la_title_BlockStyles" Module="Proj-Base" Type="1">QmxvY2sgU3R5bGVz</PHRASE>
+ <PHRASE Label="la_title_Browse" Module="Proj-Base" Type="1">Q2F0YWxvZw==</PHRASE>
+ <PHRASE Label="la_title_Categories" Module="Proj-Base" Type="1">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_title_category_relationselect" Module="Proj-Base" Type="1">U2VsZWN0IHJlbGF0aW9u</PHRASE>
+ <PHRASE Label="la_title_category_select" Module="Proj-Base" Type="1">U2VsZWN0IGNhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_title_Censorship" Module="Proj-Base" Type="1">Q2Vuc29yc2hpcA==</PHRASE>
+ <PHRASE Label="la_title_Community" Module="Proj-Base" Type="1">Q29tbXVuaXR5</PHRASE>
+ <PHRASE Label="la_title_Configuration" Module="Proj-Base" Type="1">Q29uZmlndXJhdGlvbg==</PHRASE>
+ <PHRASE Label="la_title_Custom" Module="Proj-Base" Type="1">Q3VzdG9t</PHRASE>
+ <PHRASE Label="la_title_CustomFields" Module="Proj-Base" Type="1">Q3VzdG9tIEZpZWxkcw==</PHRASE>
+ <PHRASE Label="la_title_Done" Module="Proj-Base" Type="1">RG9uZQ==</PHRASE>
+ <PHRASE Label="la_title_EditingEmailEvent" Module="Proj-Base" Type="1">RWRpdGluZyBFbWFpbCBFdmVudA==</PHRASE>
+ <PHRASE Label="la_title_EditingGroup" Module="Proj-Base" Type="1">RWRpdGluZyBHcm91cA==</PHRASE>
+ <PHRASE Label="la_title_EditingStyle" Module="Proj-Base" Type="1">RWRpdGluZyBTdHlsZQ==</PHRASE>
+ <PHRASE Label="la_title_EditingTranslation" Module="Proj-Base" Type="1">RWRpdGluZyBUcmFuc2xhdGlvbg==</PHRASE>
+ <PHRASE Label="la_title_Editing_BaseStyle" Module="Proj-Base" Type="1">RWRpdGluZyBCYXNlIFN0eWxl</PHRASE>
+ <PHRASE Label="la_title_Editing_BlockStyle" Module="Proj-Base" Type="1">RWRpdGluZyBCbG9jayBTdHlsZQ==</PHRASE>
+ <PHRASE Label="la_title_Editing_Category" Module="Proj-Base" Type="1">RWRpdGluZyBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_title_Editing_CustomField" Module="Proj-Base" Type="1">RWRpdGluZyBDdXN0b20gRmllbGQ=</PHRASE>
+ <PHRASE Label="la_title_Editing_Group" Module="Proj-Base" Type="1">RWRpdGluZyBHcm91cA==</PHRASE>
+ <PHRASE Label="la_title_Editing_Image" Module="Proj-Base" Type="1">RWRpdGluZyBJbWFnZQ==</PHRASE>
+ <PHRASE Label="la_title_Editing_Language" Module="Proj-Base" Type="1">RWRpdGluZyBMYW5ndWFnZQ==</PHRASE>
+ <PHRASE Label="la_title_Editing_Phrase" Module="Proj-Base" Type="1">RWRpdGluZyBQaHJhc2U=</PHRASE>
+ <PHRASE Label="la_title_Editing_Relationship" Module="Proj-Base" Type="1">RWRpdGluZyBSZWxhdGlvbnNoaXA=</PHRASE>
+ <PHRASE Label="la_title_Editing_Review" Module="Proj-Base" Type="1">RWRpdGluZyBSZXZpZXc=</PHRASE>
+ <PHRASE Label="la_title_Editing_Stylesheet" Module="Proj-Base" Type="1">RWRpdGluZyBTdHlsZXNoZWV0</PHRASE>
+ <PHRASE Label="la_title_Edit_Article" Module="Proj-Base" Type="1">U2l0ZSBTdHJ1Y3R1cmU=</PHRASE>
+ <PHRASE Label="la_title_edit_category" Module="Proj-Base" Type="1">RWRpdCBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_title_Edit_Group" Module="Proj-Base" Type="1">RWRpdCBHcm91cA==</PHRASE>
+ <PHRASE Label="la_title_Edit_Link" Module="Proj-Base" Type="1">U2l0ZSBTdHJ1Y3R1cmU=</PHRASE>
+ <PHRASE Label="la_title_Edit_Topic" Module="Proj-Base" Type="1">U2l0ZSBTdHJ1Y3R1cmU=</PHRASE>
+ <PHRASE Label="la_title_Edit_User" Module="Proj-Base" Type="1">RWRpdCBVc2Vy</PHRASE>
+ <PHRASE Label="la_title_EmailEvents" Module="Proj-Base" Type="1">RS1tYWlsIEV2ZW50cw==</PHRASE>
+ <PHRASE Label="la_title_EmailSettings" Module="Proj-Base" Type="1">RS1tYWlsIFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_title_ExportData" Module="Proj-Base" Type="1">RXhwb3J0IERhdGE=</PHRASE>
+ <PHRASE Label="la_title_ExportLanguagePack" Module="Proj-Base" Type="1">RXhwb3J0IExhbmd1YWdlIFBhY2s=</PHRASE>
+ <PHRASE Label="la_title_ExportLanguagePackResults" Module="Proj-Base" Type="1">RXhwb3J0IExhbmd1YWdlIFBhY2sgLSBSZXN1bHRz</PHRASE>
+ <PHRASE Label="la_title_ExportLanguagePackStep1" Module="Proj-Base" Type="1">RXhwb3J0IExhbmd1YWdlIFBhY2sgLSBTdGVwMQ==</PHRASE>
+ <PHRASE Label="la_title_General" Module="Proj-Base" Type="1">R2VuZXJhbA==</PHRASE>
+ <PHRASE Label="la_title_General_Configuration" Module="Proj-Base" Type="1">R2VuZXJhbCBDb25maWd1cmF0aW9u</PHRASE>
+ <PHRASE Label="la_title_Groups" Module="Proj-Base" Type="1">R3JvdXBz</PHRASE>
+ <PHRASE Label="la_title_groupselect" Module="Proj-Base" Type="1">U2VsZWN0IGdyb3Vw</PHRASE>
+ <PHRASE Label="la_title_Help" Module="Proj-Base" Type="1">SGVscA==</PHRASE>
+ <PHRASE Label="la_title_Images" Module="Proj-Base" Type="1">SW1hZ2Vz</PHRASE>
+ <PHRASE Label="la_title_ImportData" Module="Proj-Base" Type="1">SW1wb3J0IERhdGE=</PHRASE>
+ <PHRASE Label="la_title_ImportLanguagePack" Module="Proj-Base" Type="1">SW1wb3J0IExhbmd1YWdlIFBhY2s=</PHRASE>
+ <PHRASE Label="la_title_In-Bulletin" Module="Proj-Base" Type="1">SW4tYnVsbGV0aW4=</PHRASE>
+ <PHRASE Label="la_title_In-Link" Module="Proj-Base" Type="1">SW4tbGluaw==</PHRASE>
+ <PHRASE Label="la_title_In-News" Module="Proj-Base" Type="1">SW4tbmV3eg==</PHRASE>
+ <PHRASE Label="la_title_Install" Module="Proj-Base" Type="1">SW5zdGFsbGF0aW9uIEhlbHA=</PHRASE>
+ <PHRASE Label="la_title_InstallLanguagePackStep1" Module="Proj-Base" Type="1">SW5zdGFsbCBMYW5ndWFnZSBQYWNrIC0gU3RlcCAx</PHRASE>
+ <PHRASE Label="la_title_InstallLanguagePackStep2" Module="Proj-Base" Type="1">SW5zdGFsbCBMYW5ndWFnZSBQYWNrIC0gU3RlcCAy</PHRASE>
+ <PHRASE Label="la_title_Items" Module="Proj-Base" Type="1">SXRlbXM=</PHRASE>
+ <PHRASE Label="la_title_label" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_title_Labels" Module="Proj-Base" Type="1">TGFiZWxz</PHRASE>
+ <PHRASE Label="la_Title_LanguageImport" Module="Proj-Base" Type="1">SW5zdGFsbCBMYW5ndWFnZSBQYWNr</PHRASE>
+ <PHRASE Label="la_title_LanguagePacks" Module="Proj-Base" Type="1">TGFuZ3VhZ2UgUGFja3M=</PHRASE>
+ <PHRASE Label="la_title_Loading" Module="Proj-Base" Type="1">TG9hZGluZyAuLi4=</PHRASE>
+ <PHRASE Label="la_title_Module_Status" Module="Proj-Base" Type="1">TW9kdWxlIFN0YXR1cw==</PHRASE>
+ <PHRASE Label="la_title_NewCustomField" Module="Proj-Base" Type="1">TmV3IEN1c3RvbSBGaWVsZA==</PHRASE>
+ <PHRASE Label="la_title_New_BaseStyle" Module="Proj-Base" Type="1">TmV3IEJhc2UgU3R5bGU=</PHRASE>
+ <PHRASE Label="la_title_New_BlockStyle" Module="Proj-Base" Type="1">TmV3IEJsb2NrIFN0eWxl</PHRASE>
+ <PHRASE Label="la_title_New_Category" Module="Proj-Base" Type="1">TmV3IENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_title_New_Group" Module="Proj-Base" Type="1">TmV3IEdyb3Vw</PHRASE>
+ <PHRASE Label="la_title_New_Image" Module="Proj-Base" Type="1">TmV3IEltYWdl</PHRASE>
+ <PHRASE Label="la_title_New_Language" Module="Proj-Base" Type="1">TmV3IExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_title_New_Phrase" Module="Proj-Base" Type="1">TmV3IFBocmFzZQ==</PHRASE>
+ <PHRASE Label="la_title_New_Relationship" Module="Proj-Base" Type="1">TmV3IFJlbGF0aW9uc2hpcA==</PHRASE>
+ <PHRASE Label="la_title_New_Review" Module="Proj-Base" Type="1">TmV3IFJldmlldw==</PHRASE>
+ <PHRASE Label="la_title_New_Stylesheet" Module="Proj-Base" Type="1">TmV3IFN0eWxlc2hlZXQ=</PHRASE>
+ <PHRASE Label="la_title_NoPermissions" Module="Proj-Base" Type="1">Tm8gUGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_title_Permissions" Module="Proj-Base" Type="1">UGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="la_Title_PleaseWait" Module="Proj-Base" Type="1">UGxlYXNlIFdhaXQ=</PHRASE>
+ <PHRASE Label="la_title_Properties" Module="Proj-Base" Type="1">UHJvcGVydGllcw==</PHRASE>
+ <PHRASE Label="la_title_Regional" Module="Proj-Base" Type="1">UmVnaW9uYWw=</PHRASE>
+ <PHRASE Label="la_title_RegionalSettings" Module="Proj-Base" Type="1">UmVnaW9uYWwgU2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="la_title_Relations" Module="Proj-Base" Type="1">UmVsYXRpb25z</PHRASE>
+ <PHRASE Label="la_title_Reports" Module="Proj-Base" Type="1">U3VtbWFyeSAmIExvZ3M=</PHRASE>
+ <PHRASE Label="la_title_Restore" Module="Proj-Base" Type="1">UmVzdG9yZQ==</PHRASE>
+ <PHRASE Label="la_title_reviews" Module="Proj-Base" Type="1">UmV2aWV3cw==</PHRASE>
+ <PHRASE Label="la_title_SearchLog" Module="Proj-Base" Type="1">U2VhcmNoIExvZw==</PHRASE>
+ <PHRASE Label="la_title_searchresults" Module="Proj-Base" Type="1">U2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="la_title_SelectUser" Module="Proj-Base" Type="1">U2VsZWN0IFVzZXI=</PHRASE>
+ <PHRASE Label="la_title_select_item" Module="Proj-Base" Type="1">U2VsZWN0IGl0ZW0=</PHRASE>
+ <PHRASE Label="la_title_select_target_item" Module="Proj-Base" Type="1">U2VsZWN0IGl0ZW0=</PHRASE>
+ <PHRASE Label="la_Title_SendInit" Module="Proj-Base" Type="1">UHJlcGFyaW5nIHRvIFNlbmQgTWFpbA==</PHRASE>
+ <PHRASE Label="la_title_sendmail" Module="Proj-Base" Type="1">U2VuZCBlbWFpbA==</PHRASE>
+ <PHRASE Label="la_title_sendmailcancel" Module="Proj-Base" Type="1">Q2FuY2VsIHNlbmRpbmcgbWFpbA==</PHRASE>
+ <PHRASE Label="la_Title_SendMailComplete" Module="Proj-Base" Type="1">TWFpbCBoYXMgYmVlbiBzZW50IFN1Y2Nlc3NmdWxseQ==</PHRASE>
+ <PHRASE Label="la_Title_SendMailInit" Module="Proj-Base" Type="1">UHJlcGFyaW5nIHRvIFNlbmQgTWVzc2FnZXM=</PHRASE>
+ <PHRASE Label="la_Title_SendMailProgress" Module="Proj-Base" Type="1">U2VuZGluZyBNZXNzYWdlLi4=</PHRASE>
+ <PHRASE Label="la_title_SessionLog" Module="Proj-Base" Type="1">U2Vzc2lvbiBMb2c=</PHRASE>
+ <PHRASE Label="la_title_Settings" Module="Proj-Base" Type="1">TW9kdWxlcyAmIFNldHRpbmdz</PHRASE>
+ <PHRASE Label="la_title_Site_Structure" Module="Proj-Base" Type="1">U3RydWN0dXJlICYgRGF0YQ==</PHRASE>
+ <PHRASE Label="la_title_Stylesheets" Module="Proj-Base" Type="1">U3R5bGVzaGVldHM=</PHRASE>
+ <PHRASE Label="la_title_Summary" Module="Proj-Base" Type="1">U3VtbWFyeQ==</PHRASE>
+ <PHRASE Label="la_title_Sys_Config" Module="Proj-Base" Type="1">Q29uZmlndXJhdGlvbg==</PHRASE>
+ <PHRASE Label="la_title_Tools" Module="Proj-Base" Type="1">VG9vbHM=</PHRASE>
+ <PHRASE Label="la_title_UpdatingCategories" Module="Proj-Base" Type="1">VXBkYXRpbmcgQ2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="la_title_Users" Module="Proj-Base" Type="1">VXNlcnM=</PHRASE>
+ <PHRASE Label="la_title_userselect" Module="Proj-Base" Type="1">U2VsZWN0IHVzZXI=</PHRASE>
+ <PHRASE Label="la_title_Visits" Module="Proj-Base" Type="1">VmlzaXRz</PHRASE>
+ <PHRASE Label="la_to" Module="Proj-Base" Type="1">dG8=</PHRASE>
+ <PHRASE Label="la_ToolTip_AddToGroup" Module="Proj-Base" Type="1">QWRkIFVzZXIgdG8gR3JvdXA=</PHRASE>
+ <PHRASE Label="la_ToolTip_AddUserToGroup" Module="Proj-Base" Type="1">QWRkIFVzZXIgVG8gR3JvdXA=</PHRASE>
+ <PHRASE Label="la_ToolTip_Apply_Rules" Module="Proj-Base" Type="1">QXBwbHkgUnVsZXM=</PHRASE>
+ <PHRASE Label="la_ToolTip_Approve" Module="Proj-Base" Type="1">QXBwcm92ZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Back" Module="Proj-Base" Type="1">QmFjaw==</PHRASE>
+ <PHRASE Label="la_ToolTip_Ban" Module="Proj-Base" Type="1">QmFu</PHRASE>
+ <PHRASE Label="la_tooltip_cancel" Module="Proj-Base" Type="1">Q2FuY2Vs</PHRASE>
+ <PHRASE Label="la_ToolTip_ClearClipboard" Module="Proj-Base" Type="1">Q2xlYXIgQ2xpcGJvYXJk</PHRASE>
+ <PHRASE Label="la_ToolTip_Clone" Module="Proj-Base" Type="1">Q2xvbmU=</PHRASE>
+ <PHRASE Label="la_tooltip_close" Module="Proj-Base" Type="1">Q2xvc2U=</PHRASE>
+ <PHRASE Label="la_ToolTip_ContinueValidation" Module="Proj-Base" Type="1">Q29udGludWUgTGluayBWYWxpZGF0aW9u</PHRASE>
+ <PHRASE Label="la_ToolTip_Copy" Module="Proj-Base" Type="1">Q29weQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Cut" Module="Proj-Base" Type="1">Q3V0</PHRASE>
+ <PHRASE Label="la_ToolTip_Decline" Module="Proj-Base" Type="1">RGVjbGluZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Delete" Module="Proj-Base" Type="1">RGVsZXRl</PHRASE>
+ <PHRASE Label="la_ToolTip_DeleteAll" Module="Proj-Base" Type="1">RGVsZXRlIEFsbA==</PHRASE>
+ <PHRASE Label="la_ToolTip_DeleteFromGroup" Module="Proj-Base" Type="1">RGVsZXRlIFVzZXIgRnJvbSBHcm91cA==</PHRASE>
+ <PHRASE Label="la_ToolTip_Deny" Module="Proj-Base" Type="1">RGVueQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Disable" Module="Proj-Base" Type="1">RGlzYWJsZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Edit" Module="Proj-Base" Type="1">RWRpdA==</PHRASE>
+ <PHRASE Label="la_ToolTip_Edit_Current_Category" Module="Proj-Base" Type="1">RWRpdCBDdXJyZW50IENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_ToolTip_Email_Disable" Module="Proj-Base" Type="1">RGlzYWJsZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Email_Enable" Module="Proj-Base" Type="1">RW5hYmxl</PHRASE>
+ <PHRASE Label="la_ToolTip_Email_FrontOnly" Module="Proj-Base" Type="1">RnJvbnQgT25seQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Email_UserSelect" Module="Proj-Base" Type="1">U2VsZWN0IFVzZXI=</PHRASE>
+ <PHRASE Label="la_ToolTip_Enable" Module="Proj-Base" Type="1">RW5hYmxl</PHRASE>
+ <PHRASE Label="la_ToolTip_Export" Module="Proj-Base" Type="0">RXhwb3J0</PHRASE>
+ <PHRASE Label="la_tooltip_ExportLanguage" Module="Proj-Base" Type="1">RXhwb3J0IExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_ToolTip_Home" Module="Proj-Base" Type="1">SG9tZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Import" Module="Proj-Base" Type="1">SW1wb3J0</PHRASE>
+ <PHRASE Label="la_tooltip_ImportLanguage" Module="Proj-Base" Type="1">SW1wb3J0IExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_ToolTip_Import_Langpack" Module="Proj-Base" Type="1">SW1wb3J0IGEgTGFnbnVhZ2UgUGFja2FnZQ==</PHRASE>
+ <PHRASE Label="la_tooltip_movedown" Module="Proj-Base" Type="0">TW92ZSBEb3du</PHRASE>
+ <PHRASE Label="la_tooltip_moveup" Module="Proj-Base" Type="0">TW92ZSBVcA==</PHRASE>
+ <PHRASE Label="la_ToolTip_Move_Down" Module="Proj-Base" Type="1">TW92ZSBEb3du</PHRASE>
+ <PHRASE Label="la_ToolTip_Move_Up" Module="Proj-Base" Type="1">TW92ZSBVcA==</PHRASE>
+ <PHRASE Label="la_tooltip_NewBaseStyle" Module="Proj-Base" Type="1">TmV3IEJhc2UgU3R5bGU=</PHRASE>
+ <PHRASE Label="la_tooltip_NewBlockStyle" Module="Proj-Base" Type="1">TmV3IEJsb2NrIFN0eWxl</PHRASE>
+ <PHRASE Label="la_ToolTip_NewGroup" Module="Proj-Base" Type="1">TmV3IEdyb3Vw</PHRASE>
+ <PHRASE Label="la_tooltip_newlabel" Module="Proj-Base" Type="1">TmV3IGxhYmVs</PHRASE>
+ <PHRASE Label="la_tooltip_NewLanguage" Module="Proj-Base" Type="1">TmV3IExhbmd1YWdl</PHRASE>
+ <PHRASE Label="la_tooltip_NewReview" Module="Proj-Base" Type="1">TmV3IFJldmlldw==</PHRASE>
+ <PHRASE Label="la_tooltip_newstylesheet" Module="Proj-Base" Type="1">TmV3IFN0eWxlc2hlZXQ=</PHRASE>
+ <PHRASE Label="la_ToolTip_NewValidation" Module="Proj-Base" Type="1">U3RhcnQgTmV3IFZhbGlkYXRpb24=</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Category" Module="Proj-Base" Type="1">TmV3IENhdGVnb3J5</PHRASE>
+ <PHRASE Label="la_ToolTip_New_CensorWord" Module="Proj-Base" Type="1">TmV3IENlbnNvciBXb3Jk</PHRASE>
+ <PHRASE Label="la_tooltip_New_Coupon" Module="Proj-Base" Type="0">TmV3IENvdXBvbg==</PHRASE>
+ <PHRASE Label="la_ToolTip_New_CustomField" Module="Proj-Base" Type="1">TmV3IEN1c3RvbSBGaWVsZA==</PHRASE>
+ <PHRASE Label="la_tooltip_New_Discount" Module="Proj-Base" Type="0">TmV3IERpc2NvdW50</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Emoticon" Module="Proj-Base" Type="1">TmV3IEVtb3Rpb24gSWNvbg==</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Image" Module="Proj-Base" Type="1">TmV3IEltYWdl</PHRASE>
+ <PHRASE Label="la_tooltip_new_images" Module="Proj-Base" Type="1">TmV3IEltYWdlcw==</PHRASE>
+ <PHRASE Label="la_ToolTip_New_label" Module="Proj-Base" Type="1">QWRkIG5ldyBsYWJlbA==</PHRASE>
+ <PHRASE Label="la_ToolTip_New_LangPack" Module="Proj-Base" Type="1">TmV3IExhbmd1YWdlIFBhY2s=</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Permission" Module="Proj-Base" Type="1">TmV3IFBlcm1pc3Npb24=</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Relation" Module="Proj-Base" Type="1">TmV3IFJlbGF0aW9u</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Review" Module="Proj-Base" Type="1">TmV3IFJldmlldw==</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Rule" Module="Proj-Base" Type="1">TmV3IFJ1bGU=</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Template" Module="Proj-Base" Type="1">TmV3IFRlbXBsYXRl</PHRASE>
+ <PHRASE Label="la_ToolTip_New_Theme" Module="Proj-Base" Type="1">TmV3IFRoZW1l</PHRASE>
+ <PHRASE Label="la_ToolTip_New_User" Module="Proj-Base" Type="1">TmV3IFVzZXI=</PHRASE>
+ <PHRASE Label="la_ToolTip_Next" Module="Proj-Base" Type="1">TmV4dA==</PHRASE>
+ <PHRASE Label="la_tooltip_nextstep" Module="Proj-Base" Type="1">TmV4dCBzdGVw</PHRASE>
+ <PHRASE Label="la_ToolTip_Paste" Module="Proj-Base" Type="1">UGFzdGU=</PHRASE>
+ <PHRASE Label="la_ToolTip_Preview" Module="Proj-Base" Type="1">UHJldmlldw==</PHRASE>
+ <PHRASE Label="la_ToolTip_Previous" Module="Proj-Base" Type="1">UHJldmlvdXM=</PHRASE>
+ <PHRASE Label="la_tooltip_previousstep" Module="Proj-Base" Type="1">UHJldmlvdXMgc3RlcA==</PHRASE>
+ <PHRASE Label="la_ToolTip_Primary" Module="Proj-Base" Type="1">U2V0IFByaW1hcnkgVGhlbWU=</PHRASE>
+ <PHRASE Label="la_ToolTip_PrimaryGroup" Module="Proj-Base" Type="1">U2V0IFByaW1hcnkgR3JvdXA=</PHRASE>
+ <PHRASE Label="la_ToolTip_Print" Module="Proj-Base" Type="1">UHJpbnQ=</PHRASE>
+ <PHRASE Label="la_ToolTip_RebuildCategoryCache" Module="Proj-Base" Type="1">UmVidWlsZCBDYXRlZ29yeSBDYWNoZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Refresh" Module="Proj-Base" Type="1">UmVmcmVzaA==</PHRASE>
+ <PHRASE Label="la_ToolTip_RemoveUserFromGroup" Module="Proj-Base" Type="1">RGVsZXRlIFVzZXIgRnJvbSBHcm91cA==</PHRASE>
+ <PHRASE Label="la_ToolTip_RescanThemes" Module="Proj-Base" Type="1">UmVzY2FuIFRoZW1lcw==</PHRASE>
+ <PHRASE Label="la_ToolTip_Reset" Module="Proj-Base" Type="1">UmVzZXQ=</PHRASE>
+ <PHRASE Label="la_ToolTip_ResetToBase" Module="Proj-Base" Type="1">UmVzZXQgVG8gQmFzZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_ResetValidationStatus" Module="Proj-Base" Type="1">UmVzZXQgVmFsaWRhdGlvbiBTdGF0dXM=</PHRASE>
+ <PHRASE Label="la_ToolTip_Restore" Module="Proj-Base" Type="1">UmVzdG9yZQ==</PHRASE>
+ <PHRASE Label="la_tooltip_save" Module="Proj-Base" Type="1">U2F2ZQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_Search" Module="Proj-Base" Type="1">U2VhcmNo</PHRASE>
+ <PHRASE Label="la_ToolTip_SearchReset" Module="Proj-Base" Type="1">UmVzZXQ=</PHRASE>
+ <PHRASE Label="la_ToolTip_Select" Module="Proj-Base" Type="1">U2VsZWN0</PHRASE>
+ <PHRASE Label="la_tooltip_SelectUser" Module="Proj-Base" Type="1">U2VsZWN0IFVzZXI=</PHRASE>
+ <PHRASE Label="la_ToolTip_SendEmail" Module="Proj-Base" Type="1">U2VuZCBFLW1haWw=</PHRASE>
+ <PHRASE Label="la_ToolTip_SendMail" Module="Proj-Base" Type="1">U2VuZCBFLW1haWw=</PHRASE>
+ <PHRASE Label="la_tooltip_setPrimary" Module="Proj-Base" Type="1">U2V0IFByaW1hcnk=</PHRASE>
+ <PHRASE Label="la_tooltip_setprimarycategory" Module="Proj-Base" Type="1">U2V0IFByaW1hcnkgQ2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="la_ToolTip_SetPrimaryLanguage" Module="Proj-Base" Type="1">U2V0IFByaW1hcnkgTGFuZ3VhZ2U=</PHRASE>
+ <PHRASE Label="la_ToolTip_Stop" Module="Proj-Base" Type="1">Q2FuY2Vs</PHRASE>
+ <PHRASE Label="la_ToolTip_Up" Module="Proj-Base" Type="1">VXAgYSBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="la_ToolTip_ValidateSelected" Module="Proj-Base" Type="1">VmFsaWRhdGU=</PHRASE>
+ <PHRASE Label="la_ToolTip_View" Module="Proj-Base" Type="1">Vmlldw==</PHRASE>
+ <PHRASE Label="la_topic_editorpicksabove_prompt" Module="Proj-Base" Type="1">RGlzcGxheSBlZGl0b3IgcGlja3MgYWJvdmUgcmVndWxhciB0b3BpY3M=</PHRASE>
+ <PHRASE Label="la_topic_newdays_prompt" Module="Proj-Base" Type="1">TmV3IFRvcGljcyAoRGF5cyk=</PHRASE>
+ <PHRASE Label="la_topic_perpage_prompt" Module="Proj-Base" Type="1">TnVtYmVyIG9mIHRvcGljcyBwZXIgcGFnZQ==</PHRASE>
+ <PHRASE Label="la_topic_perpage_short_prompt" Module="Proj-Base" Type="1">VG9waWNzIFBlciBQYWdlIChTaG9ydGxpc3Qp</PHRASE>
+ <PHRASE Label="la_Topic_Pick" Module="Proj-Base" Type="1">UGljaw==</PHRASE>
+ <PHRASE Label="la_topic_reviewed" Module="Proj-Base" Type="1">VG9waWMgcmV2aWV3ZWQ=</PHRASE>
+ <PHRASE Label="la_topic_sortfield2_pompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_topic_sortfield2_prompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_topic_sortfield2_prompt!" Module="Proj-Base" Type="1">YW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_topic_sortfield_pompt" Module="Proj-Base" Type="1">T3JkZXIgVG9waWNzIEJ5</PHRASE>
+ <PHRASE Label="la_topic_sortfield_prompt" Module="Proj-Base" Type="1">U29ydCB0b3BpY3MgYnk=</PHRASE>
+ <PHRASE Label="la_topic_sortoder2_prompt" Module="Proj-Base" Type="1">QW5kIHRoZW4gYnk=</PHRASE>
+ <PHRASE Label="la_topic_sortoder_prompt" Module="Proj-Base" Type="1">T3JkZXIgdG9waWNzIGJ5</PHRASE>
+ <PHRASE Label="la_Topic_Text" Module="Proj-Base" Type="1">VG9waWMgVGV4dA==</PHRASE>
+ <PHRASE Label="la_Topic_Views" Module="Proj-Base" Type="1">Vmlld3M=</PHRASE>
+ <PHRASE Label="la_to_date" Module="Proj-Base" Type="1">VG8gRGF0ZQ==</PHRASE>
+ <PHRASE Label="la_translate" Module="Proj-Base" Type="1">VHJhbnNsYXRl</PHRASE>
+ <PHRASE Label="la_type_checkbox" Module="Proj-Base" Type="1">Q2hlY2tib3hlcw==</PHRASE>
+ <PHRASE Label="la_type_date" Module="Proj-Base" Type="1">RGF0ZQ==</PHRASE>
+ <PHRASE Label="la_type_datetime" Module="Proj-Base" Type="1">RGF0ZSAmIFRpbWU=</PHRASE>
+ <PHRASE Label="la_type_label" Module="Proj-Base" Type="1">TGFiZWw=</PHRASE>
+ <PHRASE Label="la_type_password" Module="Proj-Base" Type="1">UGFzc3dvcmQgZmllbGQ=</PHRASE>
+ <PHRASE Label="la_type_radio" Module="Proj-Base" Type="1">UmFkaW8gYnV0dG9ucw==</PHRASE>
+ <PHRASE Label="la_type_select" Module="Proj-Base" Type="1">RHJvcCBkb3duIGZpZWxk</PHRASE>
+ <PHRASE Label="la_type_SingleCheckbox" Module="Proj-Base" Type="1">Q2hlY2tib3g=</PHRASE>
+ <PHRASE Label="la_type_text" Module="Proj-Base" Type="1">VGV4dCBmaWVsZA==</PHRASE>
+ <PHRASE Label="la_type_textarea" Module="Proj-Base" Type="1">VGV4dCBhcmVh</PHRASE>
+ <PHRASE Label="la_Unchanged" Module="Proj-Base" Type="1">VW5jaGFuZ2Vk</PHRASE>
+ <PHRASE Label="la_updating_config" Module="Proj-Base" Type="1">VXBkYXRpbmcgQ29uZmlndXJhdGlvbg==</PHRASE>
+ <PHRASE Label="la_updating_rules" Module="Proj-Base" Type="1">VXBkYXRpbmcgUnVsZXM=</PHRASE>
+ <PHRASE Label="la_UseCronForRegularEvent" Module="Proj-Base" Type="1">VXNlIENyb24gZm9yIFJ1bm5pbmcgUmVndWxhciBFdmVudHM=</PHRASE>
+ <PHRASE Label="la_users_allow_new" Module="Proj-Base" Type="1">QWxsb3cgbmV3IHVzZXIgcmVnaXN0cmF0aW9u</PHRASE>
+ <PHRASE Label="la_users_assign_all_to" Module="Proj-Base" Type="1">QXNzaWduIEFsbCBVc2VycyBUbyBHcm91cA==</PHRASE>
+ <PHRASE Label="la_users_email_validate" Module="Proj-Base" Type="1">VmFsaWRhdGUgZS1tYWlsIGFkZHJlc3M=</PHRASE>
+ <PHRASE Label="la_users_guest_group" Module="Proj-Base" Type="1">QXNzaWduIHVzZXJzIG5vdCBsb2dnZWQgaW4gdG8gZ3JvdXA=</PHRASE>
+ <PHRASE Label="la_users_new_group" Module="Proj-Base" Type="1">QXNzaWduIHJlZ2lzdGVyZWQgdXNlcnMgdG8gZ3JvdXA=</PHRASE>
+ <PHRASE Label="la_users_password_auto" Module="Proj-Base" Type="1">QXNzaWduIHBhc3N3b3JkIGF1dG9tYXRpY2FsbHk=</PHRASE>
+ <PHRASE Label="la_users_review_deny" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGRheXMgdG8gZGVueSBtdWx0aXBsZSByZXZpZXdzIGZyb20gdGhlIHNhbWUgdXNlcg==</PHRASE>
+ <PHRASE Label="la_users_subscriber_group" Module="Proj-Base" Type="2">QXNzaWduIG1haWxpbmcgbGlzdCBzdWJzY3JpYmVycyB0byBncm91cA==</PHRASE>
+ <PHRASE Label="la_users_votes_deny" Module="Proj-Base" Type="1">TnVtYmVyIG9mIGRheXMgdG8gZGVueSBtdWx0aXBsZSB2b3RlcyBmcm9tIHRoZSBzYW1lIHVzZXI=</PHRASE>
+ <PHRASE Label="la_User_Instant" Module="Proj-Base" Type="1">SW5zdGFudA==</PHRASE>
+ <PHRASE Label="la_User_Not_Allowed" Module="Proj-Base" Type="1">Tm90IEFsbG93ZWQ=</PHRASE>
+ <PHRASE Label="la_User_Upon_Approval" Module="Proj-Base" Type="1">VXBvbiBBcHByb3ZhbA==</PHRASE>
+ <PHRASE Label="la_use_emails_as_login" Module="Proj-Base" Type="1">VXNlIEVtYWlscyBBcyBMb2dpbg==</PHRASE>
+ <PHRASE Label="la_US_UK" Module="Proj-Base" Type="1">VVMvVUs=</PHRASE>
+ <PHRASE Label="la_validation_AlertMsg" Module="Proj-Base" Type="1">UGxlYXNlIGNoZWNrIHRoZSByZXF1aXJlZCBmaWVsZHMgYW5kIHRyeSBhZ2FpbiE=</PHRASE>
+ <PHRASE Label="la_Value" Module="Proj-Base" Type="1">VmFsdWU=</PHRASE>
+ <PHRASE Label="la_valuelist_help" Module="Proj-Base" Type="1">RW50ZXIgbGlzdCBvZiB2YWx1ZXMgYW5kIHRoZWlyIGRlc2NyaXB0aW9ucywgbGlrZSAxPU9uZSwgMj1Ud28=</PHRASE>
+ <PHRASE Label="la_val_Active" Module="Proj-Base" Type="1">QWN0aXZl</PHRASE>
+ <PHRASE Label="la_val_Always" Module="Proj-Base" Type="1">QWx3YXlz</PHRASE>
+ <PHRASE Label="la_val_Auto" Module="Proj-Base" Type="1">QXV0bw==</PHRASE>
+ <PHRASE Label="la_val_Disabled" Module="Proj-Base" Type="1">RGlzYWJsZWQ=</PHRASE>
+ <PHRASE Label="la_val_Enabled" Module="Proj-Base" Type="1">RW5hYmxlZA==</PHRASE>
+ <PHRASE Label="la_val_Never" Module="Proj-Base" Type="1">TmV2ZXI=</PHRASE>
+ <PHRASE Label="la_val_Password" Module="Proj-Base" Type="1">SW52YWxpZCBQYXNzd29yZA==</PHRASE>
+ <PHRASE Label="la_val_Pending" Module="Proj-Base" Type="1">UGVuZGluZw==</PHRASE>
+ <PHRASE Label="la_val_RequiredField" Module="Proj-Base" Type="1">UmVxdWlyZWQgRmllbGQ=</PHRASE>
+ <PHRASE Label="la_val_Username" Module="Proj-Base" Type="1">SW52YWxpZCBVc2VybmFtZQ==</PHRASE>
+ <PHRASE Label="la_visit_DirectReferer" Module="Proj-Base" Type="1">RGlyZWN0IGFjY2VzcyBvciBib29rbWFyaw==</PHRASE>
+ <PHRASE Label="la_vote_added" Module="Proj-Base" Type="1">Vm90ZSBzdWJtaXR0ZWQgc3VjY2Vzc2Z1bGx5</PHRASE>
+ <PHRASE Label="la_Warning_Enable_HTML" Module="Proj-Base" Type="1">V2FybmluZzogRW5hYmxpbmcgSFRNTCBpcyBhIHNlY3VyaXR5IHJpc2sgYW5kIGNvdWxkIGRhbWFnZSB0aGUgc3lzdGVtIGlmIHVzZWQgaW1wcm9wZXJseSE=</PHRASE>
+ <PHRASE Label="la_Warning_Filter" Module="Proj-Base" Type="1">QSBzZWFyY2ggb3IgYSBmaWx0ZXIgaXMgaW4gZWZmZWN0LiBZb3UgbWF5IG5vdCBiZSBzZWVpbmcgYWxsIG9mIHRoZSBkYXRhLg==</PHRASE>
+ <PHRASE Label="la_Warning_NewFormError" Module="Proj-Base" Type="1">T25lIG9yIG1vcmUgZmllbGRzIG9uIHRoaXMgZm9ybSBoYXMgYW4gZXJyb3IuPGJyLz4NCjxzbWFsbD5QbGVhc2UgbW92ZSB5b3VyIG1vdXNlIG92ZXIgdGhlIGZpZWxkcyBtYXJrZWQgd2l0aCByZWQgdG8gc2VlIHRoZSBlcnJvciBkZXRhaWxzLjwvc21hbGw+</PHRASE>
+ <PHRASE Label="la_warning_primary_delete" Module="Proj-Base" Type="1">WW91IGFyZSBhYm91dCB0byBkZWxldGUgdGhlIHByaW1hcnkgdGhlbWUuIENvbnRpbnVlPw==</PHRASE>
+ <PHRASE Label="la_Warning_Save_Item" Module="Proj-Base" Type="1">TW9kaWZpY2F0aW9ucyB3aWxsIG5vdCB0YWtlIGVmZmVjdCB1bnRpbCB5b3UgY2xpY2sgdGhlIFNhdmUgYnV0dG9uIQ==</PHRASE>
+ <PHRASE Label="la_week" Module="Proj-Base" Type="1">d2Vlaw==</PHRASE>
+ <PHRASE Label="la_year" Module="Proj-Base" Type="1">eWVhcg==</PHRASE>
+ <PHRASE Label="la_Yes" Module="Proj-Base" Type="1">WWVz</PHRASE>
+ <PHRASE Label="lu_access_denied" Module="Proj-Base" Type="0">WW91IGRvIG5vdCBoYXZlIGFjY2VzcyB0byBwZXJmb3JtIHRoaXMgb3BlcmF0aW9u</PHRASE>
+ <PHRASE Label="lu_account_info" Module="Proj-Base" Type="0">QWNjb3VudCBJbmZvcm1hdGlvbg==</PHRASE>
+ <PHRASE Label="lu_action" Module="Proj-Base" Type="0">QWN0aW9u</PHRASE>
+ <PHRASE Label="lu_action_box_title" Module="Proj-Base" Type="0">QWN0aW9uIEJveA==</PHRASE>
+ <PHRASE Label="lu_action_prompt" Module="Proj-Base" Type="0">SGVyZSBZb3UgQ2FuOg==</PHRASE>
+ <PHRASE Label="lu_add" Module="Proj-Base" Type="0">QWRk</PHRASE>
+ <PHRASE Label="lu_addcat_confirm" Module="Proj-Base" Type="0">U3VnZ2VzdCBDYXRlZ29yeSBSZXN1bHRz</PHRASE>
+ <PHRASE Label="lu_addcat_confirm_pending" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgQWRkZWQgUGVuZGluZyBBcHByb3ZhbA==</PHRASE>
+ <PHRASE Label="lu_addcat_confirm_pending_text" Module="Proj-Base" Type="0">WW91ciBjYXRlZ29yeSBzdWdnZXN0aW9uIGhhcyBiZWVuIGFjY2VwdGVkIGFuZCBpcyBwZW5kaW5nIGFkbWluaXN0cmF0aXZlIGFwcHJvdmFsLg==</PHRASE>
+ <PHRASE Label="lu_addcat_confirm_text" Module="Proj-Base" Type="0">VGhlIENhdGVnb3J5IHlvdSBzdWdnZXN0ZWQgaGFzIGJlZW4gYWRkZWQgdG8gdGhlIHN5c3RlbS4=</PHRASE>
+ <PHRASE Label="lu_added" Module="Proj-Base" Type="0">QWRkZWQ=</PHRASE>
+ <PHRASE Label="lu_added_today" Module="Proj-Base" Type="0">QWRkZWQgVG9kYXk=</PHRASE>
+ <PHRASE Label="lu_additional_cats" Module="Proj-Base" Type="0">QWRkaXRpb25hbCBjYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="lu_addlink_confirm" Module="Proj-Base" Type="0">QWRkIExpbmsgUmVzdWx0cw==</PHRASE>
+ <PHRASE Label="lu_addlink_confirm_pending" Module="Proj-Base" Type="0">QWRkIFBlbmRpbmcgTGluayBSZXN1bHRz</PHRASE>
+ <PHRASE Label="lu_addlink_confirm_pending_text" Module="Proj-Base" Type="0">WW91ciBsaW5rIGhhcyBiZWVuIGFkZGVkIHBlbmRpbmcgYWRtaW5pc3RyYXRpdmUgYXBwcm92YWwu</PHRASE>
+ <PHRASE Label="lu_addlink_confirm_text" Module="Proj-Base" Type="0">VGhlIGxpbmsgeW91IGhhdmUgc3VnZ2VzdGVkIGhhcyBiZWVuIGFkZGVkIHRvIHRoZSBkYXRhYmFzZS4=</PHRASE>
+ <PHRASE Label="lu_address" Module="Proj-Base" Type="0">QWRkcmVzcw==</PHRASE>
+ <PHRASE Label="lu_address_line" Module="Proj-Base" Type="0">QWRkcmVzcyBMaW5l</PHRASE>
+ <PHRASE Label="lu_Address_Line1" Module="Proj-Base" Type="0">QWRkcmVzcyBMaW5lIDE=</PHRASE>
+ <PHRASE Label="lu_Address_Line2" Module="Proj-Base" Type="0">QWRkcmVzcyBMaW5lIDI=</PHRASE>
+ <PHRASE Label="lu_add_friend" Module="Proj-Base" Type="0">QWRkIEZyaWVuZA==</PHRASE>
+ <PHRASE Label="lu_add_link" Module="Proj-Base" Type="0">QWRkIExpbms=</PHRASE>
+ <PHRASE Label="lu_add_pm" Module="Proj-Base" Type="0">U2VuZCBQcml2YXRlIE1lc3NhZ2U=</PHRASE>
+ <PHRASE Label="lu_add_review" Module="Proj-Base" Type="0">QWRkIFJldmlldw==</PHRASE>
+ <PHRASE Label="lu_add_topic" Module="Proj-Base" Type="0">QWRkIFRvcGlj</PHRASE>
+ <PHRASE Label="lu_add_to_favorites" Module="Proj-Base" Type="0">QWRkIHRvIEZhdm9yaXRlcw==</PHRASE>
+ <PHRASE Label="lu_AdvancedSearch" Module="Proj-Base" Type="0">QWR2YW5jZWQgU2VhcmNo</PHRASE>
+ <PHRASE Label="lu_advanced_search" Module="Proj-Base" Type="0">QWR2YW5jZWQgU2VhcmNo</PHRASE>
+ <PHRASE Label="lu_advanced_search_link" Module="Proj-Base" Type="0">QWR2YW5jZWQ=</PHRASE>
+ <PHRASE Label="lu_advsearch_any" Module="Proj-Base" Type="0">QW55</PHRASE>
+ <PHRASE Label="lu_advsearch_contains" Module="Proj-Base" Type="0">Q29udGFpbnM=</PHRASE>
+ <PHRASE Label="lu_advsearch_is" Module="Proj-Base" Type="0">SXMgRXF1YWwgVG8=</PHRASE>
+ <PHRASE Label="lu_advsearch_isnot" Module="Proj-Base" Type="0">SXMgTm90IEVxdWFsIFRv</PHRASE>
+ <PHRASE Label="lu_advsearch_notcontains" Module="Proj-Base" Type="0">RG9lcyBOb3QgQ29udGFpbg==</PHRASE>
+ <PHRASE Label="lu_AllRightsReserved" Module="Proj-Base" Type="0">QWxsIHJpZ2h0cyByZXNlcnZlZC4=</PHRASE>
+ <PHRASE Label="lu_already_suggested" Module="Proj-Base" Type="0">IGhhcyBhbHJlYWR5IGJlZW4gc3VnZ2VzdGVkIHRvIHRoaXMgc2l0ZSBvbg==</PHRASE>
+ <PHRASE Label="lu_and" Module="Proj-Base" Type="0">QW5k</PHRASE>
+ <PHRASE Label="lu_aol_im" Module="Proj-Base" Type="0">QU9MIElN</PHRASE>
+ <PHRASE Label="lu_Apr" Module="Proj-Base" Type="0">QXBy</PHRASE>
+ <PHRASE Label="lu_AProblemInForm" Module="Proj-Base" Type="0">VGhlcmUgaXMgYSBwcm9ibGVtIHdpdGggdGhlIGZvcm0sIHBsZWFzZSBjaGVjayB0aGUgZXJyb3IgbWVzc2FnZXMgYmVsb3cu</PHRASE>
+ <PHRASE Label="lu_AProblemWithForm" Module="Proj-Base" Type="0">VGhlcmUgaXMgYSBwcm9ibGVtIHdpdGggdGhlIGZvcm0sIHBsZWFzZSBjaGVjayB0aGUgZXJyb3IgbWVzc2FnZXMgYmVsb3c=</PHRASE>
+ <PHRASE Label="lu_articles" Module="Proj-Base" Type="0">QXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="lu_article_details" Module="Proj-Base" Type="0">QXJ0aWNsZSBEZXRhaWxz</PHRASE>
+ <PHRASE Label="lu_article_name" Module="Proj-Base" Type="0">QXJ0aWNsZSBuYW1l</PHRASE>
+ <PHRASE Label="lu_article_reviews" Module="Proj-Base" Type="0">QXJ0aWNsZSBSZXZpZXdz</PHRASE>
+ <PHRASE Label="lu_ascending" Module="Proj-Base" Type="0">QXNjZW5kaW5n</PHRASE>
+ <PHRASE Label="lu_Aug" Module="Proj-Base" Type="0">QXVn</PHRASE>
+ <PHRASE Label="lu_author" Module="Proj-Base" Type="0">QXV0aG9y</PHRASE>
+ <PHRASE Label="lu_auto" Module="Proj-Base" Type="1">QXV0b21hdGlj</PHRASE>
+ <PHRASE Label="lu_avatar_disabled" Module="Proj-Base" Type="0">RGlzYWJsZWQgYXZhdGFy</PHRASE>
+ <PHRASE Label="lu_back" Module="Proj-Base" Type="0">QmFjaw==</PHRASE>
+ <PHRASE Label="lu_bbcode" Module="Proj-Base" Type="0">QkJDb2Rl</PHRASE>
+ <PHRASE Label="lu_birth_date" Module="Proj-Base" Type="0">QmlydGggRGF0ZQ==</PHRASE>
+ <PHRASE Label="lu_blank_password" Module="Proj-Base" Type="0">QmxhbmsgcGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="lu_box" Module="Proj-Base" Type="0">Ym94</PHRASE>
+ <PHRASE Label="lu_btn_NewLink" Module="Proj-Base" Type="0">TmV3IExpbms=</PHRASE>
+ <PHRASE Label="lu_btn_newtopic" Module="Proj-Base" Type="0">TmV3IHRvcGlj</PHRASE>
+ <PHRASE Label="lu_button_forgotpw" Module="Proj-Base" Type="0">U2VuZCBQYXNzd29yZA==</PHRASE>
+ <PHRASE Label="lu_button_go" Module="Proj-Base" Type="0">R28=</PHRASE>
+ <PHRASE Label="lu_button_join" Module="Proj-Base" Type="0">Sm9pbg==</PHRASE>
+ <PHRASE Label="lu_button_mailinglist" Module="Proj-Base" Type="0">U3Vic2NyaWJl</PHRASE>
+ <PHRASE Label="lu_button_no" Module="Proj-Base" Type="0">Tm8=</PHRASE>
+ <PHRASE Label="lu_button_ok" Module="Proj-Base" Type="0">T2s=</PHRASE>
+ <PHRASE Label="lu_button_rate" Module="Proj-Base" Type="0">UmF0ZQ==</PHRASE>
+ <PHRASE Label="lu_button_search" Module="Proj-Base" Type="0">U2VhcmNo</PHRASE>
+ <PHRASE Label="lu_button_unsubscribe" Module="Proj-Base" Type="0">VW5zdWJzY3JpYmU=</PHRASE>
+ <PHRASE Label="lu_button_yes" Module="Proj-Base" Type="0">WWVz</PHRASE>
+ <PHRASE Label="lu_by" Module="Proj-Base" Type="0">Ynk=</PHRASE>
+ <PHRASE Label="lu_cancel" Module="Proj-Base" Type="0">Q2FuY2Vs</PHRASE>
+ <PHRASE Label="lu_cat" Module="Proj-Base" Type="0">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="lu_categories" Module="Proj-Base" Type="0">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="lu_categories_updated" Module="Proj-Base" Type="0">Y2F0ZWdvcmllcyB1cGRhdGVk</PHRASE>
+ <PHRASE Label="lu_category" Module="Proj-Base" Type="0">Q2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="lu_category_information" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgSW5mb3JtYXRpb24=</PHRASE>
+ <PHRASE Label="lu_category_search_results" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgU2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_CatLead_Story" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgTGVhZCBTdG9yeQ==</PHRASE>
+ <PHRASE Label="lu_cats" Module="Proj-Base" Type="0">Q2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="lu_city" Module="Proj-Base" Type="0">Q2l0eQ==</PHRASE>
+ <PHRASE Label="lu_ClickHere" Module="Proj-Base" Type="0">Y2xpY2sgaGVyZQ==</PHRASE>
+ <PHRASE Label="lu_close" Module="Proj-Base" Type="0">Q2xvc2U=</PHRASE>
+ <PHRASE Label="lu_close_window" Module="Proj-Base" Type="0">Q2xvc2UgV2luZG93</PHRASE>
+ <PHRASE Label="lu_code_expired" Module="Proj-Base" Type="0">UGFzc3dvcmQgcmVzZXQgaGFzIGNvZGUgZXhwaXJlZA==</PHRASE>
+ <PHRASE Label="lu_code_is_not_valid" Module="Proj-Base" Type="0">UGFzc3dvcmQgcmVzZXQgY29kZSBpcyBub3QgdmFsaWQ=</PHRASE>
+ <PHRASE Label="lu_comm_CartChangedAfterLogin" Module="Proj-Base" Type="0">UHJpY2VzIG9mIG9uZSBvciBtb3JlIGl0ZW1zIGluIHlvdXIgc2hvcHBpbmcgY2FydCBoYXZlIGJlZW4gY2hhbmdlZCBkdWUgdG8geW91ciBsb2dpbiwgcGxlYXNlIHJldmlldyBjaGFuZ2VzLg==</PHRASE>
+ <PHRASE Label="lu_comm_EmailAddress" Module="Proj-Base" Type="0">RW1haWxBZGRyZXNz</PHRASE>
+ <PHRASE Label="lu_comm_Images" Module="Proj-Base" Type="0">QWRkaXRpb25hbCBJbWFnZXM=</PHRASE>
+ <PHRASE Label="lu_comm_ImagesHeader" Module="Proj-Base" Type="0">QURESVRJT05BTCBJTUFHRVM=</PHRASE>
+ <PHRASE Label="lu_comm_NoPermissions" Module="Proj-Base" Type="0">Tm8gUGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="lu_comm_ProductDescription" Module="Proj-Base" Type="0">UHJvZHVjdCBEZXNjcmlwdGlvbg==</PHRASE>
+ <PHRASE Label="lu_company" Module="Proj-Base" Type="0">Q29tcGFueQ==</PHRASE>
+ <PHRASE Label="lu_confirm" Module="Proj-Base" Type="0">Y29uZmlybQ==</PHRASE>
+ <PHRASE Label="lu_confirmation_title" Module="Proj-Base" Type="0">Q29uZmlybWF0aW9uIFRpdGxl</PHRASE>
+ <PHRASE Label="lu_confirm_link_delete_subtitle" Module="Proj-Base" Type="0">WW91IGFyZSBhYm91dCB0byBkZWxldGUgdGhlIGxpbmsgYmVsb3cu</PHRASE>
+ <PHRASE Label="lu_confirm_subtitle" Module="Proj-Base" Type="0">Q29uZmlybWF0aW9uIFN1YnRpdGxl</PHRASE>
+ <PHRASE Label="lu_confirm_text" Module="Proj-Base" Type="0">Q29uZmlybWF0aW9uIHRleHQ=</PHRASE>
+ <PHRASE Label="lu_ContactUs" Module="Proj-Base" Type="0">Q29udGFjdCBVcw==</PHRASE>
+ <PHRASE Label="lu_contact_information" Module="Proj-Base" Type="0">Q29udGFjdCBJbmZvcm1hdGlvbg==</PHRASE>
+ <PHRASE Label="lu_continue" Module="Proj-Base" Type="0">Q29udGludWU=</PHRASE>
+ <PHRASE Label="lu_cookies" Module="Proj-Base" Type="1">Q29va2llcw==</PHRASE>
+ <PHRASE Label="lu_cookies_error" Module="Proj-Base" Type="0">UGxlYXNlIGVuYWJsZSBjb29raWVzIHRvIGxvZ2luIQ==</PHRASE>
+ <PHRASE Label="lu_country" Module="Proj-Base" Type="0">Q291bnRyeQ==</PHRASE>
+ <PHRASE Label="lu_created" Module="Proj-Base" Type="0">Y3JlYXRlZA==</PHRASE>
+ <PHRASE Label="lu_create_password" Module="Proj-Base" Type="0">Q3JlYXRlIFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="lu_CreditCards" Module="Proj-Base" Type="0">Q3JlZGl0IENhcmRz</PHRASE>
+ <PHRASE Label="lu_current_value" Module="Proj-Base" Type="0">Q3VycmVudCBWYWx1ZQ==</PHRASE>
+ <PHRASE Label="lu_date" Module="Proj-Base" Type="0">RGF0ZQ==</PHRASE>
+ <PHRASE Label="lu_date_created" Module="Proj-Base" Type="0">RGF0ZSBjcmVhdGVk</PHRASE>
+ <PHRASE Label="lu_Dec" Module="Proj-Base" Type="0">RGVj</PHRASE>
+ <PHRASE Label="lu_default_bbcode" Module="Proj-Base" Type="0">RW5hYmxlIEJCQ29kZQ==</PHRASE>
+ <PHRASE Label="lu_default_notify_owner" Module="Proj-Base" Type="0">Tm90aWZ5IG1lIG9uIGNoYW5nZXMgdG8gdG9waWNzIEkgY3JlYXRl</PHRASE>
+ <PHRASE Label="lu_default_notify_pm" Module="Proj-Base" Type="0">UmVjZWl2ZSBQcml2YXRlIE1lc3NhZ2UgTm90aWZpY2F0aW9ucw==</PHRASE>
+ <PHRASE Label="lu_default_signature" Module="Proj-Base" Type="0">QXR0YXRjaCBNeSBTaWduYXR1cmUgdG8gUG9zdHM=</PHRASE>
+ <PHRASE Label="lu_default_smileys" Module="Proj-Base" Type="0">U2ltbGllcyBvbiBieSBkZWZhdWx0</PHRASE>
+ <PHRASE Label="lu_default_user_signatures" Module="Proj-Base" Type="0">U2lnbmF0dXJlcyBvbiBieSBkZWZhdWx0</PHRASE>
+ <PHRASE Label="lu_delete" Module="Proj-Base" Type="0">RGVsZXRl</PHRASE>
+ <PHRASE Label="lu_delete_confirm_title" Module="Proj-Base" Type="0">Q29uZmlybSBEZWxldGU=</PHRASE>
+ <PHRASE Label="lu_delete_friend" Module="Proj-Base" Type="0">RGVsZXRlIEZyaWVuZA==</PHRASE>
+ <PHRASE Label="lu_delete_link_question" Module="Proj-Base" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGRlbGV0ZSB0aGlzIGxpbms/</PHRASE>
+ <PHRASE Label="lu_del_favorites" Module="Proj-Base" Type="0">VGhlIGxpbmsgd2FzIHN1Y2Nlc3NmdWxseSByZW1vdmVkIGZyb20gIEZhdm9yaXRlcy4=</PHRASE>
+ <PHRASE Label="lu_descending" Module="Proj-Base" Type="0">RGVzY2VuZGluZw==</PHRASE>
+ <PHRASE Label="lu_details" Module="Proj-Base" Type="0">RGV0YWlscw==</PHRASE>
+ <PHRASE Label="lu_details_updated" Module="Proj-Base" Type="0">ZGV0YWlscyB1cGRhdGVk</PHRASE>
+ <PHRASE Label="lu_directory" Module="Proj-Base" Type="0">RGlyZWN0b3J5</PHRASE>
+ <PHRASE Label="lu_disable" Module="Proj-Base" Type="0">RGlzYWJsZQ==</PHRASE>
+ <PHRASE Label="lu_edit" Module="Proj-Base" Type="0">TW9kaWZ5</PHRASE>
+ <PHRASE Label="lu_editedby" Module="Proj-Base" Type="0">RWRpdGVkIEJ5</PHRASE>
+ <PHRASE Label="lu_editors_pick" Module="Proj-Base" Type="0">RWRpdG9ycyBQaWNr</PHRASE>
+ <PHRASE Label="lu_editors_picks" Module="Proj-Base" Type="0">RWRpdG9yJ3MgUGlja3M=</PHRASE>
+ <PHRASE Label="lu_edittopic_confirm" Module="Proj-Base" Type="0">RWRpdCBUb3BpYyBSZXN1bHRz</PHRASE>
+ <PHRASE Label="lu_edittopic_confirm_pending" Module="Proj-Base" Type="0">VG9waWMgbW9kaWZpZWQ=</PHRASE>
+ <PHRASE Label="lu_edittopic_confirm_pending_text" Module="Proj-Base" Type="0">VG9waWMgaGFzIGJlZW4gbW9kaWZpZWQgcGVuZGluZyBhZG1pbmlzdHJhdGl2ZSBhcHByb3ZhbA==</PHRASE>
+ <PHRASE Label="lu_edittopic_confirm_text" Module="Proj-Base" Type="0">Q2hhbmdlcyBtYWRlIHRvIHRoZSB0b3BpYyBoYXZlIGJlZW4gc2F2ZWQu</PHRASE>
+ <PHRASE Label="lu_edit_post" Module="Proj-Base" Type="0">TW9kaWZ5IFBvc3Q=</PHRASE>
+ <PHRASE Label="lu_edit_topic" Module="Proj-Base" Type="0">TW9kaWZ5IFRvcGlj</PHRASE>
+ <PHRASE Label="LU_EMAIL" Module="Proj-Base" Type="0">RS1NYWls</PHRASE>
+ <PHRASE Label="lu_email_already_exist" Module="Proj-Base" Type="0">QSB1c2VyIHdpdGggc3VjaCBlLW1haWwgYWxyZWFkeSBleGlzdHMu</PHRASE>
+ <PHRASE Label="lu_email_send_error" Module="Proj-Base" Type="0">TWFpbCBzZW5kaW5nIGZhaWxlZA==</PHRASE>
+ <PHRASE Label="lu_enabled" Module="Proj-Base" Type="0">RW5hYmxlZA==</PHRASE>
+ <PHRASE Label="lu_end_on" Module="Proj-Base" Type="0">RW5kIE9u</PHRASE>
+ <PHRASE Label="lu_enlarge_picture" Module="Proj-Base" Type="0">Wm9vbSBpbg==</PHRASE>
+ <PHRASE Label="lu_enter" Module="Proj-Base" Type="0">RW50ZXI=</PHRASE>
+ <PHRASE Label="lu_EnterEmailToRecommend" Module="Proj-Base" Type="0">RW50ZXIgeW91ciBmcmllbmQgZS1tYWlsIGFkZHJlc3MgdG8gcmVjb21tZW5kIHRoaXMgc2l0ZQ==</PHRASE>
+ <PHRASE Label="lu_EnterEmailToSubscribe" Module="Proj-Base" Type="0">RW50ZXIgeW91ciBlLW1haWwgYWRkcmVzcyB0byBzdWJzY3JpYmUgdG8gdGhlIG1haWxpbmcgbGlzdC4=</PHRASE>
+ <PHRASE Label="lu_EnterForgotUserEmail" Module="Proj-Base" Type="0">RW50ZXIgeW91ciBVc2VybmFtZSBvciBFbWFpbCBBZGRyZXNzIGJlbG93IHRvIGhhdmUgeW91ciBhY2NvdW50IGluZm9ybWF0aW9uIHNlbnQgdG8gdGhlIGVtYWlsIGFkZHJlc3Mgb2YgeW91ciBhY2NvdW50Lg==</PHRASE>
+ <PHRASE Label="lu_errors_on_form" Module="Proj-Base" Type="0">TWlzc2luZyBvciBpbnZhbGlkIHZhbHVlcy4gUGxlYXNlIGNoZWNrIGFsbCB0aGUgZmllbGRzIGFuZCB0cnkgYWdhaW4u</PHRASE>
+ <PHRASE Label="lu_error_404_description" Module="Proj-Base" Type="0">U29ycnksIHRoZSByZXF1ZXN0ZWQgVVJMIHdhcyBub3QgZm91bmQgb24gb3VyIHNlcnZlci4=</PHRASE>
+ <PHRASE Label="lu_error_404_title" Module="Proj-Base" Type="0">RXJyb3IgNDA0IC0gTm90IEZvdW5k</PHRASE>
+ <PHRASE Label="lu_error_subtitle" Module="Proj-Base" Type="0">RXJyb3I=</PHRASE>
+ <PHRASE Label="lu_error_title" Module="Proj-Base" Type="0">RXJyb3I=</PHRASE>
+ <PHRASE Label="lu_existing_users" Module="Proj-Base" Type="0">RXhpc3RpbmcgVXNlcnM=</PHRASE>
+ <PHRASE Label="lu_expires" Module="Proj-Base" Type="0">RXhwaXJlcw==</PHRASE>
+ <PHRASE Label="lu_false" Module="Proj-Base" Type="0">RmFsc2U=</PHRASE>
+ <PHRASE Label="lu_favorite" Module="Proj-Base" Type="0">RmF2b3JpdGU=</PHRASE>
+ <PHRASE Label="lu_favorite_denied" Module="Proj-Base" Type="0">VW5hYmxlIHRvIGFkZCBmYXZvcml0ZSwgYWNjZXNzIGRlbmllZA==</PHRASE>
+ <PHRASE Label="lu_Feb" Module="Proj-Base" Type="0">RmVi</PHRASE>
+ <PHRASE Label="lu_ferror_forgotpw_nodata" Module="Proj-Base" Type="1">WW91IG11c3QgZW50ZXIgYSBVc2VybmFtZSBvciBFbWFpbCBBZGRyZXNzIHRvIHJldHJpdmUgeW91ciBhY2NvdW50IGluZm9ybWF0aW9u</PHRASE>
+ <PHRASE Label="lu_ferror_loginboth" Module="Proj-Base" Type="1">Qm90aCBhIFVzZXJuYW1lIGFuZCBQYXNzd29yZCBpcyByZXF1aXJlZA==</PHRASE>
+ <PHRASE Label="lu_ferror_login_login_password" Module="Proj-Base" Type="1">UGxlYXNlIGVudGVyIHlvdXIgcGFzc3dvcmQgYW5kIHRyeSBhZ2Fpbg==</PHRASE>
+ <PHRASE Label="lu_ferror_login_login_user" Module="Proj-Base" Type="1">WW91IGRpZCBub3QgZW50ZXIgeW91ciBVc2VybmFtZQ==</PHRASE>
+ <PHRASE Label="lu_ferror_m_acctinfo_dob" Module="Proj-Base" Type="0">RGF0ZSBvZiBiaXJ0aCBpcyByZXF1aXJlZA==</PHRASE>
+ <PHRASE Label="lu_ferror_m_acctinfo_firstname" Module="Proj-Base" Type="0">TWlzc2luZyBmaXJzdCBuYW1l</PHRASE>
+ <PHRASE Label="lu_ferror_m_profile_userid" Module="Proj-Base" Type="0">TWlzc2luZyB1c2Vy</PHRASE>
+ <PHRASE Label="lu_ferror_m_register_dob" Module="Proj-Base" Type="0">RGF0ZSBvZiBiaXJ0aCBpcyByZXF1aXJlZA==</PHRASE>
+ <PHRASE Label="lu_ferror_m_register_email" Module="Proj-Base" Type="0">RW1haWwgaXMgcmVxdWlyZWQ=</PHRASE>
+ <PHRASE Label="lu_ferror_m_register_firstname" Module="Proj-Base" Type="0">Rmlyc3QgbmFtZSBpcyByZXF1aXJlZA==</PHRASE>
+ <PHRASE Label="lu_ferror_m_register_password" Module="Proj-Base" Type="0">UGFzc3dvcmQgcmVxdWlyZWQ=</PHRASE>
+ <PHRASE Label="lu_ferror_no_access" Module="Proj-Base" Type="0">QWNjZXNzIGRlbmllZA==</PHRASE>
+ <PHRASE Label="lu_ferror_pswd_mismatch" Module="Proj-Base" Type="0">UGFzc3dvcmRzIGRvIG5vdCBtYXRjaA==</PHRASE>
+ <PHRASE Label="lu_ferror_pswd_toolong" Module="Proj-Base" Type="0">VGhlIHBhc3N3b3JkIGlzIHRvbyBsb25n</PHRASE>
+ <PHRASE Label="lu_ferror_pswd_tooshort" Module="Proj-Base" Type="0">UGFzc3dvcmQgaXMgdG9vIHNob3J0</PHRASE>
+ <PHRASE Label="lu_ferror_reset_denied" Module="Proj-Base" Type="0">Tm90IHJlc2V0</PHRASE>
+ <PHRASE Label="lu_ferror_review_duplicate" Module="Proj-Base" Type="0">WW91IGhhdmUgYWxyZWFkeSByZXZpZXdlZCB0aGlzIGl0ZW0u</PHRASE>
+ <PHRASE Label="lu_ferror_toolarge" Module="Proj-Base" Type="0">RmlsZSBpcyB0b28gbGFyZ2U=</PHRASE>
+ <PHRASE Label="lu_ferror_unknown_email" Module="Proj-Base" Type="1">VXNlciBhY2NvdW50IHdpdGggZ2l2ZW4gRS1tYWlsIG5vdCBmb3VuZA==</PHRASE>
+ <PHRASE Label="lu_ferror_unknown_username" Module="Proj-Base" Type="1">VXNlciBhY2NvdW50IHdpdGggZ2l2ZW4gVXNlcm5hbWUgbm90IGZvdW5k</PHRASE>
+ <PHRASE Label="lu_ferror_username_tooshort" Module="Proj-Base" Type="0">VXNlciBuYW1lIGlzIHRvbyBzaG9ydA==</PHRASE>
+ <PHRASE Label="lu_ferror_wrongtype" Module="Proj-Base" Type="0">V3JvbmcgZmlsZSB0eXBl</PHRASE>
+ <PHRASE Label="lu_fieldcustom__cc1" Module="Proj-Base" Type="2">Y2Mx</PHRASE>
+ <PHRASE Label="lu_fieldcustom__cc2" Module="Proj-Base" Type="2">Y2My</PHRASE>
+ <PHRASE Label="lu_fieldcustom__cc3" Module="Proj-Base" Type="2">Y2Mz</PHRASE>
+ <PHRASE Label="lu_fieldcustom__cc4" Module="Proj-Base" Type="2">Y2M0</PHRASE>
+ <PHRASE Label="lu_fieldcustom__cc5" Module="Proj-Base" Type="2">Y2M1</PHRASE>
+ <PHRASE Label="lu_fieldcustom__cc6" Module="Proj-Base" Type="2">Y2M2</PHRASE>
+ <PHRASE Label="lu_fieldcustom__lc1" Module="Proj-Base" Type="2">bGMx</PHRASE>
+ <PHRASE Label="lu_fieldcustom__lc2" Module="Proj-Base" Type="2">bGMy</PHRASE>
+ <PHRASE Label="lu_fieldcustom__lc3" Module="Proj-Base" Type="2">bGMz</PHRASE>
+ <PHRASE Label="lu_fieldcustom__lc4" Module="Proj-Base" Type="2">bGM0</PHRASE>
+ <PHRASE Label="lu_fieldcustom__lc5" Module="Proj-Base" Type="2">bGM1</PHRASE>
+ <PHRASE Label="lu_fieldcustom__lc6" Module="Proj-Base" Type="2">bGM2</PHRASE>
+ <PHRASE Label="lu_fieldcustom__uc1" Module="Proj-Base" Type="2">dWMx</PHRASE>
+ <PHRASE Label="lu_fieldcustom__uc2" Module="Proj-Base" Type="2">dWMy</PHRASE>
+ <PHRASE Label="lu_fieldcustom__uc3" Module="Proj-Base" Type="2">dWMz</PHRASE>
+ <PHRASE Label="lu_fieldcustom__uc4" Module="Proj-Base" Type="2">dWM0</PHRASE>
+ <PHRASE Label="lu_fieldcustom__uc5" Module="Proj-Base" Type="2">dWM1</PHRASE>
+ <PHRASE Label="lu_fieldcustom__uc6" Module="Proj-Base" Type="2">dWM2</PHRASE>
+ <PHRASE Label="lu_field_archived" Module="Proj-Base" Type="0">QXJjaGl2ZSBEYXRl</PHRASE>
+ <PHRASE Label="lu_field_author" Module="Proj-Base" Type="0">QXJ0aWNsZSBBdXRob3I=</PHRASE>
+ <PHRASE Label="lu_field_body" Module="Proj-Base" Type="0">QXJ0aWNsZSBCb2R5</PHRASE>
+ <PHRASE Label="lu_field_cacheddescendantcatsqty" Module="Proj-Base" Type="0">TnVtYmVyIG9mIERlc2NlbmRhbnRz</PHRASE>
+ <PHRASE Label="lu_field_cachednavbar" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgUGF0aA==</PHRASE>
+ <PHRASE Label="lu_field_cachedrating" Module="Proj-Base" Type="2">UmF0aW5n</PHRASE>
+ <PHRASE Label="lu_field_cachedreviewsqty" Module="Proj-Base" Type="2">TnVtYmVyIG9mIFJldmlld3M=</PHRASE>
+ <PHRASE Label="lu_field_cachedvotesqty" Module="Proj-Base" Type="2">TnVtYmVyIG9mIFJhdGluZyBWb3Rlcw==</PHRASE>
+ <PHRASE Label="lu_field_categoryid" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgSWQ=</PHRASE>
+ <PHRASE Label="lu_field_city" Module="Proj-Base" Type="0">Q2l0eQ==</PHRASE>
+ <PHRASE Label="lu_field_country" Module="Proj-Base" Type="0">Q291bnRyeQ==</PHRASE>
+ <PHRASE Label="lu_field_createdbyid" Module="Proj-Base" Type="2">Q3JlYXRlZCBCeSBVc2VyIElE</PHRASE>
+ <PHRASE Label="lu_field_createdon" Module="Proj-Base" Type="2">RGF0ZSBDcmVhdGVk</PHRASE>
+ <PHRASE Label="lu_field_description" Module="Proj-Base" Type="2">RGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="lu_field_dob" Module="Proj-Base" Type="0">RGF0ZSBvZiBCaXJ0aA==</PHRASE>
+ <PHRASE Label="lu_field_editorspick" Module="Proj-Base" Type="0">RWRpdG9yJ3MgcGljaw==</PHRASE>
+ <PHRASE Label="lu_field_email" Module="Proj-Base" Type="0">RS1tYWls</PHRASE>
+ <PHRASE Label="lu_field_endon" Module="Proj-Base" Type="0">RW5kcyBPbg==</PHRASE>
+ <PHRASE Label="lu_field_excerpt" Module="Proj-Base" Type="0">QXJ0aWNsZSBFeGNlcnB0</PHRASE>
+ <PHRASE Label="lu_field_firstname" Module="Proj-Base" Type="0">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="lu_field_hits" Module="Proj-Base" Type="2">SGl0cw==</PHRASE>
+ <PHRASE Label="lu_field_hotitem" Module="Proj-Base" Type="2">SXRlbSBJcyBIb3Q=</PHRASE>
+ <PHRASE Label="lu_field_lastname" Module="Proj-Base" Type="0">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="lu_field_lastpostid" Module="Proj-Base" Type="2">TGFzdCBQb3N0IElE</PHRASE>
+ <PHRASE Label="lu_field_leadcatstory" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgTGVhZCBTdG9yeT8=</PHRASE>
+ <PHRASE Label="lu_field_leadstory" Module="Proj-Base" Type="0">TGVhZCBTdG9yeT8=</PHRASE>
+ <PHRASE Label="lu_field_linkid" Module="Proj-Base" Type="2">TGluayBJRA==</PHRASE>
+ <PHRASE Label="lu_field_login" Module="Proj-Base" Type="0">TG9naW4gKFVzZXIgbmFtZSk=</PHRASE>
+ <PHRASE Label="lu_field_metadescription" Module="Proj-Base" Type="0">TWV0YSBEZXNjcmlwdGlvbg==</PHRASE>
+ <PHRASE Label="lu_field_metakeywords" Module="Proj-Base" Type="0">TWV0YSBLZXl3b3Jkcw==</PHRASE>
+ <PHRASE Label="lu_field_modified" Module="Proj-Base" Type="2">TGFzdCBNb2RpZmllZCBEYXRl</PHRASE>
+ <PHRASE Label="lu_field_modifiedbyid" Module="Proj-Base" Type="2">TW9kaWZpZWQgQnkgVXNlciBJRA==</PHRASE>
+ <PHRASE Label="lu_field_name" Module="Proj-Base" Type="2">TmFtZQ==</PHRASE>
+ <PHRASE Label="lu_field_newitem" Module="Proj-Base" Type="2">SXRlbSBJcyBOZXc=</PHRASE>
+ <PHRASE Label="lu_field_newsid" Module="Proj-Base" Type="0">QXJ0aWNsZSBJRA==</PHRASE>
+ <PHRASE Label="lu_field_notifyowneronchanges" Module="Proj-Base" Type="2">Tm90aWZ5IE93bmVyIG9mIENoYW5nZXM=</PHRASE>
+ <PHRASE Label="lu_field_orgid" Module="Proj-Base" Type="2">T3JpZ2luYWwgSXRlbSBJRA==</PHRASE>
+ <PHRASE Label="lu_field_ownerid" Module="Proj-Base" Type="2">T3duZXIgVXNlciBJRA==</PHRASE>
+ <PHRASE Label="lu_field_parentid" Module="Proj-Base" Type="0">UGFyZW50IElk</PHRASE>
+ <PHRASE Label="lu_field_parentpath" Module="Proj-Base" Type="0">UGFyZW50IENhdGVnb3J5IFBhdGg=</PHRASE>
+ <PHRASE Label="lu_field_password" Module="Proj-Base" Type="0">UGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="lu_field_phone" Module="Proj-Base" Type="0">VGVsZXBob25l</PHRASE>
+ <PHRASE Label="lu_field_popitem" Module="Proj-Base" Type="2">SXRlbSBJcyBQb3B1bGFy</PHRASE>
+ <PHRASE Label="lu_field_portaluserid" Module="Proj-Base" Type="0">VXNlciBJRA==</PHRASE>
+ <PHRASE Label="lu_field_postedby" Module="Proj-Base" Type="2">UG9zdGVkIEJ5</PHRASE>
+ <PHRASE Label="lu_field_posts" Module="Proj-Base" Type="0">VG9waWMgUG9zdHM=</PHRASE>
+ <PHRASE Label="lu_field_priority" Module="Proj-Base" Type="2">UHJpb3JpdHk=</PHRASE>
+ <PHRASE Label="lu_field_qtysold" Module="Proj-Base" Type="1">UXR5IFNvbGQ=</PHRASE>
+ <PHRASE Label="lu_field_resourceid" Module="Proj-Base" Type="2">UmVzb3VyY2UgSUQ=</PHRASE>
+ <PHRASE Label="lu_field_startdate" Module="Proj-Base" Type="0">U3RhcnQgRGF0ZQ==</PHRASE>
+ <PHRASE Label="lu_field_state" Module="Proj-Base" Type="0">U3RhdGU=</PHRASE>
+ <PHRASE Label="lu_field_status" Module="Proj-Base" Type="2">U3RhdHVz</PHRASE>
+ <PHRASE Label="lu_field_street" Module="Proj-Base" Type="0">U3RyZWV0IEFkZHJlc3M=</PHRASE>
+ <PHRASE Label="lu_field_textformat" Module="Proj-Base" Type="0">QXJ0aWNsZSBUZXh0</PHRASE>
+ <PHRASE Label="lu_field_title" Module="Proj-Base" Type="0">QXJ0aWNsZSBUaXRsZQ==</PHRASE>
+ <PHRASE Label="lu_field_topicid" Module="Proj-Base" Type="2">VG9waWMgSUQ=</PHRASE>
+ <PHRASE Label="lu_field_topictext" Module="Proj-Base" Type="2">VG9waWMgVGV4dA==</PHRASE>
+ <PHRASE Label="lu_field_topictype" Module="Proj-Base" Type="0">VG9waWMgVHlwZQ==</PHRASE>
+ <PHRASE Label="lu_field_topseller" Module="Proj-Base" Type="1">SXRlbSBJcyBhIFRvcCBTZWxsZXI=</PHRASE>
+ <PHRASE Label="lu_field_tz" Module="Proj-Base" Type="0">VGltZSBab25l</PHRASE>
+ <PHRASE Label="lu_field_url" Module="Proj-Base" Type="2">VVJM</PHRASE>
+ <PHRASE Label="lu_field_views" Module="Proj-Base" Type="0">Vmlld3M=</PHRASE>
+ <PHRASE Label="lu_field_zip" Module="Proj-Base" Type="0">WmlwIChQb3N0YWwpIENvZGU=</PHRASE>
+ <PHRASE Label="lu_first_name" Module="Proj-Base" Type="0">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="lu_fld_module" Module="Proj-Base" Type="0">TW9kdWxl</PHRASE>
+ <PHRASE Label="lu_fld_phrase" Module="Proj-Base" Type="0">UGhyYXNl</PHRASE>
+ <PHRASE Label="lu_fld_primary_translation" Module="Proj-Base" Type="0">UHJpbWFyeSBUcmFuc2xhdGlvbg==</PHRASE>
+ <PHRASE Label="lu_fld_translation" Module="Proj-Base" Type="0">VHJhbnNsYXRpb24=</PHRASE>
+ <PHRASE Label="lu_ForgotPassword" Module="Proj-Base" Type="0">Rm9yZ290IHBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="lu_forgotpw_confirm" Module="Proj-Base" Type="0">UGFzc3dvcmQgUmVxdWVzdCBDb25maXJtYXRpb24=</PHRASE>
+ <PHRASE Label="lu_forgotpw_confirm_reset" Module="Proj-Base" Type="0">Q29uZmlybSBwYXNzd29yZCByZXNldA==</PHRASE>
+ <PHRASE Label="lu_forgotpw_confirm_text" Module="Proj-Base" Type="0">WW91IGhhdmUgY2hvc2VkIHRvIHJlc2V0IHlvdXIgcGFzc3dvcmQuIEEgbmV3IHBhc3N3b3JkIGhhcyBiZWVuIGF1dG9tYXRpY2FsbHkgZ2VuZXJhdGVkIGJ5IHRoZSBzeXN0ZW0uIEl0IGhhcyBiZWVuIGVtYWlsZWQgdG8geW91ciBhZGRyZXNzIG9uIGZpbGUu</PHRASE>
+ <PHRASE Label="lu_forgotpw_confirm_text_reset" Module="Proj-Base" Type="0">UGxlYXNlIGNvbmZpcm0gdGhhdCB5b3Ugd2FudCB0byByZXNldCB5b3VyIHBhc3N3b3JkLg==</PHRASE>
+ <PHRASE Label="lu_forgot_password" Module="Proj-Base" Type="0">Rm9yZ290IFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="lu_forgot_password_link" Module="Proj-Base" Type="0">Rm9yZ290IFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="lu_forgot_pw_description" Module="Proj-Base" Type="1">RW50ZXIgeW91ciBVc2VybmFtZSBvciBFbWFpbCBBZGRyZXNzIGJlbG93IHRvIGhhdmUgeW91ciBhY2NvdW50IGluZm9ybWF0aW9uIHNlbnQgdG8gdGhlIGVtYWlsIGFkZHJlc3Mgb2YgeW91ciBhY2NvdW50Lg==</PHRASE>
+ <PHRASE Label="lu_forums" Module="Proj-Base" Type="0">Rm9ydW1z</PHRASE>
+ <PHRASE Label="lu_forum_hdrtext" Module="Proj-Base" Type="0">V2VsY29tZSB0byBJbi1wb3J0YWwgZm9ydW1zIQ==</PHRASE>
+ <PHRASE Label="lu_forum_hdrwelcometext" Module="Proj-Base" Type="0">V2VsY29tZSB0byBJbi1idWxsZXRpbiBGb3J1bXMh</PHRASE>
+ <PHRASE Label="lu_forum_locked_for_posting" Module="Proj-Base" Type="0">Rm9ydW0gaXMgbG9ja2VkIGZvciBwb3N0aW5n</PHRASE>
+ <PHRASE Label="lu_found" Module="Proj-Base" Type="0">Rm91bmQ6</PHRASE>
+ <PHRASE Label="lu_from" Module="Proj-Base" Type="0">RnJvbQ==</PHRASE>
+ <PHRASE Label="lu_full_story" Module="Proj-Base" Type="0">RnVsbCBTdG9yeQ==</PHRASE>
+ <PHRASE Label="lu_getting_rated" Module="Proj-Base" Type="0">R2V0dGluZyBSYXRlZA==</PHRASE>
+ <PHRASE Label="lu_getting_rated_text" Module="Proj-Base" Type="0">WW91IG1heSBwbGFjZSB0aGUgZm9sbG93aW5nIEhUTUwgY29kZSBvbiB5b3VyIHdlYiBzaXRlIHRvIGFsbG93IHlvdXIgc2l0ZSB2aXNpdG9ycyB0byB2b3RlIGZvciB0aGlzIHJlc291cmNl</PHRASE>
+ <PHRASE Label="lu_guest" Module="Proj-Base" Type="0">R3Vlc3Q=</PHRASE>
+ <PHRASE Label="lu_help" Module="Proj-Base" Type="0">SGVscA==</PHRASE>
+ <PHRASE Label="lu_Here" Module="Proj-Base" Type="0">SGVyZQ==</PHRASE>
+ <PHRASE Label="lu_hits" Module="Proj-Base" Type="0">SGl0cw==</PHRASE>
+ <PHRASE Label="lu_home" Module="Proj-Base" Type="0">SG9tZQ==</PHRASE>
+ <PHRASE Label="lu_hot" Module="Proj-Base" Type="0">SG90</PHRASE>
+ <PHRASE Label="lu_hot_links" Module="Proj-Base" Type="0">SG90IExpbmtz</PHRASE>
+ <PHRASE Label="lu_in" Module="Proj-Base" Type="0">aW4=</PHRASE>
+ <PHRASE Label="lu_inbox" Module="Proj-Base" Type="0">SW5ib3g=</PHRASE>
+ <PHRASE Label="lu_incorrect_login" Module="Proj-Base" Type="0">VXNlcm5hbWUvUGFzc3dvcmQgSW5jb3JyZWN0</PHRASE>
+ <PHRASE Label="lu_IndicatesRequired" Module="Proj-Base" Type="0">SW5kaWNhdGVzIFJlcXVpcmVkIGZpZWxkcw==</PHRASE>
+ <PHRASE Label="lu_InvalidEmail" Module="Proj-Base" Type="0">SW52YWxpZCBlLW1haWwgYWRkcmVzcw==</PHRASE>
+ <PHRASE Label="lu_invalid_emailaddress" Module="Proj-Base" Type="0">RS1tYWlsIGFkZHJlc3MgbWlzc2luZyBvciBpbnZhbGlk</PHRASE>
+ <PHRASE Label="lu_invalid_password" Module="Proj-Base" Type="0">SW52YWxpZCBQYXNzd29yZA==</PHRASE>
+ <PHRASE Label="lu_in_this_message" Module="Proj-Base" Type="0">SW4gdGhpcyBtZXNzYWdl</PHRASE>
+ <PHRASE Label="lu_items_since_last" Module="Proj-Base" Type="0">SXRlbXMgc2luY2UgbGFzdCBsb2dpbg==</PHRASE>
+ <PHRASE Label="lu_Jan" Module="Proj-Base" Type="0">SmFu</PHRASE>
+ <PHRASE Label="lu_joined" Module="Proj-Base" Type="0">Sm9pbmVk</PHRASE>
+ <PHRASE Label="lu_Jul" Module="Proj-Base" Type="0">SnVs</PHRASE>
+ <PHRASE Label="lu_Jun" Module="Proj-Base" Type="0">SnVu</PHRASE>
+ <PHRASE Label="lu_keywords_tooshort" Module="Proj-Base" Type="0">S2V5d29yZCBpcyB0b28gc2hvcnQ=</PHRASE>
+ <PHRASE Label="lu_lastpost" Module="Proj-Base" Type="0">TGFzdCBQb3N0</PHRASE>
+ <PHRASE Label="lu_lastposter" Module="Proj-Base" Type="0">TGFzdCBQb3N0IEJ5</PHRASE>
+ <PHRASE Label="lu_lastupdate" Module="Proj-Base" Type="0">TGFzdCBVcGRhdGU=</PHRASE>
+ <PHRASE Label="lu_last_name" Module="Proj-Base" Type="0">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="lu_legend" Module="Proj-Base" Type="0">TGVnZW5k</PHRASE>
+ <PHRASE Label="lu_links" Module="Proj-Base" Type="0">TGlua3M=</PHRASE>
+ <PHRASE Label="lu_links_updated" Module="Proj-Base" Type="0">bGlua3MgdXBkYXRlZA==</PHRASE>
+ <PHRASE Label="lu_link_addreview_confirm_pending_text" Module="Proj-Base" Type="0">WW91ciByZXZpZXcgaGFzIGJlZW4gYWRkZWQgcGVuZGluZyBhZG1pbmlzdHJhdGl2ZSBhcHByb3ZhbA==</PHRASE>
+ <PHRASE Label="lu_link_addreview_confirm_text" Module="Proj-Base" Type="0">WW91ciByZXZpZXcgaGFzIGJlZW4gYWRkZWQ=</PHRASE>
+ <PHRASE Label="lu_link_details" Module="Proj-Base" Type="0">TGluayBEZXRhaWxz</PHRASE>
+ <PHRASE Label="lu_link_information" Module="Proj-Base" Type="0">TGluayBJbmZvcm1hdGlvbg==</PHRASE>
+ <PHRASE Label="lu_link_name" Module="Proj-Base" Type="0">TGluayBOYW1l</PHRASE>
+ <PHRASE Label="lu_link_rate_confirm" Module="Proj-Base" Type="0">TGluayBSYXRpbmcgUmVzdWx0cw==</PHRASE>
+ <PHRASE Label="lu_link_rate_confirm_duplicate_text" Module="Proj-Base" Type="0">WW91IGhhdmUgYWxyZWFkeSByYXRlZCB0aGlzIGxpbmsu</PHRASE>
+ <PHRASE Label="lu_link_rate_confirm_text" Module="Proj-Base" Type="0">VGhhbmsgZm9yIHJhdGluZyB0aGlzIGxpbmsuICBZb3VyIGlucHV0IGhhcyBiZWVuIHJlY29yZGVkLg==</PHRASE>
+ <PHRASE Label="lu_link_reviews" Module="Proj-Base" Type="0">TGluayBSZXZpZXdz</PHRASE>
+ <PHRASE Label="lu_link_review_confirm" Module="Proj-Base" Type="0">TGluayBSZXZpZXcgUmVzdWx0cw==</PHRASE>
+ <PHRASE Label="lu_link_review_confirm_pending" Module="Proj-Base" Type="0">TGluayBSZXZpZXcgUGVuZGluZw==</PHRASE>
+ <PHRASE Label="lu_link_search_results" Module="Proj-Base" Type="0">TGluayBTZWFyY2ggUmVzdWx0cw==</PHRASE>
+ <PHRASE Label="lu_location" Module="Proj-Base" Type="0">TG9jYXRpb24=</PHRASE>
+ <PHRASE Label="lu_locked_topic" Module="Proj-Base" Type="0">TG9ja2VkIHRvcGlj</PHRASE>
+ <PHRASE Label="lu_lock_unlock" Module="Proj-Base" Type="0">TG9jay9VbmxvY2s=</PHRASE>
+ <PHRASE Label="lu_login" Module="Proj-Base" Type="0">TG9naW4=</PHRASE>
+ <PHRASE Label="lu_login_information" Module="Proj-Base" Type="0">TG9naW4gSW5mb3JtYXRpb24=</PHRASE>
+ <PHRASE Label="lu_login_name" Module="Proj-Base" Type="0">TG9naW4gTmFtZQ==</PHRASE>
+ <PHRASE Label="lu_login_title" Module="Proj-Base" Type="0">TG9naW4=</PHRASE>
+ <PHRASE Label="lu_logout" Module="Proj-Base" Type="0">TG9nIE91dA==</PHRASE>
+ <PHRASE Label="lu_LogoutText" Module="Proj-Base" Type="0">TG9nb3V0IG9mIHlvdXIgYWNjb3VudA==</PHRASE>
+ <PHRASE Label="lu_logout_description" Module="Proj-Base" Type="0">TG9nIG91dCBvZiB0aGUgc3lzdGVt</PHRASE>
+ <PHRASE Label="lu_mailinglist" Module="Proj-Base" Type="0">TWFpbGluZyBMaXN0</PHRASE>
+ <PHRASE Label="lu_Mar" Module="Proj-Base" Type="0">TWFy</PHRASE>
+ <PHRASE Label="lu_May" Module="Proj-Base" Type="0">TWF5</PHRASE>
+ <PHRASE Label="lu_message" Module="Proj-Base" Type="0">TWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="lu_message_body" Module="Proj-Base" Type="0">TWVzc2FnZSBCb2R5</PHRASE>
+ <PHRASE Label="lu_min_pw_reset_interval" Module="Proj-Base" Type="0">UGFzc3dvcmQgcmVzZXQgaW50ZXJ2YWw=</PHRASE>
+ <PHRASE Label="lu_missing_error" Module="Proj-Base" Type="0">TWlzc2luZyBUZW1wbGF0ZQ==</PHRASE>
+ <PHRASE Label="lu_modified" Module="Proj-Base" Type="0">TW9kaWZpZWQ=</PHRASE>
+ <PHRASE Label="lu_modifylink_confirm" Module="Proj-Base" Type="0">TGluayBNb2RpZmljYXRpb24gQ29uZmlybWF0aW9u</PHRASE>
+ <PHRASE Label="lu_modifylink_confirm_text" Module="Proj-Base" Type="0">WW91ciBsaW5rIGhhcyBiZWVuIG1vZGlmaWVkLg==</PHRASE>
+ <PHRASE Label="lu_modifylink_pending_confirm" Module="Proj-Base" Type="0">TGluayBtb2RpZmljYXRpb24gY29tcGxldGU=</PHRASE>
+ <PHRASE Label="lu_modifylink_pending_confirm_text" Module="Proj-Base" Type="0">WW91ciBsaW5rIG1vZGlmaWNhdGlvbiBoYXMgYmVlbiBzdWJtaXR0ZWQgcGVuZGluZyBhZG1pbmlzdHJhdGl2ZSBhcHByb3ZhbA==</PHRASE>
+ <PHRASE Label="lu_modify_link" Module="Proj-Base" Type="0">TW9kaWZ5IExpbms=</PHRASE>
+ <PHRASE Label="lu_more" Module="Proj-Base" Type="0">TW9yZQ==</PHRASE>
+ <PHRASE Label="lu_MoreDetails" Module="Proj-Base" Type="0">TW9yZSBkZXRhaWxz</PHRASE>
+ <PHRASE Label="lu_more_info" Module="Proj-Base" Type="0">TW9yZSBJbmZv</PHRASE>
+ <PHRASE Label="lu_msg_welcome" Module="Proj-Base" Type="0">V2VsY29tZQ==</PHRASE>
+ <PHRASE Label="lu_myaccount" Module="Proj-Base" Type="0">TXkgQWNjb3VudA==</PHRASE>
+ <PHRASE Label="lu_my_articles" Module="Proj-Base" Type="0">TXkgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="lu_my_articles_description" Module="Proj-Base" Type="0">TmV3cyBBcnRpY2xlcyB5b3UgaGF2ZSB3cml0dGVu</PHRASE>
+ <PHRASE Label="lu_my_favorites" Module="Proj-Base" Type="0">TXkgRmF2b3JpdGVz</PHRASE>
+ <PHRASE Label="lu_my_favorites_description" Module="Proj-Base" Type="0">SXRlbXMgeW91IGhhdmUgbWFya2VkIGFzIGZhdm9yaXRl</PHRASE>
+ <PHRASE Label="lu_my_friends" Module="Proj-Base" Type="0">TXkgRnJpZW5kcw==</PHRASE>
+ <PHRASE Label="lu_my_friends_description" Module="Proj-Base" Type="0">VmlldyB5b3VyIGxpc3Qgb2YgZnJpZW5kcw==</PHRASE>
+ <PHRASE Label="lu_my_info" Module="Proj-Base" Type="0">TXkgUHJvZmlsZQ==</PHRASE>
+ <PHRASE Label="lu_my_info_description" Module="Proj-Base" Type="0">WW91ciBBY2NvdW50IEluZm9ybWF0aW9u</PHRASE>
+ <PHRASE Label="lu_my_items_title" Module="Proj-Base" Type="0">TXkgSXRlbXM=</PHRASE>
+ <PHRASE Label="lu_my_links" Module="Proj-Base" Type="0">TXkgTGlua3M=</PHRASE>
+ <PHRASE Label="lu_my_links_description" Module="Proj-Base" Type="0">TGlua3MgeW91IGhhdmUgYWRkZWQgdG8gdGhlIHN5c3RlbQ==</PHRASE>
+ <PHRASE Label="lu_my_link_favorites" Module="Proj-Base" Type="0">TXkgRmF2b3JpdGVz</PHRASE>
+ <PHRASE Label="lu_my_news" Module="Proj-Base" Type="0">TXkgTmV3cw==</PHRASE>
+ <PHRASE Label="lu_my_news_favorites" Module="Proj-Base" Type="0">RmF2b3JpdGUgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="lu_my_preferences" Module="Proj-Base" Type="0">TXkgUHJlZmVyZW5jZXM=</PHRASE>
+ <PHRASE Label="lu_my_preferences_description" Module="Proj-Base" Type="0">RWRpdCB5b3VyIEluLVBvcnRhbCBQcmVmZXJlbmNlcw==</PHRASE>
+ <PHRASE Label="lu_my_profile" Module="Proj-Base" Type="0">TXkgUHJvZmlsZQ==</PHRASE>
+ <PHRASE Label="lu_my_topics" Module="Proj-Base" Type="0">TXkgVG9waWNz</PHRASE>
+ <PHRASE Label="lu_my_topics_description" Module="Proj-Base" Type="0">RGlzY3Vzc2lvbnMgeW91IGhhdmUgY3JlYXRlZA==</PHRASE>
+ <PHRASE Label="lu_my_topic_favorites" Module="Proj-Base" Type="0">TXkgVG9waWNz</PHRASE>
+ <PHRASE Label="lu_Name" Module="Proj-Base" Type="0">TmFtZQ==</PHRASE>
+ <PHRASE Label="lu_nav_addlink" Module="Proj-Base" Type="0">QWRkIExpbms=</PHRASE>
+ <PHRASE Label="lu_new" Module="Proj-Base" Type="0">TmV3</PHRASE>
+ <PHRASE Label="lu_NewCustomers" Module="Proj-Base" Type="0">TmV3IEN1c3RvbWVycw==</PHRASE>
+ <PHRASE Label="lu_newpm_confirm" Module="Proj-Base" Type="0">TmV3IFByaXZhdGUgTWVzc2FnZSBDb25maXJtYXRpb24=</PHRASE>
+ <PHRASE Label="lu_newpm_confirm_text" Module="Proj-Base" Type="0">WW91ciBwcml2YXRlIG1lc3NhZ2UgaGFzIGJlZW4gc2VudC4=</PHRASE>
+ <PHRASE Label="lu_news" Module="Proj-Base" Type="0">TmV3cw==</PHRASE>
+ <PHRASE Label="lu_news_addreview_confirm_text" Module="Proj-Base" Type="0">VGhlIGFydGljbGUgcmV2aWV3IGhhcyBiZWVuIGFkZGVkIHRvIHRoZSBkYXRhYmFzZS4=</PHRASE>
+ <PHRASE Label="lu_news_addreview_confirm__pending_text" Module="Proj-Base" Type="0">QXJ0aWNsZSByZXZpZXcgaGFzIGJlZW4gc3VibWl0dGVkIHBlbmRpbmcgYWRtaW5pc3RyYXRpdmUgYXBwcm92YWw=</PHRASE>
+ <PHRASE Label="lu_news_details" Module="Proj-Base" Type="0">TmV3cyBEZXRhaWxz</PHRASE>
+ <PHRASE Label="lu_news_rate_confirm" Module="Proj-Base" Type="0">UmF0ZSBBcnRpY2xlIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_news_rate_confirm_duplicate_text" Module="Proj-Base" Type="0">WW91IGhhdmUgYWxyZWFkeSByYXRlZCB0aGlzIGFydGljbGU=</PHRASE>
+ <PHRASE Label="lu_news_rate_confirm_text" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciByYXRpbmcgdGhpcyBhcnRpY2xlLiBZb3VyIHZvdGUgaGFzIGJlZW4gcmVjb3JkZWQu</PHRASE>
+ <PHRASE Label="lu_news_review_confirm" Module="Proj-Base" Type="0">VGhlIHJldmlldyBoYXMgYmVlbiBhZGRlZA==</PHRASE>
+ <PHRASE Label="lu_news_review_confirm_pending" Module="Proj-Base" Type="0">QXJ0aWNsZSByZXZpZXcgc3VibWl0dGVk</PHRASE>
+ <PHRASE Label="lu_news_search_results" Module="Proj-Base" Type="0">U2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_news_updated" Module="Proj-Base" Type="0">bmV3cyB1cGRhdGVk</PHRASE>
+ <PHRASE Label="lu_newtopic_confirm" Module="Proj-Base" Type="0">QWRkIFRvcGljIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_newtopic_confirm_pending" Module="Proj-Base" Type="0">WW91ciB0b3BpYyBoYXMgYmVlbiBhZGRlZA==</PHRASE>
+ <PHRASE Label="lu_newtopic_confirm_pending_text" Module="Proj-Base" Type="0">VGhlIHN5c3RlbSBhZG1pbmlzdHJhdG9yIG11c3QgYXBwcm92ZSB5b3VyIHRvcGljIGJlZm9yZSBpdCBpcyBwdWJsaWNseSBhdmFpbGFibGUu</PHRASE>
+ <PHRASE Label="lu_newtopic_confirm_text" Module="Proj-Base" Type="0">VGhlIFRvcGljIHlvdSBoYXZlIGNyZWF0ZWQgaGFzIGJlZW4gYWRkZWQgdG8gdGhlIHN5c3RlbQ==</PHRASE>
+ <PHRASE Label="lu_new_articles" Module="Proj-Base" Type="0">TmV3IGFydGljbGVz</PHRASE>
+ <PHRASE Label="lu_new_links" Module="Proj-Base" Type="0">TmV3IExpbmtz</PHRASE>
+ <PHRASE Label="lu_new_news" Module="Proj-Base" Type="0">TmV3IGFydGljbGVz</PHRASE>
+ <PHRASE Label="lu_new_pm" Module="Proj-Base" Type="0">TmV3IFByaXZhdGUgTWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="lu_new_posts" Module="Proj-Base" Type="0">Rm9ydW0gaGFzIG5ldyBwb3N0cw==</PHRASE>
+ <PHRASE Label="lu_new_private_message" Module="Proj-Base" Type="0">TmV3IHByaXZhdGUgbWVzc2FnZQ==</PHRASE>
+ <PHRASE Label="lu_new_since_links" Module="Proj-Base" Type="0">TmV3IGxpbmtz</PHRASE>
+ <PHRASE Label="lu_new_since_news" Module="Proj-Base" Type="0">TmV3IGFydGljbGVz</PHRASE>
+ <PHRASE Label="lu_new_since_topics" Module="Proj-Base" Type="0">TmV3IHRvcGljcw==</PHRASE>
+ <PHRASE Label="lu_new_topic" Module="Proj-Base" Type="0">TmV3IFRvcGlj</PHRASE>
+ <PHRASE Label="lu_new_users" Module="Proj-Base" Type="0">TmV3IFVzZXJz</PHRASE>
+ <PHRASE Label="lu_no" Module="Proj-Base" Type="0">Tm8=</PHRASE>
+ <PHRASE Label="lu_NoAccess" Module="Proj-Base" Type="0">U29ycnksIHlvdSBoYXZlIG5vIGFjY2VzcyB0byB0aGlzIHBhZ2Uh</PHRASE>
+ <PHRASE Label="lu_none" Module="Proj-Base" Type="0">Tm9uZQ==</PHRASE>
+ <PHRASE Label="lu_notify_owner" Module="Proj-Base" Type="0">Tm90aWZ5IG1lIHdoZW4gcG9zdHMgYXJlIG1hZGUgaW4gdGhpcyB0b3BpYw==</PHRASE>
+ <PHRASE Label="lu_not_logged_in" Module="Proj-Base" Type="0">Tm90IGxvZ2dlZCBpbg==</PHRASE>
+ <PHRASE Label="lu_Nov" Module="Proj-Base" Type="0">Tm92</PHRASE>
+ <PHRASE Label="lu_no_articles" Module="Proj-Base" Type="0">Tm8gQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="lu_no_categories" Module="Proj-Base" Type="0">Tm8gQ2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="lu_no_expiration" Module="Proj-Base" Type="0">Tm8gZXhwaXJhdGlvbg==</PHRASE>
+ <PHRASE Label="lu_no_favorites" Module="Proj-Base" Type="0">Tm8gZmF2b3JpdGVz</PHRASE>
+ <PHRASE Label="lu_no_items" Module="Proj-Base" Type="0">Tm8gSXRlbXM=</PHRASE>
+ <PHRASE Label="lu_no_keyword" Module="Proj-Base" Type="0">S2V5d29yZCBtaXNzaW5n</PHRASE>
+ <PHRASE Label="lu_no_links" Module="Proj-Base" Type="0">Tm8gTGlua3M=</PHRASE>
+ <PHRASE Label="lu_no_new_posts" Module="Proj-Base" Type="0">Rm9ydW0gaGFzIG5vIG5ldyBwb3N0cw==</PHRASE>
+ <PHRASE Label="lu_no_permissions" Module="Proj-Base" Type="0">Tm8gUGVybWlzc2lvbnM=</PHRASE>
+ <PHRASE Label="lu_no_related_categories" Module="Proj-Base" Type="0">Tm8gUmVsYXRlZCBDYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="lu_no_session_error" Module="Proj-Base" Type="0">RXJyb3I6IG5vIHNlc3Npb24=</PHRASE>
+ <PHRASE Label="lu_no_template_error" Module="Proj-Base" Type="0">TWlzc2luZyB0ZW1wbGF0ZQ==</PHRASE>
+ <PHRASE Label="lu_no_topics" Module="Proj-Base" Type="0">Tm8gVG9waWNz</PHRASE>
+ <PHRASE Label="lu_Oct" Module="Proj-Base" Type="0">T2N0</PHRASE>
+ <PHRASE Label="lu_of" Module="Proj-Base" Type="2">b2Y=</PHRASE>
+ <PHRASE Label="lu_offline" Module="Proj-Base" Type="0">T2ZmbGluZQ==</PHRASE>
+ <PHRASE Label="lu_ok" Module="Proj-Base" Type="0">T2s=</PHRASE>
+ <PHRASE Label="lu_on" Module="Proj-Base" Type="0">b24=</PHRASE>
+ <PHRASE Label="lu_online" Module="Proj-Base" Type="0">T25saW5l</PHRASE>
+ <PHRASE Label="lu_on_this_post" Module="Proj-Base" Type="0">b24gdGhpcyBwb3N0</PHRASE>
+ <PHRASE Label="lu_operation_notallowed" Module="Proj-Base" Type="0">WW91IGRvIG5vdCBoYXZlIGFjY2VzcyB0byBwZXJmb3JtIHRoaXMgb3BlcmF0aW9u</PHRASE>
+ <PHRASE Label="lu_optional" Module="Proj-Base" Type="0">T3B0aW9uYWw=</PHRASE>
+ <PHRASE Label="lu_options" Module="Proj-Base" Type="0">T3B0aW9ucw==</PHRASE>
+ <PHRASE Label="lu_or" Module="Proj-Base" Type="0">b3I=</PHRASE>
+ <PHRASE Label="lu_page" Module="Proj-Base" Type="0">UGFnZQ==</PHRASE>
+ <PHRASE Label="lu_page_label" Module="Proj-Base" Type="0">UGFnZTo=</PHRASE>
+ <PHRASE Label="lu_password" Module="Proj-Base" Type="0">UGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="lu_passwords_do_not_match" Module="Proj-Base" Type="0">UGFzc3dvcmRzIGRvIG5vdCBtYXRjaA==</PHRASE>
+ <PHRASE Label="lu_passwords_too_short" Module="Proj-Base" Type="0">UGFzc3dvcmQgaXMgdG9vIHNob3J0LCBwbGVhc2UgZW50ZXIgYXQgbGVhc3QgJXMgY2hhcmFjdGVycw==</PHRASE>
+ <PHRASE Label="lu_password_again" Module="Proj-Base" Type="0">UGFzc3dvcmQgQWdhaW4=</PHRASE>
+ <PHRASE Label="lu_PermName_Admin_desc" Module="Proj-Base" Type="1">QWRtaW4gTG9naW4=</PHRASE>
+ <PHRASE Label="lu_PermName_Category.AddPending_desc" Module="Proj-Base" Type="0">QWRkIFBlbmRpbmcgQ2F0ZWdvcnk=</PHRASE>
+ <PHRASE Label="lu_PermName_Category.Add_desc" Module="Proj-Base" Type="0">QWRkIENhdGVnb3J5</PHRASE>
+ <PHRASE Label="lu_PermName_Category.Delete_desc" Module="Proj-Base" Type="0">RGVsZXRlIENhdGVnb3J5</PHRASE>
+ <PHRASE Label="lu_PermName_Category.Modify_desc" Module="Proj-Base" Type="0">TW9kaWZ5IENhdGVnb3J5</PHRASE>
+ <PHRASE Label="lu_PermName_Category.View_desc" Module="Proj-Base" Type="0">VmlldyBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="lu_PermName_Debug.Info_desc" Module="Proj-Base" Type="1">QXBwZW5kIHBocGluZm8gdG8gYWxsIHBhZ2VzIChEZWJ1Zyk=</PHRASE>
+ <PHRASE Label="lu_PermName_Debug.Item_desc" Module="Proj-Base" Type="1">RGlzcGxheSBJdGVtIFF1ZXJpZXMgKERlYnVnKQ==</PHRASE>
+ <PHRASE Label="lu_PermName_Debug.List_desc" Module="Proj-Base" Type="1">RGlzcGxheSBJdGVtIExpc3QgUXVlcmllcyAoRGVidWcp</PHRASE>
+ <PHRASE Label="lu_PermName_favorites_desc" Module="Proj-Base" Type="2">QWxsb3cgZmF2b3JpdGVz</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Add.Pending_desc" Module="Proj-Base" Type="0">UGVuZGluZyBMaW5r</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Add_desc" Module="Proj-Base" Type="0">QWRkIExpbms=</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Delete_desc" Module="Proj-Base" Type="0">RGVsZXRlIExpbms=</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Modify.Pending_desc" Module="Proj-Base" Type="2">TW9kaWZ5IExpbmsgUGVuZGluZw==</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Modify_desc" Module="Proj-Base" Type="0">TW9kaWZ5IExpbms=</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Owner.Delete_desc" Module="Proj-Base" Type="2">TGluayBEZWxldGUgYnkgT3duZXI=</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Owner.Modify.Pending_desc" Module="Proj-Base" Type="2">TGluayBNb2RpZnkgUGVuZGluZyBieSBPd25lcg==</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Owner.Modify_desc" Module="Proj-Base" Type="2">TGluayBNb2RpZnkgYnkgT3duZXI=</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Rate_desc" Module="Proj-Base" Type="0">UmF0ZSBMaW5r</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Review_desc" Module="Proj-Base" Type="0">UmV2aWV3IExpbms=</PHRASE>
+ <PHRASE Label="lu_PermName_Link.Review_Pending_desc" Module="Proj-Base" Type="2">UmV2aWV3IExpbmsgUGVuZGluZw==</PHRASE>
+ <PHRASE Label="lu_PermName_Link.View_desc" Module="Proj-Base" Type="0">VmlldyBMaW5r</PHRASE>
+ <PHRASE Label="lu_PermName_Login_desc" Module="Proj-Base" Type="1">QWxsb3cgTG9naW4=</PHRASE>
+ <PHRASE Label="lu_PermName_News.Add.Pending_desc" Module="Proj-Base" Type="0">QWRkIFBlbmRpbmcgTmV3cw==</PHRASE>
+ <PHRASE Label="lu_PermName_News.Add_desc" Module="Proj-Base" Type="0">QWRkIE5ld3M=</PHRASE>
+ <PHRASE Label="lu_PermName_News.Delete_desc" Module="Proj-Base" Type="0">RGVsZXRlIE5ld3M=</PHRASE>
+ <PHRASE Label="lu_PermName_News.Modify_desc" Module="Proj-Base" Type="0">TW9kaWZ5IE5ld3M=</PHRASE>
+ <PHRASE Label="lu_PermName_News.Rate_desc" Module="Proj-Base" Type="0">UmF0ZSBOZXdz</PHRASE>
+ <PHRASE Label="lu_PermName_News.Review.Pending_desc" Module="Proj-Base" Type="2">UmV2aWV3IE5ld3MgUGVuZGluZw==</PHRASE>
+ <PHRASE Label="lu_PermName_News.Review_desc" Module="Proj-Base" Type="0">UmV2aWV3IE5ld3M=</PHRASE>
+ <PHRASE Label="lu_PermName_News.View_desc" Module="Proj-Base" Type="0">VmlldyBOZXdz</PHRASE>
+ <PHRASE Label="lu_PermName_Profile.Modify_desc" Module="Proj-Base" Type="1">Q2hhbmdlIFVzZXIgUHJvZmlsZXM=</PHRASE>
+ <PHRASE Label="lu_PermName_ShowLang_desc" Module="Proj-Base" Type="1">U2hvdyBMYW5ndWFnZSBUYWdz</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Add.Pending_desc" Module="Proj-Base" Type="0">QWRkIFBlbmRpbmcgVG9waWM=</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Add_desc" Module="Proj-Base" Type="0">QWRkIFRvcGlj</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Delete_desc" Module="Proj-Base" Type="0">RGVsZXRlIFRvcGlj</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Lock_desc" Module="Proj-Base" Type="1">TG9jay9VbmxvY2sgVG9waWNz</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Modify.Pending_desc" Module="Proj-Base" Type="1">TW9kaWZ5IFRvcGljIFBlbmRpbmc=</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Modify_desc" Module="Proj-Base" Type="0">TW9kaWZ5IFRvcGlj</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Owner.Delete_desc" Module="Proj-Base" Type="1">VG9waWMgT3duZXIgRGVsZXRl</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Owner.Modify.Pending_desc" Module="Proj-Base" Type="1">T3duZXIgTW9kaWZ5IFRvcGljIFBlbmRpbmc=</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Owner.Modify_desc" Module="Proj-Base" Type="1">VG9waWMgT3duZXIgTW9kaWZ5</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Rate_desc" Module="Proj-Base" Type="0">UmF0ZSBUb3BpYw==</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Reply.Add_desc" Module="Proj-Base" Type="0">QWRkIFRvcGljIFJlcGx5</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Reply.Delete_desc" Module="Proj-Base" Type="0">RGVsZXRlIFRvcGlj</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Reply.Modify_desc" Module="Proj-Base" Type="0">UmVwbHkgVG9waWMgTW9kaWZ5</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Reply.Owner.Delete_desc" Module="Proj-Base" Type="1">UG9zdCBPd25lciBEZWxldGU=</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Reply.Owner.Modify_desc" Module="Proj-Base" Type="1">UG9zdCBPd25lciBNb2RpZnk=</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Reply.View_desc" Module="Proj-Base" Type="0">VmlldyBUb3BpYyBSZXBseQ==</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.Review_desc" Module="Proj-Base" Type="0">UmV2aWV3IFRvcGlj</PHRASE>
+ <PHRASE Label="lu_PermName_Topic.View_desc" Module="Proj-Base" Type="0">VmlldyBUb3BpYw==</PHRASE>
+ <PHRASE Label="lu_phone" Module="Proj-Base" Type="0">UGhvbmU=</PHRASE>
+ <PHRASE Label="lu_pick" Module="Proj-Base" Type="0">UGljaw==</PHRASE>
+ <PHRASE Label="lu_pick_links" Module="Proj-Base" Type="0">RWRpdG9yJ3MgUGljayBMaW5rcw==</PHRASE>
+ <PHRASE Label="lu_pick_news" Module="Proj-Base" Type="0">RWRpdG9yJ3MgUGljayBBcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="lu_pick_topics" Module="Proj-Base" Type="0">RWRpdG9yJ3MgcGljayB0b3BpY3M=</PHRASE>
+ <PHRASE Label="lu_PleaseRegister" Module="Proj-Base" Type="0">UGxlYXNlIFJlZ2lzdGVy</PHRASE>
+ <PHRASE Label="lu_pm_delete_confirm" Module="Proj-Base" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGRlbGV0ZSB0aGlzIHByaXZhdGUgbWVzc2FnZT8=</PHRASE>
+ <PHRASE Label="lu_pm_list" Module="Proj-Base" Type="0">UHJpdmF0ZSBNZXNzYWdlcw==</PHRASE>
+ <PHRASE Label="lu_pm_list_description" Module="Proj-Base" Type="0">UHJpdmF0ZSBNZXNzYWdlcw==</PHRASE>
+ <PHRASE Label="lu_Pop" Module="Proj-Base" Type="0">UG9wdWxhcg==</PHRASE>
+ <PHRASE Label="lu_pop_links" Module="Proj-Base" Type="0">TW9zdCBQb3B1bGFyIExpbmtz</PHRASE>
+ <PHRASE Label="lu_post" Module="Proj-Base" Type="0">UG9zdA==</PHRASE>
+ <PHRASE Label="lu_posted" Module="Proj-Base" Type="0">UG9zdGVk</PHRASE>
+ <PHRASE Label="lu_poster" Module="Proj-Base" Type="0">UG9zdGVy</PHRASE>
+ <PHRASE Label="lu_posts" Module="Proj-Base" Type="0">cG9zdHM=</PHRASE>
+ <PHRASE Label="lu_posts_updated" Module="Proj-Base" Type="0">cG9zdHMgdXBkYXRlZA==</PHRASE>
+ <PHRASE Label="lu_PoweredBy" Module="Proj-Base" Type="0">UG93ZXJlZCBieQ==</PHRASE>
+ <PHRASE Label="lu_pp_city" Module="Proj-Base" Type="0">Q2l0eQ==</PHRASE>
+ <PHRASE Label="lu_pp_company" Module="Proj-Base" Type="0">Q29tcGFueQ==</PHRASE>
+ <PHRASE Label="lu_pp_country" Module="Proj-Base" Type="0">Q291bnRyeQ==</PHRASE>
+ <PHRASE Label="lu_pp_dob" Module="Proj-Base" Type="0">QmlydGhkYXRl</PHRASE>
+ <PHRASE Label="lu_pp_email" Module="Proj-Base" Type="0">RS1tYWls</PHRASE>
+ <PHRASE Label="lu_pp_fax" Module="Proj-Base" Type="0">RmF4</PHRASE>
+ <PHRASE Label="lu_pp_firstname" Module="Proj-Base" Type="0">Rmlyc3QgTmFtZQ==</PHRASE>
+ <PHRASE Label="lu_pp_lastname" Module="Proj-Base" Type="0">TGFzdCBOYW1l</PHRASE>
+ <PHRASE Label="lu_pp_phone" Module="Proj-Base" Type="0">UGhvbmU=</PHRASE>
+ <PHRASE Label="lu_pp_state" Module="Proj-Base" Type="0">U3RhdGU=</PHRASE>
+ <PHRASE Label="lu_pp_street" Module="Proj-Base" Type="0">U3RyZWV0</PHRASE>
+ <PHRASE Label="lu_pp_street2" Module="Proj-Base" Type="0">U3RyZWV0IDI=</PHRASE>
+ <PHRASE Label="lu_pp_zip" Module="Proj-Base" Type="0">Wmlw</PHRASE>
+ <PHRASE Label="lu_privacy" Module="Proj-Base" Type="0">UHJpdmFjeQ==</PHRASE>
+ <PHRASE Label="lu_privatemessages_updated" Module="Proj-Base" Type="0">UHJpdmF0ZSBtZXNzYWdlcyB1cGRhdGVk</PHRASE>
+ <PHRASE Label="lu_private_messages" Module="Proj-Base" Type="0">UHJpdmF0ZSBNZXNzYWdlcw==</PHRASE>
+ <PHRASE Label="lu_profile" Module="Proj-Base" Type="0">UHJvZmlsZQ==</PHRASE>
+ <PHRASE Label="lu_profile_field" Module="Proj-Base" Type="0">UHJvZmlsZQ==</PHRASE>
+ <PHRASE Label="lu_profile_updated" Module="Proj-Base" Type="0">cHJvZmlsZSB1cGRhdGVk</PHRASE>
+ <PHRASE Label="lu_prompt_avatar" Module="Proj-Base" Type="0">QXZhdGFyIEltYWdl</PHRASE>
+ <PHRASE Label="lu_prompt_catdesc" Module="Proj-Base" Type="0">RGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="lu_prompt_catname" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgTmFtZQ==</PHRASE>
+ <PHRASE Label="lu_prompt_email" Module="Proj-Base" Type="0">RW1haWw=</PHRASE>
+ <PHRASE Label="lu_prompt_fullimage" Module="Proj-Base" Type="0">RnVsbC1TaXplIEltYWdlOg==</PHRASE>
+ <PHRASE Label="lu_prompt_linkdesc" Module="Proj-Base" Type="0">RGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="lu_prompt_linkname" Module="Proj-Base" Type="0">TGluayBOYW1l</PHRASE>
+ <PHRASE Label="lu_prompt_linkurl" Module="Proj-Base" Type="0">VVJM</PHRASE>
+ <PHRASE Label="lu_prompt_metadesc" Module="Proj-Base" Type="0">TWV0YSBUYWcgRGVzY3JpcHRpb24=</PHRASE>
+ <PHRASE Label="lu_prompt_metakeywords" Module="Proj-Base" Type="0">TWV0YSBUYWcgS2V5d29yZHM=</PHRASE>
+ <PHRASE Label="lu_prompt_password" Module="Proj-Base" Type="0">UGFzc3dvcmQ=</PHRASE>
+ <PHRASE Label="lu_prompt_perpage_posts" Module="Proj-Base" Type="0">UG9zdHMgUGVyIFBhZ2U=</PHRASE>
+ <PHRASE Label="lu_prompt_perpage_topics" Module="Proj-Base" Type="0">VG9waWNzIFBlciBQYWdl</PHRASE>
+ <PHRASE Label="lu_prompt_post_subject" Module="Proj-Base" Type="0">UG9zdCBTdWJqZWN0</PHRASE>
+ <PHRASE Label="lu_prompt_recommend" Module="Proj-Base" Type="0">UmVjb21tZW5kIHRoaXMgc2l0ZSB0byBhIGZyaWVuZA==</PHRASE>
+ <PHRASE Label="lu_prompt_review" Module="Proj-Base" Type="0">UmV2aWV3Og==</PHRASE>
+ <PHRASE Label="lu_prompt_signature" Module="Proj-Base" Type="0">U2lnbmF0dXJl</PHRASE>
+ <PHRASE Label="lu_prompt_subscribe" Module="Proj-Base" Type="0">RW50ZXIgeW91ciBlLW1haWwgYWRkcmVzcyB0byBzdWJzY3JpYmUgdG8gdGhlIG1haWxpbmcgbGlzdC4=</PHRASE>
+ <PHRASE Label="lu_prompt_thumbnail" Module="Proj-Base" Type="0">VGh1bWJuYWlsIEltYWdlOg==</PHRASE>
+ <PHRASE Label="lu_prompt_username" Module="Proj-Base" Type="0">VXNlcm5hbWU=</PHRASE>
+ <PHRASE Label="lu_public_display" Module="Proj-Base" Type="0">RGlzcGxheSB0byBQdWJsaWM=</PHRASE>
+ <PHRASE Label="lu_query_string" Module="Proj-Base" Type="1">UXVlcnkgU3RyaW5n</PHRASE>
+ <PHRASE Label="lu_QuickSearch" Module="Proj-Base" Type="0">UXVpY2sgU2VhcmNo</PHRASE>
+ <PHRASE Label="lu_quick_links" Module="Proj-Base" Type="0">UXVpY2sgTGlua3M=</PHRASE>
+ <PHRASE Label="lu_quote_reply" Module="Proj-Base" Type="0">UmVwbHkgUXVvdGVk</PHRASE>
+ <PHRASE Label="lu_rateit" Module="Proj-Base" Type="0">UmF0ZSBUaGlzIExpbms=</PHRASE>
+ <PHRASE Label="lu_rate_access_denied" Module="Proj-Base" Type="0">VW5hYmxlIHRvIHJhdGUsIGFjY2VzcyBkZW5pZWQ=</PHRASE>
+ <PHRASE Label="lu_rate_article" Module="Proj-Base" Type="0">UmF0ZSB0aGlzIGFydGljbGU=</PHRASE>
+ <PHRASE Label="lu_rate_link" Module="Proj-Base" Type="0">UmF0ZSBMaW5r</PHRASE>
+ <PHRASE Label="lu_rate_news" Module="Proj-Base" Type="0">UmF0ZSBBcnRpY2xl</PHRASE>
+ <PHRASE Label="lu_rate_this_article" Module="Proj-Base" Type="0">UmF0ZSB0aGlzIGFydGljbGU=</PHRASE>
+ <PHRASE Label="lu_rate_topic" Module="Proj-Base" Type="0">UmF0ZSBUb3BpYw==</PHRASE>
+ <PHRASE Label="lu_rating" Module="Proj-Base" Type="0">UmF0aW5n</PHRASE>
+ <PHRASE Label="lu_rating_0" Module="Proj-Base" Type="0">UG9vcg==</PHRASE>
+ <PHRASE Label="lu_rating_1" Module="Proj-Base" Type="0">RmFpcg==</PHRASE>
+ <PHRASE Label="lu_rating_2" Module="Proj-Base" Type="0">QXZlcmFnZQ==</PHRASE>
+ <PHRASE Label="lu_rating_3" Module="Proj-Base" Type="0">R29vZA==</PHRASE>
+ <PHRASE Label="lu_rating_4" Module="Proj-Base" Type="0">VmVyeSBHb29k</PHRASE>
+ <PHRASE Label="lu_rating_5" Module="Proj-Base" Type="0">RXhjZWxsZW50</PHRASE>
+ <PHRASE Label="lu_rating_alreadyvoted" Module="Proj-Base" Type="0">QWxyZWFkeSB2b3RlZA==</PHRASE>
+ <PHRASE Label="lu_read_error" Module="Proj-Base" Type="0">VW5hYmxlIHRvIHJlYWQgZnJvbSBmaWxl</PHRASE>
+ <PHRASE Label="lu_recipent_required" Module="Proj-Base" Type="0">VGhlIHJlY2lwaWVudCBpcyByZXF1aXJlZA==</PHRASE>
+ <PHRASE Label="lu_recipient_doesnt_exist" Module="Proj-Base" Type="0">VXNlciBkb2VzIG5vdCBleGlzdA==</PHRASE>
+ <PHRASE Label="lu_recipient_doesnt_exit" Module="Proj-Base" Type="0">VGhlIHJlY2lwaWVudCBkb2VzIG5vdCBleGlzdA==</PHRASE>
+ <PHRASE Label="lu_recommend" Module="Proj-Base" Type="0">UmVjb21tZW5k</PHRASE>
+ <PHRASE Label="lu_RecommendToFriend" Module="Proj-Base" Type="0">UmVjb21tZW5kIHRvIGEgRnJpZW5k</PHRASE>
+ <PHRASE Label="lu_recommend_confirm" Module="Proj-Base" Type="0">UmVjb21tZW5kYXRpb24gQ29uZmlybWF0aW9u</PHRASE>
+ <PHRASE Label="lu_recommend_confirm_text" Module="Proj-Base" Type="0">VGhhbmtzIGZvciByZWNvbW1lbmRpbmcgb3VyIHNpdGUgdG8geW91ciBmcmllbmQuIFRoZSBlbWFpbCBoYXMgYmVlbiBzZW50IG91dC4=</PHRASE>
+ <PHRASE Label="lu_recommend_title" Module="Proj-Base" Type="0">UmVjb21tZW5kIHRvIGEgZnJpZW5k</PHRASE>
+ <PHRASE Label="lu_redirecting_text" Module="Proj-Base" Type="0">Q2xpY2sgaGVyZSBpZiB5b3VyIGJyb3dzZXIgZG9lcyBub3QgYXV0b21hdGljYWxseSByZWRpcmVjdCB5b3Uu</PHRASE>
+ <PHRASE Label="lu_redirecting_title" Module="Proj-Base" Type="0">UmVkaXJlY3RpbmcgLi4u</PHRASE>
+ <PHRASE Label="lu_register" Module="Proj-Base" Type="0">UmVnaXN0ZXI=</PHRASE>
+ <PHRASE Label="lu_RegisterConfirm" Module="Proj-Base" Type="0">UmVnaXN0cmF0aW9uIENvbmZpcm1hdGlvbg==</PHRASE>
+ <PHRASE Label="lu_register_confirm" Module="Proj-Base" Type="0">UmVnaXN0cmF0aW9uIENvbXBsZXRl</PHRASE>
+ <PHRASE Label="lu_register_confirm_text" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciBSZWdpc3RlcmluZyEgIFBsZWFzZSBlbnRlciB5b3VyIHVzZXJuYW1lIGFuZCBwYXNzd29yZCBiZWxvdw==</PHRASE>
+ <PHRASE Label="lu_register_text" Module="Proj-Base" Type="2">UmVnaXN0ZXIgd2l0aCBJbi1Qb3J0YWwgZm9yIGNvbnZlbmllbnQgYWNjZXNzIHRvIHVzZXIgYWNjb3VudCBzZXR0aW5ncyBhbmQgcHJlZmVyZW5jZXMu</PHRASE>
+ <PHRASE Label="lu_RegistrationCompleted" Module="Proj-Base" Type="0">VGhhbmsgWW91LiBSZWdpc3RyYXRpb24gY29tcGxldGVkLg==</PHRASE>
+ <PHRASE Label="lu_related_articles" Module="Proj-Base" Type="0">UmVsYXRlZCBhcnRpY2xlcw==</PHRASE>
+ <PHRASE Label="lu_related_categories" Module="Proj-Base" Type="0">UmVsYXRlZCBDYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="lu_related_cats" Module="Proj-Base" Type="0">UmVsYXRlZCBDYXRlZ29yaWVz</PHRASE>
+ <PHRASE Label="lu_related_links" Module="Proj-Base" Type="0">UmVsYXRlZCBMaW5rcw==</PHRASE>
+ <PHRASE Label="lu_related_news" Module="Proj-Base" Type="0">UmVsYXRlZCBOZXdz</PHRASE>
+ <PHRASE Label="lu_remember_login" Module="Proj-Base" Type="0">UmVtZW1iZXIgTG9naW4=</PHRASE>
+ <PHRASE Label="lu_remove" Module="Proj-Base" Type="0">UmVtb3Zl</PHRASE>
+ <PHRASE Label="lu_remove_from_favorites" Module="Proj-Base" Type="0">UmVtb3ZlIEZyb20gRmF2b3JpdGVz</PHRASE>
+ <PHRASE Label="lu_repeat_password" Module="Proj-Base" Type="0">UmVwZWF0IFBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="lu_replies" Module="Proj-Base" Type="0">UmVwbGllcw==</PHRASE>
+ <PHRASE Label="lu_reply" Module="Proj-Base" Type="0">UmVwbHk=</PHRASE>
+ <PHRASE Label="lu_required_field" Module="Proj-Base" Type="0">UmVxdWlyZWQgRmllbGQ=</PHRASE>
+ <PHRASE Label="lu_reset" Module="Proj-Base" Type="0">UmVzZXQ=</PHRASE>
+ <PHRASE Label="lu_resetpw_confirm_text" Module="Proj-Base" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIHJlc2V0IHRoZSBwYXNzd29yZD8=</PHRASE>
+ <PHRASE Label="lu_reset_confirm_text" Module="Proj-Base" Type="0">UGxlYXNlIGNvbmZpcm0gdGhhdCB5b3Ugd2FudCB0byByZXNldCB5b3VyIHBhc3N3b3JkLg==</PHRASE>
+ <PHRASE Label="lu_reviews" Module="Proj-Base" Type="0">UmV2aWV3cw==</PHRASE>
+ <PHRASE Label="lu_reviews_updated" Module="Proj-Base" Type="0">cmV2aWV3cyB1cGRhdGVk</PHRASE>
+ <PHRASE Label="lu_review_access_denied" Module="Proj-Base" Type="0">VW5hYmxlIHRvIHJldmlldywgYWNjZXNzIGRlbmllZA==</PHRASE>
+ <PHRASE Label="lu_review_article" Module="Proj-Base" Type="0">UmV2aWV3IGFydGljbGU=</PHRASE>
+ <PHRASE Label="lu_review_link" Module="Proj-Base" Type="0">UmV2aWV3IExpbms=</PHRASE>
+ <PHRASE Label="lu_review_news" Module="Proj-Base" Type="0">UmV2aWV3IG5ld3MgYXJ0aWNsZQ==</PHRASE>
+ <PHRASE Label="lu_review_this_article" Module="Proj-Base" Type="0">UmV2aWV3IHRoaXMgYXJ0aWNsZQ==</PHRASE>
+ <PHRASE Label="lu_rootcategory_name" Module="Proj-Base" Type="0">SG9tZQ==</PHRASE>
+ <PHRASE Label="lu_search" Module="Proj-Base" Type="0">U2VhcmNo</PHRASE>
+ <PHRASE Label="lu_searched_for" Module="Proj-Base" Type="0">U2VhcmNoZWQgRm9yOg==</PHRASE>
+ <PHRASE Label="lu_SearchProducts" Module="Proj-Base" Type="0">U2VhcmNoIFByb2R1Y3Rz</PHRASE>
+ <PHRASE Label="lu_searchtitle_article" Module="Proj-Base" Type="0">U2VhcmNoIEFydGljbGVz</PHRASE>
+ <PHRASE Label="lu_searchtitle_category" Module="Proj-Base" Type="0">U2VhcmNoIENhdGVnb3JpZXM=</PHRASE>
+ <PHRASE Label="lu_searchtitle_link" Module="Proj-Base" Type="0">U2VhcmNoIExpbmtz</PHRASE>
+ <PHRASE Label="lu_searchtitle_topic" Module="Proj-Base" Type="0">U2VhcmNoIFRvcGljcw==</PHRASE>
+ <PHRASE Label="lu_search_again" Module="Proj-Base" Type="0">U2VhcmNoIEFnYWlu</PHRASE>
+ <PHRASE Label="lu_search_error" Module="Proj-Base" Type="0">Rm9ybSBFcnJvcg==</PHRASE>
+ <PHRASE Label="lu_search_results" Module="Proj-Base" Type="0">U2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_search_tips_link" Module="Proj-Base" Type="0">U2VhcmNoIFRpcHM=</PHRASE>
+ <PHRASE Label="lu_search_type" Module="Proj-Base" Type="0">U2VhcmNoIFR5cGU=</PHRASE>
+ <PHRASE Label="lu_search_within" Module="Proj-Base" Type="0">U2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_see_also" Module="Proj-Base" Type="0">U2VlIEFsc28=</PHRASE>
+ <PHRASE Label="lu_select_language" Module="Proj-Base" Type="0">U2VsZWN0IExhbmd1YWdl</PHRASE>
+ <PHRASE Label="lu_select_theme" Module="Proj-Base" Type="0">U2VsZWN0IFRoZW1l</PHRASE>
+ <PHRASE Label="lu_select_username" Module="Proj-Base" Type="0">U2VsZWN0IFVzZXJuYW1l</PHRASE>
+ <PHRASE Label="lu_send" Module="Proj-Base" Type="0">U2VuZA==</PHRASE>
+ <PHRASE Label="lu_send_pm" Module="Proj-Base" Type="0">U2VuZCBQcml2YXRlIE1lc3NhZ2U=</PHRASE>
+ <PHRASE Label="lu_sent" Module="Proj-Base" Type="0">U2VudA==</PHRASE>
+ <PHRASE Label="lu_Sep" Module="Proj-Base" Type="0">U2Vw</PHRASE>
+ <PHRASE Label="lu_ShoppingCart" Module="Proj-Base" Type="0">U2hvcHBpbmcgQ2FydA==</PHRASE>
+ <PHRASE Label="lu_show" Module="Proj-Base" Type="0">U2hvdw==</PHRASE>
+ <PHRASE Label="lu_show_signature" Module="Proj-Base" Type="0">U2hvdyBTaWduYXR1cmU=</PHRASE>
+ <PHRASE Label="lu_show_user_signatures" Module="Proj-Base" Type="0">U2hvdyBNeSBTaWduYXR1cmU=</PHRASE>
+ <PHRASE Label="lu_SiteLead_Story" Module="Proj-Base" Type="0">U2l0ZSBMZWFkIFN0b3J5</PHRASE>
+ <PHRASE Label="lu_site_map" Module="Proj-Base" Type="0">U2l0ZSBNYXA=</PHRASE>
+ <PHRASE Label="lu_smileys" Module="Proj-Base" Type="0">U21pbGV5cw==</PHRASE>
+ <PHRASE Label="lu_sorted_list" Module="Proj-Base" Type="0">U29ydGVkIGxpc3Q=</PHRASE>
+ <PHRASE Label="lu_sort_by" Module="Proj-Base" Type="0">U29ydA==</PHRASE>
+ <PHRASE Label="lu_state" Module="Proj-Base" Type="0">U3RhdGU=</PHRASE>
+ <PHRASE Label="lu_street" Module="Proj-Base" Type="0">U3RyZWV0</PHRASE>
+ <PHRASE Label="lu_street2" Module="Proj-Base" Type="0">U3RyZWV0IDI=</PHRASE>
+ <PHRASE Label="lu_subaction_prompt" Module="Proj-Base" Type="0">QWxzbyBZb3UgQ2FuOg==</PHRASE>
+ <PHRASE Label="lu_subcats" Module="Proj-Base" Type="0">U3ViY2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="lu_subject" Module="Proj-Base" Type="0">U3ViamVjdA==</PHRASE>
+ <PHRASE Label="lu_submitting_to" Module="Proj-Base" Type="0">U3VibWl0dGluZyB0bw==</PHRASE>
+ <PHRASE Label="lu_subscribe_banned" Module="Proj-Base" Type="0">U3Vic2NyaXB0aW9uIGRlbmllZA==</PHRASE>
+ <PHRASE Label="lu_subscribe_confirm" Module="Proj-Base" Type="0">U3Vic2NyaXB0aW9uIENvbmZpcm1hdGlvbg==</PHRASE>
+ <PHRASE Label="lu_subscribe_confirm_prompt" Module="Proj-Base" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIHN1YnNjcmliZSB0byBvdXIgbWFpbGluZyBsaXN0PyAoWW91IGNhbiB1bnN1YnNjcmliZSBhbnkgdGltZSBieSBlbnRlcmluZyB5b3VyIGVtYWlsIG9uIHRoZSBmcm9udCBwYWdlKS4=</PHRASE>
+ <PHRASE Label="lu_subscribe_confirm_text" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciBzdWJzY3JpYmluZyB0byBvdXIgbWFpbGluZyBsaXN0IQ==</PHRASE>
+ <PHRASE Label="lu_subscribe_error" Module="Proj-Base" Type="0">Rm9ybSBFcnJvcg==</PHRASE>
+ <PHRASE Label="lu_subscribe_missing_address" Module="Proj-Base" Type="0">TWlzc2luZyBlbWFpbCBhZGRyZXNz</PHRASE>
+ <PHRASE Label="lu_subscribe_no_address" Module="Proj-Base" Type="0">RS1tYWlsIGFkZHJlc3MgbWlzc2luZyBvciBpbnZhbGlk</PHRASE>
+ <PHRASE Label="lu_subscribe_success" Module="Proj-Base" Type="0">U3Vic2NyaXB0aW9uIHN1Y2Nlc3NmdWw=</PHRASE>
+ <PHRASE Label="lu_subscribe_title" Module="Proj-Base" Type="0">U3Vic2NyaWJlZA==</PHRASE>
+ <PHRASE Label="lu_subscribe_unknown_error" Module="Proj-Base" Type="0">VW5kZWZpbmVkIGVycm9yIG9jY3VycmVkLCBzdWJzY3JpcHRpb24gbm90IGNvbXBsZXRlZA==</PHRASE>
+ <PHRASE Label="lu_suggest_category" Module="Proj-Base" Type="0">U3VnZ2VzdCBDYXRlZ29yeQ==</PHRASE>
+ <PHRASE Label="lu_suggest_category_pending" Module="Proj-Base" Type="0">Q2F0ZWdvcnkgU3VnZ2VzdGVkIChQZW5kaW5nIEFwcHJvdmFsKQ==</PHRASE>
+ <PHRASE Label="lu_suggest_error" Module="Proj-Base" Type="0">Rm9ybSBFcnJvcg==</PHRASE>
+ <PHRASE Label="lu_suggest_link" Module="Proj-Base" Type="0">U3VnZ2VzdCBMaW5r</PHRASE>
+ <PHRASE Label="lu_suggest_no_address" Module="Proj-Base" Type="0">RS1tYWlsIGFkZHJlc3MgbWlzc2luZyBvciBpbnZhbGlk</PHRASE>
+ <PHRASE Label="lu_suggest_success" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciBzdWdnZXN0aW5nIG91ciBzaXRlIHRv</PHRASE>
+ <PHRASE Label="lu_template_error" Module="Proj-Base" Type="0">VGVtcGxhdGUgRXJyb3I=</PHRASE>
+ <PHRASE Label="lu_TextUnsubscribe" Module="Proj-Base" Type="0">IFdlIGFyZSBzb3JyeSB5b3UgaGF2ZSB1bnN1YnNjcmliZWQgZnJvbSBvdXIgbWFpbGluZyBsaXN0</PHRASE>
+ <PHRASE Label="lu_text_keyword" Module="Proj-Base" Type="0">S2V5d29yZA==</PHRASE>
+ <PHRASE Label="lu_text_PasswordRequestConfirm" Module="Proj-Base" Type="0">UGxlYXNlIGNvbmZpcm0gdGhhdCB5b3Ugd2FudCB0byByZXNldCB5b3VyIHBhc3N3b3JkLg==</PHRASE>
+ <PHRASE Label="lu_ThankForSubscribing" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciBzdWJzY3JpYmluZyB0byBvdXIgbWFpbGluZyBsaXN0</PHRASE>
+ <PHRASE Label="lu_title_confirm" Module="Proj-Base" Type="0">Q29uZmlybWF0aW9u</PHRASE>
+ <PHRASE Label="lu_title_mailinglist" Module="Proj-Base" Type="0">TWFpbGluZyBMaXN0</PHRASE>
+ <PHRASE Label="lu_title_PasswordRequestConfirm" Module="Proj-Base" Type="0">UGFzc3dvcmQgUmVxdWVzdCBDb25maXJtYXRpb24=</PHRASE>
+ <PHRASE Label="lu_to" Module="Proj-Base" Type="0">VG8=</PHRASE>
+ <PHRASE Label="lu_top" Module="Proj-Base" Type="0">VG9wIFJhdGVk</PHRASE>
+ <PHRASE Label="lu_topics" Module="Proj-Base" Type="0">VG9waWNz</PHRASE>
+ <PHRASE Label="lu_topics_updated" Module="Proj-Base" Type="0">VG9waWNzIFVwZGF0ZWQ=</PHRASE>
+ <PHRASE Label="lu_topic_rate_confirm" Module="Proj-Base" Type="0">VG9waWMgUmF0aW5nIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_topic_rate_confirm_duplicate_text" Module="Proj-Base" Type="0">WW91IGhhdmUgYWxyZWFkeSByYXRlZCB0aGlzIHRvcGlj</PHRASE>
+ <PHRASE Label="lu_topic_rate_confirm_text" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciB2b3RpbmchICBZb3VyIGlucHV0IGhhcyBiZWVuIHJlY29yZGVkLg==</PHRASE>
+ <PHRASE Label="lu_topic_reply" Module="Proj-Base" Type="0">UG9zdCBSZXBseQ==</PHRASE>
+ <PHRASE Label="lu_topic_search_results" Module="Proj-Base" Type="0">VG9waWMgU2VhcmNoIFJlc3VsdHM=</PHRASE>
+ <PHRASE Label="lu_topic_updated" Module="Proj-Base" Type="0">VG9waWMgVXBkYXRlZA==</PHRASE>
+ <PHRASE Label="lu_top_rated" Module="Proj-Base" Type="0">VG9wIFJhdGVkIExpbmtz</PHRASE>
+ <PHRASE Label="lu_total_categories" Module="Proj-Base" Type="0">VG90YWwgQ2F0ZWdvcmllcw==</PHRASE>
+ <PHRASE Label="lu_total_links" Module="Proj-Base" Type="0">VG90YWwgbGlua3MgaW4gdGhlIGRhdGFiYXNl</PHRASE>
+ <PHRASE Label="lu_total_news" Module="Proj-Base" Type="0">VG90YWwgQXJ0aWNsZXM=</PHRASE>
+ <PHRASE Label="lu_total_topics" Module="Proj-Base" Type="0">VG90YWwgVG9waWNz</PHRASE>
+ <PHRASE Label="lu_true" Module="Proj-Base" Type="0">VHJ1ZQ==</PHRASE>
+ <PHRASE Label="lu_unknown_error" Module="Proj-Base" Type="0">U3lzdGVtIGVycm9yIGhhcyBvY2N1cmVk</PHRASE>
+ <PHRASE Label="lu_unsorted_list" Module="Proj-Base" Type="0">VW5zb3J0ZWQgbGlzdA==</PHRASE>
+ <PHRASE Label="lu_unsubscribe_confirm" Module="Proj-Base" Type="0">VW5zdWJzY3JpcHRpb24gQ29uZmlybWF0aW9u</PHRASE>
+ <PHRASE Label="lu_unsubscribe_confirm_prompt" Module="Proj-Base" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIHVuc3Vic2NyaWJlIGZyb20gb3VyIG1haWxpbmcgbGlzdD8gKFlvdSBjYW4gYWx3YXlzIHN1YnNjcmliZSBhZ2FpbiBieSBlbnRlcmluZyB5b3VyIGVtYWlsIGF0IHRoZSBob21lIHBhZ2Up</PHRASE>
+ <PHRASE Label="lu_unsubscribe_confirm_text" Module="Proj-Base" Type="0">V2UgYXJlIHNvcnJ5IHlvdSBoYXZlIHVuc3Vic2NyaWJlZCBmcm9tIG91ciBtYWlsaW5nIGxpc3Q=</PHRASE>
+ <PHRASE Label="lu_unsubscribe_title" Module="Proj-Base" Type="0">VW5zdWJzY3JpYmU=</PHRASE>
+ <PHRASE Label="lu_update" Module="Proj-Base" Type="0">VXBkYXRl</PHRASE>
+ <PHRASE Label="lu_username" Module="Proj-Base" Type="0">VXNlcm5hbWU=</PHRASE>
+ <PHRASE Label="lu_users_online" Module="Proj-Base" Type="0">VXNlcnMgT25saW5l</PHRASE>
+ <PHRASE Label="lu_user_already_exist" Module="Proj-Base" Type="0">QSB1c2VyIHdpdGggc3VjaCB1c2VybmFtZSBhbHJlYWR5IGV4aXN0cy4=</PHRASE>
+ <PHRASE Label="lu_user_and_email_already_exist" Module="Proj-Base" Type="0">QSB1c2VyIHdpdGggc3VjaCB1c2VybmFtZS9lLW1haWwgYWxyZWFkeSBleGlzdHMu</PHRASE>
+ <PHRASE Label="lu_user_exists" Module="Proj-Base" Type="0">VXNlciBhbHJlYWR5IGV4aXN0cw==</PHRASE>
+ <PHRASE Label="lu_user_pending_aproval" Module="Proj-Base" Type="0">UGVuZGluZyBSZWdpc3RyYXRpb24gQ29tcGxldGU=</PHRASE>
+ <PHRASE Label="lu_user_pending_aproval_text" Module="Proj-Base" Type="0">VGhhbmsgeW91IGZvciByZWdpc3RlcmluZy4gWW91ciByZWdpc3RyYXRpb24gaXMgcGVuZGluZyBhZG1pbmlzdHJhdGl2ZSBhcHByb3ZhbC4=</PHRASE>
+ <PHRASE Label="lu_VerifyPassword" Module="Proj-Base" Type="0">VmVyaWZ5IHBhc3N3b3Jk</PHRASE>
+ <PHRASE Label="lu_views" Module="Proj-Base" Type="0">Vmlld3M=</PHRASE>
+ <PHRASE Label="lu_view_flat" Module="Proj-Base" Type="0">VmlldyBGbGF0</PHRASE>
+ <PHRASE Label="lu_view_pm" Module="Proj-Base" Type="0">VmlldyBQTQ==</PHRASE>
+ <PHRASE Label="lu_view_profile" Module="Proj-Base" Type="0">VmlldyBVc2VyIFByb2ZpbGU=</PHRASE>
+ <PHRASE Label="lu_view_threaded" Module="Proj-Base" Type="0">VmlldyBUaHJlYWRlZA==</PHRASE>
+ <PHRASE Label="lu_view_your_profile" Module="Proj-Base" Type="0">VmlldyBZb3VyIFByb2ZpbGU=</PHRASE>
+ <PHRASE Label="lu_visit_DirectReferer" Module="Proj-Base" Type="0">RGlyZWN0IGFjY2VzcyBvciBib29rbWFyaw==</PHRASE>
+ <PHRASE Label="lu_votes" Module="Proj-Base" Type="0">Vm90ZXM=</PHRASE>
+ <PHRASE Label="lu_Warning" Module="Proj-Base" Type="0">V2FybmluZw==</PHRASE>
+ <PHRASE Label="lu_WeAcceptCards" Module="Proj-Base" Type="0">V2UgYWNjZXB0IGNyZWRpdCBjYXJkcw==</PHRASE>
+ <PHRASE Label="lu_wrote" Module="Proj-Base" Type="0">d3JvdGU=</PHRASE>
+ <PHRASE Label="lu_yes" Module="Proj-Base" Type="0">WWVz</PHRASE>
+ <PHRASE Label="lu_YourAccount" Module="Proj-Base" Type="0">WW91ciBBY2NvdW50</PHRASE>
+ <PHRASE Label="lu_YourCart" Module="Proj-Base" Type="0">U2hvcHBpbmcgQ2FydA==</PHRASE>
+ <PHRASE Label="lu_YourCurrency" Module="Proj-Base" Type="0">WW91ciBjdXJyZW5jeQ==</PHRASE>
+ <PHRASE Label="lu_YourLanguage" Module="Proj-Base" Type="0">WW91ciBMYW5ndWFnZQ==</PHRASE>
+ <PHRASE Label="lu_YourWishList" Module="Proj-Base" Type="0">WW91ciBXaXNoIExpc3Q=</PHRASE>
+ <PHRASE Label="lu_zip" Module="Proj-Base" Type="0">Wmlw</PHRASE>
+ <PHRASE Label="lu_ZipCode" Module="Proj-Base" Type="0">WklQIENvZGU=</PHRASE>
+ <PHRASE Label="lu_zip_code" Module="Proj-Base" Type="0">WklQIENvZGU=</PHRASE>
+ <PHRASE Label="lu_zoom" Module="Proj-Base" Type="0">Wm9vbQ==</PHRASE>
+ <PHRASE Label="my_account_title" Module="Proj-Base" Type="0">TXkgU2V0dGluZ3M=</PHRASE>
+ <PHRASE Label="Next Theme" Module="Proj-Base" Type="0">TmV4dCBUaGVtZQ==</PHRASE>
+ <PHRASE Label="Previous Theme" Module="Proj-Base" Type="0">UHJldmlvdXMgVGhlbWU=</PHRASE>
+ <PHRASE Label="test 1" Module="Proj-Base" Type="0">dGVzdCAy</PHRASE>
+ </PHRASES>
+ <EVENTS>
+ <EVENT MessageType="text" Event="CATEGORY.ADD" Type="0">U3ViamVjdDogQ2F0ZWdvcnkgYWRkZWQKCllvdXIgc3VnZ2VzdGVkIGNhdGVnb3J5ICI8aW5wOm1fY2F0ZWdvcnlfZmllbGQgX0ZpZWxkPSJOYW1lIiBfU3RyaXBIVE1MPSIxIi8+IiBoYXMgYmVlbiBhZGRlZC4=</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.ADD" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBhZGRlZAoKQSBjYXRlZ29yeSAiPGlucDptX2NhdGVnb3J5X2ZpZWxkIF9GaWVsZD0iTmFtZSIgX1N0cmlwSFRNTD0iMSIvPiIgaGFzIGJlZW4gYWRkZWQu</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.ADD.PENDING" Type="0"></EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.ADD.PENDING" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQ2F0ZWdvcnkgYWRkZWQgKHBlbmRpbmcpCgpBIGNhdGVnb3J5ICI8aW5wOm1fY2F0ZWdvcnlfZmllbGQgX0ZpZWxkPSJOYW1lIiBfU3RyaXBIVE1MPSIxIi8+IiBoYXMgYmVlbiBhZGRlZCwgcGVuZGluZyB5b3VyIGNvbmZpcm1hdGlvbi4gIFBsZWFzZSByZXZpZXcgdGhlIGNhdGVnb3J5IGFuZCBhcHByb3ZlIG9yIGRlbnkgaXQu</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.APPROVE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBhcHByb3ZlZAoKWW91ciBzdWdnZXN0ZWQgY2F0ZWdvcnkgIjxpbnA6bV9jYXRlZ29yeV9maWVsZCBfRmllbGQ9Ik5hbWUiIF9TdHJpcEhUTUw9IjEiLz4iIGhhcyBiZWVuIGFwcHJvdmVkLg==</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.APPROVE" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBhcHByb3ZlZAoKQSBjYXRlZ29yeSAiPGlucDptX2NhdGVnb3J5X2ZpZWxkIF9GaWVsZD0iTmFtZSIgX1N0cmlwSFRNTD0iMSIvPiIgaGFzIGJlZW4gYXBwcm92ZWQu</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.DELETE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBkZWxldGVkCgpBIGNhdGVnb3J5ICI8aW5wOm1fY2F0ZWdvcnlfZmllbGQgX0ZpZWxkPSJOYW1lIiBfU3RyaXBIVE1MPSIxIi8+IiBoYXMgYmVlbiBkZWxldGVkLg==</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.DELETE" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IEEgY2F0ZWdvcnkgaGFzIGJlZW4gZGVsZXRlZAoKQSBjYXRlZ29yeSAiPGlucDptX2NhdGVnb3J5X2ZpZWxkIF9GaWVsZD0iTmFtZSIgX1N0cmlwSFRNTD0iMSIvPiIgaGFzIGJlZW4gZGVsZXRlZC4=</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.DENY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBkZW5pZWQKCllvdXIgY2F0ZWdvcnkgc3VnZ2VzdGlvbiAiPGlucDptX2NhdGVnb3J5X2ZpZWxkIF9GaWVsZD0iTmFtZSIgX1N0cmlwSFRNTD0iMSIvPiIgaGFzIGJlZW4gZGVuaWVkLg==</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.DENY" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBkZW5pZWQKCkEgY2F0ZWdvcnkgIjxpbnA6bV9jYXRlZ29yeV9maWVsZCBfRmllbGQ9Ik5hbWUiIF9TdHJpcEhUTUw9IjEiLz4iIGhhcyBiZWVuIGRlbmllZC4=</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.MODIFY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBtb2RpZmllZAoKWW91ciBzdWdnZXN0ZWQgY2F0ZWdvcnkgIjxpbnA6bV9jYXRlZ29yeV9maWVsZCBfRmllbGQ9Ik5hbWUiIF9TdHJpcEhUTUw9IjEiLz4iIGhhcyBiZWVuIG1vZGlmaWVkLg==</EVENT>
+ <EVENT MessageType="text" Event="CATEGORY.MODIFY" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSBjYXRlZ29yeSBoYXMgYmVlbiBtb2RpZmllZAoKQSBjYXRlZ29yeSAiPGlucDptX2NhdGVnb3J5X2ZpZWxkIF9GaWVsZD0iTmFtZSIgX1N0cmlwSFRNTD0iMSIvPiIgaGFzIGJlZW4gbW9kaWZpZWQu</EVENT>
+ <EVENT MessageType="html" Event="COMMON.FOOTER" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IENvbW1vbiBGb290ZXIgVGVtcGxhdGUKCg==</EVENT>
+ <EVENT MessageType="text" Event="USER.ADD" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogSW4tcG9ydGFsIHJlZ2lzdHJhdGlvbgoKRGVhciA8aW5wOnRvdXNlciBfRmllbGQ9IkZpcnN0TmFtZSIgLz4gPGlucDp0b3VzZXIgX0ZpZWxkPSJMYXN0TmFtZSIgLz4sDQoNClRoYW5rIHlvdSBmb3IgcmVnaXN0ZXJpbmcgb24gPGlucDptX3BhZ2VfdGl0bGUgLz4uIFlvdXIgcmVnaXN0cmF0aW9uIGlzIG5vdyBhY3RpdmUu</EVENT>
+ <EVENT MessageType="text" Event="USER.ADD" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE5ldyB1c2VyIGhhcyBiZWVuIGFkZGVkCgpBIG5ldyB1c2VyICI8aW5wOnRvdXNlciBfRmllbGQ9IkxvZ2luIiAvPiIgaGFzIGJlZW4gYWRkZWQu</EVENT>
+ <EVENT MessageType="text" Event="USER.ADD.PENDING" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IEluLVBvcnRhbCBSZWdpc3RyYXRpb24KCkRlYXIgPGlucDp0b3VzZXIgX0ZpZWxkPSJGaXJzdE5hbWUiIC8+IDxpbnA6dG91c2VyIF9GaWVsZD0iTGFzdE5hbWUiIC8+LA0KDQpUaGFuayB5b3UgZm9yIHJlZ2lzdGVyaW5nIG9uIDxpbnA6bV9wYWdlX3RpdGxlIC8+LiBZb3VyIHJlZ2lzdHJhdGlvbiB3aWxsIGJlIGFjdGl2ZSBhZnRlciBhcHByb3ZhbC4=</EVENT>
+ <EVENT MessageType="text" Event="USER.ADD.PENDING" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IFVzZXIgcmVnaXN0ZXJlZAoKQSBuZXcgdXNlciAiPGlucDp0b3VzZXIgX0ZpZWxkPSJMb2dpbiIgLz4iIGhhcyByZWdpc3RlcmVkIGFuZCBpcyBwZW5kaW5nIGFkbWluaXN0cmF0aXZlIGFwcHJvdmFsLg==</EVENT>
+ <EVENT MessageType="text" Event="USER.APPROVE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogWW91IGhhdmUgYmVlbiBhcHByb3ZlZAoKV2VsY29tZSB0byBJbi1wb3J0YWwhDQpZb3VyIHVzZXIgcmVnaXN0cmF0aW9uIGhhcyBiZWVuIGFwcHJvdmVkLiBZb3VyIHVzZXIgbmFtZSBpcyAiPGlucDp0b3VzZXIgX0ZpZWxkPSJVc2VyTmFtZSIgLz4iLg==</EVENT>
+ <EVENT MessageType="text" Event="USER.APPROVE" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogVXNlciBhcHByb3ZlZAoKVXNlciAiPGlucDp0b3VzZXIgX0ZpZWxkPSJVc2VyTmFtZSIgLz4iIGhhcyBiZWVuIGFwcHJvdmVkLg==</EVENT>
+ <EVENT MessageType="text" Event="USER.DENY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQWNjZXNzIGRlbmllZAoKWW91ciByZWdpc3RyYXRpb24gdG8gPGlucDptX3BhZ2VfdGl0bGUgLz4gaGFzIGJlZW4gZGVuaWVkLg==</EVENT>
+ <EVENT MessageType="text" Event="USER.DENY" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogVXNlciBkZW5pZWQKClVzZXIgIjxpbnA6dG91c2VyIF9GaWVsZD0iVXNlck5hbWUiIC8+IiBoYXMgYmVlbiBkZW5pZWQu</EVENT>
+ <EVENT MessageType="text" Event="USER.MEMBERSHIP.EXPIRATION.NOTICE" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE1lbWJlcnNoaXAgZXhwaXJhdGlvbiBub3RpY2UKCk1lbWJlcnNoaXAgZXhwaXJhdGlvbiBub3RpY2U=</EVENT>
+ <EVENT MessageType="text" Event="USER.MEMBERSHIP.EXPIRATION.NOTICE" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE1lbWJlcnNoaXAgZXhwaXJhdGlvbiBub3RpY2UKCk1lbWJlcnNoaXAgZXhwaXJhdGlvbiBub3RpY2U=</EVENT>
+ <EVENT MessageType="text" Event="USER.MEMBERSHIP.EXPIRED" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE1lbWJlcnNoaXAgZXhwaXJlZAoKTWVtYmVyc2hpcCBleHBpcmVk</EVENT>
+ <EVENT MessageType="text" Event="USER.MEMBERSHIP.EXPIRED" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE1lbWJlcnNoaXAgZXhwaXJlZAoKTWVtYmVyc2hpcCBleHBpcmVk</EVENT>
+ <EVENT MessageType="text" Event="USER.PSWD" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTG9zdCBwYXNzd29yZAoKWW91ciBsb3N0IHBhc3N3b3JkIGhhcyBiZWVuIHJlc2V0LiBZb3VyIG5ldyBwYXNzd29yZCBpczogIjxpbnA6dG91c2VyIF9GaWVsZD0iUGFzc3dvcmQiIC8+Ii4=</EVENT>
+ <EVENT MessageType="text" Event="USER.PSWD" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTG9zdCBwYXNzd29yZAoKWW91ciBsb3N0IHBhc3N3b3JkIGhhcyBiZWVuIHJlc2V0LiBZb3VyIG5ldyBwYXNzd29yZCBpczogIjxpbnA6dG91c2VyIF9GaWVsZD0iUGFzc3dvcmQiIC8+Ii4=</EVENT>
+ <EVENT MessageType="text" Event="USER.PSWDC" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogUGFzc3dvcmQgcmVzZXQgY29uZmlybWF0aW9uCgpIZWxsbywNCg0KSXQgc2VlbXMgdGhhdCB5b3UgaGF2ZSByZXF1ZXN0ZWQgYSBwYXNzd29yZCByZXNldCBmb3IgeW91ciBJbi1wb3J0YWwgYWNjb3VudC4gSWYgeW91IHdvdWxkIGxpa2UgdG8gcHJvY2VlZCBhbmQgY2hhbmdlIHRoZSBwYXNzd29yZCwgcGxlYXNlIGNsaWNrIG9uIHRoZSBsaW5rIGJlbG93Og0KPGlucDptX2NvbmZpcm1fcGFzc3dvcmRfbGluayAvPg0KDQpZb3Ugd2lsbCByZWNlaXZlIGEgc2Vjb25kIGVtYWlsIHdpdGggeW91ciBuZXcgcGFzc3dvcmQgc2hvcnRseS4NCg0KSWYgeW91IGJlbGlldmUgeW91IGhhdmUgcmVjZWl2ZWQgdGhpcyBlbWFpbCBpbiBlcnJvciwgcGxlYXNlIGlnbm9yZSB0aGlzIGVtYWlsLiBZb3VyIHBhc3N3b3JkIHdpbGwgbm90IGJlIGNoYW5nZWQgdW5sZXNzIHlvdSBoYXZlIGNsaWNrZWQgb24gdGhlIGFib3ZlIGxpbmsuDQo=</EVENT>
+ <EVENT MessageType="text" Event="USER.SUBSCRIBE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogU3Vic2NyaXB0aW9uIGNvbmZpcm1hdGlvbgoKWW91IGhhdmUgc3Vic2NyaWJlZCB0byA8aW5wOm1fcGFnZV90aXRsZSAvPiBtYWlsaW5nIGxpc3Qu</EVENT>
+ <EVENT MessageType="text" Event="USER.SUBSCRIBE" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQSB1c2VyIGhhcyBzdWJzY3JpYmVkCgpBIHVzZXIgaGFzIHN1YnNjcmliZWQgdG8gPGlucDptX3BhZ2VfdGl0bGUgLz4gbWFpbGluZyBsaXN0Lg==</EVENT>
+ <EVENT MessageType="html" Event="USER.SUGGEST" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogQ2hlY2sgb3V0IHRoaXMgc2l0ZQoKSGksDQoNClRoaXMgbWVzc2FnZSBoYXMgYmVlbiBzZW50IHRvIHlvdSBmcm9tIG9uZSBvZiB5b3VyIGZyaWVuZHMuDQpDaGVjayBvdXQgdGhpcyBzaXRlOiA8YSBocmVmPSI8aW5wOm1fdGhlbWVfdXJsIF9wYWdlPSJjdXJyZW50Ii8+Ij48aW5wOm1fcGFnZV90aXRsZSAvPjwvYT4h</EVENT>
+ <EVENT MessageType="text" Event="USER.SUGGEST" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogVGhlIHNpdGUgaGFzIGJlZW4gc3VnZ2VzdGVkCgpBIHZpc2l0b3Igc3VnZ2VzdGVkIHlvdXIgc2l0ZSB0byBhIGZyaWVuZC4=</EVENT>
+ <EVENT MessageType="text" Event="USER.UNSUBSCRIBE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogWW91IGhhdmUgYmVlbiB1bnN1YnNjcmliZWQKCllvdSBoYXZlIHN1Y2Nlc3NmdWxseSB1bnN1YnNyaWJlZCBmcm9tIDxpbnA6bV9wYWdlX3RpdGxlIC8+IG1haWxpbmcgbGlzdC4=</EVENT>
+ <EVENT MessageType="text" Event="USER.UNSUBSCRIBE" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogVXNlciB1bnN1YnNyaWJlZAoKQSB1c2VyIGhhcyB1bnN1YnNjcmliZWQu</EVENT>
+ <EVENT MessageType="text" Event="USER.VALIDATE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogSW4tcG9ydGFsIHJlZ2lzdHJhdGlvbgoKV2VsY29tZSB0byBJbi1wb3J0YWwhDQpZb3VyIHVzZXIgcmVnaXN0cmF0aW9uIGhhcyBiZWVuIGFwcHJvdmVkLiBZb3VyIHVzZXIgbmFtZSBpcyAiPGlucDp0b3VzZXIgX0ZpZWxkPSJVc2VyTmFtZSIgLz4iIGFuZCB5b3VyIHBhc3N3b3JkIGlzICI8aW5wOnRvdXNlciBfRmllbGQ9InBhc3N3b3JkIiAvPiIuDQo=</EVENT>
+ <EVENT MessageType="text" Event="USER.VALIDATE" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogVXNlciB2YWxpZGF0ZWQKClVzZXIgIjxpbnA6dG91c2VyIF9GaWVsZD0iVXNlck5hbWUiIC8+IiBoYXMgYmVlbiB2YWxpZGF0ZWQu</EVENT>
+ </EVENTS>
+ </LANGUAGE>
+</LANGUAGES>
\ No newline at end of file
Property changes on: branches/unlabeled/unlabeled-1.2.2/core/install/english.lang
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.2
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property

Event Timeline