]> git.mxchange.org Git - friendica.git/commitdiff
Merge branch 'master' of github.com:fabrixxm/friendika
authorFabio Comuni <fabrix.xm@gmail.com>
Mon, 24 Jan 2011 08:38:05 +0000 (09:38 +0100)
committerFabio Comuni <fabrix.xm@gmail.com>
Mon, 24 Jan 2011 08:38:05 +0000 (09:38 +0100)
62 files changed:
boot.php
include/Scrape.php
include/bbcode.php
include/poller.php
mod/display.php
mod/follow.php
mod/item.php
mod/network.php
mod/profile.php
tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js
tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css
view/fr/cmnt_received_eml.tpl [new file with mode: 0644]
view/fr/contact_edit.tpl [new file with mode: 0644]
view/fr/cropbody.tpl [new file with mode: 0644]
view/fr/dfrn_req_confirm.tpl [new file with mode: 0644]
view/fr/directory_header.tpl [new file with mode: 0644]
view/fr/follow_notify_eml.tpl [new file with mode: 0644]
view/fr/friend_complete_eml.tpl [new file with mode: 0644]
view/fr/group_edit.tpl [new file with mode: 0644]
view/fr/group_new.tpl [new file with mode: 0644]
view/fr/head.tpl [new file with mode: 0644]
view/fr/htconfig.tpl [new file with mode: 0644]
view/fr/insecure_net.tpl [new file with mode: 0644]
view/fr/install_db.tpl [new file with mode: 0644]
view/fr/intro_complete_eml.tpl [new file with mode: 0644]
view/fr/intros-top.tpl [new file with mode: 0644]
view/fr/jot-header.tpl [new file with mode: 0644]
view/fr/jot.tpl [new file with mode: 0644]
view/fr/like.tpl [new file with mode: 0644]
view/fr/logout.tpl [new file with mode: 0644]
view/fr/lostpass.tpl [new file with mode: 0644]
view/fr/lostpass_eml.tpl [new file with mode: 0644]
view/fr/mail_received_eml.tpl [new file with mode: 0644]
view/fr/msg-header.tpl [new file with mode: 0644]
view/fr/netfriend.tpl [new file with mode: 0644]
view/fr/pagetypes.tpl [new file with mode: 0644]
view/fr/passchanged_eml.tpl [new file with mode: 0644]
view/fr/profile-hide-friends.tpl [new file with mode: 0644]
view/fr/profile-in-directory.tpl [new file with mode: 0644]
view/fr/profile-in-netdir.tpl [new file with mode: 0644]
view/fr/profile.php [new file with mode: 0644]
view/fr/profile_advanced.php [new file with mode: 0644]
view/fr/profile_edit.tpl [new file with mode: 0644]
view/fr/profile_entry_default.tpl [new file with mode: 0644]
view/fr/profile_listing_header.tpl [new file with mode: 0644]
view/fr/profile_photo.tpl [new file with mode: 0644]
view/fr/profile_tabs.tpl [new file with mode: 0644]
view/fr/pwdreset.tpl [new file with mode: 0644]
view/fr/register-link.tpl [new file with mode: 0644]
view/fr/register_open_eml.tpl [new file with mode: 0644]
view/fr/register_verify_eml.tpl [new file with mode: 0644]
view/fr/registrations-top.tpl [new file with mode: 0644]
view/fr/registrations.tpl [new file with mode: 0644]
view/fr/request_notify_eml.tpl [new file with mode: 0644]
view/fr/settings.tpl [new file with mode: 0644]
view/fr/settings_nick_set.tpl [new file with mode: 0644]
view/fr/settings_nick_subdir.tpl [new file with mode: 0644]
view/fr/settings_nick_unset.tpl [new file with mode: 0644]
view/fr/strings.php [new file with mode: 0644]
view/fr/wall_item_drop.tpl [new file with mode: 0644]
view/fr/wall_received_eml.tpl [new file with mode: 0644]
view/fr/wallwall_item.tpl [new file with mode: 0644]

index 05b33abd6ef93d1d4d3f5cea4e5e0e5d8e806065..45fd8d16fe9345ee89e27c6c9cedb241916be669 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1687,6 +1687,11 @@ function activity_match($haystack,$needle) {
 if(! function_exists('get_tags')) {
 function get_tags($s) {
        $ret = array();
+
+       // ignore anything in a code block
+
+       $s = preg_replace('/\[code\](.*?)\[\/code\]/sm','',$s);
+
        if(preg_match_all('/([@#][^ \x0D\x0A,:?]*)([ \x0D\x0A,:?]|$)/',$s,$match)) {
                foreach($match[1] as $match) {
                        if(strstr($match,"]")) {
index 10ec54d1347aa968ec35c3d9b1b9185ca61976dc..8478ea40714d389365522d02d685c7befbe51307 100644 (file)
@@ -22,6 +22,8 @@ function scrape_dfrn($url) {
 
        foreach($items as $item) {
                $x = $item->getAttribute('rel');
+               if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml'))
+                       $ret['feed_atom'] = $item->getAttribute('href');
                if(substr($x,0,5) == "dfrn-")
                        $ret[$x] = $item->getAttribute('href');
                if($x === 'lrdd') {
@@ -135,3 +137,31 @@ function scrape_vcard($url) {
 
        return $ret;
 }}
+
+
+if(! function_exists('scrape_feed')) {
+function scrape_feed($url) {
+
+       $ret = array();
+       $s = fetch_url($url);
+
+       if(! $s) 
+               return $ret;
+
+       $dom = HTML5_Parser::parse($s);
+
+       if(! $dom)
+               return $ret;
+
+       $items = $dom->getElementsByTagName('link');
+
+       // get Atom link elements
+
+       foreach($items as $item) {
+               $x = $item->getAttribute('rel');
+               if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml'))
+                       $ret['feed_atom'] = $item->getAttribute('href');
+       }
+
+       return $ret;
+}}
\ No newline at end of file
index 81b581cdbdde51672cf6277182afc1c1f2b1b196..9e5f5a3711c7504adea322981253c70de7f9f480 100644 (file)
@@ -22,7 +22,7 @@ function bbcode($Text) {
        // Perform URL Search
 
 
-       $Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$2" >$2</a>', $Text);
+       $Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]+)/", ' <a href="$2" >$2</a>', $Text);
 
        $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" >$1</a>', $Text);
        $Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" >$2</a>', $Text);
index 8234becbb92b95d7ec32dc3fef203f6314aa6abf..024b9fbcd38c0c6144c8a4751224e7e0f286f003 100644 (file)
        if(($argc > 1) && ($argv[1] == 'force'))
                $force = true;
 
+       if(($argc > 1) && intval($argv[1])) {
+               $manual_id = intval($argv[1]);
+               $force = true;
+       }
+
+       $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
+
        // 'stat' clause is a temporary measure until we have federation subscriptions working both directions
        $contacts = q("SELECT * FROM `contact` 
                WHERE ( ( `network` = 'dfrn' AND ( `dfrn-id` != '' OR (`issued-id` != '' AND `duplex` = 1)))
-               OR ( `network` IN ( 'stat', 'feed' ) AND `poll` != '' )) 
+               OR ( `network` IN ( 'stat', 'feed' ) AND `poll` != '' ))
+               $sql_extra 
                AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()");
 
        if(! count($contacts))
index de11ec35d65f08836f23d4a5838507fdb604f4f5..3215ae90a04958352fac8b7eb3e74298e731e7fa 100644 (file)
@@ -173,6 +173,9 @@ function display_content(&$a) {
 
                        $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
 
+                       // I think this is redundant now but too chicken to remove it unless
+                       // I've had six cups of coffee and tested it completely
+
                        if(($item['network'] === 'dfrn') && (! $item['self'] )) {
                                $profile_url = $redirect_url;
                                $sparkle = ' sparkle';
@@ -216,7 +219,18 @@ function display_content(&$a) {
                        $profile_name   = (((strlen($item['author-name']))   && $diff_author) ? $item['author-name']   : $item['name']);
                        $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $item['thumb']);
 
-                       $profile_link = $profile_url;
+                       // Can we use our special contact URL for this author? 
+
+                       if(strlen($item['author-link'])) {
+                               if((link_compare($item['author-link'],$item['url'])) && ($item['network'] === 'dfrn') && (! $item['self'])) {
+                                       $profile_link = $redirect_url;
+                                       $sparkle = ' sparkle';
+                               }
+                               else {
+                                       $profile_link = $item['author-link'];
+                                       $sparkle = '';
+                               }
+                       }
 
                        if(($item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
                                $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id']));
@@ -291,6 +305,9 @@ function display_content(&$a) {
                }
 
        }
+
+       $o .= '<div class="cc-license">' . t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.') . '</div>';
+
        return $o;
 }
 
index 14bdb9fc6d7d1809d11fa2026a3fd1c79f251cd6..e5eb7763bf620eea6a6248384de66e7e2422ebc5 100644 (file)
@@ -48,6 +48,8 @@ function follow_post(&$a) {
                }
        }
 
+       $network = 'stat';
+
        if($hcard) {
                $vcard = scrape_vcard($hcard);
 
@@ -63,13 +65,58 @@ function follow_post(&$a) {
        if(! $profile)
                $profile = $url;
 
-       // do we have enough information?
 
        if(! x($vcard,'fn'))
                if(x($vcard,'nick'))
                        $vcard['fn'] = $vcard['nick'];
 
+       if((! isset($vcard)) && (! $poll)) {
+
+               $ret = scrape_feed($url);
+
+               if(count($ret) && $ret['feed_atom']) {
+                       $poll = $ret['feed_atom'];
+                       $vcard = array();
+                       require_once('simplepie/simplepie.inc');
+                   $feed = new SimplePie();
+                       $xml = fetch_url($poll);
+
+               $feed->set_raw_data($xml);
+
+                   $feed->init();
+
+                       $vcard['photo'] = $feed->get_image_url();
+                       $author = $feed->get_author();
+                       if($author) {                   
+                               $vcard['fn'] = trim($author->get_name());
+                               $vcard['nick'] = strtolower($vcard['fn']);
+                               if(strpos($vcard['nick'],' '))
+                                       $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
+                               $email = $author->get_email();
+                       }
+                       else {
+                               $item = $feed->get_item(0);
+                               if($item) {
+                                       $author = $item->get_author();
+                                       if($author) {                   
+                                               $vcard['fn'] = trim($author->get_name());
+                                               $vcard['nick'] = strtolower($vcard['fn']);
+                                               if(strpos($vcard['nick'],' '))
+                                                       $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
+                                               $email = $author->get_email();
+                                       }
+                               }
+                       }
+                       if((! $vcard['photo']) && strlen($email))
+                               $vcard['photo'] = gravatar_img($email);
+                       $network = 'feed';
+        }
+       }
+
        logger('follow: poll=' . $poll . ' notify=' . $notify . ' profile=' . $profile . ' vcard=' . print_r($vcard,true));
+
+
+       // do we have enough information?
        
        if(! ((x($vcard['fn'])) && ($poll) && ($profile))) {
                notice( t('The profile address specified does not provide adequate information.') . EOL);
@@ -115,7 +162,7 @@ function follow_post(&$a) {
                        dbesc($vcard['fn']),
                        dbesc($vcard['nick']),
                        dbesc($vcard['photo']),
-                       dbesc('stat'),
+                       dbesc($network),
                        intval(REL_FAN)
                );
        }
@@ -158,6 +205,9 @@ function follow_post(&$a) {
 
        // pull feed and consume it, which should subscribe to the hub.
 
+       $php_path = ((x($a->config,'php_path') && strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
+       proc_close(proc_open("\"$php_path\" \"include/poller.php\" \"$contact_id\" &", array(), $foo));
+
 
        // create a follow slap
 
index f9bf9a04e066316bd971435de3e1cf0f3d484fb9..feef7c95f8f5f3cea88e23579110e81b292bd130 100644 (file)
@@ -165,7 +165,11 @@ function item_post(&$a) {
                }
        }
 
+       /**
+        * Fold multi-line [code] sequences
+        */
 
+       $body = preg_replace('/\[\/code\]\s*\[code\]/m',"\n",$body); 
 
        /**
         * Look for any tags and linkify them
@@ -228,7 +232,7 @@ function item_post(&$a) {
                                        }
                                }
                                if($profile) {
-                                       $body = str_replace($name,'[url=' . $profile . ']' . $newname   . '[/url]', $body);
+                                       $body = str_replace('@' . $name, '@' . '[url=' . $profile . ']' . $newname      . '[/url]', $body);
                                        $profile = str_replace(',','%2c',$profile);
                                        if(strlen($str_tags))
                                                $str_tags .= ',';
index 096c8a79ff1e45a59fdfb9ca5476b8eb40df0cca..f9badda78bada413e513d88920515e1bba751c77 100644 (file)
@@ -430,8 +430,10 @@ function network_content(&$a, $update = 0) {
                }
        }
 
-       if(! $update)
+       if(! $update) {
                $o .= paginate($a);
+               $o .= '<div class="cc-license">' . t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.') . '</div>';
+       }
 
        return $o;
 }
\ No newline at end of file
index 9363793604f2f8a6ab9463ab6cc37eef9bceb2d1..505edf5ced6be421a88b1d649066442d884d1a9c 100644 (file)
@@ -379,6 +379,8 @@ function profile_content(&$a, $update = 0) {
        }
                
        $o .= paginate($a);
+       $o .= '<div class="cc-license">' . t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.') . '</div>';
+
 
        return $o;
 }
index 8728f0c0f3286af70e31fccc17fd6d7436691019..f12975ba218e87258ed16f321774e1a981596dcf 100644 (file)
@@ -64,8 +64,8 @@
                        rep(/<u>/gi,"[u]");\r
                        rep(/<blockquote[^>]*>/gi,"[quote]");\r
                        rep(/<\/blockquote>/gi,"[/quote]");\r
-                       rep(/<br \/>/gi,"\n");\r
-                       rep(/<br\/>/gi,"\n");\r
+                       rep(/<br \/>/gi,"\n\n");\r
+                       rep(/<br\/>/gi,"\n\n");\r
                        rep(/<br>/gi,"\n");\r
                        rep(/<p>/gi,"");\r
                        rep(/<\/p>/gi,"\n");\r
@@ -98,6 +98,7 @@
                        rep(/\[url\](.*?)\[\/url\]/gi,"<a href=\"$1\">$1</a>");\r
                        rep(/\[img\](.*?)\[\/img\]/gi,"<img src=\"$1\" />");\r
                        rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<span style=\"color: $1;\">$2</span>");\r
+//                     rep(/\[\/code\]\s*\[code\]/gi,"<br />"); // fold multiline code\r
                        rep(/\[code\](.*?)\[\/code\]/gi,"<code>$1</code>");\r
                        rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<blockquote>$1</blockquote>");\r
 \r
index 36f38aba296a50bf8e8321df4d4b57ddc9a01c96..444063a828673aab64825e4e59a04fbd15f4e5e2 100644 (file)
@@ -18,6 +18,18 @@ del {color:red; text-decoration:line-through}
 cite {border-bottom:1px dashed blue}\r
 acronym {border-bottom:1px dotted #CCC; cursor:help}\r
 abbr {border-bottom:1px dashed #CCC; cursor:help}\r
+code {\r
+       font-family: Courier, monospace;\r
+       white-space: pre;\r
+       display: block;\r
+       overflow: auto;\r
+       border: 1px solid #444;\r
+       background: #EEE;\r
+       color: #444;\r
+       padding: 10px;\r
+       margin-top: 20px;\r
+}\r
+\r
 \r
 /* IE */\r
 * html body {\r
diff --git a/view/fr/cmnt_received_eml.tpl b/view/fr/cmnt_received_eml.tpl
new file mode 100644 (file)
index 0000000..d60fcd3
--- /dev/null
@@ -0,0 +1,18 @@
+
+Dear $username,
+
+       '$from' commented on an item/conversation which you have been following.
+
+-----
+$body
+-----
+
+Please login at $siteurl to view the complete conversation:
+
+$display
+
+Thank you,
+       $sitename administrator
+
+
diff --git a/view/fr/contact_edit.tpl b/view/fr/contact_edit.tpl
new file mode 100644 (file)
index 0000000..79a7651
--- /dev/null
@@ -0,0 +1,79 @@
+
+<h2>$header</h2>
+
+<div id="contact-edit-banner-name">$name</div>
+
+
+<div id="contact-edit-wrapper" >
+
+       <div id="contact-edit-photo-wrapper" >
+               <img id="contact-edit-direction-icon" src="$dir_icon" alt="$alt_text" title="$alt_text" />
+               <div id="contact-edit-photo" >
+                       <a href="$url" title="$visit" /><img src="$photo" $sparkle alt="$name" /></a>
+               </div>
+               <div id="contact-edit-photo-end" ></div>
+       </div>
+       <div id="contact-edit-nav-wrapper" >
+
+               <div id="contact-edit-links" >
+                       <a href="contacts/$contact_id/block" id="contact-edit-block-link" ><img src="images/b_block.gif" alt="$blockunblock" title="$block_text"/></a>
+                       <a href="contacts/$contact_id/ignore" id="contact-edit-ignore-link" ><img src="images/no.gif" alt="$ignorecont" title="$ignore_text"/></a>
+               </div>
+               <div id="contact-drop-links" >
+                       <a href="contacts/$contact_id/drop" id="contact-edit-drop-link" onclick="return confirmDelete();" ><img src="images/b_drophide.gif" alt="$delete" title="$delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" /></a>
+               </div>
+               <div id="contact-edit-nav-end"></div>
+               <div id="contact-edit-poll-wrapper">
+                       <div id="contact-edit-last-update-text">$lastupdtext<span id="contact-edit-last-updated">$last_update</span</div>
+                       <div id="contact-edit-poll-text">$updpub</div>
+                       $poll_interval
+               </div>
+       </div>
+       <div id="contact-edit-end" ></div>
+
+$insecure
+$blocked
+$ignored
+
+<form action="contacts/$contact_id" method="post" >
+<input type="hidden" name="contact_id" value="$contact_id">
+
+<div id="contact-edit-info-wrapper">
+<h4>Contact Information / Notes</h4>
+<textarea id="contact-edit-info" rows="10" cols="72" name="info" >$info</textarea>
+</div>
+<div id="contact-edit-info-end"></div>
+
+<input class="contact-edit-submit" type="submit" name="submit" value="Submit" />
+
+<div id="contact-edit-profile-select-text">
+<h4>Profile Visibility</h4>
+<p>Please choose the profile you would like to display to $name when viewing your profile securely.
+</p> 
+</div>
+$profile_select
+<div id="contact-edit-profile-select-end"></div>
+
+<input class="contact-edit-submit" type="submit" name="submit" value="Submit" />
+
+
+<div id="contact-edit-rating-wrapper">
+<h4>Online Reputation</h4>
+<p>
+Occasionally your friends may wish to inquire about this person's online legitimacy. You may help them choose whether or not to interact with this person by providing a 'reputation' to guide them.
+</p>
+<div id="contact-edit-rating-select-wrapper">
+$rating
+</div>
+<div id="contact-edit-rating-explain">
+<p>
+Please take a moment to elaborate on this selection if you feel it could be helpful to others.
+</p>
+<textarea id="contact-edit-rating-text" name="reason" rows="3" cols="64" >$reason</textarea>
+</div>
+</div>
+$groups
+
+<input class="contact-edit-submit" type="submit" name="submit" value="Submit" />
+</form>
+</div>
diff --git a/view/fr/cropbody.tpl b/view/fr/cropbody.tpl
new file mode 100644 (file)
index 0000000..39395af
--- /dev/null
@@ -0,0 +1,57 @@
+<h1>Crop Image</h1>
+<p id="cropimage-desc">
+Please adjust the image cropping for optimum viewing.
+</p>
+<div id="cropimage-wrapper">
+<img src="$image_url" id="croppa" class="imgCrop" alt="" />
+</div>
+<div id="cropimage-preview-wrapper" >
+<div id="previewWrap" ></div>
+</div>
+
+<script type="text/javascript" language="javascript">
+
+       function onEndCrop( coords, dimensions ) {
+               $( 'x1' ).value = coords.x1;
+               $( 'y1' ).value = coords.y1;
+               $( 'x2' ).value = coords.x2;
+               $( 'y2' ).value = coords.y2;
+               $( 'width' ).value = dimensions.width;
+               $( 'height' ).value = dimensions.height;
+       }
+
+       Event.observe( window, 'load', function() {
+               new Cropper.ImgWithPreview(
+               'croppa',
+               {
+                       previewWrap: 'previewWrap',
+                       minWidth: 175,
+                       minHeight: 175,
+                       maxWidth: 640,
+                       maxHeight: 640,
+                       ratioDim: { x: 100, y:100 },
+                       displayOnInit: true,
+                       onEndCrop: onEndCrop
+               }
+               );
+       }
+       );
+
+</script>
+
+<form action="profile_photo/$resource" id="crop-image-form" method="post" />
+
+<input type="hidden" name="imagename" value="$hash" />
+<input type="hidden" name="cropfinal" value="1" />
+<input type="hidden" name="xstart" id="x1" />
+<input type="hidden" name="ystart" id="y1" />
+<input type="hidden" name="xfinal" id="x2" />
+<input type="hidden" name="yfinal" id="y2" />
+<input type="hidden" name="height" id="height" />
+<input type="hidden" name="width"  id="width" />
+
+<div id="crop-image-submit-wrapper" >
+<input type="submit" name="submit" value="Done Editing" />
+</div>
+
+</form>
diff --git a/view/fr/dfrn_req_confirm.tpl b/view/fr/dfrn_req_confirm.tpl
new file mode 100644 (file)
index 0000000..f053f22
--- /dev/null
@@ -0,0 +1,17 @@
+
+<p id="dfrn-request-homecoming" >
+Welcome home $username. 
+<br />
+Please confirm your introduction to $dfrn_url.
+
+</p>
+<form id="dfrn-request-homecoming-form" action="dfrn_request/$nickname" method="post"> 
+<input type="hidden" name="dfrn_url" value="$dfrn_url" />
+<input type="hidden" name="confirm_key" value="$confirm_key" />
+<input type="hidden" name="localconfirm" value="1" />
+$aes_allow
+
+<div id="dfrn-request-homecoming-submit-wrapper" >
+<input id="dfrn-request-homecoming-submit" type="submit" name="submit" value="Confirm" />
+</div>
+</form>
\ No newline at end of file
diff --git a/view/fr/directory_header.tpl b/view/fr/directory_header.tpl
new file mode 100644 (file)
index 0000000..03eed62
--- /dev/null
@@ -0,0 +1,14 @@
+<h1>Site Directory</h1>
+
+$globaldir
+
+$finding
+
+<div id="directory-search-wrapper">
+<form id="directory-search-form" action="directory" method="get" >
+<input type="text" name="search" id="directory-search" class="search-input" onfocus="this.select();" value="$search" />
+<input type="submit" name="submit" id="directory-search-submit" value="Find" />
+</form>
+</div>
+<div id="directory-search-end"></div>
+
diff --git a/view/fr/follow_notify_eml.tpl b/view/fr/follow_notify_eml.tpl
new file mode 100644 (file)
index 0000000..ae758c9
--- /dev/null
@@ -0,0 +1,14 @@
+
+Dear $myname,
+
+You have a new follower at $sitename -  '$requestor'.
+
+You may visit their profile at $url.
+
+Please login to your site to approve or ignore/cancel the request.
+
+$siteurl
+
+Regards,
+
+       $sitename administrator
\ No newline at end of file
diff --git a/view/fr/friend_complete_eml.tpl b/view/fr/friend_complete_eml.tpl
new file mode 100644 (file)
index 0000000..ab12fcb
--- /dev/null
@@ -0,0 +1,22 @@
+
+Dear $username,
+
+       Great news... '$fn' at '$dfrn_url' has accepted 
+your connection request at '$sitename'.
+
+You are now mutual friends and may exchange status updates, photos, and email
+without restriction.
+
+Please visit your 'Contacts' page at $sitename if you wish to make 
+any changes to this relationship. 
+
+$siteurl
+
+[For instance, you may create a separate profile with information that is not
+available to the general public - and assign viewing rights to '$fn'].
+
+Sincerely,
+
+       $sitename Administrator
+
diff --git a/view/fr/group_edit.tpl b/view/fr/group_edit.tpl
new file mode 100644 (file)
index 0000000..e6c7afb
--- /dev/null
@@ -0,0 +1,24 @@
+<h2>Group Editor</h2>
+
+
+<div id="group-edit-wrapper" >
+<form action="group/$gid" id="group-edit-form" method="post" >
+<div id="group-edit-name-wrapper" >
+<label id="group-edit-name-label" for="group-edit-name" >Group Name: </label>
+<input type="text" id="group-edit-name" name="groupname" value="$name" />
+</div>
+<div id="group-edit-name-end"></div>
+<div id="group-edit-select-wrapper" >
+<label id="group_members_select_label"  for="group_members_select" >Members:</label>
+$selector
+
+</div>
+$drop
+<div id="group_members_select_end"></div>
+<div id="group-edit-submit-wrapper" >
+<input type="submit" name="submit" value="Submit" >
+</div>
+
+<div id="group-edit-select-end" ></div>
+</form>
+</div>
diff --git a/view/fr/group_new.tpl b/view/fr/group_new.tpl
new file mode 100644 (file)
index 0000000..a1efa77
--- /dev/null
@@ -0,0 +1,23 @@
+
+
+
+<div id="group-new-wrapper" >
+<form action="group/new" method="post">
+
+<div id="group-new-text">
+<p>
+Create a group of contacts/friends.
+
+<div id="group-new-input-wrapper">
+<label id="group-new-label" for="group-new-name" >Group Name: </label>
+<input name="groupname" id="group-new-name" />
+</div>
+<div id="group-new-input-end" ></div>
+
+<div id="group-new-submit-wrapper" >
+<input type="submit" name="submit" value="Submit" />
+</form>
+</div>
+<div id="group-new-end"></div>
+
\ No newline at end of file
diff --git a/view/fr/head.tpl b/view/fr/head.tpl
new file mode 100644 (file)
index 0000000..04dd39b
--- /dev/null
@@ -0,0 +1,32 @@
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+<base href="$baseurl" />
+<meta name="generator" content="$generator" />
+<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
+<link rel="shortcut icon" href="$baseurl/images/ff-32.jpg">
+
+<!--[if IE]>
+<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
+<![endif]-->
+<script type="text/javascript" src="$baseurl/include/jquery.js" ></script>
+<script type="text/javascript" src="$baseurl/include/main.js" ></script>
+<script>
+
+       function confirmDelete() { return confirm("Delete this item?"); }
+       function commentOpen(obj,id) {
+               if(obj.value == 'Comment') {
+                       obj.value = '';
+                       obj.className = "comment-edit-text-full";
+                       openMenu("comment-edit-submit-wrapper-" + id);
+               }
+       }
+       function commentClose(obj,id) {
+               if(obj.value == '') {
+                       obj.value = 'Comment';
+                       obj.className="comment-edit-text-empty";
+                       closeMenu("comment-edit-submit-wrapper-" + id);
+               }
+       }
+
+</script>
+
+
diff --git a/view/fr/htconfig.tpl b/view/fr/htconfig.tpl
new file mode 100644 (file)
index 0000000..c7c19bf
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+
+// Set the following for your MySQL installation
+// Copy or rename this file to .htconfig.php
+
+$db_host = '$dbhost';
+$db_user = '$dbuser';
+$db_pass = '$dbpass';
+$db_data = '$dbdata';
+
+// If you are using a subdirectory of your domain you will need to put the
+// relative path (from the root of your domain) here.
+// For instance if your URL is 'http://example.com/directory/subdirectory',
+// set $a->path to 'directory/subdirectory'. 
+
+$a->path = '$urlpath';
+// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
+// It can be changed later and only applies to timestamps for anonymous viewers.
+
+$default_timezone = '$timezone';
+
+// What is your site name?
+
+$a->config['sitename'] = "My Friend Network";
+
+// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
+// Be certain to create your own personal account before setting 
+// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on 
+// the registration page. REGISTER_APPROVE requires you set 'admin_email'
+// to the email address of an already registered person who can authorise
+// and/or approve/deny the request.
+
+$a->config['register_policy'] = REGISTER_OPEN;
+$a->config['register_text'] = '';
+$a->config['admin_email'] = '';
+
+// Maximum size of an imported message, 0 is unlimited
+
+$a->config['max_import_size'] = 10000;
+
+// maximum size of uploaded photos
+
+$a->config['system']['maximagesize'] = 800000;
+
+// Location of PHP command line processor
+
+$a->config['php_path'] = '$phpath';
+
+// Location of global directory submission page.
+
+$a->config['system']['directory_submit_url'] = 'http://dir.friendika.com/submit';
+$a->config['system']['directory_search_url'] = 'http://dir.friendika.com/directory?search=';
+
+// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
+
+$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
+
+// Server-to-server private message encryption (RINO) is allowed by default. 
+// Encryption will only be provided if this setting is true and the
+// PHP mcrypt extension is installed on both systems 
+
+$a->config['system']['rino_encrypt'] = true;
+
diff --git a/view/fr/insecure_net.tpl b/view/fr/insecure_net.tpl
new file mode 100644 (file)
index 0000000..5628639
--- /dev/null
@@ -0,0 +1,6 @@
+<div id="profile-edit-insecure">
+<p>
+The social network that $name belongs to is an open network with limited or non-existent privacy controls. 
+Please use appropriate discretion.
+</p>
+</div>
\ No newline at end of file
diff --git a/view/fr/install_db.tpl b/view/fr/install_db.tpl
new file mode 100644 (file)
index 0000000..c413689
--- /dev/null
@@ -0,0 +1,40 @@
+
+<h3>Friendika Social Network</h3>
+<h3>Installation</h3>
+
+<p>
+In order to install Friendika we need to know how to contact your database. Please contact your hosting provider or site administrator if you have questions about these settings. The database you specify below must already exist. If it does not, please create it before continuing. 
+</p>
+
+<form id="install-form" action="$baseurl/install" method="post">
+
+<input type="hidden" name="phpath" value="$phpath" />
+
+<label for="install-dbhost" id="install-dbhost-label">Database Server Name</label>
+<input type="text" name="dbhost" id="install-dbhost" value="$dbhost" />
+<div id="install-dbhost-end"></div>
+
+<label for="install-dbuser" id="install-dbuser-label">Database Login Name</label>
+<input type="text" name="dbuser" id="install-dbuser" value="$dbuser" />
+<div id="install-dbuser-end"></div>
+
+<label for="install-dbpass" id="install-dbpass-label">Database Login Password</label>
+<input type="password" name="dbpass" id="install-dbpass" value="$dbpass" />
+<div id="install-dbpass-end"></div>
+
+<label for="install-dbdata" id="install-dbdata-label">Database Name</label>
+<input type="text" name="dbdata" id="install-dbdata"  value="$dbdata" />
+<div id="install-dbdata-end"></div>
+
+<div id="install-tz-desc">
+Please select a default timezone for your website
+</div>
+
+$tzselect
+
+<div id="install-tz-end" ></div>
+<input id="install-submit" type="submit" name="submit" value="$submit" /> 
+
+</form>
+<div id="install-end" ></div>
+
diff --git a/view/fr/intro_complete_eml.tpl b/view/fr/intro_complete_eml.tpl
new file mode 100644 (file)
index 0000000..a60745e
--- /dev/null
@@ -0,0 +1,22 @@
+
+Dear $username,
+
+       '$fn' at '$dfrn_url' has accepted 
+your connection request at '$sitename'.
+
+       '$fn' has chosen to accept you a "fan", which restricts 
+some forms of communication - such as private messaging and some profile
+interactions. If this is a celebrity or community page, these settings were
+applied automatically.
+
+       '$fn' may choose to extend this into a two-way or more permissive 
+relationship in the future. 
+
+       You will start receiving public status updates from '$fn', 
+which will appear on your 'Network' page at  
+
+$siteurl
+
+Sincerely,
+
+       $sitename Administrator
diff --git a/view/fr/intros-top.tpl b/view/fr/intros-top.tpl
new file mode 100644 (file)
index 0000000..d8b7394
--- /dev/null
@@ -0,0 +1,7 @@
+<h1>Pending Friend/Connect Notifications</h1>
+
+<div id="notification-show-hide-wrapper" >
+<a href="$hide_url" id="notification-show-hide-link">$hide_text</a>
+</div>
+
+
diff --git a/view/fr/jot-header.tpl b/view/fr/jot-header.tpl
new file mode 100644 (file)
index 0000000..b687f65
--- /dev/null
@@ -0,0 +1,132 @@
+
+<script language="javascript" type="text/javascript" src="$baseurl/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
+<script language="javascript" type="text/javascript">
+
+tinyMCE.init({
+       theme : "advanced",
+       mode : "specific_textareas",
+       editor_selector: /(profile-jot-text|prvmail-text)/,
+       plugins : "bbcode",
+       theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect",
+       theme_advanced_buttons2 : "",
+       theme_advanced_buttons3 : "",
+       theme_advanced_toolbar_location : "top",
+       theme_advanced_toolbar_align : "center",
+       theme_advanced_blockformats : "blockquote,code",
+       entity_encoding : "raw",
+       add_unload_trigger : false,
+       remove_linebreaks : false,
+       force_p_newlines : false,
+       force_br_newlines : true,
+       forced_root_block : '',
+       convert_urls: false,
+       content_css: "$baseurl/view/custom_tinymce.css",
+            //Character count
+       theme_advanced_path : false,
+       setup : function(ed) {
+               ed.onKeyUp.add(function(ed, e) {
+                       var txt = tinyMCE.activeEditor.getContent();
+                       var text = txt.length;
+                       if(txt.length <= 140) {
+                               $('#character-counter').removeClass('red');
+                               $('#character-counter').removeClass('orange');
+                               $('#character-counter').addClass('grey');
+                       }
+                       if((txt.length > 140) && (txt .length <= 420)) {
+                               $('#character-counter').removeClass('grey');
+                               $('#character-counter').removeClass('red');
+                               $('#character-counter').addClass('orange');
+                       }
+                       if(txt.length > 420) {
+                               $('#character-counter').removeClass('grey');
+                               $('#character-counter').removeClass('orange');
+                               $('#character-counter').addClass('red');
+                       }
+                       $('#character-counter').text(text);
+               });
+       }
+});
+
+</script>
+<script type="text/javascript" src="include/ajaxupload.js" ></script>
+<script>
+       $(document).ready(function() {
+               var uploader = new window.AjaxUpload(
+                       'wall-image-upload',
+                       { action: 'wall_upload/$nickname',
+                               name: 'userfile',
+                               onSubmit: function(file,ext) { $('#profile-rotator').show(); },
+                               onComplete: function(file,response) {
+                                       tinyMCE.execCommand('mceInsertRawHTML',false,response);
+                                       $('#profile-rotator').hide();
+                               }                                
+                       }
+               );
+               $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
+                       var selstr;
+                       $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
+                               selstr = $(this).text();
+                               $('#profile-jot-perms img').attr('src', 'images/lock_icon.gif');
+
+                       });
+                       if(selstr == null)
+                               $('#profile-jot-perms img').attr('src', 'images/unlock_icon.gif');
+
+               }).trigger('change');
+
+       });
+
+       function jotGetLink() {
+               reply = prompt("Please enter a link URL:");
+               if(reply && reply.length) {
+                       $('#profile-rotator').show();
+                       $.get('parse_url?url=' + reply, function(data) {
+                               tinyMCE.execCommand('mceInsertRawHTML',false,data);
+                               $('#profile-rotator').hide();
+                       });
+               }
+       }
+
+       function jotGetVideo() {
+               reply = prompt("Please enter a YouTube link:");
+               if(reply && reply.length) {
+                       tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]');
+               }
+       }
+
+       function jotGetLocation() {
+               reply = prompt("Where are you right now?", $('#jot-location').val());
+               if(reply && reply.length) {
+                       $('#jot-location').val(reply);
+               }
+       }
+
+
+       function linkdropper(event) {
+               var linkFound = event.dataTransfer.types.contains("text/uri-list");
+               if(linkFound)
+                       event.preventDefault();
+       }
+
+       function linkdrop(event) {
+               var reply = event.dataTransfer.getData("text/uri-list");
+               event.target.textContent = reply;
+               event.preventDefault();
+               if(reply && reply.length) {
+                       $('#profile-rotator').show();
+                       $.get('parse_url?url=' + reply, function(data) {
+                               tinyMCE.execCommand('mceInsertRawHTML',false,data);
+                               $('#profile-rotator').hide();
+                       });
+               }
+       }
+
+       function jotClearLocation() {
+               $('#jot-coord').val('');
+               $('#profile-nolocation-wrapper').hide();
+       }
+
+       $geotag
+
+</script>
+
diff --git a/view/fr/jot.tpl b/view/fr/jot.tpl
new file mode 100644 (file)
index 0000000..6590cac
--- /dev/null
@@ -0,0 +1,45 @@
+
+<div id="profile-jot-wrapper" >
+       <div id="profile-jot-banner-wrapper">
+               <div id="profile-jot-desc" >&nbsp;</div>
+               <div id="character-counter" class="grey"></div>
+       </div>
+       <div id="profile-jot-banner-end"></div>
+
+       <form id="profile-jot-form" action="item" method="post" >
+               <input type="hidden" name="type" value="wall" />
+               <input type="hidden" name="profile_uid" value="$profile_uid" />
+               <input type="hidden" name="return" value="$return_path" />
+               <input type="hidden" name="location" id="jot-location" value="$defloc" />
+               <input type="hidden" name="coord" id="jot-coord" value="" />
+
+               <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" ></textarea>
+
+<div id="profile-jot-submit-wrapper" >
+<input type="submit" id="profile-jot-submit" name="submit" value="Share" />
+       <div id="profile-upload-wrapper" style="display: $visitor;" >
+               <div id="wall-image-upload-div" ><img id="wall-image-upload" src="images/camera-icon.gif" alt="Upload Photo" title="Upload Photo"  /></div>
+       </div> 
+       <div id="profile-link-wrapper" style="display: $visitor;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >
+               <img id="profile-link" src="images/link-icon.gif" alt="Insert web link" title="Insert web link" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink();" />
+       </div> 
+       <div id="profile-youtube-wrapper" style="display: $visitor;" >
+               <img id="profile-video" src="images/youtube_icon.gif" alt="Insert YouTube video" title="Insert YouTube video" onclick="jotGetVideo();" />
+       </div> 
+       <div id="profile-location-wrapper" style="display: $visitor;" >
+               <img id="profile-location" src="images/globe.gif" alt="Set your location" title="Set your location" onclick="jotGetLocation();" />
+       </div> 
+       <div id="profile-nolocation-wrapper" style="display: none;" >
+               <img id="profile-nolocation" src="images/noglobe.gif" alt="Clear Browser Location" title="Clear Browser Location" onclick="jotClearLocation();" />
+       </div> 
+       <div id="profile-rotator-wrapper" style="display: $visitor;" >
+               <img id="profile-rotator" src="images/rotator.gif" alt="Please wait" title="Please wait" style="display: none;" />
+       </div> 
+       <div id="profile-jot-perms" class="profile-jot-perms" style="display: $visitor;" ><img id="jot-perms-icon" src="images/$lockstate_icon.gif"  alt="Permission Settings" title="Permission Settings" onClick="openClose('profile-jot-acl-wrapper');" />$bang</div>
+       <div id="profile-jot-perms-end"></div>
+       <div id="profile-jot-acl-wrapper" style="display: none;" >$acl</div>
+</div>
+
+<div id="profile-jot-end"></div>
+</form>
+</div>
diff --git a/view/fr/like.tpl b/view/fr/like.tpl
new file mode 100644 (file)
index 0000000..1c385e5
--- /dev/null
@@ -0,0 +1,5 @@
+<div class="wall-item-like-buttons" id="wall-item-like-buttons-$id">
+                               <img src="images/like.gif" alt="I like this" title="I like this [toggle]" onclick="dolike($id,'like');" />
+                               <img src="images/dislike.gif" alt="I don't like this" title="I don't like this [toggle]" onclick="dolike($id,'dislike');" />
+                               <img id="like-rotator-$id" class="like-rotator" src="images/rotator.gif" alt="Please wait" title="Please wait" style="display: none;" />
+                       </div>
diff --git a/view/fr/logout.tpl b/view/fr/logout.tpl
new file mode 100644 (file)
index 0000000..9a6c1d7
--- /dev/null
@@ -0,0 +1,6 @@
+<form action="" method="post" >
+<div class="logout-wrapper">
+<input type="hidden" name="auth-params" value="logout" />
+<input type="submit" name="submit" id="logout-button" value="Logout" />
+</div>
+</form>
diff --git a/view/fr/lostpass.tpl b/view/fr/lostpass.tpl
new file mode 100644 (file)
index 0000000..a7040c1
--- /dev/null
@@ -0,0 +1,18 @@
+<h3>Forgot your Password?</h3>
+
+<p id="lostpass-desc">
+Enter your email address and submit to have your password reset. Then check your email for further instructions.
+</p>
+
+<form action="lostpass" method="post" >
+<div id="login-name-wrapper">
+        <label for="login-name" id="label-login-name">Nickname or Email: </label>
+        <input type="text" maxlength="60" name="login-name" id="login-name" value="" />
+</div>
+<div id="login-extra-end"></div>
+<div id="login-submit-wrapper" >
+        <input type="submit" name="submit" id="lostpass-submit-button" value="Reset" />
+</div>
+<div id="login-submit-end"></div>
+</form>
+
diff --git a/view/fr/lostpass_eml.tpl b/view/fr/lostpass_eml.tpl
new file mode 100644 (file)
index 0000000..c350236
--- /dev/null
@@ -0,0 +1,32 @@
+
+Dear $username,
+       A request was recently received at $sitename to reset your account 
+password. In order to confirm this request, please select the verification link
+below or paste it into your web browser address bar. 
+
+If you did NOT request this change, please DO NOT follow the link
+provided and ignore and/or delete this email. 
+
+Your password will not be changed unless we can verify that you
+issued this request. 
+
+Follow this link to verify your identity:
+
+$reset_link
+
+You will then receive a follow-up message containing the new password.
+
+You may change that password from your account settings page after logging in.
+
+The login details are as follows:
+
+Site Location: $siteurl
+Login Name:    $email
+
+
+
+
+Sincerely,
+       $sitename Administrator
+
diff --git a/view/fr/mail_received_eml.tpl b/view/fr/mail_received_eml.tpl
new file mode 100644 (file)
index 0000000..261aec4
--- /dev/null
@@ -0,0 +1,16 @@
+
+Dear $username,
+
+       You've received a new private message at $sitename from '$from'.
+-----
+$title
+-----
+$body
+-----
+Please login at $siteurl to read and reply to your private messages.
+
+Thank you,
+       $sitename administrator
+
+
diff --git a/view/fr/msg-header.tpl b/view/fr/msg-header.tpl
new file mode 100644 (file)
index 0000000..3d2567f
--- /dev/null
@@ -0,0 +1,100 @@
+
+<script language="javascript" type="text/javascript" src="$baseurl/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
+<script language="javascript" type="text/javascript">
+
+tinyMCE.init({
+       theme : "advanced",
+       mode : "specific_textareas",
+       editor_selector: /(profile-jot-text|prvmail-text)/,
+       plugins : "bbcode",
+       theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor",
+       theme_advanced_buttons2 : "",
+       theme_advanced_buttons3 : "",
+       theme_advanced_toolbar_location : "top",
+       theme_advanced_toolbar_align : "center",
+       theme_advanced_styles : "Code=codeStyle;Quote=quoteStyle",
+       content_css : "bbcode.css",
+       entity_encoding : "raw",
+       add_unload_trigger : false,
+       remove_linebreaks : false,
+       force_p_newlines : false,
+       force_br_newlines : true,
+       forced_root_block : '',
+       convert_urls: false,
+       content_css: "$baseurl/view/custom_tinymce.css",
+            //Character count
+       theme_advanced_path : false,
+       setup : function(ed) {
+               ed.onKeyUp.add(function(ed, e) {
+                       var txt = tinyMCE.activeEditor.getContent();
+                       var text = txt.length;
+                       if(txt.length <= 140) {
+                               $('#character-counter').removeClass('red');
+                               $('#character-counter').removeClass('orange');
+                               $('#character-counter').addClass('grey');
+                       }
+                       if((txt.length > 140) && (txt .length <= 420)) {
+                               $('#character-counter').removeClass('grey');
+                               $('#character-counter').removeClass('red');
+                               $('#character-counter').addClass('orange');
+                       }
+                       if(txt.length > 420) {
+                               $('#character-counter').removeClass('grey');
+                               $('#character-counter').removeClass('orange');
+                               $('#character-counter').addClass('red');
+                       }
+                       $('#character-counter').text(text);
+               });
+       }
+});
+
+</script>
+<script type="text/javascript" src="include/ajaxupload.js" ></script>
+<script>
+       $(document).ready(function() {
+               var uploader = new window.AjaxUpload(
+                       'prvmail-upload',
+                       { action: 'wall_upload/$nickname',
+                               name: 'userfile',
+                               onSubmit: function(file,ext) { $('#profile-rotator').show(); },
+                               onComplete: function(file,response) {
+                                       tinyMCE.execCommand('mceInsertRawHTML',false,response);
+                                       $('#profile-rotator').hide();
+                               }                                
+                       }
+               );
+
+       });
+
+       function jotGetLink() {
+               reply = prompt("Please enter a link URL:");
+               if(reply && reply.length) {
+                       $('#profile-rotator').show();
+                       $.get('parse_url?url=' + reply, function(data) {
+                               tinyMCE.execCommand('mceInsertRawHTML',false,data);
+                               $('#profile-rotator').hide();
+                       });
+               }
+       }
+
+       function linkdropper(event) {
+               var linkFound = event.dataTransfer.types.contains("text/uri-list");
+               if(linkFound)
+                       event.preventDefault();
+       }
+
+       function linkdrop(event) {
+               var reply = event.dataTransfer.getData("text/uri-list");
+               event.target.textContent = reply;
+               event.preventDefault();
+               if(reply && reply.length) {
+                       $('#profile-rotator').show();
+                       $.get('parse_url?url=' + reply, function(data) {
+                               tinyMCE.execCommand('mceInsertRawHTML',false,data);
+                               $('#profile-rotator').hide();
+                       });
+               }
+       }
+
+</script>
+
diff --git a/view/fr/netfriend.tpl b/view/fr/netfriend.tpl
new file mode 100644 (file)
index 0000000..b041ec4
--- /dev/null
@@ -0,0 +1,14 @@
+<div class="intro-approve-as-friend-desc">Approve as: </div>
+
+<div class="intro-approve-as-friend-wrapper">
+       <label class="intro-approve-as-friend-label" for="intro-approve-as-friend-$intro_id">Friend</label>
+       <input type="radio" name="duplex" id="intro-approve-as-friend-$intro_id" class="intro-approve-as-friend" $friend_selected value="1" />
+       <div class="intro-approve-friend-break" ></div> 
+</div>
+<div class="intro-approve-as-friend-end"></div>
+<div class="intro-approve-as-fan-wrapper">
+       <label class="intro-approve-as-fan-label" for="intro-approve-as-fan-$intro_id">Fan/Admirer</label>
+       <input type="radio" name="duplex" id="intro-approve-as-fan-$intro_id" class="intro-approve-as-fan" $fan_selected value="0"  />
+       <div class="intro-approve-fan-break"></div>
+</div>
+<div class="intro-approve-as-end"></div>
diff --git a/view/fr/pagetypes.tpl b/view/fr/pagetypes.tpl
new file mode 100644 (file)
index 0000000..2036614
--- /dev/null
@@ -0,0 +1,25 @@
+
+               <div id="settings-normal-wrapper">
+                       <label id="settings-normal-label" for="settings-normal">Normal Profile</label>
+                       <input type="radio" name="page-flags" id="settings-normal" $normal_selected value="$page_normal" />
+                       <span id="settings-normal-desc">This account is a normal personal profile</span>
+               </div>
+               <div id="settings-normal-break" ></div> 
+               <div id="settings-soapbox-wrapper">
+                       <label id="settings-soapbox-label" for="settings-soapbox">Soapbox Profile</label>
+                       <input type="radio" name="page-flags" id="settings-soapbox" $soapbox_selected value="$page_soapbox" />
+                       <span id="settings-soapbox-desc">Automatically approve all connection/friend requests as read-only fans</span>
+               </div>
+               <div id="settings-soapbox-break" ></div>        
+               <div id="settings-community-wrapper">
+                       <label id="settings-community-label" for="settings-community">Community/Celebrity Profile</label>
+                       <input type="radio" name="page-flags" id="settings-community" $community_selected value="$page_community" />
+                       <span id="settings-community-desc">Automatically approve all connection/friend requests as read-write fans</span>
+               </div>
+               <div id="settings-community-break" ></div>      
+               <div id="settings-freelove-wrapper">
+                       <label id="settings-freelove-label" for="settings-freelove">Automatic Friend Profile</label>
+                       <input type="radio" name="page-flags" id="settings-freelove" $freelove_selected value="$page_freelove" />
+                       <span id="settings-freelove-desc">Automatically approve all connection/friend requests as friends</span>
+               </div>
+                       <div id="settings-freelove-break" ></div>       
diff --git a/view/fr/passchanged_eml.tpl b/view/fr/passchanged_eml.tpl
new file mode 100644 (file)
index 0000000..9692159
--- /dev/null
@@ -0,0 +1,20 @@
+
+Dear $username,
+       Your password has been changed as requested. Please retain this 
+information for your records (or change your password immediately to 
+something that you will remember).
+
+
+Your login details are as follows:
+
+Site Location: $siteurl
+Login Name:    $email
+Password:      $new_password
+
+You may change that password from your account settings page after logging in.
+
+
+Sincerely,
+       $sitename Administrator
+
diff --git a/view/fr/profile-hide-friends.tpl b/view/fr/profile-hide-friends.tpl
new file mode 100644 (file)
index 0000000..54ade00
--- /dev/null
@@ -0,0 +1,16 @@
+<p id="hide-friends-text">
+Hide my contact/friend list from viewers of this profile?
+</p>
+
+               <div id="hide-friends-yes-wrapper">
+               <label id="hide-friends-yes-label" for="hide-friends-yes">Yes</label>
+               <input type="radio" name="hide-friends" id="hide-friends-yes" $yes_selected value="1" />
+
+               <div id="hide-friends-break" ></div>    
+               </div>
+               <div id="hide-friends-no-wrapper">
+               <label id="hide-friends-no-label" for="hide-friends-no">No</label>
+               <input type="radio" name="hide-friends" id="hide-friends-no" $no_selected value="0"  />
+
+               <div id="hide-friends-end"></div>
+               </div>
diff --git a/view/fr/profile-in-directory.tpl b/view/fr/profile-in-directory.tpl
new file mode 100644 (file)
index 0000000..98af3e5
--- /dev/null
@@ -0,0 +1,16 @@
+<p id="profile-in-directory">
+Publish your default profile in site directory? 
+</p>
+
+               <div id="profile-in-dir-yes-wrapper">
+               <label id="profile-in-dir-yes-label" for="profile-in-dir-yes">Yes</label>
+               <input type="radio" name="profile_in_directory" id="profile-in-dir-yes" $yes_selected value="1" />
+
+               <div id="profile-in-dir-break" ></div>  
+               </div>
+               <div id="profile-in-dir-no-wrapper">
+               <label id="profile-in-dir-no-label" for="profile-in-dir-no">No</label>
+               <input type="radio" name="profile_in_directory" id="profile-in-dir-no" $no_selected value="0"  />
+
+               <div id="profile-in-dir-end"></div>
+               </div>
diff --git a/view/fr/profile-in-netdir.tpl b/view/fr/profile-in-netdir.tpl
new file mode 100644 (file)
index 0000000..be111aa
--- /dev/null
@@ -0,0 +1,16 @@
+<p id="profile-in-directory">
+Publish your default profile in global social directory? 
+</p>
+
+               <div id="profile-in-netdir-yes-wrapper">
+               <label id="profile-in-netdir-yes-label" for="profile-in-netdir-yes">Yes</label>
+               <input type="radio" name="profile_in_netdirectory" id="profile-in-netdir-yes" $yes_selected value="1" />
+
+               <div id="profile-in-netdir-break" ></div>       
+               </div>
+               <div id="profile-in-netdir-no-wrapper">
+               <label id="profile-in-netdir-no-label" for="profile-in-netdir-no">No</label>
+               <input type="radio" name="profile_in_netdirectory" id="profile-in-netdir-no" $no_selected value="0"  />
+
+               <div id="profile-in-netdir-end"></div>
+               </div>
diff --git a/view/fr/profile.php b/view/fr/profile.php
new file mode 100644 (file)
index 0000000..fa73726
--- /dev/null
@@ -0,0 +1,72 @@
+<!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?>\r
+<html>\r
+<head>\r
+  <title><?php if(x($page,'title')) echo $page['title']; ?></title>\r
+  <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>\r
+</head>\r
+<body>\r
+<header><?php if(x($page,'header')) echo $page['header']; ?></header>\r
+<nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></nav>\r
+<aside>\r
+<?php if((is_array($profile)) && count($profile)) { ?>\r
+<div class="vcard">\r
+       <?php if(strlen($profile['name'])) { ?>\r
+               <div class="fn"><?php echo $profile['name']; ?></div>\r
+       <?php } ?>\r
+\r
+       <?php if(strlen($profile['photo'])) { ?>\r
+               <div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div>\r
+       <?php } ?>\r
+\r
+       <div id="profile-extra-links">\r
+       <ul>\r
+       <?php if($profile['uid'] != $_SESSION['uid']) { ?>\r
+       <li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connect</a></li>\r
+       <?php } ?>\r
+       </ul>\r
+\r
+       </div>\r
+\r
+       <?php if ( (strlen($profile['address'])) \r
+               || (strlen($profile['locality']))\r
+               || (strlen($profile['region'])) \r
+               || (strlen($profile['postal-code'])) \r
+               || (strlen($profile['country-name']))) { ?>\r
+               <div class="location">Location:\r
+                       <div class="adr">\r
+                               <div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>\r
+                               <span class="city-state-zip"><span class="locality"><?php echo $profile['locality']; ?></span><?php if(strlen($profile['locality'])) echo ', '; ?><span class="region"><?php echo $profile['region'] ?></span><?php if(strlen($profile['postal-code'])) { ?> <span class="postal-code"><?php echo $profile['postal-code']; ?></span><?php } ?></span>\r
+                               <span class="country-name"><?php echo $profile['country-name']; ?></span>\r
+                       </div>\r
+               </div>\r
+\r
+       <?php } ?>\r
+\r
+       <?php if(strlen($profile['gender'])) { ?>\r
+               <div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>\r
+\r
+       <?php } ?>\r
+\r
+       <?php if(strlen($profile['pubkey'])) { ?>\r
+               <div class="key" style="display: none;"><?php echo $profile['pubkey']; ?></div>\r
+       <?php } ?>\r
+</div>\r
+<?php } ?>\r
+<?php if(strlen($profile['marital'])) { ?>\r
+<div class="marital"><span class="marital-label"><span class="heart">&hearts;</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>\r
+<?php } ?>\r
+<?php if(strlen($profile['homepage'])) { ?>\r
+<div class="homepage"><span class="homepage-label">Homepage: </span><span class="homepage-url"><?php echo linkify($profile['homepage']); ?></span></div>\r
+<?php } ?>\r
+<?php if(x($page,'aside')) echo $page['aside'] ?>\r
+</aside>\r
+<section>\r
+<?php if(x($page,'content')) echo $page['content']; ?>\r
+<div id="page-footer"></div>\r
+</section>\r
+<footer>\r
+<?php if(x($page,'footer')) echo $page['footer']; ?>\r
+</footer>\r
+</body>\r
+</html>\r
+\r
diff --git a/view/fr/profile_advanced.php b/view/fr/profile_advanced.php
new file mode 100644 (file)
index 0000000..f2c8913
--- /dev/null
@@ -0,0 +1,226 @@
+<?php
+
+$o .= '';
+
+$o .= <<< EOT
+
+<h2>Profile</h2>
+
+
+EOT;
+
+if($a->profile['name']) {
+$o .= <<< EOT
+<div id="advanced-profile-name-wrapper" >
+<div id="advanced-profile-name-text">Full Name:</div>
+<div id="advanced-profile-name">{$a->profile['name']}</div>
+</div>
+<div id="advanced-profile-name-end"></div>
+EOT;
+}
+
+if($a->profile['gender']) {
+$o .= <<< EOT
+<div id="advanced-profile-gender-wrapper" >
+<div id="advanced-profile-gender-text">Gender:</div>
+<div id="advanced-profile-gender">{$a->profile['gender']}</div>
+</div>
+<div id="advanced-profile-gender-end"></div>
+EOT;
+}
+
+if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) {
+$o .= <<< EOT
+<div id="advanced-profile-dob-wrapper" >
+<div id="advanced-profile-dob-text">Birthday:</div>
+EOT;
+
+// If no year, add an arbitrary one so just we can parse the month and day.
+
+$o .= '<div id="advanced-profile-dob">' 
+       . ((intval($a->profile['dob'])) 
+               ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'],'j F, Y'))
+               : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6),'j F'))) 
+       . "</div>\r\n</div>";
+
+$o .= '<div id="advanced-profile-dob-end"></div>';
+
+}
+
+if($age = age($a->profile['dob'],$a->profile['timezone'],'')) {
+$o .= <<< EOT
+<div id="advanced-profile-age-wrapper" >
+<div id="advanced-profile-age-text">Age:</div>
+<div id="advanced-profile-age">$age</div>
+</div>
+<div id="advanced-profile-age-end"></div>
+EOT;
+}
+
+if($a->profile['marital']) {
+$o .= <<< EOT
+<div id="advanced-profile-marital-wrapper" >
+<div id="advanced-profile-marital-text"><span class="heart">&hearts;</span> Status:</div>
+<div id="advanced-profile-marital">{$a->profile['marital']}</div>
+EOT;
+
+if($a->profile['with'])
+       $o .= "<div id=\"advanced-profile-with\">({$a->profile['with']})</div>";
+$o .= <<< EOT
+</div>
+<div id="advanced-profile-marital-end"></div>
+EOT;
+}
+
+if($a->profile['sexual']) {
+$o .= <<< EOT
+<div id="advanced-profile-sexual-wrapper" >
+<div id="advanced-profile-sexual-text">Sexual Preference:</div>
+<div id="advanced-profile-sexual">{$a->profile['sexual']}</div>
+</div>
+<div id="advanced-profile-sexual-end"></div>
+EOT;
+}
+
+if($a->profile['homepage']) {
+       $homepage = linkify($a->profile['homepage']);
+$o .= <<< EOT
+<div id="advanced-profile-homepage-wrapper" >
+<div id="advanced-profile-homepage-text">Homepage:</div>
+<div id="advanced-profile-homepage">$homepage</div>
+</div>
+<div id="advanced-profile-homepage-end"></div>
+EOT;
+}
+
+if($a->profile['politic']) {
+$o .= <<< EOT
+<div id="advanced-profile-politic-wrapper" >
+<div id="advanced-profile-politic-text">Political Views:</div>
+<div id="advanced-profile-politic">{$a->profile['politic']}</div>
+</div>
+<div id="advanced-profile-politic-end"></div>
+EOT;
+}
+
+if($a->profile['religion']) {
+$o .= <<< EOT
+<div id="advanced-profile-religion-wrapper" >
+<div id="advanced-profile-religion-text">Religion:</div>
+<div id="advanced-profile-religion">{$a->profile['religion']}</div>
+</div>
+<div id="advanced-profile-religion-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['about'])) {
+$o .= <<< EOT
+<div id="advanced-profile-about-wrapper" >
+<div id="advanced-profile-about-text">About:</div>
+<br />
+<div id="advanced-profile-about">$txt</div>
+</div>
+<div id="advanced-profile-about-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['interest'])) {
+$o .= <<< EOT
+<div id="advanced-profile-interest-wrapper" >
+<div id="advanced-profile-interest-text">Hobbies/Interests:</div>
+<br />
+<div id="advanced-profile-interest">$txt</div>
+</div>
+<div id="advanced-profile-interest-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['contact'])) {
+$o .= <<< EOT
+<div id="advanced-profile-contact-wrapper" >
+<div id="advanced-profile-contact-text">Contact information and Social Networks:</div>
+<br />
+<div id="advanced-profile-contact">$txt</div>
+</div>
+<div id="advanced-profile-contact-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['music'])) {
+$o .= <<< EOT
+<div id="advanced-profile-music-wrapper" >
+<div id="advanced-profile-music-text">Musical interests:</div>
+<br />
+<div id="advanced-profile-music">$txt</div>
+</div>
+<div id="advanced-profile-music-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['book'])) {
+$o .= <<< EOT
+<div id="advanced-profile-book-wrapper" >
+<div id="advanced-profile-book-text">Books, literature:</div>
+<br />
+<div id="advanced-profile-book">$txt</div>
+</div>
+<div id="advanced-profile-book-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['tv'])) {
+$o .= <<< EOT
+<div id="advanced-profile-tv-wrapper" >
+<div id="advanced-profile-tv-text">Television:</div>
+<br />
+<div id="advanced-profile-tv">$txt</div>
+</div>
+<div id="advanced-profile-tv-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['film'])) {
+$o .= <<< EOT
+<div id="advanced-profile-film-wrapper" >
+<div id="advanced-profile-film-text">Film/dance/culture/entertainment:</div>
+<br />
+<div id="advanced-profile-film">$txt</div>
+</div>
+<div id="advanced-profile-film-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['romance'])) {
+$o .= <<< EOT
+<div id="advanced-profile-romance-wrapper" >
+<div id="advanced-profile-romance-text">Love/romance:</div>
+<br />
+<div id="advanced-profile-romance">$txt</div>
+</div>
+<div id="advanced-profile-romance-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['work'])) {
+$o .= <<< EOT
+<div id="advanced-profile-work-wrapper" >
+<div id="advanced-profile-work-text">Work/employment:</div>
+<br />
+<div id="advanced-profile-work">$txt</div>
+</div>
+<div id="advanced-profile-work-end"></div>
+EOT;
+}
+
+if($txt = bbcode($a->profile['education'])) {
+$o .= <<< EOT
+<div id="advanced-profile-education-wrapper" >
+<div id="advanced-profile-education-text">School/education:</div>
+<br />
+<div id="advanced-profile-education">$txt</div>
+</div>
+<div id="advanced-profile-education-end"></div>
+EOT;
+}
+
+
diff --git a/view/fr/profile_edit.tpl b/view/fr/profile_edit.tpl
new file mode 100644 (file)
index 0000000..beff3b8
--- /dev/null
@@ -0,0 +1,293 @@
+<h1>Edit Profile Details</h1>
+
+<div id="profile-edit-links">
+<ul>
+<li><a href="profile/$profile_id/view?tab=profile" id="profile-edit-view-link" title="View this profile">View this profile</a></li>
+<li><a href="profiles/clone/$profile_id" id="profile-edit-clone-link" title="Create a new profile using these settings">Clone this profile</a></li>
+<li></li>
+<li><a href="profiles/drop/$profile_id" id="profile-edit-drop-link" title="Delete this profile" $disabled >Delete this profile</a></li>
+
+</ul>
+</div>
+
+<div id="profile-edit-links-end"></div>
+
+$default
+
+<div id="profile-edit-wrapper" >
+<form id="profile-edit-form" name="form1" action="profiles/$profile_id" method="post" >
+
+<div id="profile-edit-profile-name-wrapper" >
+<label id="profile-edit-profile-name-label" for="profile-edit-profile-name" >Profile Name: </label>
+<input type="text" size="32" name="profile_name" id="profile-edit-profile-name" value="$profile_name" /><div class="required">*</div>
+</div>
+<div id="profile-edit-profile-name-end"></div>
+
+<div id="profile-edit-name-wrapper" >
+<label id="profile-edit-name-label" for="profile-edit-name" >Your Full Name: </label>
+<input type="text" size="32" name="name" id="profile-edit-name" value="$name" />
+</div>
+<div id="profile-edit-name-end"></div>
+
+<div id="profile-edit-pdesc-wrapper" >
+<label id="profile-edit-pdesc-label" for="profile-edit-pdesc" >Title/Description: </label>
+<input type="text" size="32" name="pdesc" id="profile-edit-pdesc" value="$pdesc" />
+</div>
+<div id="profile-edit-pdesc-end"></div>
+
+
+<div id="profile-edit-gender-wrapper" >
+<label id="profile-edit-gender-label" for="gender-select" >Your Gender: </label>
+$gender
+</div>
+<div id="profile-edit-gender-end"></div>
+
+<div id="profile-edit-dob-wrapper" >
+<label id="profile-edit-dob-label" for="dob-select" >Birthday (y/m/d): </label>
+<div id="profile-edit-dob" >
+$dob $age
+</div>
+</div>
+<div id="profile-edit-dob-end"></div>
+
+$hide_friends
+
+<div class="profile-edit-submit-wrapper" >
+<input type="submit" name="submit" class="profile-edit-submit-button" value="Submit" />
+</div>
+<div class="profile-edit-submit-end"></div>
+
+
+<div id="profile-edit-address-wrapper" >
+<label id="profile-edit-address-label" for="profile-edit-address" >Street Address: </label>
+<input type="text" size="32" name="address" id="profile-edit-address" value="$address" />
+</div>
+<div id="profile-edit-address-end"></div>
+
+<div id="profile-edit-locality-wrapper" >
+<label id="profile-edit-locality-label" for="profile-edit-locality" >Locality/City: </label>
+<input type="text" size="32" name="locality" id="profile-edit-locality" value="$locality" />
+</div>
+<div id="profile-edit-locality-end"></div>
+
+
+<div id="profile-edit-postal-code-wrapper" >
+<label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >Postal/Zip Code: </label>
+<input type="text" size="32" name="postal_code" id="profile-edit-postal-code" value="$postal_code" />
+</div>
+<div id="profile-edit-postal-code-end"></div>
+
+<div id="profile-edit-country-name-wrapper" >
+<label id="profile-edit-country-name-label" for="profile-edit-country-name" >Country: </label>
+<select name="country_name" id="profile-edit-country-name" onChange="Fill_States('$region');">
+<option selected="selected" >$country_name</option>
+<option>temp</option>
+</select>
+</div>
+<div id="profile-edit-country-name-end"></div>
+
+<div id="profile-edit-region-wrapper" >
+<label id="profile-edit-region-label" for="profile-edit-region" >Region/State: </label>
+<select name="region" id="profile-edit-region" onChange="Update_Globals();" >
+<option selected="selected" >$region</option>
+<option>temp</option>
+</select>
+</div>
+<div id="profile-edit-region-end"></div>
+
+<div class="profile-edit-submit-wrapper" >
+<input type="submit" name="submit" class="profile-edit-submit-button" value="Submit" />
+</div>
+<div class="profile-edit-submit-end"></div>
+
+<div id="profile-edit-marital-wrapper" >
+<label id="profile-edit-marital-label" for="profile-edit-marital" ><span class="heart">&hearts;</span> (Marital) Status: </label>
+$marital
+</div>
+<label id="profile-edit-with-label" for="profile-edit-with" > Who: (if applicable) </label>
+<input type="text" size="32" name="with" id="profile-edit-with" value="$with" />
+<div id="profile-edit-marital-end"></div>
+
+<div id="profile-edit-sexual-wrapper" >
+<label id="profile-edit-sexual-label" for="sexual-select" >Sexual Preference: </label>
+$sexual
+</div>
+<div id="profile-edit-sexual-end"></div>
+
+
+
+<div id="profile-edit-homepage-wrapper" >
+<label id="profile-edit-homepage-label" for="profile-edit-homepage" >Homepage URL: </label>
+<input type="text" size="32" name="homepage" id="profile-edit-homepage" value="$homepage" />
+</div>
+<div id="profile-edit-homepage-end"></div>
+
+<div id="profile-edit-politic-wrapper" >
+<label id="profile-edit-politic-label" for="profile-edit-politic" >Political Views: </label>
+<input type="text" size="32" name="politic" id="profile-edit-politic" value="$politic" />
+</div>
+<div id="profile-edit-politic-end"></div>
+
+<div id="profile-edit-religion-wrapper" >
+<label id="profile-edit-religion-label" for="profile-edit-religion" >Religion: </label>
+<input type="text" size="32" name="religion" id="profile-edit-religion" value="$religion" />
+</div>
+<div id="profile-edit-religion-end"></div>
+
+<div id="profile-edit-keywords-wrapper" >
+<label id="profile-edit-keywords-label" for="profile-edit-keywords" >Keywords: </label>
+<input type="text" size="32" name="keywords" id="profile-edit-keywords" title="Example: fishing photography software" value="$keywords" />
+</div><div id="profile-edit-keywords-desc">(Used for searching public profiles, never shown to others)</div>
+<div id="profile-edit-keywords-end"></div>
+
+
+<div class="profile-edit-submit-wrapper" >
+<input type="submit" name="submit" class="profile-edit-submit-button" value="Submit" />
+</div>
+<div class="profile-edit-submit-end"></div>
+
+<div id="about-jot-wrapper" >
+<p id="about-jot-desc" >
+Tell us about yourself... 
+</p>
+
+<textarea rows="10" cols="72" id="profile-jot-text" name="about" >$about</textarea>
+
+</div>
+<div id="about-jot-end"></div>
+</div>
+
+
+<div id="interest-jot-wrapper" >
+<p id="interest-jot-desc" >
+Hobbies/Interests 
+</p>
+
+<textarea rows="10" cols="72" id="interest-jot-text" name="interest" >$interest</textarea>
+
+</div>
+<div id="interest-jot-end"></div>
+</div>
+
+
+<div id="contact-jot-wrapper" >
+<p id="contact-jot-desc" >
+Contact information and Social Networks 
+</p>
+
+<textarea rows="10" cols="72" id="contact-jot-text" name="contact" >$contact</textarea>
+
+</div>
+<div id="contact-jot-end"></div>
+</div>
+
+
+<div class="profile-edit-submit-wrapper" >
+<input type="submit" name="submit" class="profile-edit-submit-button" value="Submit" />
+</div>
+<div class="profile-edit-submit-end"></div>
+
+
+<div id="music-jot-wrapper" >
+<p id="music-jot-desc" >
+Musical interests 
+</p>
+
+<textarea rows="10" cols="72" id="music-jot-text" name="music" >$music</textarea>
+
+</div>
+<div id="music-jot-end"></div>
+</div>
+
+<div id="book-jot-wrapper" >
+<p id="book-jot-desc" >
+Books, literature 
+</p>
+
+<textarea rows="10" cols="72" id="book-jot-text" name="book" >$book</textarea>
+
+</div>
+<div id="book-jot-end"></div>
+</div>
+
+
+
+<div id="tv-jot-wrapper" >
+<p id="tv-jot-desc" >
+Television 
+</p>
+
+<textarea rows="10" cols="72" id="tv-jot-text" name="tv" >$tv</textarea>
+
+</div>
+<div id="tv-jot-end"></div>
+</div>
+
+
+
+<div id="film-jot-wrapper" >
+<p id="film-jot-desc" >
+Film/dance/culture/entertainment 
+</p>
+
+<textarea rows="10" cols="72" id="film-jot-text" name="film" >$film</textarea>
+
+</div>
+<div id="film-jot-end"></div>
+</div>
+
+
+<div class="profile-edit-submit-wrapper" >
+<input type="submit" name="submit" class="profile-edit-submit-button" value="Submit" />
+</div>
+<div class="profile-edit-submit-end"></div>
+
+
+<div id="romance-jot-wrapper" >
+<p id="romance-jot-desc" >
+Love/romance 
+</p>
+
+<textarea rows="10" cols="72" id="romance-jot-text" name="romance" >$romance</textarea>
+
+</div>
+<div id="romance-jot-end"></div>
+</div>
+
+
+
+<div id="work-jot-wrapper" >
+<p id="work-jot-desc" >
+Work/employment 
+</p>
+
+<textarea rows="10" cols="72" id="work-jot-text" name="work" >$work</textarea>
+
+</div>
+<div id="work-jot-end"></div>
+</div>
+
+
+
+<div id="education-jot-wrapper" >
+<p id="education-jot-desc" >
+School/education 
+</p>
+
+<textarea rows="10" cols="72" id="education-jot-text" name="education" >$education</textarea>
+
+</div>
+<div id="education-jot-end"></div>
+</div>
+
+
+
+<div class="profile-edit-submit-wrapper" >
+<input type="submit" name="submit" class="profile-edit-submit-button" value="Submit" />
+</div>
+<div class="profile-edit-submit-end"></div>
+
+
+</form>
+</div>
+<script type="text/javascript">Fill_Country('$country_name');Fill_States('$region');</script>
\ No newline at end of file
diff --git a/view/fr/profile_entry_default.tpl b/view/fr/profile_entry_default.tpl
new file mode 100644 (file)
index 0000000..6511999
--- /dev/null
@@ -0,0 +1,9 @@
+
+<div class="profile-listing" >
+<div class="profile-listing-photo-wrapper" >
+<a href="profiles/$id" class="profile-listing-edit-link" ><img class="profile-listing-photo" id="profile-listing-photo-$id" src="$photo" alt="Profile Image" /></a>
+</div>
+<div class="profile-listing-photo-end" ></div>
+<div class="profile-listing-name" id="profile-listing-name-$id"><a href="profiles/$id" class="profile-listing-edit-link" >$profile_name</a></div>
+</div>
+<div class="profile-listing-end"></div>
diff --git a/view/fr/profile_listing_header.tpl b/view/fr/profile_listing_header.tpl
new file mode 100644 (file)
index 0000000..d4b139a
--- /dev/null
@@ -0,0 +1,8 @@
+<h1>Profiles</h1>
+<p id="profile-listing-desc" >
+<a href="profile_photo" >Change profile photo</a>
+</p>
+<div id="profile-listing-new-link-wrapper" >
+<a href="profiles/new" id="profile-listing-new-link" name="Create New Profile" >Create New Profile</a>
+</div>
+
diff --git a/view/fr/profile_photo.tpl b/view/fr/profile_photo.tpl
new file mode 100644 (file)
index 0000000..d518e73
--- /dev/null
@@ -0,0 +1,14 @@
+<h1>Upload Profile Photo</h1>
+
+<form enctype="multipart/form-data" action="profile_photo" method="post">
+
+<div id="profile-photo-upload-wrapper">
+<label id="profile-photo-upload-label" for="profile-photo-upload">Upload File: </label>
+<input name="userfile" type="file" id="profile-photo-upload" size="48" />
+</div>
+
+<div id="profile-photo-submit-wrapper">
+<input type="submit" name="submit" id="profile-photo-submit" value="Upload">
+</div>
+
+</form>
\ No newline at end of file
diff --git a/view/fr/profile_tabs.tpl b/view/fr/profile_tabs.tpl
new file mode 100644 (file)
index 0000000..9c6c54a
--- /dev/null
@@ -0,0 +1,7 @@
+
+<div id="profile-tabs-wrapper" >
+       <a href="$url" id="profile-tab-status-link" class="profile-tabs" >Status</a>
+       <a href="$url?tab=profile" id="profile-tab-profile-link" class="profile-tabs" >Profile</a>
+       <a href="$phototab" id="profile-tab-photos-link" class="profile-tabs" >Photos</a>
+<div id="profile-tabs-end"></div>
+</div>
\ No newline at end of file
diff --git a/view/fr/pwdreset.tpl b/view/fr/pwdreset.tpl
new file mode 100644 (file)
index 0000000..dd609f0
--- /dev/null
@@ -0,0 +1,16 @@
+<h3>Password Reset</h3>
+
+<p>
+Your password has been reset as requested.
+</p>
+<p>
+Your new password is
+</p>
+<p>
+$newpass
+</p>
+<p>
+Save or copy your new password - and then <a href="$baseurl" >click here to login</a>.
+</p>
+<p>
+Your password may be changed from the 'Settings' page after successful login.
\ No newline at end of file
diff --git a/view/fr/register-link.tpl b/view/fr/register-link.tpl
new file mode 100644 (file)
index 0000000..7f3fca4
--- /dev/null
@@ -0,0 +1 @@
+       <a href="register" name="Create a New Account" id="register-link" >Register</a>
diff --git a/view/fr/register_open_eml.tpl b/view/fr/register_open_eml.tpl
new file mode 100644 (file)
index 0000000..c88eba8
--- /dev/null
@@ -0,0 +1,25 @@
+
+Dear $username,
+       Thank you for registering at $sitename. Your account has been created. 
+The login details are as follows:
+
+
+Site Location: $siteurl
+Login Name:    $email
+Password:      $password
+
+You may change your password from your account "Settings" page after logging 
+in.
+
+Please take a few moments to review the other account settings on that page. 
+By default your account is private and hidden (invisible to other people). 
+You might wish to change this by publishing your profile - so that it appears 
+in a directory and other people can find you. 
+
+
+Thank you and welcome to $sitename.
+
+Sincerely,
+       $sitename Administrator
+
diff --git a/view/fr/register_verify_eml.tpl b/view/fr/register_verify_eml.tpl
new file mode 100644 (file)
index 0000000..60c38d8
--- /dev/null
@@ -0,0 +1,26 @@
+
+A new user registration request was received at $sitename which requires 
+your approval. 
+
+
+The login details are as follows:
+
+Full Name:     $username
+Site Location: $siteurl
+Login Name:    $email
+
+
+To approve this request please visit the following link:
+
+
+$siteurl/regmod/allow/$hash 
+
+
+To deny the request and remove the account, please visit:
+
+
+$siteurl/regmod/deny/$hash
+
+
+Thank you.
+
diff --git a/view/fr/registrations-top.tpl b/view/fr/registrations-top.tpl
new file mode 100644 (file)
index 0000000..d8faf34
--- /dev/null
@@ -0,0 +1,3 @@
+<h1>User registrations waiting for confirm</h1>
+
+
diff --git a/view/fr/registrations.tpl b/view/fr/registrations.tpl
new file mode 100644 (file)
index 0000000..c864604
--- /dev/null
@@ -0,0 +1 @@
+<li>$fullname ($email) : <a href="$approvelink">Approve</a> - <a href="$denylink">Deny</a></li>
diff --git a/view/fr/request_notify_eml.tpl b/view/fr/request_notify_eml.tpl
new file mode 100644 (file)
index 0000000..9eef7a6
--- /dev/null
@@ -0,0 +1,17 @@
+
+Dear $myname,
+
+You have just received a connection request at $sitename 
+
+from '$requestor'.
+
+You may visit their profile at $url.
+
+Please login to your site to view the complete introduction 
+and approve or ignore/cancel the request.
+
+$siteurl
+
+Regards,
+
+       $sitename administrator
\ No newline at end of file
diff --git a/view/fr/settings.tpl b/view/fr/settings.tpl
new file mode 100644 (file)
index 0000000..5e1bfab
--- /dev/null
@@ -0,0 +1,163 @@
+<h1>Account Settings</h1>
+
+<div id="plugin-settings-link"><a href="settings/addon">Plugin Settings</a></div>
+
+$nickname_block
+
+
+<form action="settings" id="settings-form" method="post" autocomplete="false" >
+
+
+<h3 class="settings-heading">Basic Settings</h3>
+
+<div id="settings-username-wrapper" >
+<label id="settings-username-label" for="settings-username" >Full Name: </label>
+<input type="text" name="username" id="settings-username" value="$username" />
+</div>
+<div id="settings-username-end" ></div>
+
+<div id="settings-email-wrapper" >
+<label id="settings-email-label" for="settings-email" >Email Address: </label>
+<input type="text" name="email" id="settings-email" value="$email" />
+</div>
+<div id="settings-email-end" ></div>
+
+
+
+<div id="settings-timezone-wrapper" >
+<label id="settings-timezone-label" for="timezone_select" >Your Timezone: </label>
+$zoneselect
+</div>
+<div id="settings-timezone-end" ></div>
+
+<div id="settings-defloc-wrapper" >
+<label id="settings-defloc-label" for="settings-defloc" >Default Post Location: </label>
+<input type="text" name="defloc" id="settings-defloc" value="$defloc" />
+</div>
+<div id="settings-defloc-end" ></div>
+
+<div id="settings-allowloc-wrapper" >
+<label id="settings-allowloc-label" for="settings-allowloc" >Use Browser Location: </label>
+<input type="checkbox" name="allow_location" id="settings-allowloc" value="1" $loc_checked />
+</div>
+<div id="settings-allowloc-end" ></div>
+
+
+
+
+<div id="settings-theme-select">
+<label id="settings-theme-label" for="theme-select" >Display Theme: </label>
+$theme
+</div>
+<div id="settings-theme-end"></div>
+
+<div class="settings-submit-wrapper" >
+<input type="submit" name="submit" class="settings-submit" value="Submit" />
+</div>
+
+
+<h3 class="settings-heading">Security and Privacy Settings</h3>
+
+
+<input type="hidden" name="visibility" value="$visibility" />
+
+<div id="settings-maxreq-wrapper">
+<label id="settings-maxreq-label" for="settings-maxreq" >Maximum Friend Requests/Day</label>
+<input id="settings-maxreq" name="maxreq" value="$maxreq" />
+<div id="settings-maxreq-desc">(to prevent spam abuse)</div>
+</div>
+<div id="settings-maxreq-end"></div>
+
+
+
+
+$profile_in_dir
+
+$profile_in_net_dir
+
+
+
+<div id="settings-default-perms" class="settings-default-perms" >
+       <div id="settings-default-perms-menu" class="fakelink" onClick="openClose('settings-default-perms-select');" >&#x21e9; $permissions</div>
+       <div id="settings-default-perms-menu-end"></div>
+
+       <div id="settings-default-perms-select" style="display: none;" >
+       
+               $aclselect
+
+       </div>
+</div>
+<div id="settings-default-perms-end"></div>
+
+<div class="settings-submit-wrapper" >
+<input type="submit" name="submit" class="settings-submit" value="Submit" />
+</div>
+
+
+
+<h3 class="settings-heading">Notification Settings</h3>
+
+
+<div id="settings-notify-wrapper">
+<div id="settings-notify-desc">Send a notification email when: </div>
+<label for="notify1" id="settings-label-notify1">You receive an introduction</label>
+<input id="notify1" type="checkbox" $sel_notify1 name="notify1" value="1" />
+<div id="notify1-end"></div>
+<label for="notify2" id="settings-label-notify2">Your introductions are confirmed</label>
+<input id="notify2" type="checkbox" $sel_notify2 name="notify2" value="2" />
+<div id="notify2-end"></div>
+<label for="notify3" id="settings-label-notify3">Someone writes on your profile wall</label>
+<input id="notify3" type="checkbox" $sel_notify3 name="notify3" value="4" />
+<div id="notify3-end"></div>
+<label for="notify4" id="settings-label-notify4">Someone writes a followup comment</label>
+<input id="notify4" type="checkbox" $sel_notify4 name="notify4" value="8" />
+<div id="notify4-end"></div>
+<label for="notify5" id="settings-label-notify5">You receive a private message</label>
+<input id="notify5" type="checkbox" $sel_notify5 name="notify5" value="16" />
+<div id="notify5-end"></div>
+</div>
+<div id="settings=notify-end"></div>
+
+<div class="settings-submit-wrapper" >
+<input type="submit" name="submit" class="settings-submit" value="Submit" />
+</div>
+
+
+<h3 class="settings-heading">Password Settings</h3>
+
+
+<div id="settings-password-wrapper" >
+<p id="settings-password-desc" >
+Leave password fields blank unless changing
+</p>
+<label id="settings-password-label" for="settings-password" >New Password: </label>
+<input type="password" id="settings-password" name="npassword" />
+</div>
+<div id="settings-password-end" ></div>
+
+<div id="settings-confirm-wrapper" >
+<label id="settings-confirm-label" for="settings-confirm" >Confirm: </label>
+<input type="password" id="settings-confirm" name="confirm" />
+</div>
+<div id="settings-confirm-end" ></div>
+
+<div id="settings-openid-wrapper" >
+       $oidhtml
+</div>
+<div id="settings-openid-end" ></div>
+
+
+<div class="settings-submit-wrapper" >
+<input type="submit" name="submit" class="settings-submit" value="Submit" />
+</div>
+
+
+<h3 class="settings-heading">Advanced Page Settings</h3>
+
+$pagetype
+
+<div class="settings-submit-wrapper" >
+<input type="submit" name="submit" class="settings-submit" value="Submit" />
+</div>
+
+
diff --git a/view/fr/settings_nick_set.tpl b/view/fr/settings_nick_set.tpl
new file mode 100644 (file)
index 0000000..a36b3b9
--- /dev/null
@@ -0,0 +1,9 @@
+
+<div id="settings-nick-wrapper" >
+<p id="settings-nickname-desc">
+<span class="error-message">Your profile address is <strong>'$nickname@$basepath'</strong></span>
+</p>
+$subdir
+
+</div>
+<div id="settings-nick-end" ></div>
diff --git a/view/fr/settings_nick_subdir.tpl b/view/fr/settings_nick_subdir.tpl
new file mode 100644 (file)
index 0000000..303c24d
--- /dev/null
@@ -0,0 +1,6 @@
+<p>
+It appears that your website is located in a subdirectory of the<br />
+$hostname website, so this setting may not work reliably.<br />
+</p>
+<p>If you have any issues, you may have better results using the profile<br /> address '<strong>$baseurl/profile/$nickname</strong>'.
+</p>
\ No newline at end of file
diff --git a/view/fr/settings_nick_unset.tpl b/view/fr/settings_nick_unset.tpl
new file mode 100644 (file)
index 0000000..903768b
--- /dev/null
@@ -0,0 +1,14 @@
+
+<div id="settings-nick-wrapper" >
+<p id="settings-nickname-desc">
+Your profile URL is currently <strong>'$baseurl/profile/$uid'</strong>.
+Setting a nickname will allow a friendly profile URL such as
+<strong>'nickname@$basepath'</strong>.
+<br />
+Once set, it can never be changed. The nickname <strong>must</strong> start with a letter; and only letters, numbers, dashes, and underscores are allowed.
+</p>
+<label id="settings-nick-label" for="settings-nick" >URL Nickname: </label>
+<input type="text" name="nick" id="settings-nick" value="$nickname" />
+</div>
+<div id="settings-nick-end" ></div>
+
diff --git a/view/fr/strings.php b/view/fr/strings.php
new file mode 100644 (file)
index 0000000..b675995
--- /dev/null
@@ -0,0 +1,1035 @@
+<?php
+$a->strings['Not Found'] = 'Non trouvé';
+$a->strings['Page not found.' ] = 'Page introuvable.' ;
+$a->strings['Permission denied'] = 'Permission refusée';
+$a->strings['Permission denied.'] = 'Permission refusée.';
+$a->strings['Nickname or Email address: '] = 'Pseudo ou adresse email: ';
+$a->strings['Password: '] = 'Mot de passe: ';
+$a->strings['Login'] = 'Connexion';
+$a->strings['Nickname/Email/OpenID: '] = 'Pseudo/Email/OpenID: ';
+$a->strings["Password \x28if not OpenID\x29: "] = "Mot de passe \x28sauf pour OpenID\x29: ";
+$a->strings['Forgot your password?'] = 'Mot de passe oublié?';
+$a->strings['Password Reset'] = 'Réinitialiser le mot de passe';
+$a->strings['prev'] = 'prev';
+$a->strings['first'] = 'first';
+$a->strings['last'] = 'last';
+$a->strings['next'] = 'next';
+$a->strings[' likes this.'] = ' aime ça.';
+$a->strings[' doesn\'t like this.'] = ' n\'aime pas ça.';
+$a->strings['people'] = 'personne(s)';
+$a->strings['like this.'] = 'aime(nt) ça.';
+$a->strings['don\'t like this.'] = 'n\'aime(nt) pas ça.';
+$a->strings['and'] = 'et';
+$a->strings[', and '] = ', et ';
+$a->strings[' other people'] = ' autre(s) personne(s)';
+$a->strings[' like this.'] = ' aime(nt) ça.';
+$a->strings[' don\'t like this.'] = ' n\'aime(nt) pas ça.';
+$a->strings['No contacts'] = 'Aucun contact';
+$a->strings['Contacts'] = 'Contacts';
+$a->strings['View Contacts'] = 'Voir les contacts';
+$a->strings['Search'] = 'Recherche';
+$a->strings['No profile'] = 'Aucun profil';
+$a->strings['Connect'] = 'Relier';
+$a->strings['Location:'] = 'Localisation:';
+$a->strings[', '] = ', ';
+$a->strings['Gender:'] = 'Genre:';
+$a->strings['Status:'] = 'Statut:';
+$a->strings['Homepage:'] = 'Page personnelle:';
+$a->strings['Monday'] = 'Lundi';
+$a->strings['Tuesday'] = 'Mardi';
+$a->strings['Wednesday'] = 'Mercredi';
+$a->strings['Thursday'] = 'Jeudi';
+$a->strings['Friday'] = 'Vendredi';
+$a->strings['Saturday'] = 'Samedi';
+$a->strings['Sunday'] = 'Dimanche';
+$a->strings['January'] = 'Janvier';
+$a->strings['February'] = 'Février';
+$a->strings['March'] = 'Mars';
+$a->strings['April'] = 'Avril';
+$a->strings['May'] = 'Mai';
+$a->strings['June'] = 'Juin';
+$a->strings['July'] = 'Juillet';
+$a->strings['August'] = 'Août';
+$a->strings['September'] = 'Septembre';
+$a->strings['October'] = 'Octobre';
+$a->strings['November'] = 'Novembre';
+$a->strings['December'] = 'Décembre';
+$a->strings['Birthdays this week:'] = 'Anniversaires cette semaine:';
+$a->strings["\x28Adjusted for local time\x29"] = "\x28Ajustés pour le fuseau horaire local\x29";
+$a->strings['[today]'] = '[aujourd\'hui]';
+$a->strings["Invite Friends"] = "Inviter des amis";
+$a->strings['Connect/Follow [profile address]'] = 'Relier/Suivre [adresse du profil]';
+$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exemple: bob@example.com, http://example.com/barbara';
+$a->strings['Follow'] = 'Suivre';
+$a->strings['Could not access contact record.'] = 'Impossible d\'accéder à l\'enregistrement du contact.';
+$a->strings['Could not locate selected profile.'] = 'Impossible de localiser le profil séléctionné.';
+$a->strings['Contact updated.'] = 'Contact mis-à-jour.';
+$a->strings['Failed to update contact record.'] = 'Échec de mise-à-jour du contact.';
+$a->strings['Contact has been '] = 'Ce contact a été ';
+$a->strings['blocked'] = 'bloqué';
+$a->strings['unblocked'] = 'débloqué';
+$a->strings['ignored'] = 'ignoré';
+$a->strings['unignored'] = 'des-ignoré';
+$a->strings['stopped following'] = 'retiré de la liste de suivi';
+$a->strings['Contact has been removed.'] = 'Ce contact a été retiré.';
+$a->strings['Contact not found.'] = 'Contact introuvable.';
+$a->strings['Mutual Friendship'] = 'Relation réciproque';
+$a->strings['is a fan of yours'] = 'est un fan de vous';
+$a->strings['you are a fan of'] = 'vous êtes un fan de';
+$a->strings['Contact Editor'] = 'Éditeur de contact';
+$a->strings['Visit $name\'s profile'] = 'Visiter le profil de $name';
+$a->strings['Block/Unblock contact'] = 'Bloquer/débloquer ce contact';
+$a->strings['Ignore contact'] = 'Ignorer ce contact';
+$a->strings['Delete contact'] = 'Effacer ce contact';
+$a->strings['Last updated: '] = 'Dernière mise-à-jour: ';
+$a->strings['Update public posts: '] = 'Met ses entrées publiques à jour: ';
+$a->strings['Never'] = 'Jamais';
+$a->strings['Unblock this contact'] = 'Débloquer ce contact';
+$a->strings['Block this contact'] = 'Bloquer ce contact';
+$a->strings['Unignore this contact'] = 'Cesser d\'ignorer ce contact';
+$a->strings['Ignore this contact'] = 'Ignorer ce contact';
+$a->strings['Currently blocked'] = 'Actuellement bloqué';
+$a->strings['Currently ignored'] = 'Actuellement ignoré';
+$a->strings['Show Blocked Connections'] = 'Montrer les connexions bloquées';
+$a->strings['Hide Blocked Connections'] = 'Cacher les connexion bloquées';
+$a->strings['Finding: '] = 'Trouvé: ';
+$a->strings['Find'] = 'Trouver';
+$a->strings['Visit '] = 'Visiter le profil de ';
+$a->strings['\'s profile'] = '';
+$a->strings['Edit contact'] = 'Éditer le contact';
+$a->strings['Profile not found.'] = 'Profil introuvable.';
+$a->strings['Response from remote site was not understood.'] = 'Réponse du site distant incomprise.';
+$a->strings['Unexpected response from remote site: '] = 'Réponse inattendue du site distant: ';
+$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès.";
+$a->strings['Remote site reported: '] = 'Alerte du site distant: ';
+$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement.";
+$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée.";
+$a->strings['Unable to set contact photo.'] = 'Impossible de définir la photo du contact.';
+$a->strings['is now friends with'] = 'est désormais relié à';
+$a->strings['No user record found for '] = 'Pas d\'utilisateur trouvé pour ';
+$a->strings['Our site encryption key is apparently messed up.'] = 'Notre clé de chiffrement de site est apparemment corrompue.';
+$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'URL de site absente ou indéchiffrable.';
+$a->strings['Contact record was not found for you on our site.'] = 'Pas d\'entrée pour ce contact sur notre site.';
+$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'L\'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez.';
+$a->strings['Unable to set your contact credentials on our system.'] = 'Impossible de vous définir des permissions sur notre système.';
+$a->strings['Unable to update your contact profile details on our system'] = 'Impossible de mettre les détails de votre profil à jour sur notre système';
+$a->strings["Connection accepted at "] = "Connexion acceptée à ";
+$a->strings['Administrator'] = 'Administrateur';
+$a->strings['New mail received at '] = 'Nouvel email reçu à ';
+$a->strings[' commented on an item at '] = ' a commenté une entrée à ';
+$a->strings[" commented on an item at "] = " a commenté une entrée à ";
+$a->strings[' welcomes '] = ' accueille ';
+$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
+$a->strings['Profile location is not valid or does not contain profile information.'] = 'L\'emplacement du profil est invalide ou ne contient pas de profil valide.';
+$a->strings['Warning: profile location has no identifiable owner name.'] = 'Attention: l\'emplacement du profil n\'a pas de nom identifiable.';
+$a->strings['Warning: profile location has no profile photo.'] = 'Attention: l\'emplacement du profil n\'a pas de photo de profil.';
+$a->strings[' required parameter'] = ' paramêtre(s) requis';
+$a->strings[" was "] = " était ";
+$a->strings["s were "] = "étaient ";
+$a->strings["not found at the given location."] = "introuvable(s) à l\'emplacement indiqué.";
+$a->strings["Introduction complete."] = "Phase de présentation achevée.";
+$a->strings['Unrecoverable protocol error.'] = 'Erreur de protocole non-récupérable.';
+$a->strings['Profile unavailable.'] = 'Profil indisponible.';
+$a->strings[' has received too many connection requests today.'] = ' a reçu trop de requêtes de connexion aujourd\'hui.';
+$a->strings['Spam protection measures have been invoked.'] = 'Des mesures de protection contre le spam ont été déclenchées.';
+$a->strings['Friends are advised to please try again in 24 hours.'] = 'Les relations sont encouragées à attendre 24 heures pour recommencer.';
+$a->strings["Invalid locator"] = "Localisateur invalide";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l\'emplacement fourni.";
+$a->strings['You have already introduced yourself here.'] = 'Vous vous êtes déjà présenté ici.';
+$a->strings['Apparently you are already friends with .'] = 'Apparently you are already friends with .';
+$a->strings['Invalid profile URL.'] = 'URL de profil invalide.';
+$a->strings['Disallowed profile URL.'] = 'URL de profil interdite.';
+$a->strings['Your introduction has been sent.'] = 'Votre présentation a été envoyée.';
+$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l\'introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
+$a->strings['[Name Withheld]'] = '[Nom non publié]';
+$a->strings['Friend/Connection Request'] = 'Requête de relation/amitié';
+$a->strings['Please answer the following:'] = 'Merci de répondre à ce qui suit:';
+$a->strings['Does $name know you?'] = 'Est-ce que $name vous connaît?';
+$a->strings['Yes'] = 'Oui';
+$a->strings['No'] = 'Non';
+$a->strings['Add a personal note:'] = 'Ajouter une note personnelle:';
+$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Merci d\'entrer l\'adresse de votre profil sur l\'une de ces réseaux sociaux:';
+$a->strings['Friendika'] = 'Friendika';
+$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web';
+$a->strings["Private \x28secure\x29 network"] = "Réseau privé \x28sécurisé\x29";
+$a->strings["Public \x28insecure\x29 network"] = "Réseau public \x28non-sécurisé\x29";
+$a->strings['Your profile address:'] = 'Votre adresse de profil:';
+$a->strings['Submit Request'] = 'Envoyer la requête';
+$a->strings['Cancel'] = 'Annuler';
+$a->strings['Global Directory'] = 'Annuaire global';
+$a->strings['Item not found.'] = 'Élément introuvable.';
+$a->strings['Private Message'] = 'Message privé';
+$a->strings['This is you'] = 'C\'est vous';
+$a->strings['View $name\'s profile'] = 'Voir le profil de $name';
+$a->strings['Item has been removed.'] = 'Cet élément a été enlevé.';
+$a->strings['The profile address specified does not provide adequate information.'] = 'L\'adresse de profil indiquée ne fournit par les informations adéquates.';
+$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.';
+$a->strings['Unable to retrieve contact information.'] = 'Impossible de récupérer les informations du contact.';
+$a->strings['following'] = 'following'; // FIXME
+$a->strings['Group created.'] = 'Groupe créé.';
+$a->strings['Could not create group.'] = 'Impossible de créer le groupe.';
+$a->strings['Group not found.'] = 'Groupe introuvable.';
+$a->strings['Group name changed.'] = 'Group renommé.';
+$a->strings['Membership list updated.'] = 'Liste des membres mise à jour.';
+$a->strings['Group removed.'] = 'Groupe enlevé.';
+$a->strings['Unable to remove group.'] = 'Impossible d\'enlever le groupe';
+$a->strings['Delete'] = 'Supprimer';
+$a->strings["Welcome to "] = "Bienvenue à ";
+$a->strings['Could not create/connect to database.'] = 'Impossible de créer/atteindre la base de données.';
+$a->strings['Connected to database.'] = 'Connecté à la base de données.';
+$a->strings['Database import succeeded.'] = 'Import de base achevé avec succès.';
+$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \'poller\'.'; // FIXME
+$a->strings['Please see the file "INSTALL.txt".'] = 'Référez-vous au fichier "INSTALL.txt".';
+$a->strings['Database import failed.'] = 'Import de base échoué.';
+$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Vous pourriez avoir besoin d\'importer le fichier "database.sql" manuellement au moyen de phpmyadmin ou de la commande mysql.';
+$a->strings['Welcome to Friendika.'] = 'Bienvenue sur Friendika.';
+$a->strings['Submit'] = 'Envoyer';
+$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Impossible de trouver la version "ligne de commande" de PHP dans le PATH du serveur web.';
+$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'Ceci est requis. Merci d\'ajuster la configuration dans le fichier .htconfig.php en conséquence.';
+$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'La version "ligne de commande" de PHP de votre système n\'a pas "register_argc_argv" d\'activé.';
+$a->strings['This is required for message delivery to work.'] = 'Ceci est requis pour que la livraison des messages fonctionne.';
+$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Erreur: la fonction "openssl_pkey_new" de ce système ne permet pas de générer des clés de chiffrement';
+$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Si vous utilisez Windows, merci de vous réferer à "http://www.php.net/manual/en/openssl.installation.php".';
+$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Erreur: Le module "rewrite" du serveur web Apache est requis mais pas installé.';
+$a->strings['Error: libCURL PHP module required but not installed.'] = 'Erreur: Le module PHP "libCURL" est requis mais pas installé.';
+$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Erreur: Le module PHP "GD" disposant du support JPEG est requis mais pas installé.';
+$a->strings['Error: openssl PHP module required but not installed.'] = 'Erreur: Le module PHP "openssl" est requis mais pas installé.';
+$a->strings['Error: mysqli PHP module required but not installed.'] = 'Erreur: Le module PHP "mysqli" est requis mais pas installé.';
+// TODO
+$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.';
+$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.';
+$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.';
+$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.';
+$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.';
+$a->strings['Errors encountered creating database tables.'] = 'Errors encountered creating database tables.';
+$a->strings[' : '] = ' : ';
+$a->strings['Not a valid email address.'] = 'Not a valid email address.';
+$a->strings['Please join my network on '] = 'Please join my network on ';
+$a->strings['Message delivery failed.'] = 'Message delivery failed.';
+$a->strings[' messages sent.'] = ' messages sent.';
+$a->strings['Send invitations'] = 'Send invitations';
+$a->strings['Enter email addresses, one per line:'] = 'Enter email addresses, one per line:';
+$a->strings['Your message:'] = 'Your message:';
+$a->strings['Please join my social network on '] = 'Please join my social network on ';
+$a->strings["\r\n"] = "\r\n";
+$a->strings['To accept this invitation, please visit:'] = 'To accept this invitation, please visit:';
+$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Once you have registered, please connect with me via my profile page at:';
+$a->strings['Unable to locate original post.'] = 'Unable to locate original post.';
+$a->strings['Empty post discarded.'] = 'Empty post discarded.';
+$a->strings['Wall Photos'] = 'Wall Photos';
+$a->strings[" commented on your item at "] = " commented on your item at ";
+$a->strings[" posted on your profile wall at "] = " posted on your profile wall at ";
+$a->strings['photo'] = 'photo';
+$a->strings['status'] = 'status';
+$a->strings['likes'] = 'likes';
+$a->strings['doesn\'t like'] = 'doesn\'t like';
+$a->strings['\'s'] = '\'s';
+$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.';
+$a->strings['Visible to:'] = 'Visible to:';
+$a->strings['Password reset requested at '] = 'Password reset requested at ';
+$a->strings['No recipient selected.'] = 'No recipient selected.';
+$a->strings['[no subject]'] = '[no subject]';
+$a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.';
+$a->strings['Message sent.'] = 'Message sent.';
+$a->strings['Message could not be sent.'] = 'Message could not be sent.';
+$a->strings['Messages'] = 'Messages';
+$a->strings['Inbox'] = 'Inbox';
+$a->strings['Outbox'] = 'Outbox';
+$a->strings['New Message'] = 'New Message';
+$a->strings['Message deleted.'] = 'Message deleted.';
+$a->strings['Conversation removed.'] = 'Conversation removed.';
+$a->strings['Send Private Message'] = 'Send Private Message';
+$a->strings['To:'] = 'To:';
+$a->strings['Subject:'] = 'Subject:';
+$a->strings['Upload photo'] = 'Upload photo';
+$a->strings['Insert web link'] = 'Insert web link';
+$a->strings['Please wait'] = 'Please wait';
+$a->strings['No messages.'] = 'No messages.';
+$a->strings['Delete conversation'] = 'Delete conversation';
+$a->strings['Message not available.'] = 'Message not available.';
+$a->strings['Delete message'] = 'Delete message';
+$a->strings['Send Reply'] = 'Send Reply';
+$a->strings['Normal View'] = 'Normal View';
+$a->strings['New Item View'] = 'New Item View';
+$a->strings['No such group'] = 'No such group';
+$a->strings['Group is empty'] = 'Group is empty';
+$a->strings['Group: '] = 'Group: ';
+$a->strings['View in context'] = 'View in context';
+$a->strings['Invalid request identifier.'] = 'Invalid request identifier.';
+$a->strings['Discard'] = 'Discard';
+$a->strings['Ignore'] = 'Ignore';
+$a->strings['Show Ignored Requests'] = 'Show Ignored Requests';
+$a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests';
+$a->strings['Claims to be known to you: '] = 'Claims to be known to you: ';
+$a->strings['yes'] = 'yes';
+$a->strings['no'] = 'no';
+$a->strings['Notification type: '] = 'Notification type: ';
+$a->strings['Friend/Connect Request'] = 'Friend/Connect Request';
+$a->strings['New Follower'] = 'New Follower';
+$a->strings['Approve'] = 'Approve';
+$a->strings['No notifications.'] = 'No notifications.';
+$a->strings['No registrations.'] = 'No registrations.';
+$a->strings['Login failed.'] = 'Login failed.';
+$a->strings["Welcome back "] = "Welcome back ";
+$a->strings['Photo Albums'] = 'Photo Albums';
+$a->strings['Contact Photos'] = 'Contact Photos';
+$a->strings['Contact information unavailable'] = 'Contact information unavailable';
+$a->strings['Profile Photos'] = 'Profile Photos';
+$a->strings['Album not found.'] = 'Album not found.';
+$a->strings['Delete Album'] = 'Delete Album';
+$a->strings['Delete Photo'] = 'Delete Photo';
+$a->strings['was tagged in a'] = 'was tagged in a';
+$a->strings['by'] = 'by';
+$a->strings['Image exceeds size limit of '] = 'Image exceeds size limit of ';
+$a->strings['Unable to process image.'] = 'Unable to process image.';
+$a->strings['Image upload failed.'] = 'Image upload failed.';
+$a->strings['No photos selected'] = 'No photos selected';
+$a->strings['Upload Photos'] = 'Upload Photos';
+$a->strings['New album name: '] = 'New album name: ';
+$a->strings['or existing album name: '] = 'or existing album name: ';
+$a->strings['Select files to upload: '] = 'Select files to upload: ';
+$a->strings['Permissions'] = 'Permissions';
+$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Use the following controls only if the Java uploader [above] fails to launch.';
+$a->strings['Edit Album'] = 'Edit Album';
+$a->strings['View Photo'] = 'View Photo';
+$a->strings['Photo not available'] = 'Photo not available';
+$a->strings['Edit photo'] = 'Edit photo';
+$a->strings['View Full Size'] = 'View Full Size';
+$a->strings['Tags: '] = 'Tags: ';
+$a->strings['[Remove any tag]'] = '[Remove any tag]';
+$a->strings['Caption'] = 'Caption';
+$a->strings['Add a Tag'] = 'Add a Tag';
+$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping';
+$a->strings['Recent Photos'] = 'Recent Photos';
+$a->strings['Upload New Photos'] = 'Upload New Photos';
+$a->strings['View Album'] = 'View Album';
+$a->strings['Image uploaded but image cropping failed.'] = 'Image uploaded but image cropping failed.';
+$a->strings['Image size reduction [175] failed.'] = 'Image size reduction [175] failed.';
+$a->strings['Image size reduction [80] failed.'] = 'Image size reduction [80] failed.';
+$a->strings['Image size reduction [48] failed.'] = 'Image size reduction [48] failed.';
+$a->strings['Unable to process image'] = 'Unable to process image';
+$a->strings['Image uploaded successfully.'] = 'Image uploaded successfully.';
+$a->strings['Image size reduction [640] failed.'] = 'Image size reduction [640] failed.';
+$a->strings['Profile Name is required.'] = 'Profile Name is required.';
+$a->strings['Profile updated.'] = 'Profile updated.';
+$a->strings['Profile deleted.'] = 'Profile deleted.';
+$a->strings['Profile-'] = 'Profile-';
+$a->strings['New profile created.'] = 'New profile created.';
+$a->strings['Profile unavailable to clone.'] = 'Profile unavailable to clone.';
+$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.';
+$a->strings['Age: '] = 'Age: ';
+$a->strings['Profile Image'] = 'Profile Image';
+$a->strings['Invalid OpenID url'] = 'Invalid OpenID url';
+$a->strings['Please enter the required information.'] = 'Please enter the required information.';
+$a->strings['Please use a shorter name.'] = 'Please use a shorter name.';
+$a->strings['Name too short.'] = 'Name too short.';
+$a->strings["That doesn\'t appear to be your full \x28First Last\x29 name."] = "That doesn\'t appear to be your full \x28First Last\x29 name.";
+$a->strings['Your email domain is not among those allowed on this site.'] = 'Your email domain is not among those allowed on this site.';
+$a->strings['Cannot use that email.'] = 'Cannot use that email.';
+$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.';
+$a->strings['Nickname is already registered. Please choose another.'] = 'Nickname is already registered. Please choose another.';
+$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.';
+$a->strings['An error occurred during registration. Please try again.'] = 'An error occurred during registration. Please try again.';
+$a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.';
+$a->strings['Registration details for '] = 'Registration details for ';
+$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registration successful. Please check your email for further instructions.';
+$a->strings['Failed to send email message. Here is the message that failed.'] = 'Failed to send email message. Here is the message that failed.';
+$a->strings['Your registration can not be processed.'] = 'Your registration can not be processed.';
+$a->strings['Registration request at '] = 'Registration request at ';
+$a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site owner.';
+$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.";
+$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.';
+$a->strings["Your OpenID \x28optional\x29: "] = "Your OpenID \x28optional\x29: ";
+$a->strings['Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.'] = 'Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.';
+$a->strings['Registration'] = 'Registration';
+$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': ';
+$a->strings['Your Email Address: '] = 'Your Email Address: ';
+$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'] = 'Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.';
+$a->strings['Choose a nickname: '] = 'Choose a nickname: ';
+$a->strings['Register'] = 'Register';
+$a->strings['Please login.'] = 'Please login.';
+$a->strings['Registration revoked for '] = 'Registration revoked for ';
+$a->strings['Account approved.'] = 'Account approved.';
+$a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.';
+$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Empty passwords are not allowed. Password unchanged.';
+$a->strings['Password changed.'] = 'Password changed.';
+$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.';
+$a->strings[' Please use a shorter name.'] = ' Please use a shorter name.';
+$a->strings[' Name too short.'] = ' Name too short.';
+$a->strings[' Not valid email.'] = ' Not valid email.';
+$a->strings[' Cannot change to that email.'] = ' Cannot change to that email.';
+$a->strings['Settings updated.'] = 'Settings updated.';
+$a->strings['Plugin Settings'] = 'Plugin Settings';
+$a->strings['Account Settings'] = 'Account Settings';
+$a->strings['No Plugin settings configured'] = 'No Plugin settings configured';
+$a->strings['OpenID: '] = 'OpenID: ';
+$a->strings["&nbsp;\x28Optional\x29 Allow this OpenID to login to this account."] = "&nbsp;\x28Optional\x29 Allow this OpenID to login to this account.";
+$a->strings['Profile is <strong>not published</strong>.'] = 'Profile is <strong>not published</strong>.';
+$a->strings['Default Post Permissions'] = 'Default Post Permissions';
+$a->strings['Tag removed'] = 'Tag removed';
+$a->strings['Remove Item Tag'] = 'Remove Item Tag';
+$a->strings['Select a tag to remove: '] = 'Select a tag to remove: ';
+$a->strings['Remove'] = 'Remove';
+$a->strings['No contacts.'] = 'No contacts.';
+$a->strings['Visible To:'] = 'Visible To:';
+$a->strings['Groups'] = 'Groups';
+$a->strings['Except For:'] = 'Except For:';
+$a->strings['Logged out.'] = 'Logged out.';
+$a->strings['Unknown | Not categorised'] = 'Unknown | Not categorised';
+$a->strings['Block immediately'] = 'Block immediately';
+$a->strings['Shady, spammer, self-marketer'] = 'Shady, spammer, self-marketer';
+$a->strings['Known to me, but no opinion'] = 'Known to me, but no opinion';
+$a->strings['OK, probably harmless'] = 'OK, probably harmless';
+$a->strings['Reputable, has my trust'] = 'Reputable, has my trust';
+$a->strings['Frequently'] = 'Fréquemment';
+$a->strings['Hourly'] = 'Toutes les heures';
+$a->strings['Twice daily'] = 'Deux fois par jour';
+$a->strings['Daily'] = 'Chaque jour';
+$a->strings['Weekly'] = 'Chaque semaine';
+$a->strings['Monthly'] = 'Chaque mois';
+$a->strings['Miscellaneous'] = 'Divers';
+$a->strings['less than a second ago'] = 'il y a moins d\'une seconde';
+$a->strings['year'] = 'an';
+$a->strings['years'] = 'ans';
+$a->strings['month'] = 'mois';
+$a->strings['months'] = 'mois';
+$a->strings['week'] = 'semaine';
+$a->strings['weeks'] = 'semaines';
+$a->strings['day'] = 'jour';
+$a->strings['days'] = 'jours';
+$a->strings['hour'] = 'heure';
+$a->strings['hours'] = 'heures';
+$a->strings['minute'] = 'minute';
+$a->strings['minutes'] = 'minutes';
+$a->strings['second'] = 'seconde';
+$a->strings['seconds'] = 'secondes';
+$a->strings[' ago'] = ' auparavant';
+$a->strings['Create a new group'] = 'Créer un nouveau groupe';
+$a->strings['Everybody'] = 'Tout le monde';
+$a->strings['Birthday:'] = 'Anniversaire:';
+$a->strings['Logout'] = 'Se déconnecter';
+$a->strings['Home'] = 'Accueil';
+$a->strings['Directory'] = 'Annuaire';
+$a->strings['Network'] = 'Réseau';
+$a->strings['Notifications'] = 'Notifications';
+$a->strings['Settings'] = 'Réglages';
+$a->strings['Profiles'] = 'Profils';
+$a->strings['Male'] = 'Masculin';
+$a->strings['Female'] = 'Féminin';
+$a->strings['Currently Male'] = 'Actuellement masculin';
+$a->strings['Currently Female'] = 'Actuellement féminin';
+$a->strings['Mostly Male'] = 'Principalement masculin';
+$a->strings['Mostly Female'] = 'Principalement féminin';
+$a->strings['Transgender'] = 'Transgenre';
+$a->strings['Intersex'] = 'Intersexe';
+$a->strings['Transsexual'] = 'Transsexuel';
+$a->strings['Hermaphrodite'] = 'Hermaphrodite';
+$a->strings['Neuter'] = 'Neutre';
+$a->strings['Non-specific'] = 'Non-spécifique';
+$a->strings['Other'] = 'Autre';
+$a->strings['Undecided'] = 'Indécis';
+$a->strings['Males'] = 'Hommes';
+$a->strings['Females'] = 'Femmes';
+$a->strings['Gay'] = 'Gay';
+$a->strings['Lesbian'] = 'Lesbienne';
+$a->strings['No Preference'] = 'Sans préférence';
+$a->strings['Bisexual'] = 'Bisexuel';
+$a->strings['Autosexual'] = 'Autosexuel';
+$a->strings['Abstinent'] = 'Abstinent';
+$a->strings['Virgin'] = 'Vierge';
+$a->strings['Deviant'] = 'Déviant';
+$a->strings['Fetish'] = 'Fétichiste';
+$a->strings['Oodles'] = 'Oodles'; //FIXME
+$a->strings['Nonsexual'] = 'Nonsexuel';
+$a->strings['Single'] = 'Célibataire';
+$a->strings['Lonely'] = 'Ésseulé';
+$a->strings['Available'] = 'Disponible';
+$a->strings['Unavailable'] = 'Indisponible';
+$a->strings['Dating'] = 'Dans une relation';
+$a->strings['Unfaithful'] = 'Infidèle';
+$a->strings['Sex Addict'] = 'Accro au sexe';
+$a->strings['Friends'] = 'Amis';
+$a->strings['Friends/Benefits'] = 'Amis par intérêt'; //FIXME
+$a->strings['Casual'] = 'Casual'; //FIXME
+$a->strings['Engaged'] = 'Fiancé';
+$a->strings['Married'] = 'Marié';
+$a->strings['Partners'] = 'Partenaire';
+$a->strings['Cohabiting'] = 'En cohabitation';
+$a->strings['Happy'] = 'Heureux';
+$a->strings['Not Looking'] = 'Sans recherche';
+$a->strings['Swinger'] = 'Swinger'; //FIXME
+$a->strings['Betrayed'] = 'Trahi(e)';
+$a->strings['Separated'] = 'Séparé';
+$a->strings['Unstable'] = 'Instable';
+$a->strings['Divorced'] = 'Divorcé';
+$a->strings['Widowed'] = 'Veuf/Veuve';
+$a->strings['Uncertain'] = 'Incertain';
+$a->strings['Complicated'] = 'Compliqué';
+$a->strings['Don\'t care'] = 'S\'en désinteresse'; //FIXME
+$a->strings['Ask me'] = 'Me demander';
+$a->strings['Africa/Abidjan'] = 'Afrique/Abidjan';
+$a->strings['Africa/Accra'] = 'Afrique/Accra';
+$a->strings['Africa/Addis_Ababa'] = 'Afrique/Addis_Ababa';
+$a->strings['Africa/Algiers'] = 'Afrique/Algiers';
+$a->strings['Africa/Asmara'] = 'Afrique/Asmara';
+$a->strings['Africa/Asmera'] = 'Afrique/Asmera';
+$a->strings['Africa/Bamako'] = 'Afrique/Bamako';
+$a->strings['Africa/Bangui'] = 'Afrique/Bangui';
+$a->strings['Africa/Banjul'] = 'Afrique/Banjul';
+$a->strings['Africa/Bissau'] = 'Afrique/Bissau';
+$a->strings['Africa/Blantyre'] = 'Afrique/Blantyre';
+$a->strings['Africa/Brazzaville'] = 'Afrique/Brazzaville';
+$a->strings['Africa/Bujumbura'] = 'Afrique/Bujumbura';
+$a->strings['Africa/Cairo'] = 'Afrique/Le Caire';
+$a->strings['Africa/Casablanca'] = 'Afrique/Casablanca';
+$a->strings['Africa/Ceuta'] = 'Afrique/Ceuta';
+$a->strings['Africa/Conakry'] = 'Afrique/Conakry';
+$a->strings['Africa/Dakar'] = 'Afrique/Dakar';
+$a->strings['Africa/Dar_es_Salaam'] = 'Afrique/Dar_es_Salaam';
+$a->strings['Africa/Djibouti'] = 'Afrique/Djibouti';
+$a->strings['Africa/Douala'] = 'Afrique/Douala';
+$a->strings['Africa/El_Aaiun'] = 'Afrique/El_Aaiun';
+$a->strings['Africa/Freetown'] = 'Afrique/Freetown';
+$a->strings['Africa/Gaborone'] = 'Afrique/Gaborone';
+$a->strings['Africa/Harare'] = 'Afrique/Harare';
+$a->strings['Africa/Johannesburg'] = 'Afrique/Johannesburg';
+$a->strings['Africa/Kampala'] = 'Afrique/Kampala';
+$a->strings['Africa/Khartoum'] = 'Afrique/Khartoum';
+$a->strings['Africa/Kigali'] = 'Afrique/Kigali';
+$a->strings['Africa/Kinshasa'] = 'Afrique/Kinshasa';
+$a->strings['Africa/Lagos'] = 'Afrique/Lagos';
+$a->strings['Africa/Libreville'] = 'Afrique/Libreville';
+$a->strings['Africa/Lome'] = 'Afrique/Lome';
+$a->strings['Africa/Luanda'] = 'Afrique/Luanda';
+$a->strings['Africa/Lubumbashi'] = 'Afrique/Lubumbashi';
+$a->strings['Africa/Lusaka'] = 'Afrique/Lusaka';
+$a->strings['Africa/Malabo'] = 'Afrique/Malabo';
+$a->strings['Africa/Maputo'] = 'Afrique/Maputo';
+$a->strings['Africa/Maseru'] = 'Afrique/Maseru';
+$a->strings['Africa/Mbabane'] = 'Afrique/Mbabane';
+$a->strings['Africa/Mogadishu'] = 'Afrique/Mogadishu';
+$a->strings['Africa/Monrovia'] = 'Afrique/Monrovia';
+$a->strings['Africa/Nairobi'] = 'Afrique/Nairobi';
+$a->strings['Africa/Ndjamena'] = 'Afrique/Ndjamena';
+$a->strings['Africa/Niamey'] = 'Afrique/Niamey';
+$a->strings['Africa/Nouakchott'] = 'Afrique/Nouakchott';
+$a->strings['Africa/Ouagadougou'] = 'Afrique/Ouagadougou';
+$a->strings['Africa/Porto-Novo'] = 'Afrique/Porto-Novo';
+$a->strings['Africa/Sao_Tome'] = 'Afrique/Sao_Tome';
+$a->strings['Africa/Timbuktu'] = 'Afrique/Timbuktu';
+$a->strings['Africa/Tripoli'] = 'Afrique/Tripoli';
+$a->strings['Africa/Tunis'] = 'Afrique/Tunis';
+$a->strings['Africa/Windhoek'] = 'Afrique/Windhoek';
+$a->strings['America/Adak'] = 'Amérique/Adak';
+$a->strings['America/Anchorage'] = 'Amérique/Anchorage';
+$a->strings['America/Anguilla'] = 'Amérique/Anguilla';
+$a->strings['America/Antigua'] = 'Amérique/Antigua';
+$a->strings['America/Araguaina'] = 'Amérique/Araguaina';
+$a->strings['America/Argentina/Buenos_Aires'] = 'Amérique/Argentina/Buenos_Aires';
+$a->strings['America/Argentina/Catamarca'] = 'Amérique/Argentina/Catamarca';
+$a->strings['America/Argentina/ComodRivadavia'] = 'Amérique/Argentina/ComodRivadavia';
+$a->strings['America/Argentina/Cordoba'] = 'Amérique/Argentina/Cordoba';
+$a->strings['America/Argentina/Jujuy'] = 'Amérique/Argentina/Jujuy';
+$a->strings['America/Argentina/La_Rioja'] = 'Amérique/Argentina/La_Rioja';
+$a->strings['America/Argentina/Mendoza'] = 'Amérique/Argentina/Mendoza';
+$a->strings['America/Argentina/Rio_Gallegos'] = 'Amérique/Argentina/Rio_Gallegos';
+$a->strings['America/Argentina/Salta'] = 'Amérique/Argentina/Salta';
+$a->strings['America/Argentina/San_Juan'] = 'Amérique/Argentina/San_Juan';
+$a->strings['America/Argentina/San_Luis'] = 'Amérique/Argentina/San_Luis';
+$a->strings['America/Argentina/Tucuman'] = 'Amérique/Argentina/Tucuman';
+$a->strings['America/Argentina/Ushuaia'] = 'Amérique/Argentina/Ushuaia';
+$a->strings['America/Aruba'] = 'Amérique/Aruba';
+$a->strings['America/Asuncion'] = 'Amérique/Asuncion';
+$a->strings['America/Atikokan'] = 'Amérique/Atikokan';
+$a->strings['America/Atka'] = 'Amérique/Atka';
+$a->strings['America/Bahia'] = 'Amérique/Bahia';
+$a->strings['America/Barbados'] = 'Amérique/Barbados';
+$a->strings['America/Belem'] = 'Amérique/Belem';
+$a->strings['America/Belize'] = 'Amérique/Belize';
+$a->strings['America/Blanc-Sablon'] = 'Amérique/Blanc-Sablon';
+$a->strings['America/Boa_Vista'] = 'Amérique/Boa_Vista';
+$a->strings['America/Bogota'] = 'Amérique/Bogota';
+$a->strings['America/Boise'] = 'Amérique/Boise';
+$a->strings['America/Buenos_Aires'] = 'Amérique/Buenos_Aires';
+$a->strings['America/Cambridge_Bay'] = 'Amérique/Cambridge_Bay';
+$a->strings['America/Campo_Grande'] = 'Amérique/Campo_Grande';
+$a->strings['America/Cancun'] = 'Amérique/Cancun';
+$a->strings['America/Caracas'] = 'Amérique/Caracas';
+$a->strings['America/Catamarca'] = 'Amérique/Catamarca';
+$a->strings['America/Cayenne'] = 'Amérique/Cayenne';
+$a->strings['America/Cayman'] = 'Amérique/Cayman';
+$a->strings['America/Chicago'] = 'Amérique/Chicago';
+$a->strings['America/Chihuahua'] = 'Amérique/Chihuahua';
+$a->strings['America/Coral_Harbour'] = 'Amérique/Coral_Harbour';
+$a->strings['America/Cordoba'] = 'Amérique/Cordoba';
+$a->strings['America/Costa_Rica'] = 'Amérique/Costa_Rica';
+$a->strings['America/Cuiaba'] = 'Amérique/Cuiaba';
+$a->strings['America/Curacao'] = 'Amérique/Curacao';
+$a->strings['America/Danmarkshavn'] = 'Amérique/Danmarkshavn';
+$a->strings['America/Dawson'] = 'Amérique/Dawson';
+$a->strings['America/Dawson_Creek'] = 'Amérique/Dawson_Creek';
+$a->strings['America/Denver'] = 'Amérique/Denver';
+$a->strings['America/Detroit'] = 'Amérique/Detroit';
+$a->strings['America/Dominica'] = 'Amérique/Dominica';
+$a->strings['America/Edmonton'] = 'Amérique/Edmonton';
+$a->strings['America/Eirunepe'] = 'Amérique/Eirunepe';
+$a->strings['America/El_Salvador'] = 'Amérique/El_Salvador';
+$a->strings['America/Ensenada'] = 'Amérique/Ensenada';
+$a->strings['America/Fort_Wayne'] = 'Amérique/Fort_Wayne';
+$a->strings['America/Fortaleza'] = 'Amérique/Fortaleza';
+$a->strings['America/Glace_Bay'] = 'Amérique/Glace_Bay';
+$a->strings['America/Godthab'] = 'Amérique/Godthab';
+$a->strings['America/Goose_Bay'] = 'Amérique/Goose_Bay';
+$a->strings['America/Grand_Turk'] = 'Amérique/Grand_Turk';
+$a->strings['America/Grenada'] = 'Amérique/Grenada';
+$a->strings['America/Guadeloupe'] = 'Amérique/Guadeloupe';
+$a->strings['America/Guatemala'] = 'Amérique/Guatemala';
+$a->strings['America/Guayaquil'] = 'Amérique/Guayaquil';
+$a->strings['America/Guyana'] = 'Amérique/Guyana';
+$a->strings['America/Halifax'] = 'Amérique/Halifax';
+$a->strings['America/Havana'] = 'Amérique/Havana';
+$a->strings['America/Hermosillo'] = 'Amérique/Hermosillo';
+$a->strings['America/Indiana/Indianapolis'] = 'Amérique/Indiana/Indianapolis';
+$a->strings['America/Indiana/Knox'] = 'Amérique/Indiana/Knox';
+$a->strings['America/Indiana/Marengo'] = 'Amérique/Indiana/Marengo';
+$a->strings['America/Indiana/Petersburg'] = 'Amérique/Indiana/Petersburg';
+$a->strings['America/Indiana/Tell_City'] = 'Amérique/Indiana/Tell_City';
+$a->strings['America/Indiana/Vevay'] = 'Amérique/Indiana/Vevay';
+$a->strings['America/Indiana/Vincennes'] = 'Amérique/Indiana/Vincennes';
+$a->strings['America/Indiana/Winamac'] = 'Amérique/Indiana/Winamac';
+$a->strings['America/Indianapolis'] = 'Amérique/Indianapolis';
+$a->strings['America/Inuvik'] = 'Amérique/Inuvik';
+$a->strings['America/Iqaluit'] = 'Amérique/Iqaluit';
+$a->strings['America/Jamaica'] = 'Amérique/Jamaica';
+$a->strings['America/Jujuy'] = 'Amérique/Jujuy';
+$a->strings['America/Juneau'] = 'Amérique/Juneau';
+$a->strings['America/Kentucky/Louisville'] = 'Amérique/Kentucky/Louisville';
+$a->strings['America/Kentucky/Monticello'] = 'Amérique/Kentucky/Monticello';
+$a->strings['America/Knox_IN'] = 'Amérique/Knox_IN';
+$a->strings['America/La_Paz'] = 'Amérique/La_Paz';
+$a->strings['America/Lima'] = 'Amérique/Lima';
+$a->strings['America/Los_Angeles'] = 'Amérique/Los_Angeles';
+$a->strings['America/Louisville'] = 'Amérique/Louisville';
+$a->strings['America/Maceio'] = 'Amérique/Maceio';
+$a->strings['America/Managua'] = 'Amérique/Managua';
+$a->strings['America/Manaus'] = 'Amérique/Manaus';
+$a->strings['America/Marigot'] = 'Amérique/Marigot';
+$a->strings['America/Martinique'] = 'Amérique/Martinique';
+$a->strings['America/Matamoros'] = 'Amérique/Matamoros';
+$a->strings['America/Mazatlan'] = 'Amérique/Mazatlan';
+$a->strings['America/Mendoza'] = 'Amérique/Mendoza';
+$a->strings['America/Menominee'] = 'Amérique/Menominee';
+$a->strings['America/Merida'] = 'Amérique/Merida';
+$a->strings['America/Mexico_City'] = 'Amérique/Mexico_City';
+$a->strings['America/Miquelon'] = 'Amérique/Miquelon';
+$a->strings['America/Moncton'] = 'Amérique/Moncton';
+$a->strings['America/Monterrey'] = 'Amérique/Monterrey';
+$a->strings['America/Montevideo'] = 'Amérique/Montevideo';
+$a->strings['America/Montreal'] = 'Amérique/Montréal';
+$a->strings['America/Montserrat'] = 'Amérique/Montserrat';
+$a->strings['America/Nassau'] = 'Amérique/Nassau';
+$a->strings['America/New_York'] = 'Amérique/New_York';
+$a->strings['America/Nipigon'] = 'Amérique/Nipigon';
+$a->strings['America/Nome'] = 'Amérique/Nome';
+$a->strings['America/Noronha'] = 'Amérique/Noronha';
+$a->strings['America/North_Dakota/Center'] = 'Amérique/North_Dakota/Center';
+$a->strings['America/North_Dakota/New_Salem'] = 'Amérique/North_Dakota/New_Salem';
+$a->strings['America/Ojinaga'] = 'Amérique/Ojinaga';
+$a->strings['America/Panama'] = 'Amérique/Panama';
+$a->strings['America/Pangnirtung'] = 'Amérique/Pangnirtung';
+$a->strings['America/Paramaribo'] = 'Amérique/Paramaribo';
+$a->strings['America/Phoenix'] = 'Amérique/Phoenix';
+$a->strings['America/Port-au-Prince'] = 'Amérique/Port-au-Prince';
+$a->strings['America/Port_of_Spain'] = 'Amérique/Port_of_Spain';
+$a->strings['America/Porto_Acre'] = 'Amérique/Porto_Acre';
+$a->strings['America/Porto_Velho'] = 'Amérique/Porto_Velho';
+$a->strings['America/Puerto_Rico'] = 'Amérique/Puerto_Rico';
+$a->strings['America/Rainy_River'] = 'Amérique/Rainy_River';
+$a->strings['America/Rankin_Inlet'] = 'Amérique/Rankin_Inlet';
+$a->strings['America/Recife'] = 'Amérique/Recife';
+$a->strings['America/Regina'] = 'Amérique/Regina';
+$a->strings['America/Resolute'] = 'Amérique/Resolute';
+$a->strings['America/Rio_Branco'] = 'Amérique/Rio_Branco';
+$a->strings['America/Rosario'] = 'Amérique/Rosario';
+$a->strings['America/Santa_Isabel'] = 'Amérique/Santa_Isabel';
+$a->strings['America/Santarem'] = 'Amérique/Santarem';
+$a->strings['America/Santiago'] = 'Amérique/Santiago';
+$a->strings['America/Santo_Domingo'] = 'Amérique/Santo_Domingo';
+$a->strings['America/Sao_Paulo'] = 'Amérique/Sao_Paulo';
+$a->strings['America/Scoresbysund'] = 'Amérique/Scoresbysund';
+$a->strings['America/Shiprock'] = 'Amérique/Shiprock';
+$a->strings['America/St_Barthelemy'] = 'Amérique/St_Barthelemy';
+$a->strings['America/St_Johns'] = 'Amérique/St_Johns';
+$a->strings['America/St_Kitts'] = 'Amérique/St_Kitts';
+$a->strings['America/St_Lucia'] = 'Amérique/St_Lucia';
+$a->strings['America/St_Thomas'] = 'Amérique/St_Thomas';
+$a->strings['America/St_Vincent'] = 'Amérique/St_Vincent';
+$a->strings['America/Swift_Current'] = 'Amérique/Swift_Current';
+$a->strings['America/Tegucigalpa'] = 'Amérique/Tegucigalpa';
+$a->strings['America/Thule'] = 'Amérique/Thule';
+$a->strings['America/Thunder_Bay'] = 'Amérique/Thunder_Bay';
+$a->strings['America/Tijuana'] = 'Amérique/Tijuana';
+$a->strings['America/Toronto'] = 'Amérique/Toronto';
+$a->strings['America/Tortola'] = 'Amérique/Tortola';
+$a->strings['America/Vancouver'] = 'Amérique/Vancouver';
+$a->strings['America/Virgin'] = 'Amérique/Virgin';
+$a->strings['America/Whitehorse'] = 'Amérique/Whitehorse';
+$a->strings['America/Winnipeg'] = 'Amérique/Winnipeg';
+$a->strings['America/Yakutat'] = 'Amérique/Yakutat';
+$a->strings['America/Yellowknife'] = 'Amérique/Yellowknife';
+$a->strings['Antarctica/Casey'] = 'Antarctique/Casey';
+$a->strings['Antarctica/Davis'] = 'Antarctique/Davis';
+$a->strings['Antarctica/DumontDUrville'] = 'Antarctique/Dumont d\'Urville';
+$a->strings['Antarctica/Macquarie'] = 'Antarctique/Macquarie';
+$a->strings['Antarctica/Mawson'] = 'Antarctique/Mawson';
+$a->strings['Antarctica/McMurdo'] = 'Antarctique/McMurdo';
+$a->strings['Antarctica/Palmer'] = 'Antarctique/Palmer';
+$a->strings['Antarctica/Rothera'] = 'Antarctique/Rothera';
+$a->strings['Antarctica/South_Pole'] = 'Antarctique/Pôle Sud';
+$a->strings['Antarctica/Syowa'] = 'Antarctique/Syowa';
+$a->strings['Antarctica/Vostok'] = 'Antarctique/Vostok';
+$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen';
+$a->strings['Asia/Aden'] = 'Asie/Aden';
+$a->strings['Asia/Almaty'] = 'Asie/Almaty';
+$a->strings['Asia/Amman'] = 'Asie/Amman';
+$a->strings['Asia/Anadyr'] = 'Asie/Anadyr';
+$a->strings['Asia/Aqtau'] = 'Asie/Aqtau';
+$a->strings['Asia/Aqtobe'] = 'Asie/Aqtobe';
+$a->strings['Asia/Ashgabat'] = 'Asie/Ashgabat';
+$a->strings['Asia/Ashkhabad'] = 'Asie/Ashkhabad';
+$a->strings['Asia/Baghdad'] = 'Asie/Baghdad';
+$a->strings['Asia/Bahrain'] = 'Asie/Bahrain';
+$a->strings['Asia/Baku'] = 'Asie/Baku';
+$a->strings['Asia/Bangkok'] = 'Asie/Bangkok';
+$a->strings['Asia/Beirut'] = 'Asie/Beirut';
+$a->strings['Asia/Bishkek'] = 'Asie/Bishkek';
+$a->strings['Asia/Brunei'] = 'Asie/Brunei';
+$a->strings['Asia/Calcutta'] = 'Asie/Calcutta';
+$a->strings['Asia/Choibalsan'] = 'Asie/Choibalsan';
+$a->strings['Asia/Chongqing'] = 'Asie/Chongqing';
+$a->strings['Asia/Chungking'] = 'Asie/Chungking';
+$a->strings['Asia/Colombo'] = 'Asie/Colombo';
+$a->strings['Asia/Dacca'] = 'Asie/Dacca';
+$a->strings['Asia/Damascus'] = 'Asie/Damascus';
+$a->strings['Asia/Dhaka'] = 'Asie/Dhaka';
+$a->strings['Asia/Dili'] = 'Asie/Dili';
+$a->strings['Asia/Dubai'] = 'Asie/Dubai';
+$a->strings['Asia/Dushanbe'] = 'Asie/Dushanbe';
+$a->strings['Asia/Gaza'] = 'Asie/Gaza';
+$a->strings['Asia/Harbin'] = 'Asie/Harbin';
+$a->strings['Asia/Ho_Chi_Minh'] = 'Asie/Ho_Chi_Minh';
+$a->strings['Asia/Hong_Kong'] = 'Asie/Hong_Kong';
+$a->strings['Asia/Hovd'] = 'Asie/Hovd';
+$a->strings['Asia/Irkutsk'] = 'Asie/Irkutsk';
+$a->strings['Asia/Istanbul'] = 'Asie/Istanbul';
+$a->strings['Asia/Jakarta'] = 'Asie/Jakarta';
+$a->strings['Asia/Jayapura'] = 'Asie/Jayapura';
+$a->strings['Asia/Jerusalem'] = 'Asie/Jerusalem';
+$a->strings['Asia/Kabul'] = 'Asie/Kabul';
+$a->strings['Asia/Kamchatka'] = 'Asie/Kamchatka';
+$a->strings['Asia/Karachi'] = 'Asie/Karachi';
+$a->strings['Asia/Kashgar'] = 'Asie/Kashgar';
+$a->strings['Asia/Kathmandu'] = 'Asie/Kathmandu';
+$a->strings['Asia/Katmandu'] = 'Asie/Katmandu';
+$a->strings['Asia/Kolkata'] = 'Asie/Kolkata';
+$a->strings['Asia/Krasnoyarsk'] = 'Asie/Krasnoyarsk';
+$a->strings['Asia/Kuala_Lumpur'] = 'Asie/Kuala_Lumpur';
+$a->strings['Asia/Kuching'] = 'Asie/Kuching';
+$a->strings['Asia/Kuwait'] = 'Asie/Kuwait';
+$a->strings['Asia/Macao'] = 'Asie/Macao';
+$a->strings['Asia/Macau'] = 'Asie/Macau';
+$a->strings['Asia/Magadan'] = 'Asie/Magadan';
+$a->strings['Asia/Makassar'] = 'Asie/Makassar';
+$a->strings['Asia/Manila'] = 'Asie/Manila';
+$a->strings['Asia/Muscat'] = 'Asie/Muscat';
+$a->strings['Asia/Nicosia'] = 'Asie/Nicosia';
+$a->strings['Asia/Novokuznetsk'] = 'Asie/Novokuznetsk';
+$a->strings['Asia/Novosibirsk'] = 'Asie/Novosibirsk';
+$a->strings['Asia/Omsk'] = 'Asie/Omsk';
+$a->strings['Asia/Oral'] = 'Asie/Oral';
+$a->strings['Asia/Phnom_Penh'] = 'Asie/Phnom_Penh';
+$a->strings['Asia/Pontianak'] = 'Asie/Pontianak';
+$a->strings['Asia/Pyongyang'] = 'Asie/Pyongyang';
+$a->strings['Asia/Qatar'] = 'Asie/Qatar';
+$a->strings['Asia/Qyzylorda'] = 'Asie/Qyzylorda';
+$a->strings['Asia/Rangoon'] = 'Asie/Rangoon';
+$a->strings['Asia/Riyadh'] = 'Asie/Riyadh';
+$a->strings['Asia/Saigon'] = 'Asie/Saigon';
+$a->strings['Asia/Sakhalin'] = 'Asie/Sakhalin';
+$a->strings['Asia/Samarkand'] = 'Asie/Samarkand';
+$a->strings['Asia/Seoul'] = 'Asie/Seoul';
+$a->strings['Asia/Shanghai'] = 'Asie/Shanghai';
+$a->strings['Asia/Singapore'] = 'Asie/Singapore';
+$a->strings['Asia/Taipei'] = 'Asie/Taipei';
+$a->strings['Asia/Tashkent'] = 'Asie/Tashkent';
+$a->strings['Asia/Tbilisi'] = 'Asie/Tbilisi';
+$a->strings['Asia/Tehran'] = 'Asie/Tehran';
+$a->strings['Asia/Tel_Aviv'] = 'Asie/Tel_Aviv';
+$a->strings['Asia/Thimbu'] = 'Asie/Thimbu';
+$a->strings['Asia/Thimphu'] = 'Asie/Thimphu';
+$a->strings['Asia/Tokyo'] = 'Asie/Tokyo';
+$a->strings['Asia/Ujung_Pandang'] = 'Asie/Ujung_Pandang';
+$a->strings['Asia/Ulaanbaatar'] = 'Asie/Ulaanbaatar';
+$a->strings['Asia/Ulan_Bator'] = 'Asie/Ulan_Bator';
+$a->strings['Asia/Urumqi'] = 'Asie/Urumqi';
+$a->strings['Asia/Vientiane'] = 'Asie/Vientiane';
+$a->strings['Asia/Vladivostok'] = 'Asie/Vladivostok';
+$a->strings['Asia/Yakutsk'] = 'Asie/Yakutsk';
+$a->strings['Asia/Yekaterinburg'] = 'Asie/Yekaterinburg';
+$a->strings['Asia/Yerevan'] = 'Asie/Yerevan';
+$a->strings['Atlantic/Azores'] = 'Atlantique/Azores';
+$a->strings['Atlantic/Bermuda'] = 'Atlantique/Bermuda';
+$a->strings['Atlantic/Canary'] = 'Atlantique/Canary';
+$a->strings['Atlantic/Cape_Verde'] = 'Atlantique/Cape_Verde';
+$a->strings['Atlantic/Faeroe'] = 'Atlantique/Faeroe';
+$a->strings['Atlantic/Faroe'] = 'Atlantique/Faroe';
+$a->strings['Atlantic/Jan_Mayen'] = 'Atlantique/Jan_Mayen';
+$a->strings['Atlantic/Madeira'] = 'Atlantique/Madeira';
+$a->strings['Atlantic/Reykjavik'] = 'Atlantique/Reykjavik';
+$a->strings['Atlantic/South_Georgia'] = 'Atlantique/South_Georgia';
+$a->strings['Atlantic/St_Helena'] = 'Atlantique/St_Helena';
+$a->strings['Atlantic/Stanley'] = 'Atlantique/Stanley';
+$a->strings['Australia/ACT'] = 'Australie/ACT';
+$a->strings['Australia/Adelaide'] = 'Australie/Adelaide';
+$a->strings['Australia/Brisbane'] = 'Australie/Brisbane';
+$a->strings['Australia/Broken_Hill'] = 'Australie/Broken_Hill';
+$a->strings['Australia/Canberra'] = 'Australie/Canberra';
+$a->strings['Australia/Currie'] = 'Australie/Currie';
+$a->strings['Australia/Darwin'] = 'Australie/Darwin';
+$a->strings['Australia/Eucla'] = 'Australie/Eucla';
+$a->strings['Australia/Hobart'] = 'Australie/Hobart';
+$a->strings['Australia/LHI'] = 'Australie/LHI';
+$a->strings['Australia/Lindeman'] = 'Australie/Lindeman';
+$a->strings['Australia/Lord_Howe'] = 'Australie/Lord_Howe';
+$a->strings['Australia/Melbourne'] = 'Australie/Melbourne';
+$a->strings['Australia/North'] = 'Australie/North';
+$a->strings['Australia/NSW'] = 'Australie/NSW';
+$a->strings['Australia/Perth'] = 'Australie/Perth';
+$a->strings['Australia/Queensland'] = 'Australie/Queensland';
+$a->strings['Australia/South'] = 'Australie/South';
+$a->strings['Australia/Sydney'] = 'Australie/Sydney';
+$a->strings['Australia/Tasmania'] = 'Australie/Tasmania';
+$a->strings['Australia/Victoria'] = 'Australie/Victoria';
+$a->strings['Australia/West'] = 'Australie/West';
+$a->strings['Australia/Yancowinna'] = 'Australie/Yancowinna';
+$a->strings['Brazil/Acre'] = 'Brésil/Acre';
+$a->strings['Brazil/DeNoronha'] = 'Brésil/DeNoronha';
+$a->strings['Brazil/East'] = 'Brésil/Est';
+$a->strings['Brazil/West'] = 'Brésil/Ouest';
+$a->strings['Canada/Atlantic'] = 'Canada/Atlantique';
+$a->strings['Canada/Central'] = 'Canada/Central';
+$a->strings['Canada/East-Saskatchewan'] = 'Canada/East-Saskatchewan';
+$a->strings['Canada/Eastern'] = 'Canada/Eastern';
+$a->strings['Canada/Mountain'] = 'Canada/Mountain';
+$a->strings['Canada/Newfoundland'] = 'Canada/Terre-Neuve';
+$a->strings['Canada/Pacific'] = 'Canada/Pacifique';
+$a->strings['Canada/Saskatchewan'] = 'Canada/Saskatchewan';
+$a->strings['Canada/Yukon'] = 'Canada/Yukon';
+$a->strings['CET'] = 'CET';
+$a->strings['Chile/Continental'] = 'Chili/Continental';
+$a->strings['Chile/EasterIsland'] = 'Chili/EasterIsland';
+$a->strings['CST6CDT'] = 'CST6CDT';
+$a->strings['Cuba'] = 'Cuba';
+$a->strings['EET'] = 'EET';
+$a->strings['Egypt'] = 'Égypte';
+$a->strings['Eire'] = 'Eire';
+$a->strings['EST'] = 'EST';
+$a->strings['EST5EDT'] = 'EST5EDT';
+$a->strings['Etc/GMT'] = 'Etc/GMT';
+$a->strings['Etc/GMT+0'] = 'Etc/GMT+0';
+$a->strings['Etc/GMT+1'] = 'Etc/GMT+1';
+$a->strings['Etc/GMT+10'] = 'Etc/GMT+10';
+$a->strings['Etc/GMT+11'] = 'Etc/GMT+11';
+$a->strings['Etc/GMT+12'] = 'Etc/GMT+12';
+$a->strings['Etc/GMT+2'] = 'Etc/GMT+2';
+$a->strings['Etc/GMT+3'] = 'Etc/GMT+3';
+$a->strings['Etc/GMT+4'] = 'Etc/GMT+4';
+$a->strings['Etc/GMT+5'] = 'Etc/GMT+5';
+$a->strings['Etc/GMT+6'] = 'Etc/GMT+6';
+$a->strings['Etc/GMT+7'] = 'Etc/GMT+7';
+$a->strings['Etc/GMT+8'] = 'Etc/GMT+8';
+$a->strings['Etc/GMT+9'] = 'Etc/GMT+9';
+$a->strings['Etc/GMT-0'] = 'Etc/GMT-0';
+$a->strings['Etc/GMT-1'] = 'Etc/GMT-1';
+$a->strings['Etc/GMT-10'] = 'Etc/GMT-10';
+$a->strings['Etc/GMT-11'] = 'Etc/GMT-11';
+$a->strings['Etc/GMT-12'] = 'Etc/GMT-12';
+$a->strings['Etc/GMT-13'] = 'Etc/GMT-13';
+$a->strings['Etc/GMT-14'] = 'Etc/GMT-14';
+$a->strings['Etc/GMT-2'] = 'Etc/GMT-2';
+$a->strings['Etc/GMT-3'] = 'Etc/GMT-3';
+$a->strings['Etc/GMT-4'] = 'Etc/GMT-4';
+$a->strings['Etc/GMT-5'] = 'Etc/GMT-5';
+$a->strings['Etc/GMT-6'] = 'Etc/GMT-6';
+$a->strings['Etc/GMT-7'] = 'Etc/GMT-7';
+$a->strings['Etc/GMT-8'] = 'Etc/GMT-8';
+$a->strings['Etc/GMT-9'] = 'Etc/GMT-9';
+$a->strings['Etc/GMT0'] = 'Etc/GMT0';
+$a->strings['Etc/Greenwich'] = 'Etc/Greenwich';
+$a->strings['Etc/UCT'] = 'Etc/UCT';
+$a->strings['Etc/Universal'] = 'Etc/Universel';
+$a->strings['Etc/UTC'] = 'Etc/UTC';
+$a->strings['Etc/Zulu'] = 'Etc/Zulu';
+$a->strings['Europe/Amsterdam'] = 'Europe/Amsterdam';
+$a->strings['Europe/Andorra'] = 'Europe/Andorra';
+$a->strings['Europe/Athens'] = 'Europe/Athens';
+$a->strings['Europe/Belfast'] = 'Europe/Belfast';
+$a->strings['Europe/Belgrade'] = 'Europe/Belgrade';
+$a->strings['Europe/Berlin'] = 'Europe/Berlin';
+$a->strings['Europe/Bratislava'] = 'Europe/Bratislava';
+$a->strings['Europe/Brussels'] = 'Europe/Brussels';
+$a->strings['Europe/Bucharest'] = 'Europe/Bucharest';
+$a->strings['Europe/Budapest'] = 'Europe/Budapest';
+$a->strings['Europe/Chisinau'] = 'Europe/Chisinau';
+$a->strings['Europe/Copenhagen'] = 'Europe/Copenhagen';
+$a->strings['Europe/Dublin'] = 'Europe/Dublin';
+$a->strings['Europe/Gibraltar'] = 'Europe/Gibraltar';
+$a->strings['Europe/Guernsey'] = 'Europe/Guernsey';
+$a->strings['Europe/Helsinki'] = 'Europe/Helsinki';
+$a->strings['Europe/Isle_of_Man'] = 'Europe/Isle_of_Man';
+$a->strings['Europe/Istanbul'] = 'Europe/Istanbul';
+$a->strings['Europe/Jersey'] = 'Europe/Jersey';
+$a->strings['Europe/Kaliningrad'] = 'Europe/Kaliningrad';
+$a->strings['Europe/Kiev'] = 'Europe/Kiev';
+$a->strings['Europe/Lisbon'] = 'Europe/Lisbon';
+$a->strings['Europe/Ljubljana'] = 'Europe/Ljubljana';
+$a->strings['Europe/London'] = 'Europe/London';
+$a->strings['Europe/Luxembourg'] = 'Europe/Luxembourg';
+$a->strings['Europe/Madrid'] = 'Europe/Madrid';
+$a->strings['Europe/Malta'] = 'Europe/Malta';
+$a->strings['Europe/Mariehamn'] = 'Europe/Mariehamn';
+$a->strings['Europe/Minsk'] = 'Europe/Minsk';
+$a->strings['Europe/Monaco'] = 'Europe/Monaco';
+$a->strings['Europe/Moscow'] = 'Europe/Moscow';
+$a->strings['Europe/Nicosia'] = 'Europe/Nicosia';
+$a->strings['Europe/Oslo'] = 'Europe/Oslo';
+$a->strings['Europe/Paris'] = 'Europe/Paris';
+$a->strings['Europe/Podgorica'] = 'Europe/Podgorica';
+$a->strings['Europe/Prague'] = 'Europe/Prague';
+$a->strings['Europe/Riga'] = 'Europe/Riga';
+$a->strings['Europe/Rome'] = 'Europe/Rome';
+$a->strings['Europe/Samara'] = 'Europe/Samara';
+$a->strings['Europe/San_Marino'] = 'Europe/San_Marino';
+$a->strings['Europe/Sarajevo'] = 'Europe/Sarajevo';
+$a->strings['Europe/Simferopol'] = 'Europe/Simferopol';
+$a->strings['Europe/Skopje'] = 'Europe/Skopje';
+$a->strings['Europe/Sofia'] = 'Europe/Sofia';
+$a->strings['Europe/Stockholm'] = 'Europe/Stockholm';
+$a->strings['Europe/Tallinn'] = 'Europe/Tallinn';
+$a->strings['Europe/Tirane'] = 'Europe/Tirane';
+$a->strings['Europe/Tiraspol'] = 'Europe/Tiraspol';
+$a->strings['Europe/Uzhgorod'] = 'Europe/Uzhgorod';
+$a->strings['Europe/Vaduz'] = 'Europe/Vaduz';
+$a->strings['Europe/Vatican'] = 'Europe/Vatican';
+$a->strings['Europe/Vienna'] = 'Europe/Vienna';
+$a->strings['Europe/Vilnius'] = 'Europe/Vilnius';
+$a->strings['Europe/Volgograd'] = 'Europe/Volgograd';
+$a->strings['Europe/Warsaw'] = 'Europe/Warsaw';
+$a->strings['Europe/Zagreb'] = 'Europe/Zagreb';
+$a->strings['Europe/Zaporozhye'] = 'Europe/Zaporozhye';
+$a->strings['Europe/Zurich'] = 'Europe/Zurich';
+$a->strings['Factory'] = 'Factory';
+$a->strings['GB'] = 'Grande Bretagne';
+$a->strings['GB-Eire'] = 'Grande Bretagne-Eire';
+$a->strings['GMT'] = 'GMT';
+$a->strings['GMT+0'] = 'GMT+0';
+$a->strings['GMT-0'] = 'GMT-0';
+$a->strings['GMT0'] = 'GMT0';
+$a->strings['Greenwich'] = 'Greenwich';
+$a->strings['Hongkong'] = 'Hongkong';
+$a->strings['HST'] = 'HST';
+$a->strings['Iceland'] = 'Islande';
+$a->strings['Indian/Antananarivo'] = 'Océan Indien/Antananarivo';
+$a->strings['Indian/Chagos'] = 'Océan Indien/Chagos';
+$a->strings['Indian/Christmas'] = 'Océan Indien/Christmas';
+$a->strings['Indian/Cocos'] = 'Océan Indien/Cocos';
+$a->strings['Indian/Comoro'] = 'Océan Indien/Comoro';
+$a->strings['Indian/Kerguelen'] = 'Océen Indien/Kerguelen';
+$a->strings['Indian/Mahe'] = 'Océan Indien/Mahe';
+$a->strings['Indian/Maldives'] = 'Océan Indien/Maldives';
+$a->strings['Indian/Mauritius'] = 'Océan Indien/Mauritius';
+$a->strings['Indian/Mayotte'] = 'Océan Indien/Mayotte';
+$a->strings['Indian/Reunion'] = 'OcéanIndien/Réunion';
+$a->strings['Iran'] = 'Iran';
+$a->strings['Israel'] = 'Israël';
+$a->strings['Jamaica'] = 'Jamaïque';
+$a->strings['Japan'] = 'Japon';
+$a->strings['Kwajalein'] = 'Kwajalein';
+$a->strings['Libya'] = 'Libye';
+$a->strings['MET'] = 'MET';
+$a->strings['Mexico/BajaNorte'] = 'Mexique/BajaNorte';
+$a->strings['Mexico/BajaSur'] = 'Mexique/BajaSur';
+$a->strings['Mexico/General'] = 'Mexique/General';
+$a->strings['MST'] = 'MST';
+$a->strings['MST7MDT'] = 'MST7MDT';
+$a->strings['Navajo'] = 'Navajo';
+$a->strings['NZ'] = 'NZ';
+$a->strings['NZ-CHAT'] = 'NZ-CHAT';
+$a->strings['Pacific/Apia'] = 'Pacifique/Apia';
+$a->strings['Pacific/Auckland'] = 'Pacifique/Auckland';
+$a->strings['Pacific/Chatham'] = 'Pacifique/Chatham';
+$a->strings['Pacific/Easter'] = 'Pacifique/Easter';
+$a->strings['Pacific/Efate'] = 'Pacifique/Efate';
+$a->strings['Pacific/Enderbury'] = 'Pacifique/Enderbury';
+$a->strings['Pacific/Fakaofo'] = 'Pacifique/Fakaofo';
+$a->strings['Pacific/Fiji'] = 'Pacifique/Fidji';
+$a->strings['Pacific/Funafuti'] = 'Pacifique/Funafuti';
+$a->strings['Pacific/Galapagos'] = 'Pacifique/Galapagos';
+$a->strings['Pacific/Gambier'] = 'Pacifique/Gambier';
+$a->strings['Pacific/Guadalcanal'] = 'Pacifique/Guadalcanal';
+$a->strings['Pacific/Guam'] = 'Pacifique/Guam';
+$a->strings['Pacific/Honolulu'] = 'Pacifique/Honolulu';
+$a->strings['Pacific/Johnston'] = 'Pacific/Johnston';
+$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati';
+$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae';
+$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein';
+$a->strings['Pacific/Majuro'] = 'Pacific/Majuro';
+$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas';
+$a->strings['Pacific/Midway'] = 'Pacific/Midway';
+$a->strings['Pacific/Nauru'] = 'Pacific/Nauru';
+$a->strings['Pacific/Niue'] = 'Pacific/Niue';
+$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk';
+$a->strings['Pacific/Noumea'] = 'Pacific/Noumea';
+$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago';
+$a->strings['Pacific/Palau'] = 'Pacific/Palau';
+$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn';
+$a->strings['Pacific/Ponape'] = 'Pacific/Ponape';
+$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby';
+$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga';
+$a->strings['Pacific/Saipan'] = 'Pacific/Saipan';
+$a->strings['Pacific/Samoa'] = 'Pacific/Samoa';
+$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti';
+$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa';
+$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu';
+$a->strings['Pacific/Truk'] = 'Pacific/Truk';
+$a->strings['Pacific/Wake'] = 'Pacific/Wake';
+$a->strings['Pacific/Wallis'] = 'Pacific/Wallis';
+$a->strings['Pacific/Yap'] = 'Pacific/Yap';
+$a->strings['Poland'] = 'Pologne';
+$a->strings['Portugal'] = 'Portugal';
+$a->strings['PRC'] = 'PRC';
+$a->strings['PST8PDT'] = 'PST8PDT';
+$a->strings['ROC'] = 'ROC';
+$a->strings['ROK'] = 'ROK';
+$a->strings['Singapore'] = 'Singapour';
+$a->strings['Turkey'] = 'Turquie';
+$a->strings['UCT'] = 'UCT';
+$a->strings['Universal'] = 'Universel';
+$a->strings['US/Alaska'] = 'US/Alaska';
+$a->strings['US/Aleutian'] = 'US/Aléoutiennes';
+$a->strings['US/Arizona'] = 'US/Arizona';
+$a->strings['US/Central'] = 'US/Central';
+$a->strings['US/East-Indiana'] = 'US/East-Indiana';
+$a->strings['US/Eastern'] = 'US/Eastern';
+$a->strings['US/Hawaii'] = 'US/Hawaii';
+$a->strings['US/Indiana-Starke'] = 'US/Indiana-Starke';
+$a->strings['US/Michigan'] = 'US/Michigan';
+$a->strings['US/Mountain'] = 'US/Mountain';
+$a->strings['US/Pacific'] = 'US/Pacifique';
+$a->strings['US/Pacific-New'] = 'US/Pacific-New';
+$a->strings['US/Samoa'] = 'US/Samoa';
+$a->strings['UTC'] = 'UTC';
+$a->strings['W-SU'] = 'W-SU';
+$a->strings['WET'] = 'WET';
+$a->strings['Zulu'] = 'Zulu';
diff --git a/view/fr/wall_item_drop.tpl b/view/fr/wall_item_drop.tpl
new file mode 100644 (file)
index 0000000..66777db
--- /dev/null
@@ -0,0 +1,2 @@
+<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$id" ><a href="item/drop/$id" onclick="return confirmDelete();" ><img src="images/b_drophide.gif" alt="Delete" title="Delete" id="wall-item-delete-icon-$id" class="wall-item-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div>
+               <div class="wall-item-delete-end"></div>
diff --git a/view/fr/wall_received_eml.tpl b/view/fr/wall_received_eml.tpl
new file mode 100644 (file)
index 0000000..c296de7
--- /dev/null
@@ -0,0 +1,18 @@
+
+Dear $username,
+
+       '$from' posted something to your profile wall.
+
+-----
+$body
+-----
+
+Please login at $siteurl to view or delete the item:
+
+$display
+
+Thank you,
+       $sitename administrator
+
+
diff --git a/view/fr/wallwall_item.tpl b/view/fr/wallwall_item.tpl
new file mode 100644 (file)
index 0000000..f8affd1
--- /dev/null
@@ -0,0 +1,36 @@
+<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
+       <div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
+               <div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
+                       <a href="$owner_url" title="View $owner_name's profile" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
+                       <img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
+               </div>
+               <div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="Wall-To-Wall" /></div>
+               <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id" >
+                       <a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
+                       <img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
+               </div>
+       
+               <div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
+                       $lock
+                       <a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
+                       <div class="wall-item-ago"  id="wall-item-ago-$id">$ago</div>
+                       <div class="wall-item-location" id="wall-item-location-$id">$location</div>
+                       $vote
+               </div>
+               <div class="wall-item-content" id="wall-item-content-$id" >
+                       <div class="wall-item-title" id="wall-item-title-$id">$title</div>
+                       <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+               </div>
+               $drop
+       </div>  
+       <div class="wall-item-wrapper-end"></div>
+       <div class="wall-item-like" id="wall-item-like-$id">$like</div>
+       <div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
+       <div class="wall-item-comment-separator"></div>
+       <div class="wall-item-comment-wrapper" >
+       $comment
+       </div>
+</div>
+
+<div class="wall-item-outside-wrapper-end$indent" ></div>
+